deploy_logging.yaml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. ---
  2. - fail: msg="This role requires the following vars to be defined. openshift_hosted_logging_master_public_url, openshift_hosted_logging_hostname, openshift_hosted_logging_elasticsearch_cluster_size"
  3. when: "openshift_hosted_logging_hostname is not defined or
  4. openshift_hosted_logging_elasticsearch_cluster_size is not defined or
  5. openshift_hosted_logging_master_public_url is not defined"
  6. - name: Create temp directory for kubeconfig
  7. command: mktemp -d /tmp/openshift-ansible-XXXXXX
  8. register: mktemp
  9. changed_when: False
  10. - name: Copy the admin client config(s)
  11. command: >
  12. cp {{ openshift_master_config_dir }}/admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
  13. changed_when: False
  14. - name: "Create logging project"
  15. command: {{ openshift.common.admin_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig new-project logging
  16. - name: "Changing projects"
  17. command: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig project logging"
  18. - name: "Creating logging deployer secret"
  19. command: " {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig secrets new logging-deployer {{ openshift_hosted_logging_secret_vars | default('nothing=/dev/null') }}"
  20. register: secret_output
  21. failed_when: "secret_output.rc == 1 and 'exists' not in secret_output.stderr"
  22. - name: "Copy serviceAccount file"
  23. copy: dest=/tmp/logging-deployer-sa.yaml
  24. src={{role_path}}/files/logging-deployer-sa.yaml
  25. force=yes
  26. - name: "Create logging-deployer service account"
  27. command: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create -f /tmp/logging-deployer-sa.yaml"
  28. register: deployer_output
  29. failed_when: "deployer_output.rc == 1 and 'exists' not in deployer_output.stderr"
  30. - name: "Set permissions for logging-deployer service account"
  31. command: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig policy add-role-to-user edit system:serviceaccount:logging:logging-deployer"
  32. register: permiss_output
  33. failed_when: "permiss_output.rc == 1 and 'exists' not in permiss_output.stderr"
  34. - name: "Set permissions for fluentd"
  35. command: {{ openshift.common.admin_binary}} policy add-scc-to-user privileged system:serviceaccount:logging:aggregated-logging-fluentd
  36. register: fluentd_output
  37. failed_when: "fluentd_output.rc == 1 and 'exists' not in fluentd_output.stderr"
  38. - name: "Set additional permissions for fluentd"
  39. command: {{ openshift.common.admin_binary}} policy add-cluster-role-to-user cluster-reader system:serviceaccount:logging:aggregated-logging-fluentd
  40. register: fluentd2_output
  41. failed_when: "fluentd2_output.rc == 1 and 'exists' not in fluentd2_output.stderr"
  42. - name: "Create deployer template"
  43. command: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create -f /usr/share/openshift/examples/infrastructure-templates/enterprise/logging-deployer.yaml -n openshift"
  44. register: template_output
  45. failed_when: "template_output.rc == 1 and 'exists' not in template_output.stderr"
  46. - name: "Process the deployer template"
  47. shell: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig process logging-deployer-template -n openshift -v {{ oc_process_values }} | {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create -f -"
  48. - name: "Wait for image pull and deployer pod"
  49. shell: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig get pods | grep logging-deployer.*Completed"
  50. register: result
  51. until: result.rc == 0
  52. retries: 15
  53. delay: 10
  54. - name: "Process support template"
  55. shell: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig process logging-support-template | {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create -f -"
  56. - name: "Set insecured registry"
  57. command: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig annotate is --all openshift.io/image.insecureRepository=true --overwrite"
  58. when: "target_registry is defined and insecure_registry == 'true'"
  59. - name: "Wait for imagestreams to become available"
  60. shell: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig get is | grep logging-fluentd"
  61. register: result
  62. until: result.rc == 0
  63. failed_when: result.rc == 1 and 'not found' not in result.stderr
  64. retries: 20
  65. delay: 10
  66. - name: "Wait for replication controllers to become available"
  67. shell: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig get rc | grep logging-fluentd-1"
  68. register: result
  69. until: result.rc == 0
  70. failed_when: result.rc == 1 and 'not found' not in result.stderr
  71. retries: 20
  72. delay: 10
  73. - name: "Scale fluentd deployment config"
  74. command: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig scale dc/logging-fluentd --replicas={{ fluentd_replicas | default('1') }}"
  75. - name: "Scale fluentd replication controller"
  76. command: "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig scale rc/logging-fluentd-1 --replicas={{ fluentd_replicas | default('1') }}"
  77. - debug: msg="Logging components deployed. Note persistant volume for elasticsearch must be setup manually"
  78. - name: Delete temp directory
  79. file:
  80. name: "{{ mktemp.stdout }}"
  81. state: absent
  82. changed_when: False