TrueChartsCatalogClone/stable/minio/1.0.14/ix_values.yaml

55 lines
1.1 KiB
YAML

image:
# -- image repository
repository: tccr.io/truecharts/minio
# -- image tag
tag: latest@sha256:8129f69c85b84e13f085a1ce127f108cee0ea84a1f496e8065796c7a15a08442
# -- image pull policy
pullPolicy: IfNotPresent
# -- Override the args for the default container.
args: ["server", "/data", "--console-address", ":9001"]
secret:
# -- Minio Password
MINIO_ROOT_PASSWORD: "changeme"
# -- environment variables. See more environment variables in the [minio documentation](https://docs.min.io).
# @default -- See below
env:
# -- Set the container timezone
TZ: UTC
# -- Minio Username
MINIO_ROOT_USER: "minio"
MINIO_BROWSER_REDIRECT_URL: ""
probes:
liveness:
path: "/minio/health/live"
readiness:
path: "/minio/health/ready"
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
main:
port: 10106
targetPort: 9000
console:
enabled: true
ports:
console:
enabled: true
targetPort: 9001
port: 10107
securityContext:
readOnlyRootFilesystem: false
persistence:
config:
enabled: true
mountPath: "/data"