manage lewis with nix
move docker swarm ansible to this repo move thecloud ansible to this repo support data disks in terraform
This commit is contained in:
parent
d7ef46b642
commit
111bf68a0a
92 changed files with 2730 additions and 26 deletions
|
@ -13,7 +13,21 @@ ssh_authorized_keys:
|
|||
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOodpLr+FDRyKyHjucHizNLVFHZ5AQmE9GmxMnOsSoaw pimkunis@thinkpadpim"
|
||||
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUZp4BCxf7uLa1QWonx/Crf8tYZ5MKIZ+EuaBa82LrV user@user-laptop"
|
||||
|
||||
ssh_pwauth: false
|
||||
%{ if data_disk != null }
|
||||
device_aliases:
|
||||
data: /dev/vdb
|
||||
disk_setup:
|
||||
data:
|
||||
table_type: 'gpt'
|
||||
layout: true
|
||||
overwrite: false
|
||||
fs_type:
|
||||
- label: 'data'
|
||||
filesystem: 'ext4'
|
||||
overwrite: false
|
||||
mounts:
|
||||
- ["data.1", "/mnt/data"]
|
||||
%{ endif }
|
||||
|
||||
# TODO: Do we need this?
|
||||
runcmd:
|
||||
|
|
Reference in a new issue