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;