28 lines
570 B
Markdown
28 lines
570 B
Markdown
# infra_cloudinit
|
|
|
|
https://pabpereza.notion.site/Install-kubernetes-1-28-on-Ubuntu-Server-20-04-LTS-6f8d28eadb6242f0a78c40eaa0211167
|
|
|
|
https://medium.com/@pabloperezaradros/install-kubernetes-1-28-e42ad9194d4f
|
|
|
|
|
|
https://www.linuxtechi.com/install-kubernetes-on-ubuntu-24-04/
|
|
|
|
|
|
#Crea una plantilla desde la VM
|
|
|
|
PLANTILLA="919200"
|
|
qm template $PLANTILLA
|
|
|
|
|
|
# Ruta del archivo a modificar
|
|
CONFIG_FILE="/etc/dhcpcd.conf"
|
|
|
|
# Comentar la línea 'duid'
|
|
sed -i 's/^duid/#duid/' "$CONFIG_FILE"
|
|
|
|
# Descomentar la línea '#clientid'
|
|
sed -i 's/^#clientid/clientid/' "$CONFIG_FILE"
|
|
|
|
|
|
|