49 lines
842 B
YAML
49 lines
842 B
YAML
# minio-operator-values.yaml
|
|
# MinIO Operator deployment with metrics enabled
|
|
|
|
operator:
|
|
image:
|
|
repository: minio/operator
|
|
tag: "v5.0.0"
|
|
pullPolicy: IfNotPresent
|
|
|
|
replicaCount: 1
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
|
|
metrics:
|
|
enabled: true
|
|
port: 8080
|
|
|
|
rbac:
|
|
create: true
|
|
|
|
affinity:
|
|
nodeAffinity:
|
|
preferredDuringSchedulingIgnoredDuringExecution:
|
|
- weight: 100
|
|
preference:
|
|
matchExpressions:
|
|
- key: node-role.kubernetes.io/control-plane
|
|
operator: Exists
|
|
|
|
console:
|
|
enabled: true
|
|
replicaCount: 1
|
|
image:
|
|
repository: minio/console
|
|
tag: "v0.30.0"
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 128Mi
|
|
limits:
|
|
cpu: 200m
|
|
memory: 256Mi
|