main.yaml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. ---
  2. - fail:
  3. msg: This role required openshift_master_default_subdomain or openshift_hosted_metrics_public_url be set
  4. when: openshift.master.metrics_public_url | default(openshift_hosted_metrics_public_url | default(openshift.master.default_subdomain | default(openshift_master_default_subdomain | default(none)))) is none
  5. - name: Create temp directory for kubeconfig
  6. command: mktemp -d /tmp/openshift-ansible-XXXXXX
  7. register: mktemp
  8. changed_when: False
  9. - name: Record kubeconfig tmp dir
  10. set_fact:
  11. openshift_metrics_kubeconfig: "{{ mktemp.stdout }}/admin.kubeconfig"
  12. - name: Copy the admin client config(s)
  13. command: >
  14. cp {{ openshift_master_config_dir }}/admin.kubeconfig {{ openshift_metrics_kubeconfig }}
  15. changed_when: False
  16. - name: Set hosted metrics facts
  17. openshift_facts:
  18. role: hosted
  19. openshift_env: "{{ hostvars
  20. | oo_merge_hostvars(vars, inventory_hostname)
  21. | oo_openshift_env }}"
  22. openshift_env_structures:
  23. - 'openshift.hosted.metrics.*'
  24. - set_fact:
  25. # Prefer the master facts over bare variables if present, prefer
  26. # metrics_public_url over creating a default using default_subdomain
  27. metrics_hostname: "{{ openshift.hosted.metrics.public_url
  28. | default('hawkular-metrics.' ~ (openshift.master.default_subdomain
  29. | default(openshift_master_default_subdomain )))
  30. | oo_hostname_from_url }}"
  31. metrics_persistence: "{{ openshift.hosted.metrics.storage_kind | default(none) is not none }}"
  32. metrics_dynamic_vol: "{{ openshift.hosted.metrics.storage_kind | default(none) == 'dynamic' }}"
  33. metrics_template_dir: "{{ openshift.common.config_base if openshift.common.is_containerized | bool else '/usr/share/openshift' }}/examples/infrastructure-templates/{{ 'origin' if deployment_type == 'origin' else 'enterprise' }}"
  34. cassandra_nodes: "{{ ',CASSANDRA_NODES=' ~ openshift.hosted.metrics.cassandra_nodes if 'cassandra' in openshift.hosted.metrics else '' }}"
  35. cassandra_pv_size: "{{ ',CASSANDRA_PV_SIZE=' ~ openshift.hosted.metrics.storage_volume_size if openshift.hosted.metrics.storage_volume_size | default(none) is not none else '' }}"
  36. image_prefix: "{{ ',IMAGE_PREFIX=' ~ openshift.hosted.metrics.deployer_prefix if 'deployer_prefix' in openshift.hosted.metrics else '' }}"
  37. image_version: "{{ ',IMAGE_VERSION=' ~ openshift.hosted.metrics.deployer_version if 'deployer_version' in openshift.hosted.metrics else '' }}"
  38. - name: Check for existing metrics pods
  39. shell: >
  40. {{ openshift.common.client_binary }}
  41. --config={{ openshift_metrics_kubeconfig }}
  42. --namespace openshift-infra
  43. get pods -l {{ item }} | grep -q Running
  44. register: metrics_pods_status
  45. with_items:
  46. - metrics-infra=hawkular-metrics
  47. - metrics-infra=heapster
  48. - metrics-infra=hawkular-cassandra
  49. failed_when: false
  50. changed_when: false
  51. - name: Check for previous deployer
  52. shell: >
  53. {{ openshift.common.client_binary }}
  54. --config={{ openshift_metrics_kubeconfig }}
  55. --namespace openshift-infra
  56. get pods -l metrics-infra=deployer --sort-by='{.metadata.creationTimestamp}' | tail -1 | grep metrics-deployer-
  57. register: metrics_deployer_status
  58. failed_when: false
  59. changed_when: false
  60. - name: Record current deployment status
  61. set_fact:
  62. greenfield: "{{ not metrics_deployer_status.rc == 0 }}"
  63. failed_error: "{{ True if 'Error' in metrics_deployer_status.stdout else False }}"
  64. metrics_running: "{{ metrics_pods_status.results | oo_collect(attribute='rc') == [0,0,0] }}"
  65. - name: Set deployment mode
  66. set_fact:
  67. deployment_mode: "{{ 'refresh' if (failed_error | bool or metrics_upgrade | bool) else 'deploy' }}"
  68. # TODO: handle non greenfield deployments in the future
  69. - include: install.yml
  70. when: greenfield
  71. - name: Delete temp directory
  72. file:
  73. name: "{{ mktemp.stdout }}"
  74. state: absent
  75. changed_when: False