summaryrefslogtreecommitdiffstats
path: root/roles/openshift_cloud_provider/tasks/gce.yml
blob: ee40489113bbaefc68d508c74e38d2da6fe70869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
# Work around ini_file create option in 2.2 which defaults to no
- name: Create cloud config file
  file:
    dest: "{{ openshift.common.config_base }}/cloudprovider/gce.conf"
    state: touch
    mode: 0660
    owner: root
    group: root
  changed_when: false

- name: Configure GCE cloud provider
  ini_file:
    dest: "{{ openshift.common.config_base }}/cloudprovider/gce.conf"
    section: Global
    option: multizone
    value: "true"