Enable skipping bootcmd verification in Raspberry PI

This commit is contained in:
jose 2024-02-18 22:47:20 +00:00
parent 060362178d
commit bed814dba2
No known key found for this signature in database
GPG Key ID: 0B35B5E53CE53272
2 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,7 @@ k3s_cluster:
# extra_manifests: [ '/path/to/manifest1.yaml', '/path/to/manifest2.yaml' ]
# airgap_dir: /tmp/k3s-airgap-images
# user_kubectl: true, by default kubectl is symlinked and configured for use by ansible_user. Set to false to only kubectl via root user.
# skip_rpi_cmdline: true # normal instalations of raspberry don't require this, when set it spiks the checks of
# server_config_yaml: |
# This is now an inner yaml file. Maintain the indentation.
# YAML here will be placed as the content of /etc/rancher/k3s/config.yaml

View File

@ -1,5 +1,6 @@
---
- name: Enable cgroup via boot commandline if not already enabled
when: skip_rpi_cmdline is undefined
ansible.builtin.lineinfile:
path: /boot/firmware/cmdline.txt
backrefs: true