我正在针对 google cloud 中的 kubernetes 做一个实验,所以我的任务是在一个吊舱中部署两台 nginx 服务器,但是我有一个问题。
其中一个Pod无法启动,因为PORT或IP正在使用购买另一个Nginx容器,我需要在yaml文件中进行更改,请给我一个解决方案,谢谢您
apiVersion: v1
kind: Pod
metadata:
name: two-containers
spec:
restartPolicy: Never
volumes:
- name: shared-data
emptyDir: {}
containers:
- name: first-container
image: nginx
- name: second-container
image: nginx
E nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
E 2019/01/21 11:04:47 [emerg] 1#1: bind() to 0.0.0.0:80 failed (98: Address already in use)
E nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
E 2019/01/21 11:04:47 [emerg] 1#1: bind() to 0.0.0.0:80 failed (98: Address already in use)
E nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
E 2019/01/21 11:04:47 [emerg] 1#1: bind() to 0.0.0.0:80 failed (98: Address already in use)
E nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
E 2019/01/21 11:04:47 [emerg] 1#1: bind() to 0.0.0.0:80 failed (98: Address already in use)
E nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
E 2019/01/21 11:04:47 [emerg] 1#1: still could not bind()
E nginx: [emerg] still could not bind()
答案 0 :(得分:2)
在kubernetes中,pod中的容器共享单个网络名称空间。为简化起见,两个容器不能在同一吊舱中监听相同的端口。
因此,要使两个Nginx容器位于同一容器中,您需要在不同的端口上运行它们。一个nginx可以在80上运行,另一个可以在81上运行。
因此,我们将使用默认的nginx配置运行first-container
,对于second-container
,我们将使用以下配置运行。
server {
listen 81;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
default.conf
kubectl create configmap nginx-conf --from-file default.conf
apiVersion: v1
kind: Pod
metadata:
name: two-containers
spec:
restartPolicy: Never
volumes:
- name: config
configMap:
name: nginx-conf
containers:
- name: first-container
image: nginx
ports:
- containerPort: 80
- name: second-container
image: nginx
ports:
- containerPort: 81
volumeMounts:
- name: config
mountPath: /etc/nginx/conf.d
部署Pod。
现在将exec放入pod并尝试对localhost:80
和localhost:81
进行ping操作。
让我知道,如果您需要更多帮助。