# 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. --- - name: Download nssm win_get_url: url: '{{ nssm_url }}' dest: '{{ kubernetes_install_path }}\' retries: 5 delay: 3 register: nssm_download until: nssm_download is not failed - name: Create kubelet start file for nssm win_template: src: templates/StartKubelet.ps1 dest: '{{ kubernetes_install_path }}\StartKubelet.ps1' - name: Install kubelet via nssm win_nssm: name: kubelet start_mode: auto state: present application: '%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe' arguments: '-ExecutionPolicy Bypass -NoProfile {{ kubernetes_install_path }}\StartKubelet.ps1' app_rotate_bytes: 10485760 stderr_file: '{{ systemdrive.stdout | trim }}\var\log\kubelet\kubelet.err.log' stdout_file: '{{ systemdrive.stdout | trim }}\var\log\kubelet\kubelet.log' app_rotate_online: 1