Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions .k8s/production/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: graph-docs
annotations:
cert-manager.io/issuer: "prod-cluster-origin-issuer"
cert-manager.io/issuer-kind: "ClusterOriginIssuer"
cert-manager.io/issuer-group: "cert-manager.k8s.cloudflare.com"
spec:
ingressClassName: nginx
tls:
- hosts:
- thegraph.com
secretName: thegraph-com-tls
rules:
- host: thegraph.com
http:
Expand Down
8 changes: 8 additions & 0 deletions .k8s/staging/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: graph-docs
annotations:
cert-manager.io/issuer: "staging-cluster-origin-issuer"
cert-manager.io/issuer-kind: "ClusterOriginIssuer"
cert-manager.io/issuer-group: "cert-manager.k8s.cloudflare.com"
spec:
ingressClassName: nginx
tls:
- hosts:
- staging.thegraph.com
secretName: staging-thegraph-com-tls
rules:
- host: staging.thegraph.com
http:
Expand Down
Loading