Files
kubernetes-course/helm/demo-chart/values.yaml
Edward Viaene 5d816c628e helm demo chart
2018-07-31 09:47:20 +00:00

63 lines
1.3 KiB
YAML

# Default values for demo-chart.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 3
image:
repository: wardviaene/node-demo-app
tag: v0.0.1
pullPolicy: IfNotPresent
service:
type: LoadBalancer
port: 80
ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
path: /
hosts:
- node-demo-app.newtech.academy
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
##
## MariaDB chart configuration
##
mariadb:
enabled: true
replication:
enabled: false
db:
name: app
user: app-user
master:
persistence:
enabled: true
accessMode: ReadWriteOnce
size: 8Gi