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: _posts/2020-01-30-get-started-with-java-openjdk11.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
@@ -34,16 +34,16 @@ We'll first of all get OpenFaaS installed using the easiest way possible. Then w
34
34
35
35
Make sure that you have the Kubernetes CLI ([kubectl](https://kubernetes.io/docs/reference/kubectl/overview/)) available.
36
36
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):
38
38
39
39
```sh
40
-
curl -sSLf https://get.k3sup.dev | sudo sh
40
+
curl -sSLf https://dl.get-arkade.dev | sudo sh
41
41
```
42
42
43
43
Now install openfaas:
44
44
45
45
```sh
46
-
k3sup app install openfaas \
46
+
arkade install openfaas \
47
47
--helm3
48
48
```
49
49
@@ -53,10 +53,10 @@ You can also customise values from the helm chart's README by passing in `--set`
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.
422
422
423
423
### Wrapping up
424
424
@@ -443,7 +443,7 @@ Feel free to [join us on Slack](https://slack.openfaas.io/) and to follow [@open
443
443
444
444
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?
445
445
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/)
447
447
* [Deploy OpenFaaS on Amazon EKS](https://aws.amazon.com/blogs/opensource/deploy-openfaas-aws-eks/)
Copy file name to clipboardExpand all lines: _posts/2020-02-12-get-started-with-python-mongo.md
+12-14Lines changed: 12 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,31 +33,29 @@ We'll first of all get OpenFaaS installed using the easiest way possible. Then w
33
33
34
34
Make sure that you have the Kubernetes CLI ([kubectl](https://kubernetes.io/docs/reference/kubectl/overview/)) available.
35
35
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):
37
37
38
-
```bash
39
-
curl -sSLf https://get.k3sup.dev | sudo sh
38
+
```sh
39
+
curl -sSLf https://dl.get-arkade.dev | sudo sh
40
40
```
41
41
42
42
Now install openfaas:
43
43
44
-
```bash
45
-
k3sup app install openfaas \
44
+
```sh
45
+
arkade install openfaas \
46
46
--helm3
47
47
```
48
48
49
49
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:
@@ -83,14 +81,14 @@ At the end of the installation you'll get instructions for how to:
83
81
* port-forward the gateway to your local machine
84
82
* and to log-in using `faas-cli login`
85
83
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.
87
85
88
86
### Get MongoDB
89
87
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.
91
89
92
90
```bash
93
-
k3sup app install mongodb
91
+
arkade install mongodb
94
92
```
95
93
96
94
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
422
420
423
421
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?
424
422
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/)
426
424
* [Deploy OpenFaaS on Amazon EKS](https://aws.amazon.com/blogs/opensource/deploy-openfaas-aws-eks/)
427
425
* [Deploy microservices use Dockerfiles with OpenFaaS](https://www.openfaas.com/blog/stateless-microservices/)
0 commit comments