Create MinIO values.yaml file

Use provided values.yaml file as reference only, for detailed configuration values see https://github.com/minio/charts#configuration

## Enable persistence using Persistent Volume Claims
persistence:
  enabled: false

## Configure resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
resources:
  requests:
    memory: 256Mi

## Use minio as an Azure blob gateway
## Disable data persistence so no volume claims are created.
## https://docs.minio.io/docs/minio-gateway-for-azure
azuregateway:
  enabled: true
  # Number of parallel instances
  replicas: 1

## Use minio as GCS (Google Cloud Storage) gateway.
## Disable data persistence so no volume claim are created.
## https://docs.minio.io/docs/minio-gateway-for-gcs
gcsgateway:
  enabled: false
  # Number of parallel instances
  replicas: 4
  # credential json file of service account key
  gcsKeyJson: ""
  # Google cloud project-id
  projectId: ""

## This will provision an Ingress for MinIO using NGINX Ingress Controller
ingress:
  enabled: true
  apiVersion: "networking.k8s.io/v1"
  annotations:
    kubernetes.io/ingress.class: "nginx"
    nginx.ingress.kubernetes.io/ssl-redirect: "true"
  path: /
  hosts:
    - minio.domain.com
  tls:
    - secretName: tls-chatweb-secret
      hosts:
        - minio.domain.com

Last updated