Unverified Commit d07b8548 authored by Chakshu Gautam's avatar Chakshu Gautam Committed by GitHub
Browse files

Add private ingress for uci-transport-socket (#3029)

Showing with 5 additions and 0 deletions
+5 -0
......@@ -188,6 +188,11 @@ data:
rewrite ^/uci-service/(.*) /$1 break;
proxy_pass $target;
}
location /uci-transport-socket/ {
set $target http://uci-transport-socket.{{ .Values.namespace }}.svc.cluster.local:3000;
rewrite ^/uci-transport-socket/(.*) /$1 break;
proxy_pass $target;
}
location /ml-survey/ {
set $target http://ml-survey-service.{{ .Values.namespace }}.svc.cluster.local:3000;
rewrite ^/ml-survey/(.*) /$1 break;
......
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