Skip to content

Clean up Agent values file and tests #7758

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

Merged
merged 9 commits into from
May 15, 2025
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
2 changes: 1 addition & 1 deletion .github/data/matrix-smoke-nap.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"image": "debian-plus-nap",
"type": "plus",
"nap_modules": "waf",
"marker": "agent",
"marker": "agentv2",
"platforms": "linux/amd64"
}
],
Expand Down
20 changes: 11 additions & 9 deletions charts/nginx-ingress/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -665,27 +665,29 @@ nginxServiceMesh:
nginxAgent:
## Enables NGINX Agent.
enable: false
logLevel: "error"

# Agent V2 configuration
## If nginxAgent.instanceGroup is not set the value of nginx-ingress.controller.fullname will be used
instanceGroup: ""
logLevel: "error"
## Syslog listener which NGINX Agent uses to accept messages from App Protect WAF
syslog:
host: "127.0.0.1"
port: 1514
napMonitoring:
collectorBufferSize: 50000
processorBufferSize: 50000
instanceManager:
# FQDN or IP for connecting to NGINX Instance Manager, e.g. nim.example.com
host: ""
grpcPort: 443
sni: ""
tls:
enabled: true
skipVerify: false
## kubernetes.io/tls secret with a TLS certificate and key for using mTLS between NGINX Agent and Instance Manager
secret: ""
## nginx.org/ca secret for verification of Instance Manager TLS
caSecret: ""
sni: ""
## Syslog listener which NGINX Agent uses to accept messages from App Protect WAF
syslog:
host: "127.0.0.1"
port: 1514
napMonitoring:
collectorBufferSize: 50000
processorBufferSize: 50000
## The name of a custom ConfigMap to use instead of the one provided by default
customConfigMap: ""
Loading