File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -713,6 +713,15 @@ audit_webhook_batch_max_size: "250"
713
713
kube2iam_cpu : " 25m"
714
714
kube2iam_memory : " 100Mi"
715
715
716
+ # configure whether kube2iam should only run on worker nodes.
717
+ # This depends on control_plane_asg_lifecycle_hook=false as kube-node-ready
718
+ # doesn't work without kube2iam.
719
+ {{if eq .Cluster.Environment "production"}}
720
+ kube2iam_worker_only : " false"
721
+ {{else}}
722
+ kube2iam_worker_only : " true"
723
+ {{end}}
724
+
716
725
# CIDR configuration for nodes and pods
717
726
# Changing this will change the number of nodes and pods we can schedule in the
718
727
# cluster: https://cloud.google.com/kubernetes-engine/docs/how-to/flexible-pod-cidr
Original file line number Diff line number Diff line change 21
21
annotations :
22
22
logging/destination : " {{.Cluster.ConfigItems.log_destination_infra}}"
23
23
spec :
24
+ {{- if and (eq .Cluster.ConfigItems.kube2iam_worker_only "true") (eq .Cluster.ConfigItems.control_plane_asg_lifecycle_hook "false") }}
25
+ nodeSelector :
26
+ node.kubernetes.io/role : worker
27
+ {{- end }}
24
28
dnsConfig :
25
29
options :
26
30
- name : ndots
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: StatefulSet
3
3
metadata :
4
4
labels :
5
5
application : skipper-ingress-redis
6
- version : v6 .2.7
6
+ version : v7 .2.4
7
7
annotations :
8
8
zalando.org/update-using-hpa-replicas : skipper-ingress-redis
9
9
name : skipper-ingress-redis
19
19
labels :
20
20
statefulset : skipper-ingress-redis
21
21
application : skipper-ingress-redis
22
- version : v6 .2.7
22
+ version : v7 .2.4
23
23
annotations :
24
24
cluster-autoscaler.kubernetes.io/safe-to-evict : " false"
25
25
logging/destination : " {{.Cluster.ConfigItems.log_destination_infra}}"
50
50
- skipper-ingress-redis
51
51
priorityClassName : " {{ .Cluster.ConfigItems.system_priority_class }}"
52
52
containers :
53
- - image : container-registry.zalando.net/library/redis-6 -alpine:6 -alpine-20220622
53
+ - image : container-registry.zalando.net/library/redis-7 -alpine:7 -alpine-20240226
54
54
name : skipper-ingress-redis
55
55
args :
56
56
- /usr/local/bin/docker-entrypoint.sh
You can’t perform that action at this time.
0 commit comments