Skip to content

Commit

Permalink
update(config/prow): migrate ingress to networking.k8s.io/v1 api version
Browse files Browse the repository at this point in the history
Signed-off-by: Aldo Lacuku <[email protected]>
  • Loading branch information
alacuku authored and poiana committed Jul 16, 2024
1 parent 63237f9 commit 3b68902
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions config/prow/alb_ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: extensions/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
namespace: default
name: ing
namespace: default
annotations:
kubernetes.io/ingress.class: alb
alb.ingress.kubernetes.io/scheme: internet-facing
Expand All @@ -12,10 +12,16 @@ spec:
- http:
paths:
- path: /
pathType: ImplementationSpecific
backend:
serviceName: deck
servicePort: 80
service:
name: deck
port:
number: 80
- path: /hook
pathType: ImplementationSpecific
backend:
serviceName: hook
servicePort: 8888
service:
name: hook
port:
number: 8888

0 comments on commit 3b68902

Please sign in to comment.