亲爱的K8S社区团队,
当我部署应用程序pod时,我从nginx收到此错误消息。我的应用程序angular6应用程序托管在Nginx服务器内部,该服务器作为EKS内部的Docker容器部署。
我已将我的应用程序配置为“只读容器文件系统”,但是我将“ emptyDir”类型的“临时挂载”卷与只读文件系统结合使用。
所以我不确定出现以下错误的原因:
2019/04/02 14:11:29 [emerg] 1#1:mkdir() “ / var / cache / nginx / client_temp”失败(30:只读文件系统) nginx:[emerg] mkdir()“ / var / cache / nginx / client_temp”失败(30: 只读文件系统)
我的deployment.yaml
是:
...
spec:
volumes:
- name: tmp-volume
emptyDir: {}
# Pod Security Context
securityContext:
fsGroup: 2000
containers:
- name: {{ .Chart.Name }}
volumeMounts:
- mountPath: /tmp
name: tmp-volume
image: "{{ .Values.image.name }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
securityContext:
capabilities:
add:
- NET_BIND_SERVICE
drop:
- ALL
securityContext:
readOnlyRootFilesystem: true
ports:
- name: http
containerPort: 80
protocol: TCP
...
nginx.conf是:
...
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Turn off the bloody buffering to temp files
proxy_buffering off;
sendfile off;
keepalive_timeout 120;
server_names_hash_bucket_size 128;
# These two should be the same or nginx will start writing
# large request bodies to temp files
client_body_buffer_size 10m;
client_max_body_size 10m;
...
答案 0 :(得分:0)
似乎您的nginx
没有以root用户身份运行。
自1.12.1-r2
版以来,nginx守护程序正以用户1001
的身份运行。
1.12.1-r2
nginx容器已迁移到非根容器方法。以前,该容器以root用户身份运行,而nginx守护程序以nginx用户身份启动。从现在开始,容器和nginx守护程序都以用户1001身份运行。因此,运行nginx进程的用户可以写入配置文件。
这就是为什么您无法在端口80
上进行绑定的原因,必须使用端口> 1000。
您应该使用:
ports:
- '80:8080'
- '443:8443'
并编辑nginx.conf,使其监听端口8080:
server {
listen 0.0.0.0:8080;
...
或以root身份运行nginx:
command: [ "/bin/bash", "-c", "sudo nginx -g 'daemon off;'" ]