-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathminio.yml
48 lines (48 loc) · 864 Bytes
/
minio.yml
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
apiVersion: v1
kind: Service
metadata:
name: minio
labels:
app: minio
spec:
ports:
- port: 9000
name: web
clusterIP: None
selector:
app: minio
---
apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
name: minio
spec:
serviceName: "minio"
replicas: 1
template:
metadata:
labels:
app: minio
spec:
terminationGracePeriodSeconds: 10
containers:
- name: minio
image: thenatureofsoftware/minio:latest
args:
- server
- /export
imagePullPolicy: Always
ports:
- containerPort: 9000
protocol: TCP
volumeMounts:
- name: export
mountPath: /export
volumeClaimTemplates:
- metadata:
name: export
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: 5Gi