Skip to content

Commit 02aa06d

Browse files
committed
fix for 1.26+
1 parent 8611746 commit 02aa06d

File tree

6 files changed

+12
-13
lines changed

6 files changed

+12
-13
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ For example,
377377

378378
The configuration for the image pause container.
379379

380-
Default `k8s.gcr.io/pause:3.2`.
380+
Default `registry.k8s.io/pause:3.2`.
381381

382382
### `containerd_socket`
383383

@@ -671,7 +671,7 @@ Defaults to `undef`.
671671

672672
The container registry to pull control plane images from.
673673

674-
Defaults to k8s.gcr.io
674+
Defaults to registry.k8s.io
675675

676676
#### `install_dashboard`
677677

REFERENCE.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ the files if they do not exist.
648648

649649
[*containerd_sandbox_image*]
650650
The configuration for the image pause container
651-
Defaults k8s.gcr.io/pause:3.2
651+
Defaults registry.k8s.io/pause:3.2
652652

653653
[*dns_domain*]
654654
This is a string that sets the dns domain in kubernetes cluster
@@ -949,7 +949,7 @@ Example:
949949

950950
[*image_repository*]
951951
The container registry to pull control plane images from
952-
Defaults to k8s.gcr.io
952+
Defaults to registry.k8s.io
953953

954954
[*kubeadm_extra_config*]
955955
A hash containing extra configuration data to be serialised with `to_yaml` and appended to the config.yaml file used by kubeadm.
@@ -1996,7 +1996,7 @@ Data type: `String`
19961996

19971997

19981998

1999-
Default value: `'k8s.gcr.io/pause:3.2'`
1999+
Default value: `'registry.k8s.io/pause:3.2'`
20002000

20012001
##### <a name="-kubernetes--etcd_archive"></a>`etcd_archive`
20022002

@@ -2274,7 +2274,7 @@ Data type: `String`
22742274

22752275

22762276

2277-
Default value: `'k8s.gcr.io'`
2277+
Default value: `'registry.k8s.io'`
22782278

22792279
##### <a name="-kubernetes--default_path"></a>`default_path`
22802280

manifests/init.pp

+4-4
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
#
7676
# [*containerd_sandbox_image*]
7777
# The configuration for the image pause container
78-
# Defaults k8s.gcr.io/pause:3.2
78+
# Defaults registry.k8s.io/pause:3.2
7979
#
8080
# [*dns_domain*]
8181
# This is a string that sets the dns domain in kubernetes cluster
@@ -376,7 +376,7 @@
376376
#
377377
# [*image_repository*]
378378
# The container registry to pull control plane images from
379-
# Defaults to k8s.gcr.io
379+
# Defaults to registry.k8s.io
380380
#
381381
# [*kubeadm_extra_config*]
382382
# A hash containing extra configuration data to be serialised with `to_yaml` and appended to the config.yaml file used by kubeadm.
@@ -697,7 +697,7 @@
697697
},
698698
},
699699
Enum['runc','nvidia'] $containerd_default_runtime_name = 'runc',
700-
String $containerd_sandbox_image = 'k8s.gcr.io/pause:3.2',
700+
String $containerd_sandbox_image = 'registry.k8s.io/pause:3.2',
701701
String $etcd_archive = "etcd-v${etcd_version}-linux-amd64.tar.gz",
702702
Optional[String] $etcd_archive_checksum = undef,
703703
String $etcd_package_name = 'etcd-server',
@@ -734,7 +734,7 @@
734734
Boolean $manage_kernel_modules = true,
735735
Boolean $manage_sysctl_settings = true,
736736
Boolean $create_repos = true,
737-
String $image_repository = 'k8s.gcr.io',
737+
String $image_repository = 'registry.k8s.io',
738738
Array[String] $default_path = ['/usr/bin', '/usr/sbin', '/bin', '/sbin', '/usr/local/bin'],
739739
String $cgroup_driver = $facts['os']['family'] ? {
740740
'RedHat' => 'systemd',

templates/0-containerd.conf.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[Service]
2-
Environment="KUBELET_EXTRA_ARGS=--container-runtime=remote --runtime-request-timeout=15m --container-runtime-endpoint=unix:///run/containerd/containerd.sock"
2+
Environment="KUBELET_EXTRA_ARGS=--runtime-request-timeout=15m --container-runtime-endpoint=unix:///run/containerd/containerd.sock"

templates/v1beta3/config_kubeadm.yaml.erb

-1
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,3 @@ mode: "<%= @proxy_mode %>"
150150
nodePortAddresses: null
151151
oomScoreAdj: -999
152152
portRange: ""
153-
udpIdleTimeout: 250ms

tooling/kube_tool/other_params.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def OtherParams.create(opts)
2525
cni_network_provider = 'https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml'
2626
cni_pod_cidr = '10.244.0.0/16'
2727
when 'calico'
28-
cni_network_provider = "https://docs.projectcalico.org/archive/#{opts[:cni_provider_version]}/manifests/calico.yaml"
28+
cni_network_provider = "https://docs.projectcalico.org/archive/v#{opts[:cni_provider_version]}/manifests/calico.yaml"
2929
cni_pod_cidr = '192.168.0.0/16'
3030
when 'calico-tigera'
3131
cni_network_preinstall = "https://docs.projectcalico.org/manifests/tigera-operator.yaml"

0 commit comments

Comments
 (0)