Update scaler-deployment.yaml CPU_LIMITS

setting CPU_LIMITS to '1' fixes the following log appearing every 60 seconds:
Running: kubectl set resources -n kube-system ds fluentd-gcp-v3.1.0 -c fluentd-gcp --requests=cpu=100m,memory=200Mi --limits=cpu=1000m,memory=500Mi
error: info: {extensions v1beta1 daemonsets} "fluentd-gcp-v3.1.0" was not changed

this PR does not change scaler's behaviour, pods are scaled correctly despite error in the logs
This commit is contained in:
Cezary Zawadka 2018-12-19 21:00:22 +01:00 committed by GitHub
parent ac6fa2235b
commit 7b3946776c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,6 +31,6 @@ spec:
- name: MEMORY_REQUEST
value: 200Mi
- name: CPU_LIMIT
value: 1000m
value: '1'
- name: MEMORY_LIMIT
value: 500Mi