From 13cdac242a27bfee14947d8cf778377c6680ff4b Mon Sep 17 00:00:00 2001 From: brandon Date: Sat, 3 Apr 2021 10:40:08 -0500 Subject: [PATCH] rid of host --- helm-guestbook/templates/ingress.yaml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/helm-guestbook/templates/ingress.yaml b/helm-guestbook/templates/ingress.yaml index d5d9907..1bdd9dc 100644 --- a/helm-guestbook/templates/ingress.yaml +++ b/helm-guestbook/templates/ingress.yaml @@ -9,23 +9,6 @@ metadata: {{- end }} spec: rules: - # host rule to only reach the desired pods (aka canary/preview) - - host: guestbook-desired.argoproj.io - http: - paths: - - backend: - serviceName: guestbook-canary-service - servicePort: {{ .Values.service.port }} - path: /* - # host rule to only reach the stable pods - - host: guestbook-stable.argoproj.io - http: - paths: - - backend: - serviceName: {{ template "helm-guestbook.fullname" . }} - servicePort: {{ .Values.service.port }} - path: /* - # default rule which omits host, and will split traffic between desired vs. stable - http: paths: - path: /*