1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# File 'modules/role/manifests/ml_k8s/worker.pp', line 1
class role::ml_k8s::worker {
include profile::base::production
include profile::firewall
# Sets up docker on the machine
include profile::docker::engine
# Setup kubernetes stuff
include profile::kubernetes::node
# Setup calico
include profile::calico::kubernetes
# Support for AMD GPUs
include profile::amd_gpu
# Setup dfdaemon and configure docker to use it
include profile::dragonfly::dfdaemon
# Setup LVS
include profile::lvs::realserver
}
|