mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-05 21:33:30 +01:00
Merge pull request #163 from janar153/main
Added option to chnage K3s updates API url
This commit is contained in:
commit
0f143962a1
2 changed files with 4 additions and 1 deletions
|
@ -26,6 +26,9 @@ k3s_build_cluster: true
|
||||||
# URL for GitHub project
|
# URL for GitHub project
|
||||||
k3s_github_url: https://github.com/k3s-io/k3s
|
k3s_github_url: https://github.com/k3s-io/k3s
|
||||||
|
|
||||||
|
# URL for K3s updates API
|
||||||
|
k3s_api_url: https://update.k3s.io
|
||||||
|
|
||||||
# Skip all tasks that validate configuration
|
# Skip all tasks that validate configuration
|
||||||
k3s_skip_validation: false
|
k3s_skip_validation: false
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@ k3s_arch_lookup:
|
||||||
k3s_release_channel: stable
|
k3s_release_channel: stable
|
||||||
|
|
||||||
# K3s updates API
|
# K3s updates API
|
||||||
k3s_api_releases: https://update.k3s.io/v1-release/channels
|
k3s_api_releases: "{{ k3s_api_url }}/v1-release/channels"
|
||||||
# Download location for releases
|
# Download location for releases
|
||||||
k3s_github_download_url: "{{ k3s_github_url }}/releases/download"
|
k3s_github_download_url: "{{ k3s_github_url }}/releases/download"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue