27 lines
654 B
YAML
27 lines
654 B
YAML
---
|
|
all:
|
|
children:
|
|
# Operator workstation: kubectl, helm, k9s
|
|
manager_nodes:
|
|
hosts:
|
|
k8s-manager-01:
|
|
ansible_host: 10.203.0.92
|
|
|
|
# Kubernetes cluster nodes
|
|
k8s_cluster:
|
|
children:
|
|
control_plane:
|
|
hosts:
|
|
k8s-master-01:
|
|
ansible_host: 10.203.0.97
|
|
workers:
|
|
hosts:
|
|
k8s-worker-01:
|
|
ansible_host: 10.203.0.96
|
|
children:
|
|
# Workers with an NVIDIA GPU attached (device plugin + node label)
|
|
gpu_workers:
|
|
hosts:
|
|
k8s-worker-02:
|
|
ansible_host: 10.203.0.212
|