Skip to content

Commit 9f72823

Browse files
committed
Move to arkade from k3sup
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 9e2bddb commit 9f72823

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lab1b.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -210,44 +210,44 @@ The instructions for deploying OpenFaaS change from time to time as we strive to
210210

211211
### Install OpenFaaS
212212

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`.
214214

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.
216216

217217
* 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
218218

219219
* Plain YAML files - hard-coded settings/values. Tools like Kustomize can offer custom settings
220220

221-
#### Install with `k3sup`
221+
#### Install with `arkade`
222222

223-
* Get k3sup
223+
* Get arkade
224224

225225
For MacOS / Linux:
226226

227227
```sh
228-
curl -SLsf https://get.k3sup.dev/ | sudo sh
228+
curl -SLsf https://dl.get-arkade.dev/ | sudo sh
229229
```
230230

231231
For Windows:
232232

233233
```sh
234-
curl -SLsf https://get.k3sup.dev/ | sh
234+
curl -SLsf https://dl.get-arkade.dev/ | sh
235235
```
236236

237237
* Install the OpenFaaS app
238238

239239
If you're using a managed cloud Kubernetes service which supplies LoadBalancers, then run the following:
240240

241241
```sh
242-
k3sup app install openfaas --load-balancer
242+
arkade install openfaas --load-balancer
243243
```
244244

245245
> Note: the `--load-balancer` flag has a default of `false`, so by passing the flag, the installation will request one from your cloud provider.
246246
247247
If you're using a local Kubernetes cluster or a VM, then run:
248248

249249
```sh
250-
k3sup app install openfaas
250+
arkade install openfaas
251251
```
252252

253253
#### Or install with helm (advanced)

0 commit comments

Comments
 (0)