install_mux.yaml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ---
  2. - set_fact: mux_ops_host={{ (openshift_logging_use_ops | bool) | ternary(openshift_logging_es_ops_host, openshift_logging_es_host) }}
  3. check_mode: no
  4. - set_fact: mux_ops_port={{ (openshift_logging_use_ops | bool) | ternary(openshift_logging_es_ops_port, openshift_logging_es_port) }}
  5. check_mode: no
  6. - name: Check mux current replica count
  7. command: >
  8. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig get dc/logging-mux
  9. -o jsonpath='{.spec.replicas}' -n {{openshift_logging_namespace}}
  10. register: mux_replica_count
  11. when: not ansible_check_mode
  12. ignore_errors: yes
  13. changed_when: no
  14. - name: Generating mux deploymentconfig
  15. template: src=mux.j2 dest={{mktemp.stdout}}/templates/logging-mux-dc.yaml
  16. vars:
  17. component: mux
  18. logging_component: mux
  19. deploy_name: "logging-{{component}}"
  20. image: "{{openshift_logging_image_prefix}}logging-fluentd:{{openshift_logging_image_version}}"
  21. es_host: logging-es
  22. es_port: "{{openshift_logging_es_port}}"
  23. ops_host: "{{ mux_ops_host }}"
  24. ops_port: "{{ mux_ops_port }}"
  25. mux_cpu_limit: "{{openshift_logging_mux_cpu_limit}}"
  26. mux_memory_limit: "{{openshift_logging_mux_memory_limit}}"
  27. replicas: "{{mux_replica_count.stdout | default (0)}}"
  28. mux_node_selector: "{{openshift_logging_mux_nodeselector | default({})}}"
  29. check_mode: no
  30. changed_when: no
  31. - name: "Check mux hostmount-anyuid permissions"
  32. command: >
  33. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig
  34. get scc/hostmount-anyuid -o jsonpath='{.users}'
  35. register: mux_hostmount_anyuid
  36. check_mode: no
  37. changed_when: no
  38. - name: "Set hostmount-anyuid permissions for mux"
  39. command: >
  40. {{ openshift.common.admin_binary}} --config={{ mktemp.stdout }}/admin.kubeconfig policy
  41. add-scc-to-user hostmount-anyuid system:serviceaccount:{{openshift_logging_namespace}}:aggregated-logging-fluentd
  42. register: mux_output
  43. failed_when: mux_output.rc == 1 and 'exists' not in mux_output.stderr
  44. check_mode: no
  45. when: mux_hostmount_anyuid.stdout.find("system:serviceaccount:{{openshift_logging_namespace}}:aggregated-logging-fluentd") == -1
  46. - name: "Check mux cluster-reader permissions"
  47. command: >
  48. {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig
  49. get clusterrolebinding/cluster-readers -o jsonpath='{.userNames}'
  50. register: mux_cluster_reader
  51. check_mode: no
  52. changed_when: no
  53. - name: "Set cluster-reader permissions for mux"
  54. command: >
  55. {{ openshift.common.admin_binary}} --config={{ mktemp.stdout }}/admin.kubeconfig policy
  56. add-cluster-role-to-user cluster-reader system:serviceaccount:{{openshift_logging_namespace}}:aggregated-logging-fluentd
  57. register: mux2_output
  58. failed_when: mux2_output.rc == 1 and 'exists' not in mux2_output.stderr
  59. check_mode: no
  60. when: mux_cluster_reader.stdout.find("system:serviceaccount:{{openshift_logging_namespace}}:aggregated-logging-fluentd") == -1