Browse Source

move KUBECONFIG setting to openshift_common

Jason DeTiberus 10 years ago
parent
commit
e05290c71f
2 changed files with 8 additions and 8 deletions
  1. 0 8
      roles/base_os/tasks/main.yaml
  2. 8 0
      roles/openshift_common/tasks/main.yml

+ 0 - 8
roles/base_os/tasks/main.yaml

@@ -11,14 +11,6 @@
     src: vimrc
     dest: /root/.vimrc
 
-- name: Add KUBECONFIG to .bash_profile for user root
-  lineinfile:
-    dest: /root/.bash_profile
-    regexp: "KUBECONFIG="
-    line: "export KUBECONFIG=/var/lib/openshift/openshift.local.certificates/admin/.kubeconfig"
-    state: present
-    insertafter: EOF
-
 - name: Bash Completion
   yum:
     pkg: bash-completion

+ 8 - 0
roles/openshift_common/tasks/main.yml

@@ -12,3 +12,11 @@
   - { section: common, option: env, value: "{{ openshift_env | default('default') }}" }
   - { section: common, option: host_type, value: "{{ openshift_host_type }}" }
   - { section: common, option: debug_level, value: "{{ openshift_debug_level }}" }
+
+- name: Add KUBECONFIG to .bash_profile for user root
+  lineinfile:
+    dest: /root/.bash_profile
+    regexp: "KUBECONFIG="
+    line: "export KUBECONFIG=/var/lib/openshift/openshift.local.certificates/admin/.kubeconfig"
+    state: present
+    insertafter: EOF