From 33e32828e996ecea73f0b39eec70b391b1b1c71e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20Mei=C3=9Fl?= <stephan.meissl@eox.at> Date: Tue, 13 Oct 2020 14:33:27 +0200 Subject: [PATCH] fix client ingress --- chart/templates/client-deployment.yaml | 2 +- chart/templates/ingress.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/chart/templates/client-deployment.yaml b/chart/templates/client-deployment.yaml index 31e8ebd6..ae66fa84 100644 --- a/chart/templates/client-deployment.yaml +++ b/chart/templates/client-deployment.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "vs.fullname" . }}-client diff --git a/chart/templates/ingress.yaml b/chart/templates/ingress.yaml index 770ce776..deb7100d 100644 --- a/chart/templates/ingress.yaml +++ b/chart/templates/ingress.yaml @@ -43,12 +43,12 @@ spec: backend: serviceName: {{ $fullName }}-renderer servicePort: http + - path: /(.*) + backend: + serviceName: {{ $fullName }}-client + servicePort: http # - path: /cache/(.*) # backend: - # serviceName: cache - # servicePort: http - # - path: /(.*) - # backend: - # serviceName: client + # serviceName: {{ $fullName }}-cache # servicePort: http {{- end }} -- GitLab