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

chore: Update NGINX Ingress Controller chart version to 4.11.2 #537

Merged
merged 1 commit into from
Oct 11, 2024
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
6 changes: 3 additions & 3 deletions stacks/ingress-nginx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Below is a diagram depicting a more complete example for an NGINX based setup:

| Package | Application Version | Helm Chart Version | License |
|---------|---------------------|--------------------| ------- |
| NGINX Ingress Controller | v1.2.1 | [4.1.3](https://github.com/kubernetes/ingress-nginx/tree/helm-chart-4.1.3/charts/ingress-nginx) | [Apache 2.0](https://github.com/kubernetes/ingress-nginx/blob/main/LICENSE) |
| NGINX Ingress Controller | v1.11.2 | [4.11.2](https://github.com/kubernetes/ingress-nginx/tree/helm-chart-4.11.2/charts/ingress-nginx) | [Apache 2.0](https://github.com/kubernetes/ingress-nginx/blob/main/LICENSE) |

## Getting Started

Expand Down Expand Up @@ -92,13 +92,13 @@ The NGINX Ingress stack provides some custom values to start with. See the [valu
You can inspect all the available options, as well as the default values for the NGINX Ingress Helm chart by running the following command:

```console
helm show values ingress-nginx/ingress-nginx --version 4.1.3
helm show values ingress-nginx/ingress-nginx --version 4.11.2
```

After customizing the Helm values file (`values.yml`), you can apply the changes via `helm upgrade` command, as shown below:

```console
helm upgrade ingress-nginx ingress-nginx/ingress-nginx --version 4.1.3 \
helm upgrade ingress-nginx ingress-nginx/ingress-nginx --version 4.11.2 \
--namespace ingress-nginx \
--values values.yml
```
Expand Down
2 changes: 1 addition & 1 deletion stacks/ingress-nginx/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ helm repo update > /dev/null
################################################################################
STACK="ingress-nginx"
CHART="ingress-nginx/ingress-nginx"
CHART_VERSION="4.9.0"
CHART_VERSION="4.11.2"
NAMESPACE="ingress-nginx"

if [ -z "${MP_KUBERNETES}" ]; then
Expand Down
Loading