cloud-configuration/helm/wahlrecht/values.yaml

152 lines
5.0 KiB
YAML

# Copy these values to your application chart completely and then modify those bits where
# the default for your application differs. The image.repository is a prime candidate for that.
replicaCount: 1
image:
repository: 2martens/wahlrecht
pullPolicy: IfNotPresent
# Overrides the image tag whose default is latest
tag: ""
# If image is not accessible for Kubernetes without authentication, configure required secrets here
# will be added verbatim to imagePullSecrets in deployment pod template
imagePullSecrets: []
# Overrides the name being used in, for example, annotations
# by default it is the chart name
nameOverride: ""
# Overrides the name being used for the name of Kubernetes resources
# by default release name if it contains the chart name, otherwise releaseName-chartName
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: ""
# Configure annotations for the pod, will be added verbatim to key annotations in pod metadata
podAnnotations: {}
# Configure the security context of the application pod
podSecurityContext: {}
# fsGroup: 2000
# Configure security context of the application container
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
application:
port: 12000
actuatorPort: 12001
profile: prod
isSpring: true
keycloak:
url: https://id.2martens.de
realm: 2martens
configserver:
scheme: http
host: configserver
port: 8888
prefix: /config
kafka:
host: kafka
port: 9092
# Overwrite with application specific environment variables
# Each item has key and value, where the value is parsed as a template
environment:
- name: KEYCLOAK_URL
value: "{{ .Values.application.keycloak.url }}"
- name: KEYCLOAK_REALM
value: "{{ .Values.application.keycloak.realm }}"
- name: CONFIGSERVER_SCHEME
value: "{{ .Values.application.configserver.scheme }}"
- name: CONFIGSERVER_HOST
value: "{{ .Values.application.configserver.host }}"
- name: CONFIGSERVER_PORT
value: "{{ .Values.application.configserver.port }}"
- name: CONFIGSERVER_PREFIX
value: "{{ .Values.application.configserver.prefix }}"
- name: KAFKA_HOST
value: "{{ .Values.application.kafka.host }}"
- name: KAFKA_PORT
value: "{{ .Values.application.kafka.port }}"
enableServiceLinks: false
# Contents of this object will be added to a Kubernetes secret data section and Base64 encoded
# External secrets are not supported by this template
secrets:
# Needs to be overwritten and in base64 encoding
MONGODB_CONNECTION_STRING: ""
# Needs to be overwritten and in base64 encoding
CLIENT_SECRET: ""
# Configure the service
service:
type: ClusterIP
# port is targeting the containerPort http, described by application.port
port: 12000
# actuatorPort is targeting the containerPort http-actuator, described by application.actuatorPort
# only used if application.isSpring=true
actuatorPort: 12001
# Configure the liveness probe
# Defaults fitting for Spring Boot application that has livenessProbe enabled
livenessProbe:
enabled: true
path: /actuator/health/liveness
port: http-actuator
initialDelaySeconds: 30
periodSeconds: 120
# Configure the readiness probe
# Defaults fitting for Spring Boot application that has readinessProbe enabled
readinessProbe:
enabled: true
path: /actuator/health/readiness
port: http-actuator
initialDelaySeconds: 30
periodSeconds: 10
# Allows you to specify the number of seconds the application can take to answer readinessProbe
# before failure is assumed by Kubernetes
timeoutSeconds: 1
# Configure ingress if desired (exposing app beyond the boundaries of the cluster)
ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# Configure autoscaling
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
# Configure nodeSelector, contents will be added verbatim to key nodeSelector in deployment pod template
nodeSelector: {}
# Configure tolerations, contents will be added verbatim to key tolerations in deployment pod template
tolerations: []
# Configure affinity, contents will be added verbatim to key affinity in deployment pod template
affinity: {}
# podSpec: will be added at the bottom of the pod template in the deployment
podSpec: {}
# containerSpec: will be added at the bottom of the container specification in the pod template
containerSpec: {}