Skip to content
Snippets Groups Projects
values.yaml 1.77 KiB
Newer Older
# Default values for core-user-guide.
richard.petersen's avatar
richard.petersen committed
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 1

defaultRegistry: registry.open-xchange.com

richard.petersen's avatar
richard.petersen committed
image:
  repository: "core-user-guide"
richard.petersen's avatar
richard.petersen committed
  pullPolicy: IfNotPresent
  # Overrides the image tag whose default is the chart appVersion.
  tag: ""
richard.petersen's avatar
richard.petersen committed

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

serviceAccount:
  # Specifies whether a service account should be created
  create: true
  # Annotations to add to the service account
  annotations: {}
  # The name of the service account to use.
  # If not set and create is true, a name is generated using the fullname template
  name: ""

podAnnotations: {}

podSecurityContext:
  runAsNonRoot: true
  runAsUser: 1000
  runAsGroup: 1000

securityContext:
  runAsNonRoot: true
  runAsUser: 1000
  runAsGroup: 1000
  allowPrivilegeEscalation: false
  readOnlyRootFilesystem: true
  capabilities:
    drop:
      - ALL
richard.petersen's avatar
richard.petersen committed

service:
  type: ClusterIP
  port: 80

ingress:
  enabled: false
  pathMappings: "core-user-guide.ingressPathMappings"
richard.petersen's avatar
richard.petersen committed
  annotations: {}
    # kubernetes.io/ingress.class: nginx
    # kubernetes.io/tls-acme: "true"
  hosts:
    - host: chart-example.local
richard.petersen's avatar
richard.petersen committed
  tls: []
  #  - secretName: chart-example-tls
  #    hosts:
  #      - chart-example.local

resources:
  # We recommend to always specify resources after actually measuring the values under
  # production-like circumstances.
  limits:
    cpu: 80m
    memory: 96Mi
  requests:
    cpu: 20m
    memory: 32Mi
richard.petersen's avatar
richard.petersen committed

nodeSelector: {}

tolerations: []

affinity: {}

probe:
  liveness:
    enabled: true
    periodSeconds: 10
    failureThreshold: 15

  readiness:
    enabled: true
    initialDelaySeconds: 30
    periodSeconds: 5
    failureThreshold: 2
    timeoutSeconds: 5

containerPort: 8080