Browse Source

Ignore pause from kubeadm config images list (#6689)

pull/6708/head
Florian Ruynat 4 years ago
committed by GitHub
parent
commit
151b142d30
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/download/tasks/prep_kubeadm_images.yml

2
roles/download/tasks/prep_kubeadm_images.yml

@ -31,7 +31,7 @@
state: file
- name: prep_kubeadm_images | Generate list of required images
shell: "set -o pipefail && {{ bin_dir }}/kubeadm config images list --config={{ kube_config_dir }}/kubeadm-images.yaml | grep -v coredns"
shell: "set -o pipefail && {{ bin_dir }}/kubeadm config images list --config={{ kube_config_dir }}/kubeadm-images.yaml | grep -Ev 'coredns|pause'"
args:
executable: /bin/bash
register: kubeadm_images_raw

Loading…
Cancel
Save