Skip to content

Commit 008663e

Browse files
pccibotTheMeier
authored andcommitted
modulesync 10.1.0-26-ga82038c
1 parent 2cebca8 commit 008663e

File tree

19 files changed

+309
-581
lines changed

19 files changed

+309
-581
lines changed

.github/CONTRIBUTING.md

Lines changed: 0 additions & 272 deletions
This file was deleted.

.msync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Managed by modulesync - DO NOT EDIT
33
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
44

5-
modulesync_config_version: '10.1.0'
5+
modulesync_config_version: '10.2.0'

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
55

66
group :test do
7-
gem 'voxpupuli-test', '~> 11.0', :require => false
7+
gem 'voxpupuli-test', '~> 12.0', :require => false
88
gem 'puppet_metadata', '~> 5.0', :require => false
99
end
1010

manifests/binary.pp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
'package': {
4646
$_template = $k8s::package_template
4747
$_name = k8s::format_url($_template, {
48-
version => $version,
49-
component => $_component,
48+
version => $version,
49+
component => $_component,
5050
})
5151
package { "kubernetes-${name}":
5252
ensure => $ensure,
@@ -64,8 +64,8 @@
6464
'tarball': {
6565
$_template = $k8s::tarball_url_template
6666
$_url = k8s::format_url($_template, {
67-
version => $version,
68-
component => $_component,
67+
version => $version,
68+
component => $_component,
6969
})
7070
$_file = "${tarball_target}/${basename($_url)}"
7171
if !defined(File[$tarball_target]) {
@@ -97,9 +97,9 @@
9797
'loose': {
9898
$_template = $k8s::native_url_template
9999
$_url = k8s::format_url($_template, {
100-
version => $version,
101-
component => $_component,
102-
binary => $name,
100+
version => $version,
101+
component => $_component,
102+
binary => $name,
103103
})
104104
file { "${target}/${name}":
105105
ensure => $ensure,
@@ -110,9 +110,9 @@
110110
'hyperkube': {
111111
$_template = $k8s::native_url_template
112112
$_url = k8s::format_url($_template, {
113-
version => $version,
114-
component => $_component,
115-
binary => $k8s::hyperkube_name,
113+
version => $version,
114+
component => $_component,
115+
binary => $k8s::hyperkube_name,
116116
})
117117
if !defined(File["${target}/${k8s::hyperkube_name}"]) {
118118
file { "${target}/${k8s::hyperkube_name}":

manifests/common.pp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
home => '/srv/kubernetes',
1717
managehome => false,
1818
shell => (fact('os.family') ? {
19-
'Debian' => '/usr/sbin/nologin',
20-
default => '/sbin/nologin',
19+
'Debian' => '/usr/sbin/nologin',
20+
default => '/sbin/nologin',
2121
}),
2222
system => true,
2323
uid => $k8s::uid,
@@ -48,10 +48,10 @@
4848
file { "${k8s::sysconfig_path}/kube-common":
4949
ensure => file,
5050
content => epp('k8s/sysconfig.epp', {
51-
comment => 'General Kubernetes Configuration',
52-
environment_variables => {
53-
'KUBE_LOG_LEVEL' => '',
54-
},
51+
comment => 'General Kubernetes Configuration',
52+
environment_variables => {
53+
'KUBE_LOG_LEVEL' => '',
54+
},
5555
}),
5656
}
5757

manifests/install/cni_plugins.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
case $method {
2626
'tarball', 'loose': {
2727
$_url = k8s::format_url($download_url_template, {
28-
version => $version,
28+
version => $version,
2929
})
3030
$_target = "/opt/k8s/cni-${version}";
3131
$_tarball_target = '/opt/k8s/archives';

manifests/install/crictl.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
$config_require = Package[$pkg]
3434
} else {
3535
$_url = k8s::format_url($download_url_template, {
36-
version => $version,
36+
version => $version,
3737
})
3838
$_target = "/opt/k8s/crictl-${version}";
3939
$_tarball_target = '/opt/k8s/archives';

0 commit comments

Comments
 (0)