Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions config/recipes/gclb/02-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ metadata:
annotations:
# Issue certificates for TLS hosts automatically
cert-manager.io/cluster-issuer: "selfsigning-issuer"
# GCP/GKE requires a domain name or the certificate will fail
# to parse with sslCertificateCouldNotParseCert.
cert-manager.io/common-name: test.com
# Disable HTTP traffic
kubernetes.io/ingress.allow-http: "false"
spec:
Expand All @@ -20,8 +23,8 @@ spec:
- host: "elasticsearch.hulk"
http:
paths:
- path: "/*"
pathType: Exact
- path: "/"
pathType: Prefix
backend:
service:
name: hulk-es-http
Expand All @@ -30,8 +33,8 @@ spec:
- host: "kibana.hulk"
http:
paths:
- path: "/*"
pathType: Exact
- path: "/"
pathType: Prefix
backend:
service:
name: hulk-kb-http
Expand Down