Browse Source

Merge pull request #8637 from spadgett/console-labels

Apply app label to console replica sets and pods
Scott Dodson 6 years ago
parent
commit
60115581b5
1 changed files with 7 additions and 0 deletions
  1. 7 0
      roles/openshift_web_console/tasks/install.yml

+ 7 - 0
roles/openshift_web_console/tasks/install.yml

@@ -114,6 +114,13 @@
     src: "{{ mktemp.stdout }}/{{ __console_config_file }}"
   register: updated_console_config
 
+# Avoids an issue where existing replica sets can be orphaned due to the label selector changing.
+- name: Apply the app label to pods and replica sets
+  shell: >
+    {{ openshift_client_binary }} label rs,pods -l webconsole=true app=openshift-web-console --overwrite=true -n openshift-web-console
+    --config={{ mktemp.stdout }}/admin.kubeconfig
+  when: not create_console_project.changed
+
 - name: Apply the web console template file
   shell: >
     {{ openshift_client_binary }} process -f "{{ mktemp.stdout }}/{{ __console_template_file }}"