upgrade_logging.yaml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ---
  2. - name: Stop the Cluster
  3. include: stop_cluster.yaml
  4. - name: Upgrade logging
  5. include: install_logging.yaml
  6. vars:
  7. start_cluster: False
  8. # start ES so that we can run migrate script
  9. - name: Retrieve elasticsearch
  10. oc_obj:
  11. state: list
  12. kind: dc
  13. selector: "component=es"
  14. namespace: "{{openshift_logging_namespace}}"
  15. register: es_dc
  16. - name: start elasticsearch
  17. oc_scale:
  18. kind: dc
  19. name: "{{ object }}"
  20. namespace: "{{openshift_logging_namespace}}"
  21. replicas: 1
  22. with_items: "{{ es_dc.results.results[0]['items'] | map(attribute='metadata.name') | list }}"
  23. loop_control:
  24. loop_var: object
  25. - name: Wait for pods to start
  26. oc_obj:
  27. state: list
  28. kind: pods
  29. selector: "component=es"
  30. namespace: "{{openshift_logging_namespace}}"
  31. register: running_pod
  32. until: running_pod.results.results[0]['items'] | selectattr('status.phase', 'match', '^Running$') | map(attribute='metadata.name') | list | length != 0
  33. retries: 30
  34. delay: 10
  35. - name: Run upgrade script
  36. script: es_migration.sh {{openshift.common.config_base}}/logging/ca.crt {{openshift.common.config_base}}/logging/system.admin.key {{openshift.common.config_base}}/logging/system.admin.crt {{openshift_logging_es_host}} {{openshift_logging_es_port}} {{openshift_logging_namespace}}
  37. register: script_output
  38. changed_when:
  39. - script_output.rc == 0
  40. - script_output.stdout.find("skipping update_for_uuid") == -1 or script_output.stdout.find("skipping update_for_common_data_model") == -1
  41. - name: Start up rest of cluster
  42. include: start_cluster.yaml