Commit 47bd1d6c authored by Rajesh's avatar Rajesh
Browse files

fixing configmap mount for private nginx ingress

No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
...@@ -7,7 +7,7 @@ data: ...@@ -7,7 +7,7 @@ data:
location /learner/ { location /learner/ {
rewrite ^/learner/(.*) /$1 break; rewrite ^/learner/(.*) /$1 break;
proxy_pass http://learner; proxy_pass http://learner-service:9000;
} }
location /api/ { location /api/ {
rewrite ^/api/(.*) /$1 break; rewrite ^/api/(.*) /$1 break;
......
...@@ -23,7 +23,7 @@ spec: ...@@ -23,7 +23,7 @@ spec:
ports: ports:
- containerPort: 80 - containerPort: 80
volumeMounts: volumeMounts:
- mountPath: /etc/nginx/conf.d/ - mountPath: /etc/nginx/conf.d/default.conf
name: config-volume name: config-volume
subPath: default.conf subPath: default.conf
readOnly: true readOnly: true
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment