Koschei: don't quote numbers to avoid conversion to string

This commit is contained in:
Mikolaj Izdebski 2019-02-06 17:58:02 +01:00
parent f9507a0a2d
commit cb36fd9ced

View file

@ -43,10 +43,10 @@
template: backend-deployment.yml
objectname: "{{ item.name }}-deployment.yml"
service: "{{ item.name }}"
min_cpu: "{{ item.cpu[0] }}"
max_cpu: "{{ item.cpu[1] }}"
min_mem: "{{ item.memory[0] }}"
max_mem: "{{ item.memory[1] }}"
min_cpu: {{ item.cpu[0] }}
max_cpu: {{ item.cpu[1] }}
min_mem: {{ item.memory[0] }}
max_mem: {{ item.memory[1] }}
with_items:
- { name: polling, cpu: [ 1.0, 1.5 ], memory: [ 256, 512 ] }
- { name: scheduler, cpu: [ 0.2, 0.5 ], memory: [ 64, 128 ] }