main.yaml 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. ---
  2. - fail:
  3. msg: This role required openshift_master_default_subdomain or openshift_master_metrics_url be set
  4. when: openshift.master.metrics_public_url | default(openshift_master_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: True
  32. #"{{ openshift.hosted.metrics.storage_kind | default(none) is not none }}"
  33. metrics_dynamic_vol: "{{ openshift.hosted.metrics.storage_kind | default(none) == 'dynamic' }}"
  34. metrics_template_dir: "/usr/share/openshift/examples/infrastructure-templates/{{ 'origin' if deployment_type == 'origin' else 'enterprise' }}"
  35. cassandra_nodes: "{{ ',CASSANDRA_NODES=' ~ openshift.hosted.metrics.cassandra_nodes if 'cassandra' in openshift.hosted.metrics else '' }}"
  36. 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 '' }}"
  37. image_prefix: "{{ ',IMAGE_PREFIX=' ~ openshift.hosted.metrics.deployer_prefix if 'deployer_prefix' in openshift.hosted.metrics else '' }}"
  38. image_version: "{{ ',IMAGE_VERSION=' ~ openshift.hosted.metrics.deployer_version if 'deployer_version' in openshift.hosted.metrics else '' }}"
  39. - name: Check for existing metrics pods
  40. shell: >
  41. {{ openshift.common.client_binary }}
  42. --config={{ openshift_metrics_kubeconfig }}
  43. --namespace openshift-infra
  44. get pods -l {{ item }} | grep -q Running
  45. register: metrics_pods_status
  46. with_items:
  47. - metrics-infra=hawkular-metrics
  48. - metrics-infra=heapster
  49. - metrics-infra=hawkular-cassandra
  50. failed_when: false
  51. changed_when: false
  52. - name: Check for previous deployer
  53. shell: >
  54. {{ openshift.common.client_binary }}
  55. --config={{ openshift_metrics_kubeconfig }}
  56. --namespace openshift-infra
  57. get pods -l metrics-infra=deployer --sort-by='{.metadata.creationTimestamp}' | tail -1 | grep metrics-deployer-
  58. register: metrics_deployer_status
  59. failed_when: false
  60. changed_when: false
  61. - name: Record current deployment status
  62. set_fact:
  63. greenfield: "{{ not metrics_deployer_status.rc == 0 }}"
  64. failed_error: "{{ True if 'Error' in metrics_deployer_status.stdout else False }}"
  65. metrics_running: "{{ metrics_pods_status.results | oo_collect(attribute='rc') == [0,0,0] }}"
  66. - name: Set deployment mode
  67. set_fact:
  68. deployment_mode: "{{ 'refresh' if (failed_error | bool or metrics_upgrade | bool) else 'deploy' }}"
  69. # TODO: handle non greenfield deployments in the future
  70. - include: install.yml
  71. when: greenfield
  72. - name: Delete temp directory
  73. file:
  74. name: "{{ mktemp.stdout }}"
  75. state: absent
  76. changed_when: False