Skip to content

Commit

Permalink
Merge branch 'master' into mountSaTokenForPxToOciMonitorPod
Browse files Browse the repository at this point in the history
  • Loading branch information
ssz1997 authored Jun 24, 2024
2 parents 0a38507 + 82b23dd commit bef8ffb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/storage/portworx/component/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -336,18 +336,18 @@ func updateDataIfNginxConfigMap(cm *v1.ConfigMap, storageNs string) {
http {
server {
listen 8080;
server_name px-plugin-proxy.` + storageNs + `.svc.cluster.local;
server_name px-plugin-proxy.` + storageNs + `;
location / {
proxy_pass http://portworx-api.` + storageNs + `.svc.cluster.local:9021;
proxy_pass http://portworx-api.` + storageNs + `:9021;
}
}
server {
listen 8443 ssl;
server_name px-plugin-proxy.` + storageNs + `.svc.cluster.local;
server_name px-plugin-proxy.` + storageNs + `;
ssl_certificate /etc/nginx/certs/tls.crt;
ssl_certificate_key /etc/nginx/certs/tls.key;
location / {
proxy_pass http://portworx-api.` + storageNs + `.svc.cluster.local:9021;
proxy_pass http://portworx-api.` + storageNs + `:9021;
}
}
}`,
Expand Down

0 comments on commit bef8ffb

Please sign in to comment.