You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k8s-terraform/k8s-nodes/README.md

18 lines
424 B
Markdown

Dependencies
----------------------------------------
TODO REM add libvirt provider
libvirt provider depends on mkisofs
security_driver = none for ubuntu host, link github issue.
https://github.com/dmacvicar/terraform-provider-libvirt/issues/546
Other
----------------------------------------
Create a password hash.
```shell
python3 -c 'import crypt; print(crypt.crypt("test", crypt.mksalt(crypt.METHOD_SHA512)))'
```