39 lines
1021 B
YAML
39 lines
1021 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: calico-typha-horizontal-autoscaler
|
|
namespace: kube-system
|
|
labels:
|
|
k8s-app: calico-typha-autoscaler
|
|
addonmanager.kubernetes.io/mode: Reconcile
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
k8s-app: calico-typha-autoscaler
|
|
template:
|
|
metadata:
|
|
labels:
|
|
k8s-app: calico-typha-autoscaler
|
|
spec:
|
|
priorityClassName: system-cluster-critical
|
|
securityContext:
|
|
supplementalGroups: [ 65534 ]
|
|
fsGroup: 65534
|
|
containers:
|
|
- image: k8s.gcr.io/cluster-proportional-autoscaler-amd64:1.7.1
|
|
name: autoscaler
|
|
command:
|
|
- /cluster-proportional-autoscaler
|
|
- --namespace=kube-system
|
|
- --configmap=calico-typha-horizontal-autoscaler
|
|
- --target=deployment/calico-typha
|
|
- --logtostderr=true
|
|
- --v=2
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
limits:
|
|
cpu: 10m
|
|
serviceAccountName: typha-cpha
|