Puppet Class: role::aux_k8s::worker
- Defined in:
- modules/role/manifests/aux_k8s/worker.pp
Overview
SPDX-License-Identifier: Apache-2.0
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'modules/role/manifests/aux_k8s/worker.pp', line 2
class role::aux_k8s::worker {
# setup standard profiles
include profile::base::production
include profile::firewall
# setup docker on the machine
include profile::docker::engine
# setup as a kubernetes node
include profile::kubernetes::node
# setup calico, our kubernetes CNI
include profile::calico::kubernetes
# LVS configuration, for service VIPs
include profile::lvs::realserver
}
|