Merge pull request #113858 from aojea/ingress_nightly

Fix kubernetes/gce-ingress jobs
This commit is contained in:
Kubernetes Prow Robot 2022-11-15 10:56:47 -08:00 committed by GitHub
commit 591fc0d8ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -67,3 +67,7 @@ rules:
- apiGroups: ["coordination.k8s.io"] - apiGroups: ["coordination.k8s.io"]
resources: ["leases"] resources: ["leases"]
verbs: ["get","create","update"] verbs: ["get","create","update"]
# GLBC uses endpoint slices
- apiGroups: ["discovery.k8s.io"]
resources: ["endpointslices"]
verbs: ["get","list", "watch"]

View File

@ -15,7 +15,7 @@ spec:
terminationGracePeriodSeconds: 600 terminationGracePeriodSeconds: 600
hostNetwork: true hostNetwork: true
containers: containers:
- image: gcr.io/k8s-ingress-image-push/ingress-gce-glbc-amd64:v1.12.0 - image: gcr.io/k8s-ingress-image-push/ingress-gce-glbc-amd64:v1.20.1
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /healthz path: /healthz
@ -56,6 +56,7 @@ spec:
- --running-in-cluster=false - --running-in-cluster=false
- --config-file-path=/etc/gce.conf - --config-file-path=/etc/gce.conf
- --healthz-port=8086 - --healthz-port=8086
- --enable-endpoint-slices
- --gce-ratelimit=ga.Operations.Get,qps,10,100 - --gce-ratelimit=ga.Operations.Get,qps,10,100
- --gce-ratelimit=alpha.Operations.Get,qps,10,100 - --gce-ratelimit=alpha.Operations.Get,qps,10,100
- --gce-ratelimit=beta.Operations.Get,qps,10,100 - --gce-ratelimit=beta.Operations.Get,qps,10,100