Skip to content

Commit f7b77aa

Browse files
authored
Merge pull request #9576 from zalando-incubator/alpha-to-beta
alpha to beta
2 parents 440d7ee + 761e563 commit f7b77aa

22 files changed

+69
-58
lines changed

cluster/config-defaults.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -945,9 +945,6 @@ enable_default_sa: "false"
945945
vm_dirty_background_bytes: "67108864"
946946
vm_dirty_bytes: "134217728"
947947

948-
# Option to Enable FeatureGate TopologyAwareHints
949-
enable_topology_aware_hints: "false"
950-
951948
# Enable FeatureGate HPAScaleToZero
952949
enable_hpa_scale_to_zero: "true"
953950

@@ -1133,7 +1130,11 @@ open_sg_ingress_ranges: ""
11331130

11341131
# Each DNS label (subdomain) can be 63 octets or less (https://datatracker.ietf.org/doc/html/rfc1035#section-2.3.4)
11351132
# This custom value sets the subdomain max allowed length taking into consideration the 'cname-' prefix added by external-dns
1133+
{{ if eq .Cluster.Alias "stups-test" }}
1134+
subdomain_max_length: "100"
1135+
{{ else }}
11361136
subdomain_max_length: "57"
1137+
{{ end }}
11371138

11381139
# Network monitoring
11391140
network_monitoring_enabled: "false"

cluster/manifests/04-ebs-csi/controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ spec:
160160
allowPrivilegeEscalation: false
161161
readOnlyRootFilesystem: true
162162
- name: liveness-probe
163-
image: container-registry.zalando.net/teapot/livenessprobe:v2.14.0-eks-1-31-10-master-29
163+
image: container-registry.zalando.net/teapot/livenessprobe:v2.15.0-eks-1-32-14-master-30
164164
args:
165165
- --csi-address=/csi/csi.sock
166166
resources:

cluster/manifests/04-ebs-csi/node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ spec:
114114
allowPrivilegeEscalation: false
115115
readOnlyRootFilesystem: true
116116
- name: liveness-probe
117-
image: container-registry.zalando.net/teapot/livenessprobe:v2.14.0-eks-1-31-10-master-29
117+
image: container-registry.zalando.net/teapot/livenessprobe:v2.15.0-eks-1-32-14-master-30
118118
args:
119119
- --csi-address=/csi/csi.sock
120120
volumeMounts:

cluster/manifests/cluster-lifecycle-controller/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
serviceAccountName: cluster-lifecycle-controller
3030
containers:
3131
- name: cluster-lifecycle-controller
32-
image: container-registry.zalando.net/teapot/cluster-lifecycle-controller:master-52
32+
image: container-registry.zalando.net/teapot/cluster-lifecycle-controller:master-54
3333
args:
3434
- --drain-grace-period={{.Cluster.ConfigItems.drain_grace_period}}
3535
- --drain-min-pod-lifetime={{.Cluster.ConfigItems.drain_min_pod_lifetime}}

cluster/manifests/deployment-service/controller-statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
terminationGracePeriodSeconds: 300
3030
containers:
3131
- name: "deployment-service-controller"
32-
image: "container-registry.zalando.net/teapot/deployment-controller:master-254"
32+
image: "container-registry.zalando.net/teapot/deployment-controller:master-256"
3333
args:
3434
- "--config-namespace=kube-system"
3535
- "--decrypt-kms-alias-arn=arn:aws:kms:{{ .Cluster.Region }}:{{ .Cluster.InfrastructureAccount | getAWSAccountID }}:alias/deployment-secret"

cluster/manifests/fabric-gateway/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# {{ $image := "container-registry.zalando.net/gwproxy/fabric-gateway:master-330" }}
1+
# {{ $image := "container-registry.zalando.net/gwproxy/fabric-gateway:master-331" }}
22
# {{ $version := index (split $image ":") 1 }}
33
apiVersion: apps/v1
44
kind: Deployment

cluster/manifests/kube-proxy/configmap.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ data:
2323
tcpEstablishedTimeout: 24h0m0s
2424
enableProfiling: false
2525
featureGates:
26-
TopologyAwareHints: {{ .Cluster.ConfigItems.enable_topology_aware_hints }}
2726
SizeMemoryBackedVolumes: {{ .Cluster.ConfigItems.enable_size_memory_backed_volumes }}
2827
{{- if eq .Cluster.ConfigItems.enable_image_volumes "true" }}
2928
ImageVolume: true

cluster/manifests/kubernetes-lifecycle-metrics/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
serviceAccountName: kubernetes-lifecycle-metrics
3333
containers:
3434
- name: kubernetes-lifecycle-metrics
35-
image: "container-registry.zalando.net/teapot/kubernetes-lifecycle-metrics:master-34"
35+
image: "container-registry.zalando.net/teapot/kubernetes-lifecycle-metrics:master-36"
3636
ports:
3737
- containerPort: 9090
3838
protocol: TCP

cluster/manifests/role-sync-controller/cronjob.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
restartPolicy: Never
3434
containers:
3535
- name: role-sync-controller
36-
image: container-registry.zalando.net/teapot/role-sync-controller:main-11
36+
image: container-registry.zalando.net/teapot/role-sync-controller:main-13
3737
args:
3838
- --subject-group=PowerUser
3939
- --subject-group=Manual

cluster/manifests/skipper/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{{/* image-updater-bot detects *image variables so use print to disable it for main image */}}
22

33
{{ $main_image := print "container-registry.zalando.net/teapot/skipper-internal:" "v0.22.43-1150" }}
4-
{{ $canary_image := "container-registry.zalando.net/teapot/skipper-internal:v0.22.43-1150" }}
4+
{{ $canary_image := "container-registry.zalando.net/teapot/skipper-internal:v0.22.52-1159" }}
55

66
{{/* Optional canary arguments separated by "[cf724afc]" to allow whitespaces, e.g. "-foo=has a whitespace[cf724afc]-baz=qux" */}}
77
{{ $canary_args := "" }}

0 commit comments

Comments
 (0)