mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2025-01-25 22:01:52 +01:00
Merge pull request #82 from PyratLabs/bugfix-armv6l_support
Added support for armv6l (RPi ZeroW)
This commit is contained in:
commit
8f0e9f22af
@ -14,6 +14,15 @@
|
|||||||
---
|
---
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
## 2021-01-02, v2.4.1
|
||||||
|
|
||||||
|
### Notable changes
|
||||||
|
|
||||||
|
- Fixed issue with armv6l (Raspberry Pi Zero W)
|
||||||
|
- Added path for private repositories config to directory creation list.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## 2020-12-21, v2.4.0
|
## 2020-12-21, v2.4.0
|
||||||
|
|
||||||
### Notable changes
|
### Notable changes
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
-r ../requirements.txt
|
-r ../requirements.txt
|
||||||
|
|
||||||
molecule[docker]<3.2
|
molecule[docker]>=3.2.1
|
||||||
docker>=4.3.1
|
docker>=4.3.1
|
||||||
yamllint>=1.25.0
|
yamllint>=1.25.0
|
||||||
ansible-lint>=4.3.5
|
ansible-lint>=4.3.5
|
||||||
|
@ -7,4 +7,5 @@
|
|||||||
mode: "{{ directory.mode | default(0755) }}"
|
mode: "{{ directory.mode | default(0755) }}"
|
||||||
become: "{{ k3s_become_for_directory_creation | ternary(true, false, k3s_become_for_all) }}"
|
become: "{{ k3s_become_for_directory_creation | ternary(true, false, k3s_become_for_all) }}"
|
||||||
when: directory.path is defined
|
when: directory.path is defined
|
||||||
|
and directory.path | length > 0
|
||||||
and directory.path != omit
|
and directory.path != omit
|
||||||
|
@ -31,6 +31,12 @@ k3s_arch_lookup:
|
|||||||
arm:
|
arm:
|
||||||
arch: arm
|
arch: arm
|
||||||
suffix: "-armhf"
|
suffix: "-armhf"
|
||||||
|
arm6l:
|
||||||
|
arch: arm
|
||||||
|
suffix: "-armhf"
|
||||||
|
armv6l:
|
||||||
|
arch: arm
|
||||||
|
suffix: "-armhf"
|
||||||
arm7:
|
arm7:
|
||||||
arch: arm
|
arch: arm
|
||||||
suffix: "-armhf"
|
suffix: "-armhf"
|
||||||
@ -95,6 +101,8 @@ k3s_ensure_directories_exist:
|
|||||||
path: "{{ k3s_data_dir }}"
|
path: "{{ k3s_data_dir }}"
|
||||||
- name: Default local storage path
|
- name: Default local storage path
|
||||||
path: "{{ k3s_runtime_config['default-local-storage-path'] | default(omit) }}"
|
path: "{{ k3s_runtime_config['default-local-storage-path'] | default(omit) }}"
|
||||||
|
- name: Private registry config file
|
||||||
|
path: "{{ (k3s_runtime_config['private-registry'] | default(omit)) | dirname }}"
|
||||||
|
|
||||||
# Config items that should not appear in k3s_server or k3s_agent
|
# Config items that should not appear in k3s_server or k3s_agent
|
||||||
k3s_config_exclude:
|
k3s_config_exclude:
|
||||||
|
Loading…
Reference in New Issue
Block a user