mirror of
https://github.com/helm/charts.git
synced 2026-08-22 22:07:36 +00:00
* Added seq * fix: removed empty test.json file. * fix: removed leading - * address PR feedback. * fix: pinned version of docker image. * fix: moved to stable as suggested * Added other owners to the maintainers list. * fixed linting issue. * fixed deployment issue
69 lines
2.0 KiB
YAML
69 lines
2.0 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
|