verify_etcd3_backend.yml 760 B

12345678910111213141516171819202122
  1. ---
  2. - name: Verify all masters has etcd3 storage backend set
  3. hosts: oo_masters_to_config
  4. gather_facts: no
  5. roles:
  6. - lib_utils
  7. tasks:
  8. - name: Read master storage backend setting
  9. yedit:
  10. state: list
  11. src: /etc/origin/master/master-config.yaml
  12. key: kubernetesMasterConfig.apiServerArguments.storage-backend
  13. register: _storage_backend
  14. - fail:
  15. msg: "Storage backend in /etc/origin/master/master-config.yaml must be set to 'etcd3' before the upgrade can continue"
  16. when:
  17. # assuming the master-config.yml is properly configured, i.e. the value is a list
  18. - _storage_backend.result | default([], true) | length == 0 or _storage_backend.result[0] != "etcd3"
  19. - debug:
  20. msg: "Storage backend is set to etcd3"