tlu/salt/states/pxe/harvester/files/node1.yaml.jinja

36 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-10-18 09:24:21 +00:00
token: {{ pillar['harvester']['token'] }}
os:
ssh_authorized_keys: {{ pillar['harvester']['os']['ssh_authorized_keys'] }}
2021-10-18 13:00:39 +00:00
hostname: node1
2021-10-18 09:24:21 +00:00
password: {{ pillar['harvester']['os']['password'] }}
dns_nameservers:
- {{ pillar['network']['ip'] }}
password: {{ pillar['harvester']['os']['password'] }}
ntp_servers:
- {{ pillar['network']['ip'] }}
2021-10-18 13:00:39 +00:00
write_files:
- path: /etc/rancher/rke2/registries.yaml
- owner: 'root:root'
- permissions: '0600'
- content: |
mirrors:
docker.io:
endpoint:
- "http://{{ pillar['network']['ip'] }}:5000"
2021-10-18 09:24:21 +00:00
install:
mode: create
networks:
harvester-mgmt:
interfaces:
- name: {{ pillar['harvester']['install']['mgmt-interface'] }}
method: static
ip: {{ pillar['network']['ip'][0:-1] }}{{ pillar['network']['hosts']['node1'] }}
subnet_mask: 255.255.255.0
gateway: {{ pillar['network']['ip'] }}
default_route: true
device: {{ pillar['harvester']['device'] }}
iso_url: http://{{ pillar['network']['ip'] }}/harvester/harvester-v{{ pillar['harvester']['version'] }}-amd64.iso
vip: {{ pillar['network']['ip'][0:-1] }}{{ pillar['network']['hosts']['harvester'] }}
vip_mode: static