mirror of
https://github.com/helm/charts.git
synced 2026-08-21 13:28:13 +00:00
* Add ingress.yaml Signed-off-by: Markus Schlotbohm <markus_schlotbohm@as-gmbh.de> * Update values.yaml Signed-off-by: Markus Schlotbohm <markus_schlotbohm@as-gmbh.de> * Update README.md - Added new ingress variables Signed-off-by: Markus Schlotbohm <markus_schlotbohm@as-gmbh.de> * Bump version to 0.1.3 Signed-off-by: Markus Schlotbohm <markus_schlotbohm@as-gmbh.de>
83 lines
2.2 KiB
YAML
83 lines
2.2 KiB
YAML
# Default values for seq.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
image:
|
|
repository: datalust/seq
|
|
tag: 5.0.832-pre
|
|
pullPolicy: IfNotPresent
|
|
|
|
# By passing the value Y in the ACCEPT_EULA environment variable,
|
|
# you are expressing that you have read and accepted the terms in
|
|
# Seq End User License Agreement applicable to the Seq Docker image
|
|
# that you intend to use.
|
|
acceptEULA: "Y"
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 5341
|
|
|
|
ui:
|
|
enabled: true
|
|
|
|
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: {}
|
|
|
|
## Enable persistence using Persistent Volume Claims
|
|
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
|
|
##
|
|
persistence:
|
|
enabled: true
|
|
|
|
## The path the volume will be mounted at, useful when using different
|
|
## Redis images.
|
|
path: /data
|
|
|
|
## The subdirectory of the volume to mount to, useful in dev environments and one PV for multiple services.
|
|
subPath: ""
|
|
|
|
## A manually managed Persistent Volume and Claim
|
|
## Requires persistence.enabled: true
|
|
## If defined, PVC must be created manually before volume will be bound
|
|
# existingClaim:
|
|
|
|
## redis data Persistent Volume Storage Class
|
|
## 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: "-"
|
|
accessMode: ReadWriteOnce
|
|
size: 8Gi
|
|
|
|
ingress:
|
|
enabled: false
|
|
annotations: {}
|
|
# kubernetes.io/ingress.class: nginx
|
|
# kubernetes.io/tls-acme: "true"
|
|
labels: {}
|
|
path: /
|
|
hosts:
|
|
- chart-example.local
|
|
tls: []
|
|
# - secretName: chart-example-tls
|
|
# hosts:
|
|
# - chart-example.local
|