We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b714cd3 + c602192 commit 2f3a2d6Copy full SHA for 2f3a2d6
minio.yaml
@@ -0,0 +1,41 @@
1
+apiVersion: v1
2
+kind: Service
3
+metadata:
4
+ name: minio
5
+spec:
6
+ type: ClusterIP
7
+ ports:
8
+ - port: 9000
9
+ targetPort: 9000
10
+ protocol: TCP
11
+ selector:
12
+ app: minio
13
+
14
+---
15
16
+apiVersion: apps/v1
17
+kind: Deployment
18
19
20
+ labels:
21
22
23
24
+ matchLabels:
25
26
+ template:
27
+ metadata:
28
29
30
+ spec:
31
+ containers:
32
+ - image: minio/minio:latest
33
+ name: image
34
+ args:
35
+ - server
36
+ - /data
37
+ env:
38
+ - name: MINIO_ACCESS_KEY
39
+ value: minio
40
+ - name: MINIO_SECRET_KEY
41
+ value: minio123
0 commit comments