Skip to content

Commit

Permalink
test wildcard ingress
Browse files Browse the repository at this point in the history
  • Loading branch information
robj committed Oct 19, 2023
1 parent a429da8 commit d8aaf7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .cicd/manifests/ingress-wildcard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
namespace: {{.Values.namespace}}
name: *.{{.Values.appName}}-{{.Values.envName}}-ingress
name: "*.{{.Values.appName}}-{{.Values.envName}}-ingress"
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
spec:
tls:
- hosts:
- *.{{.Values.ingressDomainName}}
secretName: *.{{.Values.appName}}-{{.Values.envName}}-tls
- "*.{{.Values.ingressDomainName}}"
secretName: "*.{{.Values.appName}}-{{.Values.envName}}-tls"
rules:
- host: *.{{.Values.ingressDomainName}}
- host: "*.{{.Values.ingressDomainName}}"
http:
paths:
- path: /
Expand Down

0 comments on commit d8aaf7f

Please sign in to comment.