File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
telemetry_chargeback/tasks Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 22- name : " Check manifest {{ manifest.name }}"
33 vars :
44 expected_count : " {{ manifest.expected_number | default(1) | int }}"
5- actual_count : " {{ available_manifests | select('search', '^'+ manifest.name ) | length }}"
5+ actual_count : " {{ available_manifests | select('search', '^' + manifest.name) | length }}"
66 block :
77 - name : |
88 TEST Get {{ manifest.name }} {{ expected_count }} packagemanifest
Original file line number Diff line number Diff line change 11---
22- name : " Get rating summary help 2"
33 ansible.builtin.command :
4- cmd : " {{ openstack_cmd }} --rating-api-version 2 rating summary get -h"
4+ # cmd: "{{ openstack_cmd }} --rating-api-version 2 rating summary get -h"
5+ cmd : " {{ openstack_cmd }} rating summary get -h"
56 register : get_help2
67 changed_when : false
78
1112
1213- name : " TEST Get Rate and Qty by type from CloudKitty {{ item }}"
1314 ansible.builtin.command :
14- cmd : " {{ openstack_cmd }} --rating-api-version 2 rating summary get -g type"
15+ cmd : " {{ openstack_cmd }} rating summary get -g type"
1516 register : cost_totals_by_type
1617 changed_when : true
1718 failed_when : cost_totals_by_type.rc != 0
2930
3031- name : " TEST Get Rate and Qty Summary from CloudKitty {{ item }}"
3132 ansible.builtin.command :
32- cmd : " {{ openstack_cmd }} --rating-api-version 2 rating summary get"
33+ cmd : " {{ openstack_cmd }} rating summary get"
3334 register : cost_totals_summary
3435 changed_when : true
3536 failed_when : cost_totals_summary.rc != 0
You can’t perform that action at this time.
0 commit comments