Sto creando un contenitore per ottimizzare le impostazioni del kernel per un bilanciamento del carico. Preferirei distribuire tali modifiche all'host in un'immagine usando un singolo contenitore privilegiato. Per esempio:
docker run --rm --privileged ubuntu:latest sysctl -w net.core.somaxconn=65535
Nel test le modifiche hanno effetto ma solo per quel contenitore. Avevo l'impressione che con un contenitore completamente privilegiato le modifiche a / proc avrebbero effettivamente cambiato il sistema operativo sottostante.
$docker run --rm --privileged ubuntu:latest \
sysctl -w net.core.somaxconn=65535
net.core.somaxconn = 65535
$ docker run --rm --privileged ubuntu:latest \
/bin/bash -c "sysctl -a | grep somaxconn"
net.core.somaxconn = 128
È così che dovrebbero funzionare i container privilegiati?
Sto solo facendo qualcosa di stupido?
Qual è il modo migliore per apportare cambiamenti duraturi?
Informazioni sulla versione:
Client version: 1.4.1
Client API version: 1.16
Go version (client): go1.3.3
Git commit (client): 5bc2ff8
OS/Arch (client): linux/amd64
Server version: 1.4.1
Server API version: 1.16
Go version (server): go1.3.3
Git commit (server): 5bc2ff8
Esempio di comando con montato / proc:
$ docker run -v /proc:/proc ubuntu:latest \
/bin/bash -c "sysctl -a | grep local_port"
net.ipv4.ip_local_port_range = 32768 61000
$ docker run -v /proc:/proc --privileged ubuntu:latest \
/bin/bash -c "sysctl -p /updates/sysctl.conf"
net.ipv4.ip_local_port_range = 2000 65000
$ docker run -v /proc:/proc ubuntu:latest \
/bin/bash -c "sysctl -a | grep local_port"
net.ipv4.ip_local_port_range = 32768 61000
$ docker run -v /proc:/proc --privileged ubuntu:latest \
/bin/bash -c "sysctl -a | grep local_port"
net.ipv4.ip_local_port_range = 32768 61000