Skip to content

Commit a078d69

Browse files
committed
Remove helm3 flag where not required
The flag was removed. Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent c342826 commit a078d69

4 files changed

+3
-8
lines changed

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ curl -sSLf https://dl.get-arkade.dev | sudo sh
4343
Now install openfaas:
4444

4545
```sh
46-
arkade install openfaas \
47-
--helm3
46+
arkade install openfaas
4847
```
4948

5049
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:
@@ -64,7 +63,6 @@ Flags:
6463
--direct-functions Invoke functions directly from the gateway (default true)
6564
--function-pull-policy string Pull policy for functions (default "Always")
6665
--gateways int Replicas of gateway (default 1)
67-
--helm3 Use helm3 instead of the default helm2
6866
-h, --help help for openfaas
6967
-l, --load-balancer Add a loadbalancer
7068
-n, --namespace string The namespace for the core services (default "openfaas")

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ curl -sSLf https://dl.get-arkade.dev | sudo sh
4242
Now install openfaas:
4343

4444
```sh
45-
arkade install openfaas \
46-
--helm3
45+
arkade install openfaas
4746
```
4847

4948
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:
@@ -63,7 +62,6 @@ Flags:
6362
--direct-functions Invoke functions directly from the gateway (default true)
6463
--function-pull-policy string Pull policy for functions (default "Always")
6564
--gateways int Replicas of gateway (default 1)
66-
--helm3 Use helm3 instead of the default helm2
6765
-h, --help help for openfaas
6866
-l, --load-balancer Add a loadbalancer
6967
-n, --namespace string The namespace for the core services (default "openfaas")

_posts/2020-08-28-openfaas-arkade.md

-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ Flags:
9191
--direct-functions Invoke functions directly from the gateway (default true)
9292
--function-pull-policy string Pull policy for functions (default "Always")
9393
--gateways int Replicas of gateway (default 1)
94-
--helm3 Use helm3, if set to false uses helm2 (default true)
9594
-h, --help help for openfaas
9695
--ingress-operator Get custom domains and Ingress records via the ingress-operator component
9796
-l, --load-balancer Add a loadbalancer

_posts/2020-3-29-managed-services-serverless.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Now that we have an idea of the value that Crossplane provides when used alongsi
4848
We [started](https://youtu.be/XphQgB87U-s?t=1521) the demo by installing Crossplane with [arkade](https://github.com/alexellis/arkade), the simplest way to get Crossplane up and running in your Kubernetes cluster.
4949

5050
```console
51-
arkade install crossplane --helm3
51+
arkade install crossplane
5252
```
5353

5454
We followed up by installing the Crossplane [AWS Provider](https://github.com/crossplane/provider-aws) and supplying credentials for Crossplane to communicate with the AWS API. You can find documentation on how to do this for your cloud provider of choice in the Crossplane [documentation](https://crossplane.io/docs/v0.9/configure.html). After that, we created an AWS `S3BucketClass` resource in our cluster. This is a custom resource type that Crossplane provides to allow an infrastructure administrator to define configuration for an [Amazon S3 bucket](https://aws.amazon.com/s3/) that is available for use by developers. This class exposes the same fields that you would find in the AWS console, or when using any infrastructure as code tool. Our configuration for this demo looks as follows:

0 commit comments

Comments
 (0)