diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2017-12-01 21:39:00 -0500 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2017-12-11 16:39:27 -0500 |
commit | 35c1abb6050f2cd1f31396edd42618a2998bd546 (patch) | |
tree | dfb31882e7eb459b173ea206a89bc834aba10dd0 /roles/openshift_aws/templates | |
parent | a53b8f63175c80c9d0a8d590fd0854e2ed8e1aae (diff) | |
download | openshift-35c1abb6050f2cd1f31396edd42618a2998bd546.tar.gz openshift-35c1abb6050f2cd1f31396edd42618a2998bd546.tar.bz2 openshift-35c1abb6050f2cd1f31396edd42618a2998bd546.tar.xz openshift-35c1abb6050f2cd1f31396edd42618a2998bd546.zip |
Changing the node group format to a list.
Diffstat (limited to 'roles/openshift_aws/templates')
-rw-r--r-- | roles/openshift_aws/templates/user_data.j2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/openshift_aws/templates/user_data.j2 b/roles/openshift_aws/templates/user_data.j2 index fe0fe83d4..bda1334cd 100644 --- a/roles/openshift_aws/templates/user_data.j2 +++ b/roles/openshift_aws/templates/user_data.j2 @@ -7,8 +7,8 @@ write_files: owner: 'root:root' permissions: '0640' content: | - openshift_group_type: {{ launch_config_item.key }} -{% if launch_config_item.key != 'master' %} + openshift_group_type: {{ openshift_aws_node_group.group }} +{% if openshift_aws_node_group.group != 'master' %} - path: /etc/origin/node/bootstrap.kubeconfig owner: 'root:root' permissions: '0640' @@ -19,7 +19,7 @@ runcmd: {% if openshift_aws_node_run_bootstrap_startup %} - [ ansible-playbook, /root/openshift_bootstrap/bootstrap.yml] {% endif %} -{% if launch_config_item.key != 'master' %} +{% if openshift_aws_node_group.group != 'master' %} - [ systemctl, restart, NetworkManager] - [ systemctl, enable, {% if openshift_deployment_type == 'openshift-enterprise' %}atomic-openshift{% else %}origin{% endif %}-node] - [ systemctl, start, {% if openshift_deployment_type == 'openshift-enterprise' %}atomic-openshift{% else %}origin{% endif %}-node] |