Skip to content

Commit

Permalink
Merge beta to beta-to-stable
Browse files Browse the repository at this point in the history
  • Loading branch information
zalando-teapot-robot authored Apr 5, 2022
2 parents b3295fe + 905f215 commit 7743e58
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions cluster/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1465,10 +1465,10 @@ Resources:
Effect: Allow
Resource: '*'
{{if ne "" .Cluster.ConfigItems.zmon_accessible_s3_buckets}}
{{range $bucket := split "," .Cluster.ConfigItems.zmon_accessible_s3_buckets}}
{{range $bucket := split .Cluster.ConfigItems.zmon_accessible_s3_buckets ","}}
- Action: 's3:GetObject'
Effect: Allow
Resource: '$bucket'
Resource: 'arn:aws:s3:::{{ $bucket }}/*'
{{end}}
{{end}}
- Action: 'sqs:GetQueueAttributes'
Expand Down
10 changes: 6 additions & 4 deletions cluster/config-defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,13 @@ skipper_readiness_init_delay_seconds: 1
skipper_liveness_init_delay_seconds: 30
{{end}}
# skipper termination settings
# grace period needs to be >timeouts and healtcheck wait
# wait for healtcheck needs to be <grace period and >skipper_idle_timeout_server
skipper_termination_grace_period: "360"
skipper_wait_for_healthcheck_interval: "355s"
# (10s LB healthcheck interval) * (3 unhealthy threshold + margin of 1 interval)
skipper_wait_for_healthcheck_interval: "40s"
# (350s of fixed NLB connection idle timeout) + (margin of 2s)
skipper_idle_timeout_server: "352s"
# wait long enough for LB to detect unhealthy node and all connections become idle,
# i.e. skipper_wait_for_healthcheck_interval + skipper_idle_timeout_server
skipper_termination_grace_period: "392"

# skipper redis settings
enable_dedicate_nodepool_skipper_redis: "false"
Expand Down
6 changes: 3 additions & 3 deletions cluster/manifests/prometheus/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
labels:
application: kubernetes
component: prometheus
version: v2.32.1
version: v2.34.0
{{- if ne .ConfigItems.prometheus_csi_ebs "true" }}
name: prometheus
{{- else }}
Expand All @@ -26,7 +26,7 @@ spec:
statefulset: prometheus
application: kubernetes
component: prometheus
version: v2.32.1
version: v2.34.0
annotations:
config/hash: {{"configmap.yaml" | manifestHash}}
logging/destination: "{{.Cluster.ConfigItems.log_destination_infra}}"
Expand Down Expand Up @@ -63,7 +63,7 @@ spec:
mountPath: /prometheus
containers:
- name: prometheus
image: registry.opensource.zalan.do/teapot/prometheus:v2.32.1
image: registry.opensource.zalan.do/teapot/prometheus:v2.34.0
args:
- "--config.file=/prometheus/prometheus.yaml"
- "--storage.tsdb.path=/prometheus/"
Expand Down
2 changes: 1 addition & 1 deletion cluster/node-pools/master-default/userdata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ write_files:
requests:
cpu: 100m
memory: 200Mi
- image: registry.opensource.zalan.do/teapot/admission-controller:master-143
- image: registry.opensource.zalan.do/teapot/admission-controller:master-144
name: admission-controller
lifecycle:
preStop:
Expand Down

0 comments on commit 7743e58

Please sign in to comment.