mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2025-02-06 23:51:59 +01:00
feat(airgap): airgap should not verify version information
in an air gapped environment the machine will not be able to check sha checksums or information around the binary so we should ignore the tasks in that scenario
This commit is contained in:
parent
25d40cec52
commit
8243baa3d9
@ -1,7 +1,9 @@
|
||||
---
|
||||
|
||||
- import_tasks: build/get-version.yml
|
||||
when: k3s_release_version is not defined or not k3s_release_version
|
||||
when:
|
||||
- k3s_release_version is not defined or not k3s_release_version
|
||||
- not k3s_airgap
|
||||
|
||||
- import_tasks: build/download-k3s.yml
|
||||
when: not k3s_airgap
|
||||
|
Loading…
Reference in New Issue
Block a user