Skip to content

Commit

Permalink
Automated MinIO version update RELEASE.2023-11-11T08-14-41Z (#4934)
Browse files Browse the repository at this point in the history
Create new minio version

Co-authored-by: emosbaugh <[email protected]>
  • Loading branch information
replicated-ci-kurl and emosbaugh committed Nov 13, 2023
1 parent 5a4e43d commit cefe42c
Show file tree
Hide file tree
Showing 23 changed files with 1,156 additions and 0 deletions.
1 change: 1 addition & 0 deletions addons/minio/2023-11-11T08-14-41Z/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
image minio minio/minio:RELEASE.2023-11-11T08-14-41Z
67 changes: 67 additions & 0 deletions addons/minio/2023-11-11T08-14-41Z/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
apiVersion: apps/v1
kind: Deployment
metadata:
# This name uniquely identifies the Deployment
name: minio
spec:
replicas: 1
selector:
matchLabels:
app: minio # has to match .spec.template.metadata.labels
strategy:
# Specifies the strategy used to replace old Pods by new ones
# Refer: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
type: Recreate
template:
metadata:
labels:
# This label is used as a selector in Service definition
app: minio
spec:
containers:
- name: minio
# Volume mounts for this container
volumeMounts:
# Volume 'data' is mounted to path '/data'
- name: data
mountPath: "/data"
# Pulls the lastest Minio image from Docker Hub
image: minio/minio:RELEASE.2023-11-11T08-14-41Z
args:
- --quiet
- server
- /data
env:
- name: MINIO_UPDATE
value: "off"
# MinIO access key and secret key
- name: MINIO_ACCESS_KEY
valueFrom:
secretKeyRef:
name: minio-credentials
key: MINIO_ACCESS_KEY
- name: MINIO_SECRET_KEY
valueFrom:
secretKeyRef:
name: minio-credentials
key: MINIO_SECRET_KEY
ports:
- containerPort: 9000
# Readiness probe detects situations when MinIO server instance
# is not ready to accept traffic. Kubernetes doesn't forward
# traffic to the pod while readiness checks fail.
readinessProbe:
httpGet:
path: /minio/health/ready
port: 9000
initialDelaySeconds: 5
periodSeconds: 20
# Liveness probe detects situations where MinIO server instance
# is not working properly and needs restart. Kubernetes automatically
# restarts the pods if liveness checks fail.
livenessProbe:
httpGet:
path: /minio/health/live
port: 9000
initialDelaySeconds: 5
periodSeconds: 20
Loading

0 comments on commit cefe42c

Please sign in to comment.