Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clarify helm 2 vs helm 3 install commands #1871

Merged
merged 1 commit into from
Mar 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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