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

OCPBUGS-19059: Enable ipv6 on monitoring-plugin nginx #2090

Merged
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions assets/monitoring-plugin/config-map.yaml
Expand Up @@ -9,6 +9,7 @@ data:
keepalive_timeout 65;
server {
listen 9443 ssl;
listen [::]:9443 ssl;
ssl_certificate /var/cert/tls.crt;
ssl_certificate_key /var/cert/tls.key;
root /usr/share/nginx/html;
Expand Down
1 change: 1 addition & 0 deletions jsonnet/components/monitoring-plugin.libsonnet
Expand Up @@ -23,6 +23,7 @@ function(params)
keepalive_timeout 65;
server {
listen %(nginxPort)d ssl;
listen [::]:%(nginxPort)d ssl;
ssl_certificate %(tlsPath)s/tls.crt;
ssl_certificate_key %(tlsPath)s/tls.key;
root /usr/share/nginx/html;
Expand Down