generated from 39services/ansible_role_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
33 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
--- | ||
rancher_rke2_role_name: "rke2" | ||
rancher_rke2_script_url: "https://get.rke2.io" | ||
rancher_rke2_channel: "v1.24" # Latest is 1.26, this is latest supported by Rancher | ||
rancher_rke2_tls_san: | ||
rke2_role_name: "rke2" | ||
rke2_script_url: "https://get.rke2.io" | ||
rke2_channel: "v1.24" # Latest is 1.26, this is latest supported by Rancher | ||
rke2_tls_san: | ||
- "{{ ansible_domain }}" | ||
|
||
rancher_rke2_type: "server" | ||
rancher_rke2_server_ansible_user: "{{ ansible_user_id }}" | ||
rke2_type: "server" | ||
rke2_server_ansible_user: "{{ ansible_user_id }}" | ||
|
||
rke2_dependencies: "{{ _rke2_dependencies }}" | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
token: {{ rancher_rke2_server_token }} | ||
{% if rancher_rke2_server_ip is defined %} | ||
server: https://{{ rancher_rke2_server_ip }}:9345 | ||
token: {{ rke2_server_token }} | ||
{% if rke2_server_ip is defined %} | ||
server: https://{{ rke2_server_ip }}:9345 | ||
{% endif %} | ||
{% if rancher_rke2_tls_san | length > 0 %} | ||
{% if rke2_tls_san | length > 0 %} | ||
tls-san: | ||
{% for san in rancher_rke2_tls_san %} | ||
{% for san in rke2_tls_san %} | ||
- {{ san }} | ||
{% endfor %} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
rancher_rke2_role_name: "rke2" | ||
rke2_role_name: "rke2" | ||
|
||
... |