values.yaml 562 Bytes
Newer Older
1 2 3 4 5
# Default values for web-app-minio.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.


Vũ Hoàng Nam's avatar
Vũ Hoàng Nam committed
6
namespace: default
7

Vũ Hoàng Nam's avatar
Vũ Hoàng Nam committed
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
# Deployment
replicas: 1
image:
  repository: garovu/django-minio
  tag: latest
limits:
  memory: "1024Mi"
  cpu: "1000m"
containerPort: 8000


# ConfigMap
configMap:
  MINIO_ACCESS_KEY_ID: user
  MINIO_SECRET_ACCESS_KEY: password
  MINIO_STORAGE_BUCKET_NAME: static
  # MINIO_API: "http://172.17.0.1:9000"

# Service
27 28
service:
  type: ClusterIP
Vũ Hoàng Nam's avatar
Vũ Hoàng Nam committed
29 30
  port: 8000
  protocol: TCP
31 32


Vũ Hoàng Nam's avatar
Vũ Hoàng Nam committed
33 34 35
# Minio Setup
minio:
  namespace: default