1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# File 'modules/role/manifests/ml_k8s/staging/worker.pp', line 1
class role::ml_k8s::staging::worker {
include profile::base::production
include profile::firewall
# Setup dfdaemon (needs to be included before the container runtime)
include profile::dragonfly::dfdaemon
# Sets up containerd on the machine
include profile::kubernetes::container_runtime
# Setup kubernetes stuff
include profile::kubernetes::node
# Setup calico
include profile::calico::kubernetes
# Support for AMD GPUs
include profile::amd_gpu
# Setup LVS
include profile::lvs::realserver
}
|