bootstrap_config.yml 564 B

1234567891011121314151617181920
  1. ---
  2. - name: Ensure required directories are present
  3. file:
  4. path: "{{ item }}"
  5. owner: root
  6. group: root
  7. mode: 0755
  8. state: directory
  9. with_items:
  10. - /etc/origin/node/pods
  11. - /etc/origin/node/certificates
  12. - name: Update the sysconfig to group "{{ openshift_node_group_name }}"
  13. lineinfile:
  14. dest: "/etc/sysconfig/{{ openshift_service_type }}-node"
  15. line: "BOOTSTRAP_CONFIG_NAME={{ openshift_node_group_name }}"
  16. regexp: "^BOOTSTRAP_CONFIG_NAME=.*"
  17. - import_role:
  18. name: openshift_node
  19. tasks_from: configure-proxy-settings.yml