static.yml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ---
  2. - name: Enable bootstrapping in the master config
  3. yedit:
  4. src: /etc/origin/master/master-config.yaml
  5. edits:
  6. - key: kubernetesMasterConfig.controllerArguments.cluster-signing-cert-file
  7. value:
  8. - /etc/origin/master/ca.crt
  9. - key: kubernetesMasterConfig.controllerArguments.cluster-signing-key-file
  10. value:
  11. - /etc/origin/master/ca.key
  12. when:
  13. - openshift_control_plane_apply_cluster_signing_config | default(True)
  14. - name: Create temp directory for static pods
  15. command: mktemp -d /tmp/openshift-ansible-XXXXXX
  16. register: mktemp
  17. changed_when: false
  18. - name: Prepare master static pods
  19. copy:
  20. src: "{{ item }}"
  21. dest: "{{ mktemp.stdout }}"
  22. mode: 0600
  23. with_items:
  24. - apiserver.yaml
  25. - controller.yaml
  26. - name: Update master static pods
  27. yedit:
  28. src: "{{ mktemp.stdout }}/{{ item }}"
  29. edits:
  30. - key: spec.containers[0].image
  31. value: "{{ osm_image }}"
  32. with_items:
  33. - apiserver.yaml
  34. - controller.yaml
  35. - name: Update master static pod (api)
  36. yedit:
  37. src: "{{ mktemp.stdout }}/apiserver.yaml"
  38. edits:
  39. - key: spec.containers[0].livenessProbe.httpGet.port
  40. value: "{{ openshift_master_api_port }}"
  41. - key: spec.containers[0].readinessProbe.httpGet.port
  42. value: "{{ openshift_master_api_port }}"
  43. - name: Update controller-manager static pod on atomic host
  44. yedit:
  45. src: "{{ mktemp.stdout }}/controller.yaml"
  46. edits:
  47. - key: spec.volumes[3].hostPath.path
  48. value: "/etc/origin/kubelet-plugins"
  49. - key: spec.containers[0].volumeMounts[3].mountPath
  50. value: "/etc/origin/kubelet-plugins"
  51. when: openshift_is_atomic | bool
  52. - name: ensure pod location exists
  53. file:
  54. path: "{{ openshift_control_plane_static_pod_location }}"
  55. state: directory
  56. mode: "0755"
  57. - name: Update master static pods
  58. copy:
  59. remote_src: true
  60. src: "{{ mktemp.stdout }}/{{ item }}"
  61. dest: "{{ openshift_control_plane_static_pod_location }}"
  62. mode: 0600
  63. with_items:
  64. - apiserver.yaml
  65. - controller.yaml
  66. - name: Remove temporary directory
  67. file:
  68. name: "{{ mktemp.stdout }}"
  69. state: absent
  70. changed_when: False