Skip to content

Commit

Permalink
Merge pull request #7893 from zalando-incubator/dev-to-eks
Browse files Browse the repository at this point in the history
dev to eks
  • Loading branch information
linki authored Jul 26, 2024
2 parents fd8a5db + cf7b74e commit 8fd83e2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions cluster/config-defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,9 @@ kube_proxy_verbose_level: "2"
flannel_cpu: "25m"
flannel_memory: "100Mi"

flannel_awaiter_cpu: "25m"
flannel_awaiter_memory: "50Mi"

# nvidia device plugin
nvidia_device_plugin_cpu: "10m"
nvidia_device_plugin_memory: "50Mi"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
terminationGracePeriodSeconds: 300
containers:
- name: "deployment-service-controller"
image: "container-registry.zalando.net/teapot/deployment-controller:master-222"
image: "container-registry.zalando.net/teapot/deployment-controller:master-223"
args:
- "--config-namespace=kube-system"
- "--decrypt-kms-alias-arn=arn:aws:kms:{{ .Cluster.Region }}:{{ .Cluster.InfrastructureAccount | getAWSAccountID }}:alias/deployment-secret"
Expand Down
8 changes: 4 additions & 4 deletions cluster/manifests/flannel/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ spec:
stdin: true
resources:
requests:
cpu: 25m
memory: 50Mi
cpu: "{{ .Cluster.ConfigItems.flannel_awaiter_cpu }}"
memory: "{{ .Cluster.ConfigItems.flannel_awaiter_memory }}"
ephemeral-storage: 256Mi
limits:
cpu: 25m
memory: 50Mi
cpu: "{{ .Cluster.ConfigItems.flannel_awaiter_cpu }}"
memory: "{{ .Cluster.ConfigItems.flannel_awaiter_memory }}"
startupProbe:
exec:
command:
Expand Down
2 changes: 1 addition & 1 deletion cluster/manifests/skipper/deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{ $internal_version := "v0.21.150-974" }}
{{ $canary_internal_version := "v0.21.150-974" }}
{{ $canary_internal_version := "v0.21.161-981" }}

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

0 comments on commit 8fd83e2

Please sign in to comment.