44 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
# Copyright 2020 The Kubernetes Authors.
 | 
						|
 | 
						|
# Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
# you may not use this file except in compliance with the License.
 | 
						|
# You may obtain a copy of the License at
 | 
						|
 | 
						|
# http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
# Unless required by applicable law or agreed to in writing, software
 | 
						|
# distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
# See the License for the specific language governing permissions and
 | 
						|
# limitations under the License.
 | 
						|
 | 
						|
# From https://github.com/kubernetes-sigs/sig-windows-tools/blob/master/kubeadm/scripts/PrepareNode.ps1
 | 
						|
$FileContent = Get-Content -Path "/var/lib/kubelet/kubeadm-flags.env"
 | 
						|
$kubeAdmArgs = $FileContent.TrimStart('KUBELET_KUBEADM_ARGS=').Trim('"')
 | 
						|
 | 
						|
$args = "--cert-dir=$env:SYSTEMDRIVE/var/lib/kubelet/pki",
 | 
						|
        "--config=$env:SYSTEMDRIVE/var/lib/kubelet/config.yaml",
 | 
						|
        "--bootstrap-kubeconfig=$env:SYSTEMDRIVE/etc/kubernetes/bootstrap-kubelet.conf",
 | 
						|
        "--kubeconfig=$env:SYSTEMDRIVE/etc/kubernetes/kubelet.conf",
 | 
						|
        "--hostname-override=$(hostname)",
 | 
						|
        "--pod-infra-container-image=`"{{ pause_image }}`"",
 | 
						|
        "--enable-debugging-handlers",
 | 
						|
        "--cgroups-per-qos=false",
 | 
						|
        "--enforce-node-allocatable=`"`"",
 | 
						|
        "--resolv-conf=`"`""
 | 
						|
 | 
						|
{% if runtime == "docker-ee" and kubernetes_semver is version('v1.24.0', '<') %}
 | 
						|
{% raw %}
 | 
						|
$netId = docker network ls -f name=host --format "{{ .ID }}"
 | 
						|
{% endraw %}
 | 
						|
if ($netId.Length -lt 1) {
 | 
						|
    docker network create -d nat host
 | 
						|
}
 | 
						|
 | 
						|
$args += "--image-pull-progress-deadline=20m",
 | 
						|
        "--network-plugin=cni"
 | 
						|
{% endif %}
 | 
						|
 | 
						|
$kubeletCommandLine = "{{ kubernetes_install_path }}\kubelet.exe " + ($args -join " ") + " $kubeAdmArgs"
 | 
						|
Invoke-Expression $kubeletCommandLine
 |