Puppet Class: kubeinstall::system::git
- Defined in:
- manifests/system/git.pp
Summary
Install git toolOverview
Install git tool (required by krew)
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',
}
}
}
|