mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2025-02-16 01:22:03 +01:00
airgap installs allow users to deploy k3s in a situation where the server is not internet connected and therefore unable to download anything externally
11 lines
233 B
YAML
11 lines
233 B
YAML
---
|
|
|
|
- import_tasks: build/get-version.yml
|
|
when: k3s_release_version is not defined or not k3s_release_version
|
|
|
|
- import_tasks: build/download-k3s.yml
|
|
when: not k3s_airgap
|
|
|
|
- import_tasks: build/airgap-k3s.yml
|
|
when: k3s_airgap
|