mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-11-25 12:15:51 +01:00
21 lines
689 B
YAML
21 lines
689 B
YAML
---
|
|
- name: Converge
|
|
hosts: node*
|
|
become: true
|
|
vars:
|
|
molecule_is_test: true
|
|
k3s_release_version: latest
|
|
k3s_build_cluster: false
|
|
k3s_install_dir: /opt/k3s/bin
|
|
k3s_config_file: /opt/k3s/etc/k3s.yaml
|
|
k3s_server:
|
|
data-dir: /var/lib/k3s-io
|
|
default-local-storage-path: /var/lib/k3s-io/local-storage
|
|
k3s_server_manifests_templates:
|
|
- "molecule/autodeploy/templates/00-ns-monitoring.yml.j2"
|
|
k3s_server_manifests_urls:
|
|
- url: https://raw.githubusercontent.com/metallb/metallb/v0.9.6/manifests/namespace.yaml
|
|
filename: 05-metallb-namespace.yml
|
|
roles:
|
|
- role: "{{ lookup('env', 'MOLECULE_PROJECT_DIRECTORY') | basename }}"
|