Skip to content

Commit 868bb77

Browse files
authored
Release 3.0.0 (#3429)
1 parent f782299 commit 868bb77

39 files changed

+202
-126
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
### 3.0.0
4+
5+
An automatically generated list of changes can be found on GitHub at: [3.0.0 Release](https://github.com/nginxinc/kubernetes-ingress/releases/tag/v3.0.0)
6+
7+
A curated list of changes can be found on the [Releases](http://docs.nginx.com/nginx-ingress-controller/releases/) page on the NGINX Documentation website.
8+
39
### 2.4.2
410

511
An automatically generated list of changes can be found on GitHub at: [2.4.2 Release](https://github.com/nginxinc/kubernetes-ingress/releases/tag/v2.4.2)

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Read [this doc](https://docs.nginx.com/nginx-ingress-controller/intro/nginx-plus
5353

5454
We publish Ingress Controller releases on GitHub. See our [releases page](https://github.com/nginxinc/kubernetes-ingress/releases).
5555

56-
The latest stable release is [2.4.2](https://github.com/nginxinc/kubernetes-ingress/releases/tag/v2.4.2). For production use, we recommend that you choose the latest stable release.
56+
The latest stable release is [3.0.0](https://github.com/nginxinc/kubernetes-ingress/releases/tag/v3.0.0). For production use, we recommend that you choose the latest stable release.
5757

5858
The edge version is useful for experimenting with new features that are not yet published in a stable release. To use, choose the *edge* version built from the [latest commit](https://github.com/nginxinc/kubernetes-ingress/commits/main) from the main branch.
5959

@@ -68,7 +68,7 @@ The table below summarizes the options regarding the images, manifests, helm cha
6868

6969
| Version | Description | Image for NGINX | Image for NGINX Plus | Installation Manifests and Helm Chart | Documentation and Examples |
7070
| ------- | ----------- | --------------- | -------------------- | ---------------------------------------| -------------------------- |
71-
| Latest stable release | For production use | Use the 2.4.2 images from [DockerHub](https://hub.docker.com/r/nginx/nginx-ingress/), [GitHub Container](https://github.com/nginxinc/kubernetes-ingress/pkgs/container/kubernetes-ingress), [Amazon ECR Public Gallery](https://gallery.ecr.aws/nginx/nginx-ingress) or [Quay.io](https://quay.io/repository/nginx/nginx-ingress) or [build your own image](https://docs.nginx.com/nginx-ingress-controller/installation/building-ingress-controller-image/). | Use the 2.4.2 images from the [F5 Container Registry](https://docs.nginx.com/nginx-ingress-controller/installation/pulling-ingress-controller-image/) or the [AWS Marketplace](https://aws.amazon.com/marketplace/search/?CREATOR=741df81b-dfdc-4d36-b8da-945ea66b522c&FULFILLMENT_OPTION_TYPE=CONTAINER&filters=CREATOR%2CFULFILLMENT_OPTION_TYPE) or [Build your own image](https://docs.nginx.com/nginx-ingress-controller/installation/building-ingress-controller-image/). | [Manifests](https://github.com/nginxinc/kubernetes-ingress/tree/v2.4.2/deployments). [Helm chart](https://github.com/nginxinc/kubernetes-ingress/tree/v2.4.2/deployments/helm-chart). | [Documentation](https://docs.nginx.com/nginx-ingress-controller/). [Examples](https://docs.nginx.com/nginx-ingress-controller/configuration/configuration-examples/). |
71+
| Latest stable release | For production use | Use the 3.0.0 images from [DockerHub](https://hub.docker.com/r/nginx/nginx-ingress/), [GitHub Container](https://github.com/nginxinc/kubernetes-ingress/pkgs/container/kubernetes-ingress), [Amazon ECR Public Gallery](https://gallery.ecr.aws/nginx/nginx-ingress) or [Quay.io](https://quay.io/repository/nginx/nginx-ingress) or [build your own image](https://docs.nginx.com/nginx-ingress-controller/installation/building-ingress-controller-image/). | Use the 3.0.0 images from the [F5 Container Registry](https://docs.nginx.com/nginx-ingress-controller/installation/pulling-ingress-controller-image/) or the [AWS Marketplace](https://aws.amazon.com/marketplace/search/?CREATOR=741df81b-dfdc-4d36-b8da-945ea66b522c&FULFILLMENT_OPTION_TYPE=CONTAINER&filters=CREATOR%2CFULFILLMENT_OPTION_TYPE) or [Build your own image](https://docs.nginx.com/nginx-ingress-controller/installation/building-ingress-controller-image/). | [Manifests](https://github.com/nginxinc/kubernetes-ingress/tree/v3.0.0/deployments). [Helm chart](https://github.com/nginxinc/kubernetes-ingress/tree/v3.0.0/deployments/helm-chart). | [Documentation](https://docs.nginx.com/nginx-ingress-controller/). [Examples](https://docs.nginx.com/nginx-ingress-controller/configuration/configuration-examples/). |
7272
| Edge/Nightly | For testing and experimenting | Use the edge or nightly images from [DockerHub](https://hub.docker.com/r/nginx/nginx-ingress/), [GitHub Container](https://github.com/nginxinc/kubernetes-ingress/pkgs/container/kubernetes-ingress), [Amazon ECR Public Gallery](https://gallery.ecr.aws/nginx/nginx-ingress) or [Quay.io](https://quay.io/repository/nginx/nginx-ingress) or [build your own image](https://github.com/nginxinc/kubernetes-ingress/tree/main/docs/content/installation/building-ingress-controller-image.md). | [Build your own image](https://github.com/nginxinc/kubernetes-ingress/tree/main/docs/content/installation/building-ingress-controller-image.md). | [Manifests](https://github.com/nginxinc/kubernetes-ingress/tree/main/deployments). [Helm chart](https://github.com/nginxinc/kubernetes-ingress/tree/main/deployments/helm-chart). | [Documentation](https://github.com/nginxinc/kubernetes-ingress/tree/main/docs/content). [Examples](https://github.com/nginxinc/kubernetes-ingress/tree/main/examples). |
7373

7474
## Contacts

Diff for: deployments/daemon-set/nginx-ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
serviceAccountName: nginx-ingress
2020
automountServiceAccountToken: true
2121
containers:
22-
- image: nginx/nginx-ingress:2.4.2
22+
- image: nginx/nginx-ingress:3.0.0
2323
imagePullPolicy: IfNotPresent
2424
name: nginx-ingress
2525
ports:

Diff for: deployments/daemon-set/nginx-plus-ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
serviceAccountName: nginx-ingress
2020
automountServiceAccountToken: true
2121
containers:
22-
- image: nginx-plus-ingress:2.4.2
22+
- image: nginx-plus-ingress:3.0.0
2323
imagePullPolicy: IfNotPresent
2424
name: nginx-plus-ingress
2525
ports:

Diff for: deployments/deployment/nginx-ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
serviceAccountName: nginx-ingress
2121
automountServiceAccountToken: true
2222
containers:
23-
- image: nginx/nginx-ingress:2.4.2
23+
- image: nginx/nginx-ingress:3.0.0
2424
imagePullPolicy: IfNotPresent
2525
name: nginx-ingress
2626
ports:

Diff for: deployments/deployment/nginx-plus-ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
serviceAccountName: nginx-ingress
2121
automountServiceAccountToken: true
2222
containers:
23-
- image: nginx-plus-ingress:2.4.2
23+
- image: nginx-plus-ingress:3.0.0
2424
imagePullPolicy: IfNotPresent
2525
name: nginx-plus-ingress
2626
ports:

Diff for: deployments/helm-chart-dos-arbitrator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ appVersion: 1.1.0
44
apiVersion: v1
55
kubeVersion: ">= 1.21.0-0"
66
description: NGINX App Protect Dos arbitrator
7-
icon: https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v2.4.2/deployments/helm-chart-dos-arbitrator/chart-icon.png
7+
icon: https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.0.0/deployments/helm-chart-dos-arbitrator/chart-icon.png
88
home: https://github.com/nginxinc/kubernetes-ingress
99
sources:
10-
- https://github.com/nginxinc/kubernetes-ingress/tree/v2.4.2/deployments/helm-chart-dos-arbitrator
10+
- https://github.com/nginxinc/kubernetes-ingress/tree/v3.0.0/deployments/helm-chart-dos-arbitrator
1111
keywords:
1212
- appprotect-dos
1313
- nginx

Diff for: deployments/helm-chart-dos-arbitrator/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This step is required if you're installing the chart using its sources. Addition
1616

1717
1. Clone the Ingress Controller repo:
1818
```console
19-
$ git clone https://github.com/nginxinc/kubernetes-ingress.git --branch v2.4.2
19+
$ git clone https://github.com/nginxinc/kubernetes-ingress.git --branch v3.0.0
2020
```
2121
2. Change your working directory to /deployments/helm-chart-dos-arbitrator:
2222
```console

Diff for: deployments/helm-chart/Chart.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
apiVersion: v2
22
name: nginx-ingress
3-
version: 0.15.2
4-
appVersion: 2.4.2
3+
version: 0.16.0
4+
appVersion: 3.0.0
55
kubeVersion: ">= 1.21.0-0"
66
type: application
77
description: NGINX Ingress Controller
8-
icon: https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v2.4.2/deployments/helm-chart/chart-icon.png
8+
icon: https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.0.0/deployments/helm-chart/chart-icon.png
99
home: https://github.com/nginxinc/kubernetes-ingress
1010
sources:
11-
- https://github.com/nginxinc/kubernetes-ingress/tree/v2.4.2/deployments/helm-chart
11+
- https://github.com/nginxinc/kubernetes-ingress/tree/v3.0.0/deployments/helm-chart
1212
keywords:
1313
- ingress
1414
- nginx

Diff for: deployments/helm-chart/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This step is required if you're installing the chart using its sources. Addition
2323

2424
1. Clone the Ingress Controller repo:
2525
```console
26-
$ git clone https://github.com/nginxinc/kubernetes-ingress --branch v2.4.2
26+
$ git clone https://github.com/nginxinc/kubernetes-ingress --branch v3.0.0
2727
```
2828
**Note**: If you want to use the experimental repository (`edge`), remove the `--branch` flag and value.
2929

@@ -159,7 +159,7 @@ Parameter | Description | Default
159159
`controller.logLevel` | The log level of the Ingress Controller. | 1
160160
`controller.image.digest ` | The image digest of the Ingress Controller. | None
161161
`controller.image.repository` | The image repository of the Ingress Controller. | nginx/nginx-ingress
162-
`controller.image.tag` | The tag of the Ingress Controller image. | 2.4.2
162+
`controller.image.tag` | The tag of the Ingress Controller image. | 3.0.0
163163
`controller.image.pullPolicy` | The pull policy for the Ingress Controller image. | IfNotPresent
164164
`controller.lifecycle` | The lifecycle of the Ingress Controller pods. | {}
165165
`controller.customConfigMap` | The name of the custom ConfigMap used by the Ingress Controller. If set, then the default config is ignored. | ""

Diff for: deployments/helm-chart/values-icp.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ controller:
33
nginxplus: true
44
image:
55
repository: mycluster.icp:8500/kube-system/nginx-plus-ingress
6-
tag: "2.4.2"
6+
tag: "3.0.0"
77
nodeSelector:
88
beta.kubernetes.io/arch: "amd64"
99
proxy: true

Diff for: deployments/helm-chart/values-plus.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ controller:
22
nginxplus: true
33
image:
44
repository: nginx-plus-ingress
5-
tag: "2.4.2"
5+
tag: "3.0.0"

Diff for: deployments/helm-chart/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ controller:
5555
repository: nginx/nginx-ingress
5656

5757
## The tag of the Ingress Controller image.
58-
tag: "2.4.2"
58+
tag: "3.0.0"
5959

6060
## The digest of the Ingress Controller image.
6161
## If digest is specified it has precedence over tag and will be used instead

Diff for: docs/content/app-protect-dos/configuration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ docs: "DOCS-580"
99
---
1010

1111
This document describes how to configure the NGINX App Protect DoS module
12-
> Check out the complete [NGINX Ingress Controller with App Protect DoS example for VirtualServer](https://github.com/nginxinc/kubernetes-ingress/tree/v2.4.2/examples/custom-resources/app-protect-dos) and the [NGINX Ingress Controller with App Protect DoS example for Ingress](https://github.com/nginxinc/kubernetes-ingress/tree/v2.4.2/examples/ingress-resources/app-protect-dos).
12+
> Check out the complete [NGINX Ingress Controller with App Protect DoS example for VirtualServer](https://github.com/nginxinc/kubernetes-ingress/tree/v3.0.0/examples/custom-resources/app-protect-dos) and the [NGINX Ingress Controller with App Protect DoS example for Ingress](https://github.com/nginxinc/kubernetes-ingress/tree/v3.0.0/examples/ingress-resources/app-protect-dos).
1313
1414
## App Protect DoS Configuration
1515

Diff for: docs/content/app-protect-dos/installation-with-helm-dos-arbitrator.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This step is required if you're installing the chart using its sources. Addition
1919

2020
1. Clone the Ingress Controller repo:
2121
```console
22-
$ git clone https://github.com/nginxinc/kubernetes-ingress.git --branch v2.4.2
22+
$ git clone https://github.com/nginxinc/kubernetes-ingress.git --branch v3.0.0
2323
```
2424
2. Change your working directory to /deployments/helm-chart-dos-arbitrator:
2525
```console

Diff for: docs/content/app-protect-dos/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This document provides an overview of the steps required to use NGINX App Protec
1919
* It is also possible to build your own image and push it to your private Docker registry by following the instructions from [here](/nginx-ingress-controller/installation/building-ingress-controller-image).
2020
2. Clone the Ingress Controller repo:
2121
```
22-
$ git clone https://github.com/nginxinc/kubernetes-ingress.git --branch v2.4.2
22+
$ git clone https://github.com/nginxinc/kubernetes-ingress.git --branch v3.0.0
2323
$ cd kubernetes-ingress
2424
```
2525
@@ -66,4 +66,4 @@ Take the steps below to set up and deploy the NGINX Ingress Controller and App P
6666
3. Enable the App Protect Dos module by adding the `enable-app-protect-dos` [cli argument](/nginx-ingress-controller/configuration/global-configuration/command-line-arguments/#cmdoption-enable-app-protect-dos) to your Deployment or DaemonSet file.
6767
4. [Deploy the Ingress Controller](/nginx-ingress-controller/installation/installation-with-manifests/#3-deploy-the-ingress-controller).
6868
69-
For more information, see the [Configuration guide](/nginx-ingress-controller/app-protect-dos/configuration),the [NGINX Ingress Controller with App Protect DoS example for VirtualServer](https://github.com/nginxinc/kubernetes-ingress/tree/v2.4.2/examples/custom-resources/app-protect-dos) and the [NGINX Ingress Controller with App Protect DoS example for Ingress](https://github.com/nginxinc/kubernetes-ingress/tree/v2.4.2/examples/ingress-resources/app-protect-dos).
69+
For more information, see the [Configuration guide](/nginx-ingress-controller/app-protect-dos/configuration),the [NGINX Ingress Controller with App Protect DoS example for VirtualServer](https://github.com/nginxinc/kubernetes-ingress/tree/v3.0.0/examples/custom-resources/app-protect-dos) and the [NGINX Ingress Controller with App Protect DoS example for Ingress](https://github.com/nginxinc/kubernetes-ingress/tree/v3.0.0/examples/ingress-resources/app-protect-dos).

Diff for: docs/content/app-protect-waf/configuration.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ docs: "DOCS-578"
99
aliases: ["/app-protect/configuration/"]
1010
---
1111

12-
> Check out the complete NGINX Ingress Controller with App Protect WAF example resources on GitHub [for VirtualServer resources](https://github.com/nginxinc/kubernetes-ingress/tree/v2.4.2/examples/custom-resources/app-protect-waf) and [for Ingress resources](https://github.com/nginxinc/kubernetes-ingress/tree/v2.4.2/examples/ingress-resources/app-protect-waf).
12+
> Check out the complete NGINX Ingress Controller with App Protect WAF example resources on GitHub [for VirtualServer resources](https://github.com/nginxinc/kubernetes-ingress/tree/v3.0.0/examples/custom-resources/app-protect-waf) and [for Ingress resources](https://github.com/nginxinc/kubernetes-ingress/tree/v3.0.0/examples/ingress-resources/app-protect-waf).
1313
1414
## Global Configuration
1515

@@ -246,8 +246,8 @@ These are the typical steps to deploy an OpenAPI protection Policy in NGINX Ingr
246246
3. Make other custom changes if needed (e.g. enable Data Guard protection).
247247
4. Use a tool to convert the result to YAML. There are many, for example: [`yq` utility](https://github.com/mikefarah/yq).
248248
5. Add the YAML properties to create an `APPolicy` Custom Resource putting the policy itself (as in step 4) within the `spec` property of the Custom Resource. Refer to [App Protect Policies](#app-protect-policies) section above.
249-
6. Create a `Policy` object which references the `APPolicy` Custom Resource as in [this example](https://github.com/nginxinc/kubernetes-ingress/blob/v2.4.2/examples/custom-resources/app-protect-waf/waf.yaml).
250-
7. Finally, attach the `Policy` object to a `VirtualServer` resource as in [this example](https://github.com/nginxinc/kubernetes-ingress/blob/v2.4.2/examples/custom-resources/app-protect-waf/virtual-server.yaml).
249+
6. Create a `Policy` object which references the `APPolicy` Custom Resource as in [this example](https://github.com/nginxinc/kubernetes-ingress/blob/v3.0.0/examples/custom-resources/app-protect-waf/waf.yaml).
250+
7. Finally, attach the `Policy` object to a `VirtualServer` resource as in [this example](https://github.com/nginxinc/kubernetes-ingress/blob/v3.0.0/examples/custom-resources/app-protect-waf/virtual-server.yaml).
251251

252252
**Note**: You need to make sure that the server where the resource files are located is always available when you are compiling your policy.
253253

@@ -383,7 +383,7 @@ The `link` option is also available in the `openApiFileReference` property and i
383383
## Configuration in NGINX Plus Ingress Controller using Virtual Server Resource
384384
In this example we deploy the NGINX Plus Ingress Controller with NGINX App Protect WAF, a simple web application and then configure load balancing and WAF protection for that application using the VirtualServer resource.
385385

386-
**Note:** You can find the example, and the files referenced, on [GitHub](https://github.com/nginxinc/kubernetes-ingress/tree/v2.4.2/examples/custom-resources/app-protect-waf).
386+
**Note:** You can find the example, and the files referenced, on [GitHub](https://github.com/nginxinc/kubernetes-ingress/tree/v3.0.0/examples/custom-resources/app-protect-waf).
387387

388388
## Prerequisites
389389

@@ -402,37 +402,37 @@ In this example we deploy the NGINX Plus Ingress Controller with NGINX App Prote
402402

403403
Create the application deployment and service:
404404
```
405-
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v2.4.2/examples/custom-resources/app-protect-waf/webapp.yaml
405+
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.0.0/examples/custom-resources/app-protect-waf/webapp.yaml
406406
```
407407

408408
### Step 2. Deploy the AP Policy
409409

410410
1. Create the syslog service and pod for the App Protect security logs:
411411
```
412-
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v2.4.2/examples/custom-resources/app-protect-waf/syslog.yaml
412+
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.0.0/examples/custom-resources/app-protect-waf/syslog.yaml
413413
```
414414

415415
2. Create the User Defined Signature, App Protect WAF policy, and log configuration:
416416

417417
```
418-
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v2.4.2/examples/custom-resources/app-protect-waf/ap-apple-uds.yaml
419-
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v2.4.2/examples/custom-resources/app-protect-waf/ap-dataguard-alarm-policy.yaml
420-
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v2.4.2/examples/custom-resources/app-protect-waf/ap-logconf.yaml
418+
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.0.0/examples/custom-resources/app-protect-waf/ap-apple-uds.yaml
419+
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.0.0/examples/custom-resources/app-protect-waf/ap-dataguard-alarm-policy.yaml
420+
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.0.0/examples/custom-resources/app-protect-waf/ap-logconf.yaml
421421
```
422422

423423
### Step 3 - Deploy the WAF Policy
424424

425425
Create the WAF policy
426426
```
427-
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v2.4.2/examples/custom-resources/app-protect-waf/waf.yaml
427+
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.0.0/examples/custom-resources/app-protect-waf/waf.yaml
428428
```
429429
Note the App Protect configuration settings in the Policy resource. They enable WAF protection by configuring App Protect with the policy and log configuration created in the previous step.
430430
431431
### Step 4 - Configure Load Balancing
432432
433433
1. Create the VirtualServer Resource:
434434
```
435-
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v2.4.2/examples/custom-resources/app-protect-waf/virtual-server.yaml
435+
$ kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.0.0/examples/custom-resources/app-protect-waf/virtual-server.yaml
436436
```
437437
Note that the VirtualServer references the policy waf-policy created in Step 3.
438438
@@ -467,7 +467,7 @@ To access the application, curl the coffee and the tea services. We'll use the -
467467
468468
### Configuration Example of Virtual Server
469469
470-
Refer to github repo for [Virtual Server example](https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v2.4.2/examples/custom-resources/app-protect-waf/webapp.yaml).
470+
Refer to github repo for [Virtual Server example](https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.0.0/examples/custom-resources/app-protect-waf/webapp.yaml).
471471
472472
```yaml
473473
apiVersion: k8s.nginx.org/v1

0 commit comments

Comments
 (0)