Ver código fonte

Merge pull request #5633 from mgugino-upstream-stage/fix-node-cloudprovider

Automatic merge from submit-queue.

Move node aws credentials to config.yml

Currently, the node service is started before
aws credentials (if needed) are configured.

This commit ensures the aws credentials are placed
before the node service is started.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1497150
OpenShift Merge Robot 7 anos atrás
pai
commit
85dd3c223e

+ 16 - 0
roles/openshift_node/tasks/config.yml

@@ -46,6 +46,22 @@
   notify:
     - restart node
 
+- name: Configure AWS Cloud Provider Settings
+  lineinfile:
+    dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
+    regexp: "{{ item.regex }}"
+    line: "{{ item.line }}"
+    create: true
+  with_items:
+    - regex: '^AWS_ACCESS_KEY_ID='
+      line: "AWS_ACCESS_KEY_ID={{ openshift_cloudprovider_aws_access_key | default('') }}"
+    - regex: '^AWS_SECRET_ACCESS_KEY='
+      line: "AWS_SECRET_ACCESS_KEY={{ openshift_cloudprovider_aws_secret_key | default('') }}"
+  no_log: True
+  when: openshift_cloudprovider_kind is defined and openshift_cloudprovider_kind == 'aws' and openshift_cloudprovider_aws_access_key is defined and openshift_cloudprovider_aws_secret_key is defined
+  notify:
+    - restart node
+
 # 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
 # systemd to start the master again

+ 0 - 16
roles/openshift_node/tasks/main.yml

@@ -76,22 +76,6 @@
   include: config.yml
   when: not openshift_node_bootstrap
 
-- name: Configure AWS Cloud Provider Settings
-  lineinfile:
-    dest: /etc/sysconfig/{{ openshift.common.service_type }}-node
-    regexp: "{{ item.regex }}"
-    line: "{{ item.line }}"
-    create: true
-  with_items:
-    - regex: '^AWS_ACCESS_KEY_ID='
-      line: "AWS_ACCESS_KEY_ID={{ openshift_cloudprovider_aws_access_key | default('') }}"
-    - regex: '^AWS_SECRET_ACCESS_KEY='
-      line: "AWS_SECRET_ACCESS_KEY={{ openshift_cloudprovider_aws_secret_key | default('') }}"
-  no_log: True
-  when: openshift_cloudprovider_kind is defined and openshift_cloudprovider_kind == 'aws' and openshift_cloudprovider_aws_access_key is defined and openshift_cloudprovider_aws_secret_key is defined
-  notify:
-    - restart node
-
 #### Storage class plugins here ####
 - name: NFS storage plugin configuration
   include: storage_plugins/nfs.yml