diff --git a/chart/templates/client-deployment.yaml b/chart/templates/client-deployment.yaml index 31e8ebd691a107739ab1aef34c1f885d09fe10d7..ae66fa84a8155d70d9b7b7f53bfc2cce92b3b9da 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 770ce77692b9b14137fd5567f05f1054cf01f0cc..deb7100d730f5726b987dae2d1bef6dd6b076d27 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 }}