You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lab1b.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -210,44 +210,44 @@ The instructions for deploying OpenFaaS change from time to time as we strive to
210
210
211
211
### Install OpenFaaS
212
212
213
-
There are three ways to install OpenFaaS and you can pick whatever makes sense for you and your team. In this workshop we will use the official installer `k3sup`.
213
+
There are three ways to install OpenFaaS and you can pick whatever makes sense for you and your team. In this workshop we will use the official installer `arkade`.
214
214
215
-
*`k3sup app install` - k3sup installs OpenFaaS using its official helm chart. It can also offer other software with a user-friendly CLI such as `cert-manager` and `nginx-ingress`. It's the easiest and quickest way to get up and running.
215
+
*`arkade app install` - arkade installs OpenFaaS using its official helm chart. It can also offer other software with a user-friendly CLI such as `cert-manager` and `nginx-ingress`. It's the easiest and quickest way to get up and running.
216
216
217
217
* Helm chart - sane defaults and easy to configure through YAML or CLI flags. Secure options such as `helm template` or `helm 3` also exist for those working within restrictive environments
218
218
219
219
* Plain YAML files - hard-coded settings/values. Tools like Kustomize can offer custom settings
220
220
221
-
#### Install with `k3sup`
221
+
#### Install with `arkade`
222
222
223
-
* Get k3sup
223
+
* Get arkade
224
224
225
225
For MacOS / Linux:
226
226
227
227
```sh
228
-
curl -SLsf https://get.k3sup.dev/ | sudo sh
228
+
curl -SLsf https://dl.get-arkade.dev/ | sudo sh
229
229
```
230
230
231
231
For Windows:
232
232
233
233
```sh
234
-
curl -SLsf https://get.k3sup.dev/ | sh
234
+
curl -SLsf https://dl.get-arkade.dev/ | sh
235
235
```
236
236
237
237
* Install the OpenFaaS app
238
238
239
239
If you're using a managed cloud Kubernetes service which supplies LoadBalancers, then run the following:
240
240
241
241
```sh
242
-
k3sup app install openfaas --load-balancer
242
+
arkade install openfaas --load-balancer
243
243
```
244
244
245
245
> Note: the `--load-balancer` flag has a default of `false`, so by passing the flag, the installation will request one from your cloud provider.
246
246
247
247
If you're using a local Kubernetes cluster or a VM, then run:
0 commit comments