本篇內(nèi)容主要講解“Pause容器、infra容器與initContainer怎么使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Pause容器、infra容器與initContainer怎么使用”吧!
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、微信小程序開發(fā)、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了三明免費建站歡迎大家使用!
initContainer, 對外暴露8080端口,作為initContainer, 共享網(wǎng)絡(luò),共享PID,共享IPC docker run -d --name pause -p 8080:80 mirrorgooglecontainers/pause-amd64:3.0
nginx 轉(zhuǎn)發(fā)代理,監(jiān)聽80,轉(zhuǎn)發(fā)到ghost博客系統(tǒng)
$cat <>nginx.conf error_log stderr; events { worker_connections 1024; } hhtp{ access_log /dev/stdout combined; server{ listen 80 default_server; server_name example.com www.example.com; location / { proxy_pass http://127.0.0.1:2368; } } } EOF
docker run -d --name nginx -v
pwd/nginx.conf:/etc/nginx/nginx.conf --net=container:pause --ipc=container:pause --pid=container:pause nginx
ghost 博客系統(tǒng),默認端口2368 docker run -d --name ghost --net=container:pause --ipc=container:pause --pid=container:pause ghost
vim /etc/docker/daemonset "default-ipc-mode": "shareable" systemctl restart docker
PID命名空間:Pod中的不同應(yīng)用程序可以看到其他應(yīng)用程序的進程ID;
網(wǎng)絡(luò)命名空間:Pod中的多個容器能夠訪問同一個IP和端口范圍;
IPC命名空間:Pod中的多個容器能夠使用SystemV IPC或POSIX消息隊列進行通信;
UTS命名空間:Pod中的多個容器共享一個主機名;Volumes(共享存儲卷):
Pod中的各個容器可以訪問在Pod級別定義的Volumes;
到此,相信大家對“Pause容器、infra容器與initContainer怎么使用”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!