From 8d7faa3ced8b56a188074485ad5b76775cc9150f Mon Sep 17 00:00:00 2001 From: Amarpreet Minhas Date: Sun, 8 Jan 2023 00:18:36 +0000 Subject: [PATCH] Migrate istio-ingress to chart --- .../istio-ingress.yaml | 57 ------------------- 1 file changed, 57 deletions(-) delete mode 100644 helm/apps/sudoscientist-go-backend/istio-ingress.yaml diff --git a/helm/apps/sudoscientist-go-backend/istio-ingress.yaml b/helm/apps/sudoscientist-go-backend/istio-ingress.yaml deleted file mode 100644 index 3110aa1..0000000 --- a/helm/apps/sudoscientist-go-backend/istio-ingress.yaml +++ /dev/null @@ -1,57 +0,0 @@ ---- -apiVersion: cert-manager.io/v1 -kind: Certificate -metadata: - name: sudoscientist-cert - namespace: istio-system -spec: - secretName: sudoscientist-cert - commonName: api.sudoscientist.com - dnsNames: - - api.sudoscientist.com - issuerRef: - name: route53-issuer - kind: ClusterIssuer - group: cert-manager.io -... ---- -apiVersion: networking.istio.io/v1beta1 -kind: Gateway -metadata: - name: sudoscientist-gateway - namespace: sudoscientist -spec: - selector: - istio: ingressgateway - servers: - - port: - number: 443 - name: https - protocol: HTTPS - tls: - mode: SIMPLE - credentialName: sudoscientist-cert - hosts: - - api.sudoscientist.com -... ---- -apiVersion: networking.istio.io/v1beta1 -kind: VirtualService -metadata: - name: sudoscientist-gateway - namespace: sudoscientist -spec: - hosts: - - api.sudoscientist.com - gateways: - - sudoscientist-gateway - http: - - match: - - uri: - prefix: / - route: - - destination: - port: - number: 80 - host: sudoscientist-sudoscientist-go-backend -...