-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated MinIO version update RELEASE.2023-12-02T10-51-33Z (#4955)
Create new minio version Co-authored-by: emosbaugh <[email protected]>
- Loading branch information
1 parent
1e2fd91
commit d737c78
Showing
23 changed files
with
1,156 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
image minio minio/minio:RELEASE.2023-12-02T10-51-33Z |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-12-02T10-51-33Z | ||
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 |
Oops, something went wrong.