From f9612e116a458b19ba56d7116e6a2350b4d0b7b8 Mon Sep 17 00:00:00 2001 From: Ciara Stacke Date: Wed, 3 Sep 2025 13:28:12 +0100 Subject: [PATCH 1/2] Release 2.1.1 --- CHANGELOG.md | 30 +++++++++++++++ README.md | 7 ++-- charts/nginx-gateway-fabric/Chart.yaml | 4 +- charts/nginx-gateway-fabric/README.md | 8 ++-- .../nginx-gateway-fabric/values.schema.json | 4 +- charts/nginx-gateway-fabric/values.yaml | 4 +- deploy/azure/deploy.yaml | 32 ++++++++-------- deploy/default/deploy.yaml | 32 ++++++++-------- deploy/experimental-nginx-plus/deploy.yaml | 32 ++++++++-------- deploy/experimental/deploy.yaml | 32 ++++++++-------- deploy/nginx-plus/deploy.yaml | 32 ++++++++-------- deploy/nodeport/deploy.yaml | 32 ++++++++-------- deploy/openshift/deploy.yaml | 38 +++++++++---------- .../snippets-filters-nginx-plus/deploy.yaml | 32 ++++++++-------- deploy/snippets-filters/deploy.yaml | 32 ++++++++-------- 15 files changed, 191 insertions(+), 160 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db24562b8c..15a449ee9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,36 @@ This document includes a curated changelog for each release. We also publish a c a [GitHub release](https://github.com/nginx/nginx-gateway-fabric/releases), which, by contrast, is auto-generated and includes links to all PRs that went into the release. +## Release 2.1.1 + +_September 3, 2025_ + +BUG FIXES: + +- Fix remove patch label/ annotation cross contamination. [3754](https://github.com/nginx/nginx-gateway-fabric/pull/3754) +- Fix host readiness probe on ipv6 in addition to ipv4. [3765](https://github.com/nginx/nginx-gateway-fabric/pull/3765). Thanks to [lucasl0st](https://github.com/lucasl0st). +- Prevent policy `includes` duplication in advanced routing configuration. [3799](https://github.com/nginx/nginx-gateway-fabric/pull/3799) +- Adjust nginx agent backoff settings and revert request timeout. [3820](https://github.com/nginx/nginx-gateway-fabric/pull/3820) + +HELM CHART: + +- The version of the Helm chart is now 2.1.1 +- Add patches to helm chart spec. [3773](https://github.com/nginx/nginx-gateway-fabric/pull/3773) + +COMPATIBILITY: + +- Gateway API version: `1.3.0` +- NGINX version: `1.29.0` +- NGINX Plus version: `R35` +- NGINX Agent version: `v3.2.1` +- Kubernetes version: `1.25+` + +CONTAINER IMAGES: + +- Control plane: `ghcr.io/nginx/nginx-gateway-fabric:2.1.1` +- Data plane: `ghcr.io/nginx/nginx-gateway-fabric/nginx:2.1.1` +- Data plane with NGINX Plus: `private-registry.nginx.com/nginx-gateway-fabric/nginx-plus:2.1.1` + ## Release 2.1.0 _August 14, 2025_ diff --git a/README.md b/README.md index 4a0aa5600a..2c819cd1f9 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ You can find the comprehensive NGINX Gateway Fabric user documentation on the [N We publish NGINX Gateway Fabric releases on GitHub. See our [releases page](https://github.com/nginx/nginx-gateway-fabric/releases). -The latest release is [2.1.0](https://github.com/nginx/nginx-gateway-fabric/releases/tag/v2.1.0). +The latest release is [2.1.1](https://github.com/nginx/nginx-gateway-fabric/releases/tag/v2.1.1). The edge version is useful for experimenting with new features that are not yet published in a release. To use, choose the _edge_ version built from the [latest commit](https://github.com/nginx/nginx-gateway-fabric/commits/main) @@ -47,7 +47,7 @@ to the correct versions: | Version | Description | Installation Manifests | Documentation and Examples | |----------------|------------------------------------------|--------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| Latest release | For production use | [Manifests](https://github.com/nginx/nginx-gateway-fabric/tree/v2.1.0/deploy). | [Documentation](https://docs.nginx.com/nginx-gateway-fabric). [Examples](https://github.com/nginx/nginx-gateway-fabric/tree/v2.1.0/examples). | +| Latest release | For production use | [Manifests](https://github.com/nginx/nginx-gateway-fabric/tree/v2.1.1/deploy). | [Documentation](https://docs.nginx.com/nginx-gateway-fabric). [Examples](https://github.com/nginx/nginx-gateway-fabric/tree/v2.1.1/examples). | | Edge | For experimental use and latest features | [Manifests](https://github.com/nginx/nginx-gateway-fabric/tree/main/deploy). | [Examples](https://github.com/nginx/nginx-gateway-fabric/tree/main/examples). | ### Versioning @@ -68,7 +68,8 @@ The following table lists the software versions NGINX Gateway Fabric supports. | NGINX Gateway Fabric | Gateway API | Kubernetes | NGINX OSS | NGINX Plus | NGINX Agent | |----------------------|-------------|------------|-----------|------------|-------------| -| Edge | 1.3.0 | 1.25+ | 1.29.1 | R35 | v3.2.1 | +| Edge | 1.3.0 | 1.25+ | 1.29.1 | R35 | v3.3.0 | +| 2.1.1 | 1.3.0 | 1.25+ | 1.29.1 | R35 | v3.2.1 | | 2.1.0 | 1.3.0 | 1.25+ | 1.29.1 | R35 | v3.2.1 | | 2.0.2 | 1.3.0 | 1.25+ | 1.28.0 | R34 | v3.0.1 | | 2.0.1 | 1.3.0 | 1.25+ | 1.28.0 | R34 | v3.0.1 | diff --git a/charts/nginx-gateway-fabric/Chart.yaml b/charts/nginx-gateway-fabric/Chart.yaml index 37b33eefb1..6cbb1ec75c 100644 --- a/charts/nginx-gateway-fabric/Chart.yaml +++ b/charts/nginx-gateway-fabric/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: nginx-gateway-fabric description: NGINX Gateway Fabric type: application -version: 2.1.0 -appVersion: "2.1.0" +version: 2.1.1 +appVersion: "2.1.1" kubeVersion: ">= 1.25.0-0" home: https://github.com/nginx/nginx-gateway-fabric icon: https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/main/charts/nginx-gateway-fabric/chart-icon.png diff --git a/charts/nginx-gateway-fabric/README.md b/charts/nginx-gateway-fabric/README.md index 18c9bfe1a9..fe848777de 100644 --- a/charts/nginx-gateway-fabric/README.md +++ b/charts/nginx-gateway-fabric/README.md @@ -1,7 +1,7 @@ # NGINX Gateway Fabric Helm Chart -![Version: 2.1.0](https://img.shields.io/badge/Version-2.1.0-informational?style=flat-square) ![AppVersion: 2.1.0](https://img.shields.io/badge/AppVersion-2.1.0-informational?style=flat-square) +![Version: 2.1.1](https://img.shields.io/badge/Version-2.1.1-informational?style=flat-square) ![AppVersion: 2.1.1](https://img.shields.io/badge/AppVersion-2.1.1-informational?style=flat-square) - [NGINX Gateway Fabric Helm Chart](#nginx-gateway-fabric-helm-chart) - [Introduction](#introduction) @@ -264,7 +264,7 @@ The following table lists the configurable parameters of the NGINX Gateway Fabri | `certGenerator.ttlSecondsAfterFinished` | How long to wait after the cert generator job has finished before it is removed by the job controller. | int | `30` | | `clusterDomain` | The DNS cluster domain of your Kubernetes cluster. | string | `"cluster.local"` | | `gateways` | A list of Gateway objects. View https://gateway-api.sigs.k8s.io/reference/spec/#gateway for full Gateway reference. | list | `[]` | -| `nginx` | The nginx section contains the configuration for all NGINX data plane deployments installed by the NGINX Gateway Fabric control plane. | object | `{"autoscaling":{"enable":false},"config":{},"container":{"hostPorts":[],"lifecycle":{},"readinessProbe":{},"resources":{},"volumeMounts":[]},"debug":false,"image":{"pullPolicy":"IfNotPresent","repository":"ghcr.io/nginx/nginx-gateway-fabric/nginx","tag":"2.1.0"},"imagePullSecret":"","imagePullSecrets":[],"kind":"deployment","nginxOneConsole":{"dataplaneKeySecretName":"","endpointHost":"agent.connect.nginx.com","endpointPort":443,"skipVerify":false},"patches":[],"plus":false,"pod":{},"replicas":1,"service":{"externalTrafficPolicy":"Local","loadBalancerClass":"","loadBalancerIP":"","loadBalancerSourceRanges":[],"nodePorts":[],"patches":[],"type":"LoadBalancer"},"usage":{"caSecretName":"","clientSSLSecretName":"","endpoint":"","resolver":"","secretName":"nplus-license","skipVerify":false}}` | +| `nginx` | The nginx section contains the configuration for all NGINX data plane deployments installed by the NGINX Gateway Fabric control plane. | object | `{"autoscaling":{"enable":false},"config":{},"container":{"hostPorts":[],"lifecycle":{},"readinessProbe":{},"resources":{},"volumeMounts":[]},"debug":false,"image":{"pullPolicy":"IfNotPresent","repository":"ghcr.io/nginx/nginx-gateway-fabric/nginx","tag":"2.1.1"},"imagePullSecret":"","imagePullSecrets":[],"kind":"deployment","nginxOneConsole":{"dataplaneKeySecretName":"","endpointHost":"agent.connect.nginx.com","endpointPort":443,"skipVerify":false},"patches":[],"plus":false,"pod":{},"replicas":1,"service":{"externalTrafficPolicy":"Local","loadBalancerClass":"","loadBalancerIP":"","loadBalancerSourceRanges":[],"nodePorts":[],"patches":[],"type":"LoadBalancer"},"usage":{"caSecretName":"","clientSSLSecretName":"","endpoint":"","resolver":"","secretName":"nplus-license","skipVerify":false}}` | | `nginx.autoscaling` | Autoscaling configuration for the NGINX data plane. | object | `{"enable":false}` | | `nginx.autoscaling.enable` | Enable or disable Horizontal Pod Autoscaler for the NGINX data plane. | bool | `false` | | `nginx.config` | The configuration for the data plane that is contained in the NginxProxy resource. This is applied globally to all Gateways managed by this instance of NGINX Gateway Fabric. | object | `{}` | @@ -301,7 +301,7 @@ The following table lists the configurable parameters of the NGINX Gateway Fabri | `nginx.usage.resolver` | The nameserver used to resolve the NGINX Plus usage reporting endpoint. Used with NGINX Instance Manager. | string | `""` | | `nginx.usage.secretName` | The name of the Secret containing the JWT for NGINX Plus usage reporting. Must exist in the same namespace that the NGINX Gateway Fabric control plane is running in (default namespace: nginx-gateway). | string | `"nplus-license"` | | `nginx.usage.skipVerify` | Disable client verification of the NGINX Plus usage reporting server certificate. | bool | `false` | -| `nginxGateway` | The nginxGateway section contains configuration for the NGINX Gateway Fabric control plane deployment. | object | `{"affinity":{},"autoscaling":{"enable":false},"config":{"logging":{"level":"info"}},"configAnnotations":{},"extraVolumeMounts":[],"extraVolumes":[],"gatewayClassAnnotations":{},"gatewayClassName":"nginx","gatewayControllerName":"gateway.nginx.org/nginx-gateway-controller","gwAPIExperimentalFeatures":{"enable":false},"image":{"pullPolicy":"IfNotPresent","repository":"ghcr.io/nginx/nginx-gateway-fabric","tag":"2.1.0"},"kind":"deployment","labels":{},"leaderElection":{"enable":true,"lockName":""},"lifecycle":{},"metrics":{"enable":true,"port":9113,"secure":false},"name":"","nodeSelector":{},"podAnnotations":{},"productTelemetry":{"enable":true},"readinessProbe":{"enable":true,"initialDelaySeconds":3,"port":8081},"replicas":1,"resources":{},"service":{"annotations":{},"labels":{}},"serviceAccount":{"annotations":{},"imagePullSecret":"","imagePullSecrets":[],"name":""},"snippetsFilters":{"enable":false},"terminationGracePeriodSeconds":30,"tolerations":[],"topologySpreadConstraints":[]}` | +| `nginxGateway` | The nginxGateway section contains configuration for the NGINX Gateway Fabric control plane deployment. | object | `{"affinity":{},"autoscaling":{"enable":false},"config":{"logging":{"level":"info"}},"configAnnotations":{},"extraVolumeMounts":[],"extraVolumes":[],"gatewayClassAnnotations":{},"gatewayClassName":"nginx","gatewayControllerName":"gateway.nginx.org/nginx-gateway-controller","gwAPIExperimentalFeatures":{"enable":false},"image":{"pullPolicy":"IfNotPresent","repository":"ghcr.io/nginx/nginx-gateway-fabric","tag":"2.1.1"},"kind":"deployment","labels":{},"leaderElection":{"enable":true,"lockName":""},"lifecycle":{},"metrics":{"enable":true,"port":9113,"secure":false},"name":"","nodeSelector":{},"podAnnotations":{},"productTelemetry":{"enable":true},"readinessProbe":{"enable":true,"initialDelaySeconds":3,"port":8081},"replicas":1,"resources":{},"service":{"annotations":{},"labels":{}},"serviceAccount":{"annotations":{},"imagePullSecret":"","imagePullSecrets":[],"name":""},"snippetsFilters":{"enable":false},"terminationGracePeriodSeconds":30,"tolerations":[],"topologySpreadConstraints":[]}` | | `nginxGateway.affinity` | The affinity of the NGINX Gateway Fabric control plane pod. | object | `{}` | | `nginxGateway.autoscaling` | Autoscaling configuration for the NGINX Gateway Fabric control plane. | object | `{"enable":false}` | | `nginxGateway.autoscaling.enable` | Enable or disable Horizontal Pod Autoscaler for the control plane. | bool | `false` | @@ -313,7 +313,7 @@ The following table lists the configurable parameters of the NGINX Gateway Fabri | `nginxGateway.gatewayClassName` | The name of the GatewayClass that will be created as part of this release. Every NGINX Gateway Fabric must have a unique corresponding GatewayClass resource. NGINX Gateway Fabric only processes resources that belong to its class - i.e. have the "gatewayClassName" field resource equal to the class. | string | `"nginx"` | | `nginxGateway.gatewayControllerName` | The name of the Gateway controller. The controller name must be of the form: DOMAIN/PATH. The controller's domain is gateway.nginx.org. | string | `"gateway.nginx.org/nginx-gateway-controller"` | | `nginxGateway.gwAPIExperimentalFeatures.enable` | Enable the experimental features of Gateway API which are supported by NGINX Gateway Fabric. Requires the Gateway APIs installed from the experimental channel. | bool | `false` | -| `nginxGateway.image` | The image configuration for the NGINX Gateway Fabric control plane. | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/nginx/nginx-gateway-fabric","tag":"2.1.0"}` | +| `nginxGateway.image` | The image configuration for the NGINX Gateway Fabric control plane. | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/nginx/nginx-gateway-fabric","tag":"2.1.1"}` | | `nginxGateway.image.repository` | The NGINX Gateway Fabric image to use | string | `"ghcr.io/nginx/nginx-gateway-fabric"` | | `nginxGateway.kind` | The kind of the NGINX Gateway Fabric installation - currently, only deployment is supported. | string | `"deployment"` | | `nginxGateway.labels` | Set of labels to be added for NGINX Gateway Fabric deployment. | object | `{}` | diff --git a/charts/nginx-gateway-fabric/values.schema.json b/charts/nginx-gateway-fabric/values.schema.json index 8aa53b551b..7d2a2b28dc 100644 --- a/charts/nginx-gateway-fabric/values.schema.json +++ b/charts/nginx-gateway-fabric/values.schema.json @@ -424,7 +424,7 @@ "type": "string" }, "tag": { - "default": "2.1.0", + "default": "2.1.1", "required": [], "title": "tag", "type": "string" @@ -796,7 +796,7 @@ "type": "string" }, "tag": { - "default": "2.1.0", + "default": "2.1.1", "required": [], "title": "tag", "type": "string" diff --git a/charts/nginx-gateway-fabric/values.yaml b/charts/nginx-gateway-fabric/values.yaml index d5ea50fc08..a0e45000c3 100644 --- a/charts/nginx-gateway-fabric/values.yaml +++ b/charts/nginx-gateway-fabric/values.yaml @@ -116,7 +116,7 @@ nginxGateway: image: # -- The NGINX Gateway Fabric image to use repository: ghcr.io/nginx/nginx-gateway-fabric - tag: 2.1.0 + tag: 2.1.1 # @schema # enum: # - Always @@ -271,7 +271,7 @@ nginx: image: # -- The NGINX image to use. repository: ghcr.io/nginx/nginx-gateway-fabric/nginx - tag: 2.1.0 + tag: 2.1.1 # @schema # enum: # - Always diff --git a/deploy/azure/deploy.yaml b/deploy/azure/deploy.yaml index e5aa87a81e..92f169f525 100644 --- a/deploy/azure/deploy.yaml +++ b/deploy/azure/deploy.yaml @@ -10,7 +10,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway --- @@ -20,7 +20,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway --- @@ -30,7 +30,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway rules: @@ -49,7 +49,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway rules: - apiGroups: @@ -182,7 +182,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway roleRef: @@ -200,7 +200,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway roleRef: apiGroup: rbac.authorization.k8s.io @@ -217,7 +217,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -237,7 +237,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -285,8 +285,8 @@ spec: fieldRef: fieldPath: metadata.labels['app.kubernetes.io/instance'] - name: IMAGE_NAME - value: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + value: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: nginx-gateway ports: @@ -333,7 +333,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway spec: @@ -353,7 +353,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: cert-generator securityContext: @@ -379,7 +379,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx spec: controllerName: gateway.nginx.org/nginx-gateway-controller @@ -395,7 +395,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-config namespace: nginx-gateway spec: @@ -408,7 +408,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-proxy-config namespace: nginx-gateway spec: @@ -418,7 +418,7 @@ spec: image: pullPolicy: IfNotPresent repository: ghcr.io/nginx/nginx-gateway-fabric/nginx - tag: 2.1.0 + tag: 2.1.1 pod: nodeSelector: kubernetes.io/os: linux diff --git a/deploy/default/deploy.yaml b/deploy/default/deploy.yaml index 9f22158f05..e10d6e1f12 100644 --- a/deploy/default/deploy.yaml +++ b/deploy/default/deploy.yaml @@ -10,7 +10,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway --- @@ -20,7 +20,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway --- @@ -30,7 +30,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway rules: @@ -49,7 +49,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway rules: - apiGroups: @@ -182,7 +182,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway roleRef: @@ -200,7 +200,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway roleRef: apiGroup: rbac.authorization.k8s.io @@ -217,7 +217,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -237,7 +237,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -285,8 +285,8 @@ spec: fieldRef: fieldPath: metadata.labels['app.kubernetes.io/instance'] - name: IMAGE_NAME - value: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + value: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: nginx-gateway ports: @@ -331,7 +331,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway spec: @@ -351,7 +351,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: cert-generator securityContext: @@ -377,7 +377,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx spec: controllerName: gateway.nginx.org/nginx-gateway-controller @@ -393,7 +393,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-config namespace: nginx-gateway spec: @@ -406,7 +406,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-proxy-config namespace: nginx-gateway spec: @@ -416,7 +416,7 @@ spec: image: pullPolicy: IfNotPresent repository: ghcr.io/nginx/nginx-gateway-fabric/nginx - tag: 2.1.0 + tag: 2.1.1 replicas: 1 service: externalTrafficPolicy: Local diff --git a/deploy/experimental-nginx-plus/deploy.yaml b/deploy/experimental-nginx-plus/deploy.yaml index ebabf4525f..82048a8763 100644 --- a/deploy/experimental-nginx-plus/deploy.yaml +++ b/deploy/experimental-nginx-plus/deploy.yaml @@ -10,7 +10,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway --- @@ -20,7 +20,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway --- @@ -30,7 +30,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway rules: @@ -49,7 +49,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway rules: - apiGroups: @@ -186,7 +186,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway roleRef: @@ -204,7 +204,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway roleRef: apiGroup: rbac.authorization.k8s.io @@ -221,7 +221,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -241,7 +241,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -293,8 +293,8 @@ spec: fieldRef: fieldPath: metadata.labels['app.kubernetes.io/instance'] - name: IMAGE_NAME - value: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + value: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: nginx-gateway ports: @@ -339,7 +339,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway spec: @@ -359,7 +359,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: cert-generator securityContext: @@ -385,7 +385,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx spec: controllerName: gateway.nginx.org/nginx-gateway-controller @@ -401,7 +401,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-config namespace: nginx-gateway spec: @@ -414,7 +414,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-proxy-config namespace: nginx-gateway spec: @@ -424,7 +424,7 @@ spec: image: pullPolicy: IfNotPresent repository: private-registry.nginx.com/nginx-gateway-fabric/nginx-plus - tag: 2.1.0 + tag: 2.1.1 replicas: 1 service: externalTrafficPolicy: Local diff --git a/deploy/experimental/deploy.yaml b/deploy/experimental/deploy.yaml index 77a4932da5..9bba074135 100644 --- a/deploy/experimental/deploy.yaml +++ b/deploy/experimental/deploy.yaml @@ -10,7 +10,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway --- @@ -20,7 +20,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway --- @@ -30,7 +30,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway rules: @@ -49,7 +49,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway rules: - apiGroups: @@ -186,7 +186,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway roleRef: @@ -204,7 +204,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway roleRef: apiGroup: rbac.authorization.k8s.io @@ -221,7 +221,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -241,7 +241,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -290,8 +290,8 @@ spec: fieldRef: fieldPath: metadata.labels['app.kubernetes.io/instance'] - name: IMAGE_NAME - value: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + value: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: nginx-gateway ports: @@ -336,7 +336,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway spec: @@ -356,7 +356,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: cert-generator securityContext: @@ -382,7 +382,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx spec: controllerName: gateway.nginx.org/nginx-gateway-controller @@ -398,7 +398,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-config namespace: nginx-gateway spec: @@ -411,7 +411,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-proxy-config namespace: nginx-gateway spec: @@ -421,7 +421,7 @@ spec: image: pullPolicy: IfNotPresent repository: ghcr.io/nginx/nginx-gateway-fabric/nginx - tag: 2.1.0 + tag: 2.1.1 replicas: 1 service: externalTrafficPolicy: Local diff --git a/deploy/nginx-plus/deploy.yaml b/deploy/nginx-plus/deploy.yaml index 1e8fdb6079..a3b05e169c 100644 --- a/deploy/nginx-plus/deploy.yaml +++ b/deploy/nginx-plus/deploy.yaml @@ -10,7 +10,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway --- @@ -20,7 +20,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway --- @@ -30,7 +30,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway rules: @@ -49,7 +49,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway rules: - apiGroups: @@ -182,7 +182,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway roleRef: @@ -200,7 +200,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway roleRef: apiGroup: rbac.authorization.k8s.io @@ -217,7 +217,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -237,7 +237,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -288,8 +288,8 @@ spec: fieldRef: fieldPath: metadata.labels['app.kubernetes.io/instance'] - name: IMAGE_NAME - value: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + value: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: nginx-gateway ports: @@ -334,7 +334,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway spec: @@ -354,7 +354,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: cert-generator securityContext: @@ -380,7 +380,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx spec: controllerName: gateway.nginx.org/nginx-gateway-controller @@ -396,7 +396,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-config namespace: nginx-gateway spec: @@ -409,7 +409,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-proxy-config namespace: nginx-gateway spec: @@ -419,7 +419,7 @@ spec: image: pullPolicy: IfNotPresent repository: private-registry.nginx.com/nginx-gateway-fabric/nginx-plus - tag: 2.1.0 + tag: 2.1.1 replicas: 1 service: externalTrafficPolicy: Local diff --git a/deploy/nodeport/deploy.yaml b/deploy/nodeport/deploy.yaml index 21d8e7fb96..978648ccd3 100644 --- a/deploy/nodeport/deploy.yaml +++ b/deploy/nodeport/deploy.yaml @@ -10,7 +10,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway --- @@ -20,7 +20,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway --- @@ -30,7 +30,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway rules: @@ -49,7 +49,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway rules: - apiGroups: @@ -182,7 +182,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway roleRef: @@ -200,7 +200,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway roleRef: apiGroup: rbac.authorization.k8s.io @@ -217,7 +217,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -237,7 +237,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -285,8 +285,8 @@ spec: fieldRef: fieldPath: metadata.labels['app.kubernetes.io/instance'] - name: IMAGE_NAME - value: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + value: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: nginx-gateway ports: @@ -331,7 +331,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway spec: @@ -351,7 +351,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: cert-generator securityContext: @@ -377,7 +377,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx spec: controllerName: gateway.nginx.org/nginx-gateway-controller @@ -393,7 +393,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-config namespace: nginx-gateway spec: @@ -406,7 +406,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-proxy-config namespace: nginx-gateway spec: @@ -416,7 +416,7 @@ spec: image: pullPolicy: IfNotPresent repository: ghcr.io/nginx/nginx-gateway-fabric/nginx - tag: 2.1.0 + tag: 2.1.1 replicas: 1 service: externalTrafficPolicy: Local diff --git a/deploy/openshift/deploy.yaml b/deploy/openshift/deploy.yaml index 95f890c6c3..784c4c3bc9 100644 --- a/deploy/openshift/deploy.yaml +++ b/deploy/openshift/deploy.yaml @@ -10,7 +10,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway --- @@ -20,7 +20,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway --- @@ -30,7 +30,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway rules: @@ -49,7 +49,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway rules: - apiGroups: @@ -203,7 +203,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway roleRef: @@ -221,7 +221,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway roleRef: apiGroup: rbac.authorization.k8s.io @@ -238,7 +238,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -258,7 +258,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -307,8 +307,8 @@ spec: fieldRef: fieldPath: metadata.labels['app.kubernetes.io/instance'] - name: IMAGE_NAME - value: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + value: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: nginx-gateway ports: @@ -353,7 +353,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway spec: @@ -373,7 +373,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: cert-generator securityContext: @@ -399,7 +399,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx spec: controllerName: gateway.nginx.org/nginx-gateway-controller @@ -415,7 +415,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-config namespace: nginx-gateway spec: @@ -428,7 +428,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-proxy-config namespace: nginx-gateway spec: @@ -438,7 +438,7 @@ spec: image: pullPolicy: IfNotPresent repository: ghcr.io/nginx/nginx-gateway-fabric/nginx - tag: 2.1.0 + tag: 2.1.1 replicas: 1 service: externalTrafficPolicy: Local @@ -462,7 +462,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-scc readOnlyRootFilesystem: true requiredDropCapabilities: @@ -503,7 +503,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-scc-cert-generator readOnlyRootFilesystem: true requiredDropCapabilities: @@ -544,7 +544,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-scc-nginx readOnlyRootFilesystem: true requiredDropCapabilities: diff --git a/deploy/snippets-filters-nginx-plus/deploy.yaml b/deploy/snippets-filters-nginx-plus/deploy.yaml index 2110ac1884..1b4754534c 100644 --- a/deploy/snippets-filters-nginx-plus/deploy.yaml +++ b/deploy/snippets-filters-nginx-plus/deploy.yaml @@ -10,7 +10,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway --- @@ -20,7 +20,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway --- @@ -30,7 +30,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway rules: @@ -49,7 +49,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway rules: - apiGroups: @@ -184,7 +184,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway roleRef: @@ -202,7 +202,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway roleRef: apiGroup: rbac.authorization.k8s.io @@ -219,7 +219,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -239,7 +239,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -291,8 +291,8 @@ spec: fieldRef: fieldPath: metadata.labels['app.kubernetes.io/instance'] - name: IMAGE_NAME - value: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + value: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: nginx-gateway ports: @@ -337,7 +337,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway spec: @@ -357,7 +357,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: cert-generator securityContext: @@ -383,7 +383,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx spec: controllerName: gateway.nginx.org/nginx-gateway-controller @@ -399,7 +399,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-config namespace: nginx-gateway spec: @@ -412,7 +412,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-proxy-config namespace: nginx-gateway spec: @@ -422,7 +422,7 @@ spec: image: pullPolicy: IfNotPresent repository: private-registry.nginx.com/nginx-gateway-fabric/nginx-plus - tag: 2.1.0 + tag: 2.1.1 replicas: 1 service: externalTrafficPolicy: Local diff --git a/deploy/snippets-filters/deploy.yaml b/deploy/snippets-filters/deploy.yaml index 3cc3db846d..37ded55d63 100644 --- a/deploy/snippets-filters/deploy.yaml +++ b/deploy/snippets-filters/deploy.yaml @@ -10,7 +10,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway --- @@ -20,7 +20,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway --- @@ -30,7 +30,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway rules: @@ -49,7 +49,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway rules: - apiGroups: @@ -184,7 +184,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway roleRef: @@ -202,7 +202,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway roleRef: apiGroup: rbac.authorization.k8s.io @@ -219,7 +219,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -239,7 +239,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway namespace: nginx-gateway spec: @@ -288,8 +288,8 @@ spec: fieldRef: fieldPath: metadata.labels['app.kubernetes.io/instance'] - name: IMAGE_NAME - value: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + value: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: nginx-gateway ports: @@ -334,7 +334,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-cert-generator namespace: nginx-gateway spec: @@ -354,7 +354,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: ghcr.io/nginx/nginx-gateway-fabric:2.1.0 + image: ghcr.io/nginx/nginx-gateway-fabric:2.1.1 imagePullPolicy: IfNotPresent name: cert-generator securityContext: @@ -380,7 +380,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx spec: controllerName: gateway.nginx.org/nginx-gateway-controller @@ -396,7 +396,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-config namespace: nginx-gateway spec: @@ -409,7 +409,7 @@ metadata: labels: app.kubernetes.io/instance: nginx-gateway app.kubernetes.io/name: nginx-gateway - app.kubernetes.io/version: 2.1.0 + app.kubernetes.io/version: 2.1.1 name: nginx-gateway-proxy-config namespace: nginx-gateway spec: @@ -419,7 +419,7 @@ spec: image: pullPolicy: IfNotPresent repository: ghcr.io/nginx/nginx-gateway-fabric/nginx - tag: 2.1.0 + tag: 2.1.1 replicas: 1 service: externalTrafficPolicy: Local From 4a5a612e05aab0b48e0bb67eb412f1eda55062b7 Mon Sep 17 00:00:00 2001 From: Ciara Stacke <18287516+ciarams87@users.noreply.github.com> Date: Wed, 3 Sep 2025 15:31:55 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md Co-authored-by: Saylor Berman --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15a449ee9e..2f6ce2df46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,7 @@ HELM CHART: COMPATIBILITY: - Gateway API version: `1.3.0` -- NGINX version: `1.29.0` +- NGINX version: `1.29.1` - NGINX Plus version: `R35` - NGINX Agent version: `v3.2.1` - Kubernetes version: `1.25+`