node_cloud_config.yml 609 B

123456789101112
  1. ---
  2. - name: ensure the /etc/origin folder exists
  3. file: name=/etc/origin state=directory
  4. - name: configure gce cloud config options
  5. ini_file: dest=/etc/origin/cloudprovider/gce.conf section=Global option={{ item.key }} value={{ item.value }} state=present create=yes
  6. with_items:
  7. - { key: 'project-id', value: '{{ openshift_gcp_project }}' }
  8. - { key: 'network-name', value: '{{ openshift_gcp_network_name }}' }
  9. - { key: 'node-tags', value: '{{ openshift_gcp_prefix }}ocp' }
  10. - { key: 'node-instance-prefix', value: '{{ openshift_gcp_prefix }}' }
  11. - { key: 'multizone', value: 'false' }