mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-25 17:12:50 +00:00
18 lines
373 B
YAML
18 lines
373 B
YAML
---
|
|
# Load default variables and perform prechecks on all hosts
|
|
- hosts:
|
|
- all
|
|
gather_facts: true
|
|
roles:
|
|
- defaults
|
|
|
|
# Download all required software and generate certificates on the localhost
|
|
- hosts:
|
|
- localhost
|
|
roles:
|
|
- download
|
|
tasks:
|
|
- name: Export artifact
|
|
command: |
|
|
cd {{ .binary_dir }} && tar -czvf {{ .artifact_file }} *
|