-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathminio-deployment.yaml
56 lines (56 loc) · 1002 Bytes
/
minio-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: v1
kind: Namespace
metadata:
name: minio-dev
labels:
name: minio-dev
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: minio
name: minio
namespace: minio-dev
spec:
replicas: 2
selector:
matchLabels:
app: minio
template:
metadata:
labels:
app: minio
spec:
containers:
- name: minio
image: quay.io/minio/minio:latest
command:
- /bin/bash
- -c
args:
- minio server /data --console-address :9001
volumeMounts:
- mountPath: /data
name: localvolume
volumes:
- name: localvolume
hostPath:
#Here should be changed
path: /home/msevinc/minio
type: DirectoryOrCreate
---
apiVersion: v1
kind: Service
metadata:
name: minio-service
namespace: minio-dev
spec:
type: NodePort
selector:
app: minio
ports:
- protocol: TCP
nodePort: 31773
port: 9001
targetPort: 9001