Puppet Class: kubeinstall::profile::controller
- Defined in:
- manifests/profile/controller.pp
Summary
Kubernetes conntroller setupOverview
Kubernetes conntroller setup
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'manifests/profile/controller.pp', line 11
class kubeinstall::profile::controller (
Boolean $helm_client = true,
)
{
include kubeinstall::profile::kubernetes
class { 'kubeinstall::cluster':
cluster_role => 'controller',
}
class { 'kubeinstall::install::controller': }
if $helm_client {
class { 'kubeinstall::install::helm_binary': }
}
}
|