12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #cloud-config
- {% if type == 'etcd' and 'etcd' in volume_defs[type] %}
- cloud_config_modules:
- - disk_setup
- - mounts
- mounts:
- - [ xvdb, /var/lib/etcd, xfs, "defaults" ]
- disk_setup:
- xvdb:
- table_type: mbr
- layout: True
- fs_setup:
- - label: etcd_storage
- filesystem: xfs
- device: /dev/xvdb
- partition: auto
- {% endif %}
- {% if type in ['node', 'master'] and 'docker' in volume_defs[type] %}
- mounts:
- - [ xvdb ]
- - [ ephemeral0 ]
- write_files:
- - content: |
- DEVS=/dev/xvdb
- VG=docker_vg
- path: /etc/sysconfig/docker-storage-setup
- owner: root:root
- permissions: '0644'
- {% endif %}
- {% if deployment_type == 'online' %}
- devices: ['/var'] # Workaround for https://bugs.launchpad.net/bugs/1455436
- disable_root: 0
- growpart:
- mode: auto
- devices: ['/var']
- runcmd:
- - xfs_growfs /var
- {% endif %}
- {% if deployment_vars[deployment_type].become %}
- - path: /etc/sudoers.d/99-{{ deployment_vars[deployment_type].ssh_user }}-cloud-init-requiretty
- permissions: 440
- content: |
- Defaults:{{ deployment_vars[deployment_type].ssh_user }} !requiretty
- {% endif %}
|