Browse Source

Configurable node config location.

Kenny Woodson 7 years ago
parent
commit
97887d4558
1 changed files with 3 additions and 3 deletions
  1. 3 3
      roles/openshift_node/tasks/bootstrap.yml

+ 3 - 3
roles/openshift_node/tasks/bootstrap.yml

@@ -25,11 +25,11 @@
     state: "{{ item.state | default('present') }}"
   with_items:
   # add the kubeconfig
-  - line: "KUBECONFIG=/etc/origin/node/bootstrap.kubeconfig"
+  - line: "KUBECONFIG={{ openshift_node_data_dir }}/bootstrap.kubeconfig"
     regexp: "^KUBECONFIG=.*"
   # remove the config file.  This comes from openshift_facts
-  - regexp: "^CONFIG_FILE=.*"
-    state: absent
+  - line: "CONFIG_FILE={{ openshift_node_data_dir }}/"
+    regexp: "^CONFIG_FILE=.*"
 
 - name: include aws sysconfig credentials
   include: aws.yml