Skip to content

Commit

Permalink
k8s-infra-prow: add ingress and GKE managed certificate
Browse files Browse the repository at this point in the history
Signed-off-by: Arnaud Meukam <[email protected]>
  • Loading branch information
ameukam committed Jun 19, 2021
1 parent 0464e48 commit 30b4b55
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
22 changes: 22 additions & 0 deletions k8s-infra-prow.k8s.io/cluster/prow_ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: k8s-infra-prow-k8s-io
namespace: prow
annotations:
kubernetes.io/ingress.class: "gce"
kubernetes.io/ingress.global-static-ip-name: k8s-infra-prow
networking.gke.io/managed-certificates: k8s-infra-prow-k8s-io
spec:
rules:
- host: k8s-infra-prow.k8s.io
http:
paths:
- path: /*
backend:
serviceName: deck
servicePort: 80
- path: /hook
backend:
serviceName: hook
servicePort: 8888
8 changes: 8 additions & 0 deletions k8s-infra-prow.k8s.io/cluster/prow_managedcertificate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: networking.gke.io/v1
kind: ManagedCertificate
metadata:
name: k8s-infra-prow-k8s-io
namespace: prow
spec:
domains:
- k8s-infra-prow.k8s.io

0 comments on commit 30b4b55

Please sign in to comment.