From 86eb2002f089803fb9edaa63c8fc52d4681cb23d Mon Sep 17 00:00:00 2001 From: Adrien Bouvais Date: Fri, 14 Aug 2026 16:01:50 +0200 Subject: [PATCH] Added mioni manifests --- minio/manifests.yaml | 46 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 minio/manifests.yaml diff --git a/minio/manifests.yaml b/minio/manifests.yaml new file mode 100644 index 0000000..6435a4d --- /dev/null +++ b/minio/manifests.yaml @@ -0,0 +1,46 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: minio + namespace: minio +spec: + replicas: 1 + selector: + matchLabels: {app: minio} + template: + metadata: + labels: {app: minio} + spec: + containers: + - name: minio + image: minio/minio:latest + args: ["server", "/data", "--console-address", ":9001"] + env: + - name: MINIO_ROOT_USER + value: "admin" + - name: MINIO_ROOT_PASSWORD + value: "changeme123" # TODO: Remove + ports: + - containerPort: 9000 + - containerPort: 9001 + volumeMounts: + - name: data + mountPath: /data + volumes: + - name: data + emptyDir: {} # TODO: Make it persistant +--- +apiVersion: v1 +kind: Service +metadata: + name: minio + namespace: minio +spec: + selector: {app: minio} + ports: + - name: api + port: 9000 + targetPort: 9000 + - name: console + port: 9001 + targetPort: 9001