Browse Source

bug 1420229. Bounce metrics components to recognize changes on updates or upgrades

Jeff Cantrill 8 years ago
parent
commit
ac23d6fc37
1 changed files with 14 additions and 0 deletions
  1. 14 0
      roles/openshift_metrics/tasks/install_metrics.yaml

+ 14 - 0
roles/openshift_metrics/tasks/install_metrics.yaml

@@ -34,6 +34,20 @@
     file_content: "{{ item.content | b64decode | from_yaml }}"
   with_items: "{{ object_defs.results }}"
 
+- command: >
+    {{openshift.common.client_binary}}
+    --config={{mktemp.stdout}}/admin.kubeconfig
+    get rc
+    -l metrics-infra
+    -o name
+    -n {{openshift_metrics_project}}
+  register: existing_metrics_rc
+  changed_when: no
+
+- name: Scaling down cluster to recognize changes
+  include: stop_metrics.yaml
+  when: "{{ existing_metrics_rc.stdout_lines | length > 0 }}"
+
 - name: Scaling up cluster
   include: start_metrics.yaml
   tags: openshift_metrics_start_cluster