Merge pull request #82 from PyratLabs/bugfix-armv6l_support

Added support for armv6l (RPi ZeroW)
This commit is contained in:
Xan Manning 2021-01-02 16:51:47 +00:00 committed by GitHub
commit 8f0e9f22af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 1 deletions

View File

@ -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
### Notable changes

View File

@ -1,6 +1,6 @@
-r ../requirements.txt
molecule[docker]<3.2
molecule[docker]>=3.2.1
docker>=4.3.1
yamllint>=1.25.0
ansible-lint>=4.3.5

View File

@ -7,4 +7,5 @@
mode: "{{ directory.mode | default(0755) }}"
become: "{{ k3s_become_for_directory_creation | ternary(true, false, k3s_become_for_all) }}"
when: directory.path is defined
and directory.path | length > 0
and directory.path != omit

View File

@ -31,6 +31,12 @@ k3s_arch_lookup:
arm:
arch: arm
suffix: "-armhf"
arm6l:
arch: arm
suffix: "-armhf"
armv6l:
arch: arm
suffix: "-armhf"
arm7:
arch: arm
suffix: "-armhf"
@ -95,6 +101,8 @@ k3s_ensure_directories_exist:
path: "{{ k3s_data_dir }}"
- name: Default local storage path
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
k3s_config_exclude: