Puppet Class: kubeinstall::profile::controller

Defined in:
manifests/profile/controller.pp

Summary

Kubernetes conntroller setup

Overview

Kubernetes conntroller setup

Examples:

include kubeinstall::profile::controller

Parameters:

  • helm_client (Boolean) (defaults to: true)

    Whether to install Helm client binary or not



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': }
  }
}