From 124324032a63a92aa2adeb6347e19dd7cb6a75d2 Mon Sep 17 00:00:00 2001 From: Anderson Cabral Filho Date: Sat, 23 May 2026 04:01:41 +0000 Subject: [PATCH] =?UTF-8?q?feat(minio):=20deployment=20RELEASE.2025-04-22?= =?UTF-8?q?=20(vers=C3=A3o=20est=C3=A1vel=20com=20features=20antigas)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/minio/Deployment.yaml | 63 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 apps/minio/Deployment.yaml diff --git a/apps/minio/Deployment.yaml b/apps/minio/Deployment.yaml new file mode 100644 index 0000000..3ca0548 --- /dev/null +++ b/apps/minio/Deployment.yaml @@ -0,0 +1,63 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: minio +spec: + replicas: 1 + strategy: + type: Recreate + selector: + matchLabels: + app: minio + template: + metadata: + labels: + app: minio + spec: + containers: + - name: minio + image: minio/minio:RELEASE.2025-04-22T22-12-26Z + args: + - server + - /data + - --address + - :9000 + - --console-address + - :9001 + envFrom: + - secretRef: + name: minio-root + env: + - name: MINIO_BROWSER_REDIRECT_URL + value: https://minio.andy.dev.br + - name: MINIO_SERVER_URL + value: https://s3.andy.dev.br + ports: + - containerPort: 9000 + name: api + - containerPort: 9001 + name: console + readinessProbe: + httpGet: + path: /minio/health/ready + port: 9000 + periodSeconds: 10 + livenessProbe: + httpGet: + path: /minio/health/live + port: 9000 + initialDelaySeconds: 20 + periodSeconds: 30 + volumeMounts: + - name: data + mountPath: /data + resources: + requests: + cpu: 100m + memory: 256Mi + limits: + memory: 2Gi + volumes: + - name: data + persistentVolumeClaim: + claimName: minio-data