mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 11:48:04 +00:00
122 lines
2.6 KiB
YAML
122 lines
2.6 KiB
YAML
replicaCount: 1
|
|
|
|
# Flag for setting environment to debug mode
|
|
debug: false
|
|
|
|
image:
|
|
repository: komodorio/helm-dashboard
|
|
pullPolicy: IfNotPresent
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: ""
|
|
|
|
imagePullSecrets: []
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
serviceAccount:
|
|
# Specifies whether a service account should be created
|
|
create: true
|
|
# The name of the service account to use.
|
|
# If not set and create is true, a name is generated using the fullname template
|
|
name: ""
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 200m
|
|
memory: 256Mi
|
|
limits:
|
|
cpu: 1
|
|
memory: 1Gi
|
|
|
|
dashboard:
|
|
allowWriteActions: true
|
|
|
|
# default namespace for Helm operations
|
|
namespace: ""
|
|
|
|
persistence:
|
|
enabled: true
|
|
|
|
## If defined, storageClassName: <storageClass>
|
|
## If set to "-", storageClassName: "", which disables dynamic provisioning
|
|
## If undefined (the default) or set to null, no storageClassName spec is
|
|
## set, choosing the default provisioner. (gp2 on AWS, standard on
|
|
## GKE, AWS & OpenStack)
|
|
##
|
|
storageClass: null
|
|
|
|
## Helm Dashboard Persistent Volume access modes
|
|
## Must match those of existing PV or dynamic provisioner
|
|
## Ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
|
|
##
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
|
|
## Helm Dashboard Persistent Volume labels
|
|
##
|
|
labels: {}
|
|
|
|
## Helm Dashboard Persistent Volume annotations
|
|
##
|
|
annotations: {}
|
|
|
|
## Set path in case you want to use local host path volumes (not recommended in production)
|
|
##
|
|
hostPath: ""
|
|
|
|
## Helm Dashboard data Persistent Volume size
|
|
##
|
|
size: 100M
|
|
|
|
## @param.updateStrategy.type Set up update strategy for helm-dashboard installation.
|
|
## Set to Recreate if you use persistent volume that cannot be mounted by more than one pods to make sure the pods is destroyed first.
|
|
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
|
|
## Example:
|
|
## updateStrategy:
|
|
## type: RollingUpdate
|
|
## rollingUpdate:
|
|
## maxSurge: 25%
|
|
## maxUnavailable: 25%
|
|
##
|
|
updateStrategy:
|
|
type: RollingUpdate
|
|
|
|
|
|
podAnnotations: {}
|
|
|
|
podSecurityContext: {}
|
|
|
|
securityContext: {}
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 8080
|
|
|
|
ingress:
|
|
enabled: false
|
|
className: ""
|
|
annotations: {}
|
|
hosts:
|
|
- host: chart-example.local
|
|
paths:
|
|
- path: /
|
|
pathType: ImplementationSpecific
|
|
tls: []
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
minReplicas: 1
|
|
maxReplicas: 100
|
|
targetCPUUtilizationPercentage: 80
|
|
|
|
nodeSelector: {}
|
|
|
|
extraArgs:
|
|
- --no-browser
|
|
- --bind=0.0.0.0
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|
|
|