Skip to content

Commit

Permalink
clarify helm 2 vs helm 3 install commands
Browse files Browse the repository at this point in the history
  • Loading branch information
hbagdi committed Mar 20, 2020
1 parent 6d26c6e commit a0cdaed
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 16 deletions.
16 changes: 10 additions & 6 deletions app/1.4.x/kong-for-kubernetes/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,18 @@ Adjust “knobs” based on your use case:
Kong has an official Helm Chart. To deploy Kong onto your Kubernetes cluster with Helm, use:

```
helm repo add kong https://charts.konghq.com
helm repo update
helm install kong/kong
```
$ helm repo add kong https://charts.konghq.com
$ helm repo update
# Helm 2
$ helm install kong/kong
For more information about using a Helm Chart, see Kong's
[Charts repo](https://github.com/Kong/charts/blob/master/charts/kong/README.md).
# Helm 3
$ helm install kong/kong --generate-name --set ingressController.installCRDs=false
```

For more information about using a Helm Chart, see chart
[documentation](https://github.com/Kong/charts/blob/master/charts/kong/README.md).

### Kustomize
Kong’s manifests for Kubernetes can be declaratively patched using Kubernetes’ [kustomize](https://kustomize.io/). An example of a remote custom build is:
Expand Down
16 changes: 10 additions & 6 deletions app/1.5.x/kong-for-kubernetes/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,18 @@ Adjust “knobs” based on your use case:
Kong has an official Helm Chart. To deploy Kong onto your Kubernetes cluster with Helm, use:

```
helm repo add kong https://charts.konghq.com
helm repo update
helm install kong/kong
```
$ helm repo add kong https://charts.konghq.com
$ helm repo update
# Helm 2
$ helm install kong/kong
For more information about using a Helm Chart, see Kong's
[Charts repo](https://github.com/Kong/charts/blob/master/charts/kong/README.md).
# Helm 3
$ helm install kong/kong --generate-name --set ingressController.installCRDs=false
```

For more information about using a Helm Chart, see chart
[documentation](https://github.com/Kong/charts/blob/master/charts/kong/README.md).

### Kustomize
Kong’s manifests for Kubernetes can be declaratively patched using Kubernetes’ [kustomize](https://kustomize.io/). An example of a remote custom build is:
Expand Down
14 changes: 10 additions & 4 deletions app/2.0.x/kong-for-kubernetes/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,18 @@ Adjust “knobs” based on your use case:
Kong has an official Helm Chart. To deploy Kong onto your Kubernetes cluster with Helm, use:

```
helm repo update # get the latest charts
helm install stable/kong
```
$ helm repo add kong https://charts.konghq.com
$ helm repo update
# Helm 2
$ helm install kong/kong
For more information about using a Helm Chart, see Helm’s [Hub](https://hub.helm.sh/charts/stable/kong).
# Helm 3
$ helm install kong/kong --generate-name --set ingressController.installCRDs=false
```

For more information about using a Helm Chart, see chart
[documentation](https://github.com/Kong/charts/blob/master/charts/kong/README.md).

### Kustomize
Kong’s manifests for Kubernetes can be declaratively patched using Kubernetes’ [kustomize](https://kustomize.io/). An example of a remote custom build is:
Expand Down

0 comments on commit a0cdaed

Please sign in to comment.