Browse Source

Move Node Problem Detector to its own ns, make the ns hard-coded

Remove NPD via project deletion
Joel Smith 7 years ago
parent
commit
9d98b75fd9

+ 0 - 1
roles/openshift_node_problem_detector/defaults/main.yaml

@@ -1,7 +1,6 @@
 ---
 # node_problem_detector common setup
 openshift_node_problem_detector_state: present
-openshift_node_problem_detector_namespace: openshift-infra
 openshift_node_problem_detector_tmp_location: /tmp
 openshift_node_problem_detector_delete_tempfiles: True
 

+ 12 - 7
roles/openshift_node_problem_detector/tasks/install.yaml

@@ -4,25 +4,30 @@
     msg: "openshift_node_problem_detector_image_pull_policy must be one of Always, Never, IfNotPresent. Got {{ openshift_node_problem_detector_image_pull_policy }}"
   when: openshift_node_problem_detector_image_pull_policy not in ['Always', 'Never', 'IfNotPresent']
 
+- name: Ensure Node Problem Detector project exists
+  oc_project:
+    name: openshift-node-problem-detector
+    state: present
+
 - name: create Node Problem Detector service account
   oc_serviceaccount:
     name: "{{ openshift_node_problem_detector_service_account }}"
-    namespace: "{{ openshift_node_problem_detector_namespace }}"
+    namespace: openshift-node-problem-detector
     state: present
 
 - name: bind node-problem-detector cluster role to the node-problem-detector service account
   oc_adm_policy_user:
     state: present
-    user: "system:serviceaccount:{{ openshift_node_problem_detector_namespace }}:{{ openshift_node_problem_detector_service_account }}"
-    namespace: "{{ openshift_node_problem_detector_namespace }}"
+    user: "system:serviceaccount:openshift-node-problem-detector:{{ openshift_node_problem_detector_service_account }}"
+    namespace: "openshift-node-problem-detector"
     resource_kind: cluster-role
     resource_name: "system:{{ openshift_node_problem_detector_cluster_role_name }}"
 
 - name: Grant privileged SCC from node problem detector service account
   oc_adm_policy_user:
     state: present
-    user: "system:serviceaccount:{{ openshift_node_problem_detector_namespace }}:{{ openshift_node_problem_detector_service_account }}"
-    namespace: "{{ openshift_node_problem_detector_namespace }}"
+    user: "system:serviceaccount:openshift-node-problem-detector:{{ openshift_node_problem_detector_service_account }}"
+    namespace: openshift-node-problem-detector
     resource_kind: scc
     resource_name: privileged
 
@@ -35,7 +40,7 @@
   oc_configmap:
     state: present
     name: "{{ openshift_node_problem_detector_configmap_name }}"
-    namespace: "{{ openshift_node_problem_detector_namespace }}"
+    namespace: openshift-node-problem-detector
     from_literal: "{{ openshift_node_problem_detector_configmap.data }}"
 
 - name: create node problem detector
@@ -47,7 +52,7 @@
   oc_obj:
     kind: daemonset
     name: "{{ openshift_node_problem_detector_daemonset_name }}"
-    namespace: "{{ openshift_node_problem_detector_namespace }}"
+    namespace: openshift-node-problem-detector
     state: present
     files:
     - "{{ openshift_node_problem_detector_tmp_location }}/npd-ds.yaml"

+ 3 - 33
roles/openshift_node_problem_detector/tasks/uninstall.yaml

@@ -1,35 +1,5 @@
 ---
-- name: Ensure the node problem detector is absent
-  oc_obj:
-    namespace: "{{ openshift_node_problem_detector_namespace }}"
+- name: Remove Node Problem Detector
+  oc_project:
+    name: openshift-node-problem-detector
     state: absent
-    kind: daemonset
-    name: "{{ openshift_node_problem_detector_daemonset_name }}"
-
-- name: Remove privileged SCC from node problem detector service account
-  oc_adm_policy_user:
-    state: absent
-    user: "system:serviceaccount:{{ openshift_node_problem_detector_namespace }}:{{ openshift_node_problem_detector_service_account }}"
-    namespace: "{{ openshift_node_problem_detector_namespace }}"
-    resource_kind: scc
-    resource_name: privileged
-
-- name: remove binding of node-problem-detector cluster role to the node-problem-detector service account
-  oc_adm_policy_user:
-    state: absent
-    user: "system:serviceaccount:{{ openshift_node_problem_detector_namespace }}:{{ openshift_node_problem_detector_service_account }}"
-    namespace: "{{ openshift_node_problem_detector_namespace }}"
-    resource_kind: cluster-role
-    resource_name: "system:{{ openshift_node_problem_detector_cluster_role_name }}"
-
-- name: remove node problem detector service account
-  oc_serviceaccount:
-    name: "{{ openshift_node_problem_detector_service_account }}"
-    namespace: "{{ openshift_node_problem_detector_namespace }}"
-    state: absent
-
-- name: remove node problem detector configuration configmap
-  oc_configmap:
-    state: absent
-    name: "{{ openshift_node_problem_detector_configmap_name }}"
-    namespace: "{{ openshift_node_problem_detector_namespace }}"