generated from container/tmpl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
126 lines
3.0 KiB
126 lines
3.0 KiB
2 years ago
|
apiVersion: v1
|
||
|
kind: ServiceAccount
|
||
|
metadata:
|
||
|
name: nfs-provisioner
|
||
|
---
|
||
|
kind: Service
|
||
|
apiVersion: v1
|
||
|
metadata:
|
||
|
name: nfs-provisioner
|
||
|
labels:
|
||
|
app: nfs-provisioner
|
||
|
spec:
|
||
|
ports:
|
||
|
- name: nfs
|
||
|
port: 2049
|
||
|
- name: nfs-udp
|
||
|
port: 2049
|
||
|
protocol: UDP
|
||
|
- name: nlockmgr
|
||
|
port: 32803
|
||
|
- name: nlockmgr-udp
|
||
|
port: 32803
|
||
|
protocol: UDP
|
||
|
- name: mountd
|
||
|
port: 20048
|
||
|
- name: mountd-udp
|
||
|
port: 20048
|
||
|
protocol: UDP
|
||
|
- name: rquotad
|
||
|
port: 875
|
||
|
- name: rquotad-udp
|
||
|
port: 875
|
||
|
protocol: UDP
|
||
|
- name: rpcbind
|
||
|
port: 111
|
||
|
- name: rpcbind-udp
|
||
|
port: 111
|
||
|
protocol: UDP
|
||
|
- name: statd
|
||
|
port: 662
|
||
|
- name: statd-udp
|
||
|
port: 662
|
||
|
protocol: UDP
|
||
|
selector:
|
||
|
app: nfs-provisioner
|
||
|
---
|
||
|
kind: StatefulSet
|
||
|
apiVersion: apps/v1
|
||
|
metadata:
|
||
|
name: nfs-provisioner
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: nfs-provisioner
|
||
|
serviceName: "nfs-provisioner"
|
||
|
replicas: 1
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: nfs-provisioner
|
||
|
spec:
|
||
|
serviceAccount: nfs-provisioner
|
||
|
terminationGracePeriodSeconds: 10
|
||
|
containers:
|
||
|
- name: nfs-provisioner
|
||
|
image: registry.cn-hangzhou.aliyuncs.com/gcr_k8s_containers/nfs-provisioner:v3.0.0
|
||
|
ports:
|
||
|
- name: nfs
|
||
|
containerPort: 2049
|
||
|
- name: nfs-udp
|
||
|
containerPort: 2049
|
||
|
protocol: UDP
|
||
|
- name: nlockmgr
|
||
|
containerPort: 32803
|
||
|
- name: nlockmgr-udp
|
||
|
containerPort: 32803
|
||
|
protocol: UDP
|
||
|
- name: mountd
|
||
|
containerPort: 20048
|
||
|
- name: mountd-udp
|
||
|
containerPort: 20048
|
||
|
protocol: UDP
|
||
|
- name: rquotad
|
||
|
containerPort: 875
|
||
|
- name: rquotad-udp
|
||
|
containerPort: 875
|
||
|
protocol: UDP
|
||
|
- name: rpcbind
|
||
|
containerPort: 111
|
||
|
- name: rpcbind-udp
|
||
|
containerPort: 111
|
||
|
protocol: UDP
|
||
|
- name: statd
|
||
|
containerPort: 662
|
||
|
- name: statd-udp
|
||
|
containerPort: 662
|
||
|
protocol: UDP
|
||
|
securityContext:
|
||
|
capabilities:
|
||
|
add:
|
||
|
- DAC_READ_SEARCH
|
||
|
- SYS_RESOURCE
|
||
|
args:
|
||
|
- "-provisioner=gcr.io/nfs"
|
||
|
env:
|
||
|
- name: POD_IP
|
||
|
valueFrom:
|
||
|
fieldRef:
|
||
|
fieldPath: status.podIP
|
||
|
- name: SERVICE_NAME
|
||
|
value: nfs-provisioner
|
||
|
- name: POD_NAMESPACE
|
||
|
valueFrom:
|
||
|
fieldRef:
|
||
|
fieldPath: metadata.namespace
|
||
|
imagePullPolicy: "IfNotPresent"
|
||
|
volumeMounts:
|
||
|
- name: export-volume
|
||
|
mountPath: /export
|
||
|
nodeSelector:
|
||
|
kubernetes.io/hostname: test-n3
|
||
|
volumes:
|
||
|
- name: export-volume
|
||
|
hostPath:
|
||
|
path: /srv
|