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


7
8
9
10
11
# File 'manifests/system/git.pp', line 7

class kubeinstall::system::git {
  package { 'git':
    ensure => 'present'
  }
}