Skip to content

Commit cd48e61

Browse files
Merge dev to dev-to-kube-1.33
2 parents bb55434 + 59ec3f4 commit cd48e61

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

.zappr.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ approvals:
2121
- demonCoder95
2222
- MustafaSaber
2323
- vlktna
24+
- tcondeixa
2425

2526
# mandatory pull request labels
2627
pull-request:

cluster/config-defaults.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,8 @@ etcd_instance_type: "t3.medium"
765765

766766
etcd_scalyr_key: ""
767767

768-
etcd_ami: {{ amiID "zalando-ubuntu-etcd-production-v3.5.18-amd64-main-35" "861068367966"}}
768+
etcd_ami_amd64: {{ amiID "zalando-ubuntu-etcd-production-v3.5.22-amd64-main-38" "861068367966"}}
769+
etcd_ami_arm64: {{ amiID "zalando-ubuntu-etcd-production-v3.5.22-arm64-main-38" "861068367966"}}
769770

770771
cluster_dns: "coredns"
771772
coredns_log_svc_names: "true"

cluster/etcd/stack.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ Metadata:
66
"kubernetes:component": "etcd-cluster"
77
application: "kubernetes"
88
component: "etcd-cluster"
9+
Mappings:
10+
Images:
11+
{{.Cluster.Region}}:
12+
# Use the etcd instance architecture to construct the config item name that we're using to get the AMI name.
13+
MachineImage: '{{ index .Cluster.ConfigItems (print "etcd_ami_" .Values.etcd_instance_type_info.Architecture) }}'
914
Outputs:
1015
EtcdClusterSecurityGroupId:
1116
Description: "Security Group ID of the etcd cluster"
@@ -53,7 +58,10 @@ Resources:
5358
IamInstanceProfile:
5459
Name: !Ref AppServerInstanceProfile
5560
InstanceInitiatedShutdownBehavior: terminate
56-
ImageId: {{.Cluster.ConfigItems.etcd_ami}}
61+
ImageId: !FindInMap
62+
- Images
63+
- !Ref 'AWS::Region'
64+
- MachineImage
5765
InstanceType: {{.Cluster.ConfigItems.etcd_instance_type}}
5866
UserData:
5967
Fn::Base64: !Sub |

cluster/manifests/03-kube-aws-iam-controller/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ spec:
2727
hostNetwork: true
2828
containers:
2929
- name: kube-aws-iam-controller
30-
image: container-registry.zalando.net/teapot/kube-aws-iam-controller:v0.3.0-82-g83974de
30+
image: container-registry.zalando.net/teapot/kube-aws-iam-controller:v0.3.0-84-g8bed7f3
3131
env:
3232
- name: AWS_DEFAULT_REGION
3333
value: "{{.Cluster.Region}}"

cluster/manifests/ingress-controller/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# {{ $image := "926694233939.dkr.ecr.eu-central-1.amazonaws.com/production_namespace/teapot/kube-ingress-aws-controller:v0.18.7" }}
1+
# {{ $image := "926694233939.dkr.ecr.eu-central-1.amazonaws.com/production_namespace/teapot/kube-ingress-aws-controller:v0.18.8" }}
22
# {{ $version := index (split $image ":") 1 }}
33

44
apiVersion: apps/v1

cluster/manifests/kube-state-metrics/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ spec:
2727
serviceAccountName: kube-state-metrics
2828
containers:
2929
- name: kube-state-metrics
30-
image: container-registry.zalando.net/teapot/kube-state-metrics:v2.15.0-master-29
30+
image: container-registry.zalando.net/teapot/kube-state-metrics:v2.16.0-master-30
3131
args:
3232
- --resources=certificatesigningrequests,configmaps,cronjobs,daemonsets,deployments,endpoints,horizontalpodautoscalers,ingresses,jobs,limitranges,mutatingwebhookconfigurations,namespaces,networkpolicies,nodes,persistentvolumeclaims,persistentvolumes,poddisruptionbudgets,pods,replicasets,replicationcontrollers,resourcequotas,secrets,services,statefulsets,storageclasses,validatingwebhookconfigurations,volumeattachments
3333
- --metric-labels-allowlist=pods=[{{.Cluster.ConfigItems.observability_metrics_pods_labels}}],ingresses=[{{.Cluster.ConfigItems.observability_metrics_ingresses_labels}}],nodes=[topology.kubernetes.io/zone,node.kubernetes.io/instance-type,node.kubernetes.io/node-pool,node.kubernetes.io/role,node.kubernetes.io/profile,dedicated]

0 commit comments

Comments
 (0)