-
Notifications
You must be signed in to change notification settings - Fork 0
/
sftp-deployment.yaml
56 lines (56 loc) · 1.09 KB
/
sftp-deployment.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
kompose.cmd: kompose convert -f docker-compose.yaml
kompose.version: 1.22.0 (955b78124)
creationTimestamp: null
labels:
app: sftp-deployment
name: sftp-deployment
spec:
replicas: 1
selector:
matchLabels:
app: sftp
strategy:
type: Recreate
template:
metadata:
labels:
app: sftp
spec:
containers:
- command: ["./entrypoint"]
args: ["foo:pass:::upload"]
image: atmoz/sftp
name: sftp
ports:
- containerPort: 22
resources: {}
volumeMounts:
- mountPath: /home/foo/upload
name: sftp-claim
restartPolicy: Always
volumes:
- name: sftp-claim
persistentVolumeClaim:
claimName: local-claim
status: {}
---
apiVersion: v1
kind: Service
metadata:
labels:
app: sftp-service
name: sftp-service
spec:
type: NodePort
ports:
- name: "30220"
port: 22
nodePort: 30220
selector:
app: sftp
status:
loadBalancer: {}