Skip to content
Snippets Groups Projects
  • david.bauer's avatar
    f25cf886
    Change: Redis Configuration · f25cf886
    david.bauer authored
    This is a breaking change.
    
    Changelog:
    - Redis is now mandatory and enabled by default
    - Added Sentinel, Standalone and Cluster support
    - Standalone mode with sidecar is used by default
      - If no host(s) are configured, a redis sidecar is injected into the deployment
      - No extra configuration needed
      - This is intended for development and does not scale.
    - Helm values have changed, see README.md:
      - `redis.host` has been renamed to `redis.hosts` and expects a list of strings with the following pattern: <localhost:6379> (needed for sentinel and cluster modes)
      - `redis.port` has been removed, see `redis.hosts`
    f25cf886
    History
    Change: Redis Configuration
    david.bauer authored
    This is a breaking change.
    
    Changelog:
    - Redis is now mandatory and enabled by default
    - Added Sentinel, Standalone and Cluster support
    - Standalone mode with sidecar is used by default
      - If no host(s) are configured, a redis sidecar is injected into the deployment
      - No extra configuration needed
      - This is intended for development and does not scale.
    - Helm values have changed, see README.md:
      - `redis.host` has been renamed to `redis.hosts` and expects a list of strings with the following pattern: <localhost:6379> (needed for sentinel and cluster modes)
      - `redis.port` has been removed, see `redis.hosts`
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
values.yaml 2.62 KiB
# Default values for core-ui-middleware.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

global:
  extras:
    monitoring:
      enabled: false

replicaCount: 1

defaultRegistry: registry.open-xchange.com

containerPort: 8080

image:
  repository: "core-ui-middleware"
  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
  # 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:
  logging.open-xchange.com/format: "appsuite-json"

podSecurityContext:
  runAsNonRoot: true
  runAsUser: 1000
  runAsGroup: 1000

securityContext:
  runAsNonRoot: true
  runAsUser: 1000
  runAsGroup: 1000
  allowPrivilegeEscalation: false
  readOnlyRootFilesystem: true
  capabilities:
    drop:
      - ALL

service:
  type: ClusterIP
  port: 80

ingress:
  enabled: false
  pathMappings: "core-ui-middleware.ingressPathMappings"
  annotations: {}
    # kubernetes.io/ingress.class: nginx
    # kubernetes.io/tls-acme: "true"
  hosts:
    - host: chart-example.local

  tls: []
  #  - secretName: chart-example-tls
  #    hosts:
  #      - chart-example.local