当前,我尝试在Azure Kubernetes服务上设置Nextcloud作为练习。基本上,该应用程序似乎正在运行,但是在连接数据库之后,Nextcloud的结尾类似于...
请将存储空间的权限更改为0770,以防止其他人访问您的数据
我想是因为我使用了azurefile
共享作为持久卷。我的pvc部署如下所示:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: nextcloud-shared-storage-claim
labels:
app: nextcloud
spec:
accessModes:
- ReadWriteOnce
storageClassName: azurefile
resources:
requests:
storage: 5Gi
我已经对该主题进行了研究,并找到了通过securityContext
实现对pod的权限使用的方法。因为我只是刚开始在Azure上使用Kubernetes,所以我在将我的nextcloud部署文件与Pod绑定在一起时遇到了一些麻烦。
要完成该帖子-这是我使用的Nextcloud的部署文件
apiVersion: apps/v1
kind: Deployment
metadata:
name: nextcloud-server
labels:
app: nextcloud
spec:
replicas: 1
selector:
matchLabels:
pod-label: nextcloud-server-pod
template:
metadata:
labels:
pod-label: nextcloud-server-pod
spec:
containers:
- name: nextcloud
image: nextcloud:20-apache
volumeMounts:
- name: server-storage
mountPath: /var/www/html
subPath: server-data
volumes:
- name: server-storage
persistentVolumeClaim:
claimName: nextcloud-shared-storage-claim
---
apiVersion: v1
kind: Service
metadata:
name: nextcloud-server
labels:
app: nextcloud
spec:
selector:
pod-label: nextcloud-server-pod
ports:
- protocol: TCP
port: 80
我猜/希望这很简单。