diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2017-11-12 13:15:30 -0500 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2017-11-13 10:12:32 -0500 |
commit | 2a5352ee4fc3962dabd580f7807adb489e8da965 (patch) | |
tree | a1cd89ad6f5205253140888ef47155d2097bae7c /roles/openshift_node/tasks | |
parent | 7175c6f228f61b883d958c12ba5130f37a0615c4 (diff) | |
download | openshift-2a5352ee4fc3962dabd580f7807adb489e8da965.tar.gz openshift-2a5352ee4fc3962dabd580f7807adb489e8da965.tar.bz2 openshift-2a5352ee4fc3962dabd580f7807adb489e8da965.tar.xz openshift-2a5352ee4fc3962dabd580f7807adb489e8da965.zip |
Adding instance profile support for node groups.
Diffstat (limited to 'roles/openshift_node/tasks')
-rw-r--r-- | roles/openshift_node/tasks/bootstrap.yml | 1 | ||||
-rw-r--r-- | roles/openshift_node/tasks/config.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/roles/openshift_node/tasks/bootstrap.yml b/roles/openshift_node/tasks/bootstrap.yml index 8cf41ab4c..b8be50f6c 100644 --- a/roles/openshift_node/tasks/bootstrap.yml +++ b/roles/openshift_node/tasks/bootstrap.yml @@ -34,6 +34,7 @@ - name: include aws sysconfig credentials include: aws.yml static: yes + when: not (openshift_node_use_instance_profiles | default(False)) #- name: update the ExecStart to have bootstrap # lineinfile: diff --git a/roles/openshift_node/tasks/config.yml b/roles/openshift_node/tasks/config.yml index c08f43118..2fea33454 100644 --- a/roles/openshift_node/tasks/config.yml +++ b/roles/openshift_node/tasks/config.yml @@ -49,6 +49,7 @@ - name: include aws provider credentials include: aws.yml static: yes + when: not (openshift_node_use_instance_profiles | default(False)) # Necessary because when you're on a node that's also a master the master will be # restarted after the node restarts docker and it will take up to 60 seconds for |