1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# File 'modules/role/manifests/ml_k8s/master.pp', line 1
class role::ml_k8s::master {
include profile::base::production
include profile::firewall
# Sets up kubernetes on the machine
include profile::kubernetes::master
# Needed to schedule containers like bird, used by calico.
# More info: T285927
# Sets up docker on the machine.
include profile::docker::engine
include profile::kubernetes::node
include profile::calico::kubernetes
# LVS configuration (VIP)
include profile::lvs::realserver
}
|