gce.yml 1.1 KB

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