mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-17 02:12:55 +02:00
71 lines
2.2 KiB
YAML
71 lines
2.2 KiB
YAML
# Root key for MinIO Tenant Chart
|
|
tenant:
|
|
###
|
|
# The Tenant name
|
|
#
|
|
# Change this to match your preferred MinIO Tenant name.
|
|
name: myminio
|
|
###
|
|
# Specify the Operator container image to use for the deployment.
|
|
# ``image.tag``
|
|
# For example, the following sets the image to the ``quay.io/minio/operator`` repo and the v6.0.3 tag.
|
|
# The container pulls the image if not already present:
|
|
#
|
|
# .. code-block:: yaml
|
|
#
|
|
# image:
|
|
# repository: quay.io/minio/minio
|
|
# tag: RELEASE.2024-08-17T01-24-54Z
|
|
# pullPolicy: IfNotPresent
|
|
#
|
|
# The chart also supports specifying an image based on digest value:
|
|
#
|
|
# .. code-block:: yaml
|
|
#
|
|
# image:
|
|
# repository: quay.io/minio/minio@sha256
|
|
# digest: 28c80b379c75242c6fe793dfbf212f43c602140a0de5ebe3d9c2a3a7b9f9f983
|
|
# pullPolicy: IfNotPresent
|
|
#
|
|
#
|
|
image:
|
|
repository: quay.io/minio/minio
|
|
tag: RELEASE.2024-08-17T01-24-54Z
|
|
pullPolicy: IfNotPresent
|
|
###
|
|
#
|
|
# An array of Kubernetes secrets to use for pulling images from a private ``image.repository``.
|
|
# Only one array element is supported at this time.
|
|
imagePullSecret: { }
|
|
###
|
|
# The Kubernetes `Scheduler <https://kubernetes.io/docs/concepts/scheduling-eviction/kube-scheduler/>`__ to use for dispatching Tenant pods.
|
|
#
|
|
# Specify an empty dictionary ``{}`` to dispatch pods with the default scheduler.
|
|
scheduler: { }
|
|
###
|
|
# The Kubernetes secret name that contains MinIO environment variable configurations.
|
|
# The secret is expected to have a key named config.env containing environment variables exports.
|
|
configuration:
|
|
name: myminio-env-configuration
|
|
###
|
|
# Root key for dynamically creating a secret for use with configuring root MinIO User
|
|
# Specify the ``name`` and then a list of environment variables.
|
|
#
|
|
# .. important::
|
|
#
|
|
# Do not use this in production environments.
|
|
# This field is intended for use with rapid development or testing only.
|
|
#
|
|
# For example:
|
|
#
|
|
# .. code-block:: yaml
|
|
#
|
|
# name: myminio-env-configuration
|
|
# accessKey: minio
|
|
# secretKey: minio123
|
|
#
|
|
configSecret:
|
|
name: myminio-env-configuration
|
|
accessKey: minio
|
|
secretKey: minio123
|
|
#existingSecret: true |