kubekey/builtin/core/playbooks/init_registry.yaml
liujian 3885b443ac
fix: change builtin/core architectures (#2718)
Signed-off-by: redscholar <blacktiledhouse@gmail.com>
2025-08-22 21:59:40 +08:00

26 lines
498 B
YAML

---
# Load default variables and perform prechecks on all hosts
- hosts:
- all
tags: ["always"]
gather_facts: true
roles:
- role: defaults
# Download all required software and generate certificates on the localhost
- hosts:
- localhost
gather_facts: true
roles:
- role: certs/init
- role: download
# Initialize all nodes and install necessary software packages
- hosts:
- image_registry
tags: ["always"]
roles:
- role: native
- role: image-registry