bootstrap.yml 348 B

1234567891011
  1. ---
  2. - name: create node config template
  3. template:
  4. src: node-config.yaml.j2
  5. dest: "/etc/origin/node/bootstrap-node-config.yaml"
  6. mode: 0600
  7. # Make sure a single master has node-config so that SDN and sync daemonsets requires it
  8. - name: remove existing node config
  9. file:
  10. dest: "/etc/origin/node/node-config.yaml"
  11. state: absent