2017-08-24 09:09:52 +00:00
|
|
|
---
|
2017-02-28 14:56:00 +00:00
|
|
|
# Copyright 2016 The Kubernetes Authors.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-11-15 17:52:12 +00:00
|
|
|
apiVersion: apps/v1
|
2017-02-28 14:56:00 +00:00
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
2019-03-26 18:09:17 +00:00
|
|
|
name: dns-autoscaler{{ coredns_ordinal_suffix }}
|
2018-03-30 11:29:13 +00:00
|
|
|
namespace: kube-system
|
2017-02-28 14:56:00 +00:00
|
|
|
labels:
|
2019-03-26 18:09:17 +00:00
|
|
|
k8s-app: dns-autoscaler{{ coredns_ordinal_suffix }}
|
2017-02-28 14:56:00 +00:00
|
|
|
addonmanager.kubernetes.io/mode: Reconcile
|
|
|
|
spec:
|
2018-11-15 17:52:12 +00:00
|
|
|
selector:
|
|
|
|
matchLabels:
|
2019-03-26 18:09:17 +00:00
|
|
|
k8s-app: dns-autoscaler{{ coredns_ordinal_suffix }}
|
2017-02-28 14:56:00 +00:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
2019-03-26 18:09:17 +00:00
|
|
|
k8s-app: dns-autoscaler{{ coredns_ordinal_suffix }}
|
2018-11-15 17:52:12 +00:00
|
|
|
annotations:
|
2020-05-27 21:02:02 +00:00
|
|
|
seccomp.security.alpha.kubernetes.io/pod: 'runtime/default'
|
2017-02-28 14:56:00 +00:00
|
|
|
spec:
|
2021-05-25 20:40:43 +00:00
|
|
|
nodeSelector:
|
|
|
|
{{ dns_autoscaler_deployment_nodeselector}}
|
2018-09-25 14:50:22 +00:00
|
|
|
priorityClassName: system-cluster-critical
|
2019-04-04 07:36:51 +00:00
|
|
|
securityContext:
|
|
|
|
supplementalGroups: [ 65534 ]
|
|
|
|
fsGroup: 65534
|
2018-06-05 11:15:20 +00:00
|
|
|
nodeSelector:
|
2020-04-17 12:51:06 +00:00
|
|
|
kubernetes.io/os: linux
|
2017-09-05 05:23:12 +00:00
|
|
|
tolerations:
|
|
|
|
- effect: NoSchedule
|
2019-04-17 14:58:06 +00:00
|
|
|
key: node-role.kubernetes.io/master
|
2021-01-21 16:13:03 +00:00
|
|
|
- effect: NoSchedule
|
|
|
|
key: node-role.kubernetes.io/control-plane
|
2018-08-09 15:42:53 +00:00
|
|
|
affinity:
|
|
|
|
podAntiAffinity:
|
|
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
|
|
- topologyKey: "kubernetes.io/hostname"
|
|
|
|
labelSelector:
|
|
|
|
matchLabels:
|
2019-03-26 18:09:17 +00:00
|
|
|
k8s-app: dns-autoscaler{{ coredns_ordinal_suffix }}
|
2018-08-09 15:42:53 +00:00
|
|
|
nodeAffinity:
|
|
|
|
preferredDuringSchedulingIgnoredDuringExecution:
|
|
|
|
- weight: 100
|
|
|
|
preference:
|
|
|
|
matchExpressions:
|
2021-01-21 16:13:03 +00:00
|
|
|
- key: node-role.kubernetes.io/control-plane
|
2018-08-09 15:42:53 +00:00
|
|
|
operator: In
|
|
|
|
values:
|
2018-11-22 13:29:09 +00:00
|
|
|
- ""
|
2017-02-28 14:56:00 +00:00
|
|
|
containers:
|
|
|
|
- name: autoscaler
|
2018-11-15 09:28:03 +00:00
|
|
|
image: "{{ dnsautoscaler_image_repo }}:{{ dnsautoscaler_image_tag }}"
|
2017-02-28 14:56:00 +00:00
|
|
|
resources:
|
2017-08-24 09:09:52 +00:00
|
|
|
requests:
|
2020-04-29 06:34:25 +00:00
|
|
|
cpu: {{ dns_autoscaler_cpu_requests }}
|
|
|
|
memory: {{ dns_autoscaler_memory_requests }}
|
2020-07-13 09:50:34 +00:00
|
|
|
readinessProbe:
|
|
|
|
httpGet:
|
|
|
|
path: /healthz
|
|
|
|
port: 8080
|
|
|
|
scheme: HTTP
|
2017-02-28 14:56:00 +00:00
|
|
|
command:
|
2017-08-24 09:09:52 +00:00
|
|
|
- /cluster-proportional-autoscaler
|
2018-03-30 11:29:13 +00:00
|
|
|
- --namespace=kube-system
|
2018-11-15 17:52:12 +00:00
|
|
|
- --default-params={"linear":{"preventSinglePointFailure":{{ dns_prevent_single_point_failure }},"coresPerReplica":{{ dns_cores_per_replica }},"nodesPerReplica":{{ dns_nodes_per_replica }},"min":{{ dns_min_replicas }}}}
|
2017-08-24 09:09:52 +00:00
|
|
|
- --logtostderr=true
|
|
|
|
- --v=2
|
2019-03-26 18:09:17 +00:00
|
|
|
- --configmap=dns-autoscaler{{ coredns_ordinal_suffix }}
|
|
|
|
- --target=Deployment/coredns{{ coredns_ordinal_suffix }}
|
2018-11-15 17:52:12 +00:00
|
|
|
serviceAccountName: dns-autoscaler
|