You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use the cloud-config (following the doc) to boot and configure my edge-node with KairOS.
What in this case I would like to do, is to use cloud-config file to preconfigure the keyboard language. To do so, i've tried two configuration.
In the first one, i've tried to follow yip documentation, using ' systemd_firstboot' as follow:
cloud-config1.yaml
# cloud-config
install:
....
setup:
- name: setting up keyboard language
systemd_firstboot:
keymap: it
runcmd:
....
stages:
....
Unluckly, this configuration didn't work, but this is not too bad because "systemd_firstboot" should works only for the first boot of the node, while in my use-case i would like to change keyboard layout as needed (with a bash script that update the relevant cloud-config field).
So i've tried another configuration, this time following the 'keyboard' cloud-init module (here) as shown below:
cloud-config.yaml
#cloud-config
install:
.....
keyboard:
layout: it
runcmd:
....
stages:
....
Again it didn't work.
In order to accomplish what i would like to do, i'm using the following workaround:
Am i missing something? Am i using the Cloud-Init and yip modules in a wrong way?
The text was updated successfully, but these errors were encountered:
PaSharks9
changed the title
Cannot use Cloud-Config modules to set Keyboard Layout
Cannot use Cloud-Config or YIP modules to set Keyboard Layout
Aug 2, 2024
PaSharks9
changed the title
Cannot use Cloud-Config or YIP modules to set Keyboard Layout
Cannot use Cloud-Init or YIP modules to set Keyboard Layout
Aug 2, 2024
I'm trying to use the cloud-config (following the doc) to boot and configure my edge-node with KairOS.
What in this case I would like to do, is to use cloud-config file to preconfigure the keyboard language. To do so, i've tried two configuration.
In the first one, i've tried to follow yip documentation, using ' systemd_firstboot' as follow:
cloud-config1.yaml
Unluckly, this configuration didn't work, but this is not too bad because "systemd_firstboot" should works only for the first boot of the node, while in my use-case i would like to change keyboard layout as needed (with a bash script that update the relevant cloud-config field).
So i've tried another configuration, this time following the 'keyboard' cloud-init module (here) as shown below:
cloud-config.yaml
Again it didn't work.
In order to accomplish what i would like to do, i'm using the following workaround:
Am i missing something? Am i using the Cloud-Init and yip modules in a wrong way?
The text was updated successfully, but these errors were encountered: