Koschei: don't quote numbers to avoid conversion to string
This commit is contained in:
parent
f9507a0a2d
commit
cb36fd9ced
1 changed files with 4 additions and 4 deletions
|
@ -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 ] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue