diff options
| author | Andrew Butcher <abutcher@afrolegs.com> | 2016-09-26 14:20:13 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-26 14:20:13 -0400 | 
| commit | f7ba21be241e9a3f3354b44332611fe5095fc57f (patch) | |
| tree | 4f981163b3b792d2af3de610e66f4eac2a65f1f9 /playbooks/openstack/openshift-cluster | |
| parent | b7aaf7bd860625a1dc929a2397c28c3e33aab94f (diff) | |
| parent | 1f2276fff1e41c1d9440ee8b589042ee249b95d7 (diff) | |
Merge pull request #2501 from lhuard1A/fix_openstack_cloudprovider
Fix openstack cloudprovider
Diffstat (limited to 'playbooks/openstack/openshift-cluster')
4 files changed, 79 insertions, 52 deletions
diff --git a/playbooks/openstack/openshift-cluster/dns.yml b/playbooks/openstack/openshift-cluster/dns.yml index 285f8fa78..3ea0929bf 100644 --- a/playbooks/openstack/openshift-cluster/dns.yml +++ b/playbooks/openstack/openshift-cluster/dns.yml @@ -48,5 +48,5 @@      - { role: dns,          dns_forwarders: "{{ openstack_network_dns }}", -        dns_zones: [ novalocal, openstacklocal ], +        dns_zones: [ example.com ],          dns_all_hosts: "{{ g_all_hosts }}" } diff --git a/playbooks/openstack/openshift-cluster/files/heat_stack.yaml b/playbooks/openstack/openshift-cluster/files/heat_stack.yaml index 458cf5ac7..461980ddd 100644 --- a/playbooks/openstack/openshift-cluster/files/heat_stack.yaml +++ b/playbooks/openstack/openshift-cluster/files/heat_stack.yaml @@ -637,41 +637,54 @@ resources:        port_id: { get_resource: dns-port }    dns-config: -    type: OS::Heat::MultipartMime +    type: OS::Heat::CloudConfig      properties: -      parts: -        - config: -            str_replace: -              template: | -                #cloud-config -                disable_root: true - -                system_info: -                  default_user: -                    name: openshift -                    sudo: ["ALL=(ALL) NOPASSWD: ALL"] - -                write_files: -                  - path: /etc/sudoers.d/00-openshift-no-requiretty -                    permissions: 440 -                    content: | -                      Defaults:openshift !requiretty -                  - path: /etc/sysconfig/network-scripts/ifcfg-eth0 -                    content: | -                      DEVICE="eth0" -                      BOOTPROTO="dhcp" -                      DNS1="$dns1" -                      DNS2="$dns2" -                      PEERDNS="no" -                      ONBOOT="yes" -                runcmd: -                  - [ "/usr/bin/systemctl", "restart", "network" ] -              params: -                $dns1: -                  get_param: -                    - dns_nameservers -                    - 0 -                $dns2: -                  get_param: -                    - dns_nameservers -                    - 1 +      cloud_config: +        disable_root: true + +        hostname: +          str_replace: +            template: cluster_id-dns +            params: +              cluster_id: { get_param: cluster_id } +        fqdn: +          str_replace: +            template: cluster_id-dns.example.com +            params: +              cluster_id: { get_param: cluster_id } + +        system_info: +          default_user: +            name: openshift +            sudo: ["ALL=(ALL) NOPASSWD: ALL"] + +        write_files: +          - path: /etc/sudoers.d/00-openshift-no-requiretty +            permissions: 440 +            # content: Defaults:openshift !requiretty +            # Encoded in base64 to be sure that we do not forget the trailing newline or +            # sudo will not be able to parse that file +            encoding: b64 +            content: RGVmYXVsdHM6b3BlbnNoaWZ0ICFyZXF1aXJldHR5Cg== +          - path: /etc/sysconfig/network-scripts/ifcfg-eth0 +            content: +              str_replace: +                template: | +                  DEVICE="eth0" +                  BOOTPROTO="dhcp" +                  DNS1="$dns1" +                  DNS2="$dns2" +                  PEERDNS="no" +                  ONBOOT="yes" +                params: +                  $dns1: +                    get_param: +                      - dns_nameservers +                      - 0 +                  $dns2: +                    get_param: +                      - dns_nameservers +                      - 1 + +        runcmd: +          - [ "/usr/bin/systemctl", "restart", "network" ] diff --git a/playbooks/openstack/openshift-cluster/files/heat_stack_server.yaml b/playbooks/openstack/openshift-cluster/files/heat_stack_server.yaml index f83f2c984..ab6676afb 100644 --- a/playbooks/openstack/openshift-cluster/files/heat_stack_server.yaml +++ b/playbooks/openstack/openshift-cluster/files/heat_stack_server.yaml @@ -107,7 +107,7 @@ resources:        flavor:    { get_param: flavor }        networks:          - port:  { get_resource: port } -      user_data: { get_file: user-data } +      user_data: { get_resource: config }        user_data_format: RAW        metadata:          environment: { get_param: cluster_env } @@ -128,3 +128,30 @@ resources:      properties:        floating_network: { get_param: floating_network }        port_id: { get_resource: port } + +  config: +    type: OS::Heat::CloudConfig +    properties: +      cloud_config: +        disable_root: true + +        hostname: { get_param: name } +        fqdn: +          str_replace: +            template: name.example.com +            params: +              name: { get_param: name } + +        system_info: +          default_user: +            name: openshift +            sudo: ["ALL=(ALL) NOPASSWD: ALL"] + +        write_files: +          - path: /etc/sudoers.d/00-openshift-no-requiretty +            permissions: 440 +            # content: Defaults:openshift !requiretty +            # Encoded in base64 to be sure that we do not forget the trailing newline or +            # sudo will not be able to parse that file +            encoding: b64 +            content: RGVmYXVsdHM6b3BlbnNoaWZ0ICFyZXF1aXJldHR5Cg== diff --git a/playbooks/openstack/openshift-cluster/files/user-data b/playbooks/openstack/openshift-cluster/files/user-data deleted file mode 100644 index eb65f7cec..000000000 --- a/playbooks/openstack/openshift-cluster/files/user-data +++ /dev/null @@ -1,13 +0,0 @@ -#cloud-config -disable_root: true - -system_info: -  default_user: -    name: openshift -    sudo: ["ALL=(ALL) NOPASSWD: ALL"] - -write_files: -  - path: /etc/sudoers.d/00-openshift-no-requiretty -    permissions: 440 -    content: | -      Defaults:openshift !requiretty  | 
