gce.yml 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. ---
  2. - name: check variables are passed
  3. fail:
  4. msg: "Ensure correct variables are defined for gcp. {{ item }}"
  5. when: item == ''
  6. with_items:
  7. - "{{ openshift_gcp_project }}"
  8. - "{{ openshift_gcp_prefix }}"
  9. # Work around ini_file create option in 2.2 which defaults to no
  10. - name: Create cloud config file
  11. file:
  12. dest: "{{ openshift.common.config_base }}/cloudprovider/gce.conf"
  13. state: touch
  14. mode: 0660
  15. owner: root
  16. group: root
  17. changed_when: false
  18. - name: Configure GCE cloud provider
  19. ini_file:
  20. dest: "{{ openshift.common.config_base }}/cloudprovider/gce.conf"
  21. section: Global
  22. option: "{{ item.key }}"
  23. value: "{{ item.value }}"
  24. with_items:
  25. - { key: 'project-id', value: '{{ openshift_gcp_project }}' }
  26. - { key: 'network-name', value: '{{ openshift_gcp_network_name }}' }
  27. - { key: 'node-tags', value: '{{ openshift_gcp_prefix }}ocp' }
  28. - { key: 'node-instance-prefix', value: '{{ openshift_gcp_prefix }}' }
  29. - { key: 'multizone', value: '{{ openshift_gcp_multizone | string }}' }