From 7524226eb01783c60d6829844329d23e4c6e70b4 Mon Sep 17 00:00:00 2001 From: alexlebens Date: Wed, 29 May 2024 13:52:42 -0500 Subject: [PATCH] use default name --- .../cl01tl/applications/penpot/templates/config-map.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clusters/cl01tl/applications/penpot/templates/config-map.yaml b/clusters/cl01tl/applications/penpot/templates/config-map.yaml index dda118424..d3e89abd1 100644 --- a/clusters/cl01tl/applications/penpot/templates/config-map.yaml +++ b/clusters/cl01tl/applications/penpot/templates/config-map.yaml @@ -84,17 +84,17 @@ data: } location /api/export { - proxy_pass http://{{ include "penpot.fullname" . }}-exporter:6061; + proxy_pass http://penpot-exporter:6061; } location /api { - proxy_pass http://{{ include "penpot.fullname" . }}-backend:6060/api; + proxy_pass http://penpot-backend:6060/api; } location /ws/notifications { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; - proxy_pass http://{{ include "penpot.fullname" . }}-backend:6060/ws/notifications; + proxy_pass http://penpot-backend:6060/ws/notifications; } location @handle_redirect { @@ -118,7 +118,7 @@ data: } location /assets { - proxy_pass http://{{ include "penpot.fullname" . }}-backend:6060/assets; + proxy_pass http://penpot-backend:6060/assets; recursive_error_pages on; proxy_intercept_errors on; error_page 301 302 307 = @handle_redirect;