|
@@ -46,3 +46,17 @@ roles/
|
|
|
monitoring/ # ""
|
|
|
fooapp/ # ""
|
|
|
```
|
|
|
+
|
|
|
+## Bootstrapping
|
|
|
+
|
|
|
+1. Use raspberry pi imager to install Ubuntu LTS (20.04 at time of this writing) 64-bit.
|
|
|
+1. Find IP (via DHCP lease?).
|
|
|
+1. Login with username ubuntu, password ubuntu. Set a new password.
|
|
|
+1. Add hostname to inventory.
|
|
|
+1. Run `ssh-copy-id ubuntu@hostname` and enter your password.
|
|
|
+1. Run the `initial_user.yml` task:
|
|
|
+```
|
|
|
+ansible-playbook -u ubuntu tasks/initial_users.yml --limit=k8s3
|
|
|
+```
|
|
|
+
|
|
|
+
|