Skip to content

Commit 46c7045

Browse files
committed
Sed k3sup for arkade where required
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
1 parent 2388c78 commit 46c7045

2 files changed

Lines changed: 20 additions & 22 deletions

File tree

_posts/2020-01-30-get-started-with-java-openjdk11.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ We'll first of all get OpenFaaS installed using the easiest way possible. Then w
3434

3535
Make sure that you have the Kubernetes CLI ([kubectl](https://kubernetes.io/docs/reference/kubectl/overview/)) available.
3636

37-
Download `k3sup`, which is an installer for helm charts for any Kubernetes cluster. We will install OpenFaaS using `k3sup app install` and [the OpenFaaS helm chart](https://github.com/openfaas/faas-netes/tree/master/chart/openfaas):
37+
Download [arkade](https://get-arkade.dev/), which is an installer for helm charts for any Kubernetes cluster. We will install OpenFaaS using `arkade install` and [the OpenFaaS helm chart](https://github.com/openfaas/faas-netes/tree/master/chart/openfaas):
3838

3939
```sh
40-
curl -sSLf https://get.k3sup.dev | sudo sh
40+
curl -sSLf https://dl.get-arkade.dev | sudo sh
4141
```
4242

4343
Now install openfaas:
4444

4545
```sh
46-
k3sup app install openfaas \
46+
arkade install openfaas \
4747
--helm3
4848
```
4949

@@ -53,10 +53,10 @@ You can also customise values from the helm chart's README by passing in `--set`
5353
Install openfaas
5454

5555
Usage:
56-
k3sup app install openfaas [flags]
56+
arkade install openfaas [flags]
5757

5858
Examples:
59-
k3sup app install openfaas --loadbalancer
59+
arkade install openfaas --loadbalancer
6060

6161
Flags:
6262
-a, --basic-auth Enable authentication (default true)
@@ -82,7 +82,7 @@ At the end of the installation you'll get instructions for how to:
8282
* port-forward the gateway to your local machine
8383
* and to log-in using `faas-cli login`
8484

85-
If you lose this information just type in `k3sup app info openfaas` at any time.
85+
If you lose this information just type in `arkade info openfaas` at any time.
8686

8787
### Example 1) The `java11` function
8888

@@ -418,7 +418,7 @@ curl http://127.0.0.1:8080/function/github-release-finder ; echo
418418
}
419419
```
420420

421-
As an extension to the task, why don't you edit the environment section of your `github-release-finder.yml` file and select a different repo like `alexellis/k3sup`, or the main Kubernetes repo.
421+
As an extension to the task, why don't you edit the environment section of your `github-release-finder.yml` file and select a different repo like `alexellis/arkade`, or the main Kubernetes repo.
422422

423423
### Wrapping up
424424

@@ -443,7 +443,7 @@ Feel free to [join us on Slack](https://slack.openfaas.io/) and to follow [@open
443443

444444
Perhaps next you'd like to move to a managed Kubernetes service, or add a TLS certificate and a custom domain to your OpenFaaS functions?
445445

446-
* [Get TLS for OpenFaaS the easy way with k3sup](https://blog.alexellis.io/tls-the-easy-way-with-openfaas-and-k3sup/)
446+
* [Get TLS for OpenFaaS the easy way with arkade](https://blog.alexellis.io/tls-the-easy-way-with-openfaas-and-k3sup/)
447447
* [Deploy OpenFaaS on Amazon EKS](https://aws.amazon.com/blogs/opensource/deploy-openfaas-aws-eks/)
448448

449449
Find out more about OpenFaaS and Vert.x

_posts/2020-02-12-get-started-with-python-mongo.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -33,31 +33,29 @@ We'll first of all get OpenFaaS installed using the easiest way possible. Then w
3333

3434
Make sure that you have the Kubernetes CLI ([kubectl](https://kubernetes.io/docs/reference/kubectl/overview/)) available.
3535

36-
Download `k3sup`, which is an installer for helm charts for any Kubernetes cluster. We will install OpenFaaS using `k3sup app install` and [the OpenFaaS helm chart](https://github.com/openfaas/faas-netes/tree/master/chart/openfaas):
36+
Download [arkade](https://get-arkade.dev/), which is an installer for helm charts for any Kubernetes cluster. We will install OpenFaaS using `arkade install` and [the OpenFaaS helm chart](https://github.com/openfaas/faas-netes/tree/master/chart/openfaas):
3737

38-
```bash
39-
curl -sSLf https://get.k3sup.dev | sudo sh
38+
```sh
39+
curl -sSLf https://dl.get-arkade.dev | sudo sh
4040
```
4141

4242
Now install openfaas:
4343

44-
```bash
45-
k3sup app install openfaas \
44+
```sh
45+
arkade install openfaas \
4646
--helm3
4747
```
4848

4949
You can also customise values from the helm chart's README by passing in `--set`, for instance, or by using a user-friendly flag shown below:
5050

51-
```bash
52-
$ k3sup app install openfaas --help
53-
51+
```sh
5452
Install openfaas
5553

5654
Usage:
57-
k3sup app install openfaas [flags]
55+
arkade install openfaas [flags]
5856

5957
Examples:
60-
k3sup app install openfaas --loadbalancer
58+
arkade install openfaas --loadbalancer
6159

6260
Flags:
6361
-a, --basic-auth Enable authentication (default true)
@@ -83,14 +81,14 @@ At the end of the installation you'll get instructions for how to:
8381
* port-forward the gateway to your local machine
8482
* and to log-in using `faas-cli login`
8583

86-
If you lose this information just type in `k3sup app info openfaas` at any time.
84+
If you lose this information just type in `arkade info openfaas` at any time.
8785

8886
### Get MongoDB
8987

90-
Now that we have `k3sup`, we can install of the apps available such as mongodb, to any Kubernetes cluster. k3sup downloads the MongoDB helm chart and sets the proper defaults for development, so you can get up and running in a few seconds.
88+
Now that we have `arkade`, we can install of the apps available such as mongodb, to any Kubernetes cluster. arkade downloads the MongoDB helm chart and sets the proper defaults for development, so you can get up and running in a few seconds.
9189

9290
```bash
93-
k3sup app install mongodb
91+
arkade install mongodb
9492
```
9593

9694
Now look carefully for the output because it will tell you what the credentials are to access MongoDB, we need that for our functions.
@@ -422,7 +420,7 @@ Feel free to [join us on Slack](https://slack.openfaas.io/) and to follow [@open
422420

423421
Perhaps next you'd like to move to a managed Kubernetes service, or add a TLS certificate and a custom domain to your OpenFaaS functions?
424422

425-
* [Get TLS for OpenFaaS the easy way with k3sup](https://blog.alexellis.io/tls-the-easy-way-with-openfaas-and-k3sup/)
423+
* [Get TLS for OpenFaaS the easy way with arkade](https://blog.alexellis.io/tls-the-easy-way-with-openfaas-and-k3sup/)
426424
* [Deploy OpenFaaS on Amazon EKS](https://aws.amazon.com/blogs/opensource/deploy-openfaas-aws-eks/)
427425
* [Deploy microservices use Dockerfiles with OpenFaaS](https://www.openfaas.com/blog/stateless-microservices/)
428426

0 commit comments

Comments
 (0)