Puppet Class: kubeinstall::system::git

Defined in:
manifests/system/git.pp

Summary

Install git tool

Overview

Install git tool (required by krew)

Examples:

include kubeinstall::system::git

Parameters:

  • manage (Boolean) (defaults to: $kubeinstall::manage_git)


7
8
9
10
11
12
13
14
15
16
17
# File 'manifests/system/git.pp', line 7

class kubeinstall::system::git (
  Boolean $manage = $kubeinstall::manage_git,
) {
  # git package could be controlled in different place of role/profile
  # therefore make it possible to disable it here
  if $manage {
    package { 'git':
      ensure => 'present',
    }
  }
}