diff options
| author | 2023-02-08 23:21:14 +0400 | |
|---|---|---|
| committer | 2023-02-08 19:21:14 +0000 | |
| commit | be393aeab0e27fa28d033ad6a687f58e35fe4e79 (patch) | |
| tree | e123d1ec2140ba932a903ff6292a7879db4c3bbe /inventory/hosts.yaml | |
| parent | Add MOTD and sudo lecture roles (#76) (diff) | |
Update & Deploy Kubespray (#77)
* Move Kubespray Inventory
Move the kuberspray inventory to the repo root to make accessing it
easier, and unify inventories.
* Document Kubespray Deploy Instructions
Signed-off-by: Hassan Abouelela <[email protected]>
* Ignore Kubespray In Ansible Lint
Signed-off-by: Hassan Abouelela <[email protected]>
* Fix Ansible Lint
The `.github` folder was inappropriately being included in linting
due to actions being in yaml format.
Signed-off-by: Hassan Abouelela <[email protected]>
---------
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'inventory/hosts.yaml')
| -rw-r--r-- | inventory/hosts.yaml | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/inventory/hosts.yaml b/inventory/hosts.yaml new file mode 100644 index 0000000..4599b40 --- /dev/null +++ b/inventory/hosts.yaml @@ -0,0 +1,56 @@ +all: + hosts: + turing: + ansible_host: 89.58.25.151 + ip: 89.58.25.151 + access_ip: 89.58.25.151 + hopper: + ansible_host: 89.58.24.117 + ip: 89.58.24.117 + access_ip: 89.58.24.117 + lovelace: + ansible_host: 89.58.26.118 + ip: 89.58.26.118 + access_ip: 89.58.26.118 + ritchie: + ansible_host: 89.58.25.224 + ip: 89.58.25.224 + access_ip: 89.58.25.224 + neumann: + ansible_host: 89.58.12.244 + ip: 89.58.12.244 + access_ip: 89.58.12.244 + children: + kube_control_plane: + hosts: + hopper: + turing: + kube_node: + hosts: + hopper: + turing: + lovelace: + neumann: + ritchie: + etcd: + hosts: + hopper: + turing: + lovelace: + k8s_cluster: + children: + kube_control_plane: + kube_node: + calico_rr: + hosts: {} + podman: + hosts: + turing: + lovelace: + hopper: + ritchie: + nginx: + hosts: + turing: + ritchie: + neumann: |