scale.yaml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. ---
  2. - command: >
  3. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig get {{object}}
  4. -o jsonpath='{.spec.replicas}' -n {{openshift_metrics_project}}
  5. register: replica_count
  6. failed_when: "replica_count.rc == 1 and 'exists' not in replica_count.stderr"
  7. when: not ansible_check_mode
  8. changed_when: no
  9. - command: >
  10. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig scale {{object}}
  11. --replicas={{desired}} -n {{openshift_metrics_project}}
  12. register: scale_result
  13. failed_when: scale_result.rc == 1 and 'exists' not in scale_result.stderr
  14. when:
  15. - replica_count.stdout != (desired | string)
  16. - not ansible_check_mode
  17. changed_when: no
  18. - name: Waiting for {{object}} to scale to {{desired}}
  19. command: >
  20. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig
  21. get {{object}} -n {{openshift_metrics_project|quote}} -o jsonpath='{.status.replicas}'
  22. register: replica_counts
  23. until: replica_counts.stdout.find("{{desired}}") != -1
  24. retries: 30
  25. delay: 10
  26. when:
  27. - replica_count.stdout != (desired | string)
  28. - not ansible_check_mode