Browse Source

fix: add kubelet tag in task of fetch facts to avoid kubelet config inconsistencies (#10423)

when people run playbook with option `--tags=kubelet`, the kubelet config may changed, because some variables used in task populating `kubelet-config.yml`  could be different with running task(`Fetch facts`)
pull/10428/head
NierYYDS 1 year ago
committed by GitHub
parent
commit
af8210dfea
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions
  1. 1
      roles/kubernetes/node/tasks/main.yml

1
roles/kubernetes/node/tasks/main.yml

@ -3,6 +3,7 @@
import_tasks: facts.yml import_tasks: facts.yml
tags: tags:
- facts - facts
- kubelet
- name: Pre-upgrade kubelet - name: Pre-upgrade kubelet
import_tasks: pre_upgrade.yml import_tasks: pre_upgrade.yml

Loading…
Cancel
Save