# Overrides the image tag whose default is the chart appVersion.
tag:""
metrics:
enabled:true
type:ClusterIP
port:8080
# This is for the secretes for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
imagePullSecrets:[]
# This is to override the chart name.
nameOverride:""
fullnameOverride:""
#This section builds out the service account more information can be found here: https://kubernetes.io/docs/concepts/security/service-accounts/
serviceAccount:
# Specifies whether a service account should be created
create:true
# Automatically mount a ServiceAccount's API credentials?
automount: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:""
# This is for setting Kubernetes Annotations to a Pod.
# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
podLabels:{}
securityContext:
allowPrivilegeEscalation:false
capabilities:
drop:
- ALL
podSecurityContext:
runAsNonRoot:true
seccompProfile:
type:RuntimeDefault
# This is for setting up a service more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/
service:
# This sets the service type more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
type:ClusterIP
# This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports
port:9443
resources:{}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
livenessProbe:
port:8081
initialDelaySeconds:15
periodSeconds:20
successThreshold:1
timeoutSeconds:1
readinessProbe:
port:8081
initialDelaySeconds:5
periodSeconds:10
successThreshold:1
timeoutSeconds:1
# Additional volumes on the output Deployment definition.
volumes:[]
# Additional volumeMounts on the output Deployment definition.