Files
charts/bitnami/grafana-loki/values.yaml
Carlos Rodríguez Hernández df5e16288a [bitnami/grafana-loki] Add support for image digest apart from tag (#11897)
* [bitnami/grafana-loki] Add support for image digest apart from tag

Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>

* Update values.yaml

Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>

* Update values.yaml

Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>

* Update README.md with readme-generator-for-helm

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
2022-08-22 14:17:44 +02:00

3921 lines
163 KiB
YAML

## @section Global parameters
## Global Docker image parameters
## Please, note that this will override the image parameters, including dependencies, configured to use the global value
## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass
##
## @param global.imageRegistry Global Docker image registry
## @param global.imagePullSecrets Global Docker registry secret names as an array
## @param global.storageClass Global StorageClass for Persistent Volume(s)
##
global:
imageRegistry: ""
## E.g.
## imagePullSecrets:
## - myRegistryKeySecretName
##
imagePullSecrets: []
storageClass: ""
## @section Common parameters
##
## @param kubeVersion Override Kubernetes version
##
kubeVersion: ""
## @param nameOverride String to partially override common.names.fullname
##
nameOverride: ""
## @param fullnameOverride String to fully override common.names.fullname
##
fullnameOverride: ""
## @param commonLabels Labels to add to all deployed objects
##
commonLabels: {}
## @param commonAnnotations Annotations to add to all deployed objects
##
commonAnnotations: {}
## @param clusterDomain Kubernetes cluster domain name
##
clusterDomain: cluster.local
## @param extraDeploy Array of extra objects to deploy with the release
##
extraDeploy: []
## Enable diagnostic mode in the deployments/statefulsets
##
diagnosticMode:
## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden)
##
enabled: false
## @param diagnosticMode.command Command to override all containers in the deployments/statefulsets
##
command:
- sleep
## @param diagnosticMode.args Args to override all containers in the deployments/statefulsets
##
args:
- infinity
## @section Common Grafana Loki Parameters
##
loki:
## Bitnami Grafana Loki image
## ref: https://hub.docker.com/r/bitnami/grafana-loki/tags/
## @param loki.image.registry Grafana Loki image registry
## @param loki.image.repository Grafana Loki image repository
## @param loki.image.tag Grafana Loki image tag (immutable tags are recommended)
## @param loki.image.digest Grafana Loki image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
## @param loki.image.pullPolicy Grafana Loki image pull policy
## @param loki.image.pullSecrets Grafana Loki image pull secrets
##
image:
registry: docker.io
repository: bitnami/grafana-loki
tag: 2.6.1-debian-11-r9
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## e.g:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## @param loki.configuration [string] Loki components configuration
##
configuration: |
auth_enabled: false
server:
http_listen_port: {{ .Values.loki.containerPorts.http }}
distributor:
ring:
kvstore:
store: memberlist
memberlist:
join_members:
- {{ include "grafana-loki.gossip-ring.fullname" . }}
ingester:
lifecycler:
ring:
kvstore:
store: memberlist
replication_factor: 1
chunk_idle_period: 30m
chunk_block_size: 262144
chunk_encoding: snappy
chunk_retain_period: 1m
max_transfer_retries: 0
wal:
dir: {{ .Values.loki.dataDir }}/wal
limits_config:
enforce_metric_name: false
reject_old_samples: true
reject_old_samples_max_age: 168h
max_cache_freshness_per_query: 10m
split_queries_by_interval: 15m
schema_config:
configs:
- from: 2020-10-24
store: boltdb-shipper
object_store: filesystem
schema: v11
index:
prefix: index_
period: 24h
storage_config:
boltdb_shipper:
shared_store: filesystem
active_index_directory: {{ .Values.loki.dataDir }}/loki/index
cache_location: {{ .Values.loki.dataDir }}/loki/cache
cache_ttl: 168h
{{- if .Values.indexGateway.enabled }}
index_gateway_client:
server_address: {{ (printf "dns:///%s:9095" (include "grafana-loki.index-gateway.fullname" .)) }}
{{- end }}
filesystem:
directory: {{ .Values.loki.dataDir }}/chunks
index_queries_cache_config:
{{- if .Values.memcachedindexqueries.enabled }}
memcached:
batch_size: 100
parallelism: 100
memcached_client:
consistent_hash: true
addresses: dns+{{ include "grafana-loki.memcached-index-queries.host" . }}
service: http
{{- end }}
chunk_store_config:
max_look_back_period: 0s
{{- if .Values.memcachedchunks.enabled }}
chunk_cache_config:
memcached:
batch_size: 100
parallelism: 100
memcached_client:
consistent_hash: true
addresses: dns+{{ include "grafana-loki.memcached-chunks.host" . }}
{{- end }}
{{- if .Values.memcachedindexwrites.enabled }}
write_dedupe_cache_config:
memcached:
batch_size: 100
parallelism: 100
memcached_client:
consistent_hash: true
addresses: dns+{{ include "grafana-loki.memcached-index-writes.host" . }}
{{- end }}
table_manager:
retention_deletes_enabled: false
retention_period: 0s
query_range:
align_queries_with_step: true
max_retries: 5
cache_results: true
results_cache:
cache:
{{- if .Values.memcachedfrontend.enabled }}
memcached_client:
consistent_hash: true
addresses: dns+{{ include "grafana-loki.memcached-frontend.host" . }}
max_idle_conns: 16
timeout: 500ms
update_interval: 1m
{{- else }}
enable_fifocache: true
fifocache:
max_size_items: 1024
validity: 24h
{{- end }}
{{- if not .Values.queryScheduler.enabled }}
frontend_worker:
frontend_address: {{ include "grafana-loki.query-frontend.fullname" . }}:{{ .Values.queryFrontend.service.ports.grpc }}
{{- end }}
frontend:
log_queries_longer_than: 5s
compress_responses: true
tail_proxy_url: http://{{ include "grafana-loki.querier.fullname" . }}:{{ .Values.querier.service.ports.http }}
compactor:
shared_store: filesystem
ruler:
storage:
type: local
local:
directory: {{ .Values.loki.dataDir }}/conf/rules
ring:
kvstore:
store: memberlist
rule_path: /tmp/loki/scratch
alertmanager_url: https://alertmanager.xx
external_url: https://alertmanager.xx
## @param loki.existingConfigmap Name of a ConfigMap with the Loki configuration
##
existingConfigmap: ""
## @param loki.dataDir path to the Loki data directory
##
dataDir: "/bitnami/grafana-loki"
## @param loki.containerPorts.http Loki components web container port
## @param loki.containerPorts.grpc Loki components GRPC container port
## @param loki.containerPorts.gossipRing Loki components Gossip Ring container port
##
containerPorts:
http: 3100
grpc: 9095
gossipRing: 7946
## Gossip Ring parameters
##
gossipRing:
## Gossip Ring service parameters
##
service:
## @param loki.gossipRing.service.ports.http Gossip Ring HTTP headless service port
##
ports:
http: 7946
## @param loki.gossipRing.service.annotations Additional custom annotations for Gossip Ring headless service
##
annotations: {}
## @section Compactor Deployment Parameters
##
compactor:
## @param compactor.enabled Enable Compactor deployment
##
enabled: false
## @param compactor.extraEnvVars Array with extra environment variables to add to compactor nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param compactor.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for compactor nodes
##
extraEnvVarsCM: ""
## @param compactor.extraEnvVarsSecret Name of existing Secret containing extra env vars for compactor nodes
##
extraEnvVarsSecret: ""
## @param compactor.command Override default container command (useful when using custom images)
##
command: []
## @param compactor.args Override default container args (useful when using custom images)
##
args: []
## @param compactor.replicaCount Number of Compactor replicas to deploy
##
replicaCount: 1
## Configure extra options for Compactor containers' liveness, readiness and startup probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
## @param compactor.livenessProbe.enabled Enable livenessProbe on Compactor nodes
## @param compactor.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param compactor.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param compactor.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param compactor.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param compactor.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param compactor.readinessProbe.enabled Enable readinessProbe on Compactor nodes
## @param compactor.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param compactor.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param compactor.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param compactor.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param compactor.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param compactor.startupProbe.enabled Enable startupProbe on Compactor containers
## @param compactor.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param compactor.startupProbe.periodSeconds Period seconds for startupProbe
## @param compactor.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param compactor.startupProbe.failureThreshold Failure threshold for startupProbe
## @param compactor.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 15
successThreshold: 1
## @param compactor.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param compactor.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param compactor.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## compactor resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param compactor.resources.limits The resources limits for the compactor containers
## @param compactor.resources.requests The requested resources for the compactor containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param compactor.podSecurityContext.enabled Enabled Compactor pods' Security Context
## @param compactor.podSecurityContext.fsGroup Set Compactor pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param compactor.containerSecurityContext.enabled Enabled Compactor containers' Security Context
## @param compactor.containerSecurityContext.runAsUser Set Compactor containers' Security Context runAsUser
## @param compactor.containerSecurityContext.runAsNonRoot Set Compactor containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## @param compactor.lifecycleHooks for the compactor container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param compactor.hostAliases compactor pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param compactor.podLabels Extra labels for compactor pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param compactor.podAnnotations Annotations for compactor pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param compactor.podAffinityPreset Pod affinity preset. Ignored if `compactor.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param compactor.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `compactor.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node compactor.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param compactor.nodeAffinityPreset.type Node affinity preset type. Ignored if `compactor.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param compactor.nodeAffinityPreset.key Node label key to match. Ignored if `compactor.affinity` is set
##
key: ""
## @param compactor.nodeAffinityPreset.values Node label values to match. Ignored if `compactor.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param compactor.affinity Affinity for Compactor pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `compactor.podAffinityPreset`, `compactor.podAntiAffinityPreset`, and `compactor.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param compactor.nodeSelector Node labels for Compactor pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param compactor.tolerations Tolerations for Compactor pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param compactor.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param compactor.priorityClassName Compactor pods' priorityClassName
##
priorityClassName: ""
## @param compactor.schedulerName Kubernetes pod scheduler registry
## https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param compactor.updateStrategy.type Compactor statefulset strategy type
## @param compactor.updateStrategy.rollingUpdate Compactor statefulset rolling update configuration parameters
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param compactor.extraVolumes Optionally specify extra list of additional volumes for the Compactor pod(s)
##
extraVolumes: []
## @param compactor.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Compactor container(s)
##
extraVolumeMounts: []
## @param compactor.sidecars Add additional sidecar containers to the Compactor pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param compactor.initContainers Add additional init containers to the Compactor pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## Enable persistence using Persistent Volume Claims
## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/
##
persistence:
## @param compactor.persistence.enabled Enable persistence in Compactor instances
##
enabled: true
## @param compactor.persistence.existingClaim Name of an existing PVC to use
##
existingClaim: ""
## @param compactor.persistence.storageClass PVC Storage Class for Memcached data volume
## 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: ""
## @param compactor.persistence.accessModes PVC Access modes
##
accessModes:
- ReadWriteOnce
## @param compactor.persistence.size PVC Storage Request for Memcached data volume
##
size: 8Gi
## @param compactor.persistence.annotations Additional PVC annotations
##
annotations: {}
## @param compactor.persistence.selector Selector to match an existing Persistent Volume for Compactor's data PVC
## If set, the PVC can't have a PV dynamically provisioned for it
## E.g.
## selector:
## matchLabels:
## app: my-app
##
selector: {}
## @param compactor.persistence.dataSource PVC data source
##
dataSource: {}
## @section Compactor Traffic Exposure Parameters
##
## compactor service parameters
##
service:
## @param compactor.service.type Compactor service type
##
type: ClusterIP
## @param compactor.service.ports.http Compactor HTTP service port
##
ports:
http: 3100
## Node ports to expose
## NOTE: choose port between <30000-32767>
## @param compactor.service.nodePorts.http Node port for HTTP
##
nodePorts:
http: ""
## @param compactor.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @param compactor.service.sessionAffinity Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
##
sessionAffinity: None
## @param compactor.service.clusterIP Compactor service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param compactor.service.loadBalancerIP Compactor service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param compactor.service.loadBalancerSourceRanges Compactor service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param compactor.service.externalTrafficPolicy Compactor service external traffic policy
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param compactor.service.annotations Additional custom annotations for Compactor service
##
annotations: {}
## @param compactor.service.extraPorts Extra ports to expose in the Compactor service
##
extraPorts: []
## @section Gateway Deployment Parameters
##
gateway:
## @param gateway.enabled Enable Gateway deployment
##
enabled: true
## Bitnami Nginx image
## ref: https://hub.docker.com/r/bitnami/grafana-nginx/tags/
## @param gateway.image.registry Nginx image registry
## @param gateway.image.repository Nginx image repository
## @param gateway.image.tag Nginx image tag (immutable tags are recommended)
## @param gateway.image.digest Nginx image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
## @param gateway.image.pullPolicy Nginx image pull policy
## @param gateway.image.pullSecrets Nginx image pull secrets
## @param gateway.image.debug Enable debugging in the initialization process
##
image:
registry: docker.io
repository: bitnami/nginx
tag: 1.23.1-debian-11-r7
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## e.g:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
debug: false
## @param gateway.extraEnvVars Array with extra environment variables to add to gateway nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param gateway.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for gateway nodes
##
extraEnvVarsCM: ""
## @param gateway.extraEnvVarsSecret Name of existing Secret containing extra env vars for gateway nodes
##
extraEnvVarsSecret: ""
## @param gateway.command Override default container command (useful when using custom images)
##
command: []
## @param gateway.args Override default container args (useful when using custom images)
##
args: []
## @param gateway.verboseLogging Show the gateway access_log
##
verboseLogging: false
## @param gateway.replicaCount Number of Gateway replicas to deploy
##
replicaCount: 1
## @param gateway.auth.enabled Enable basic auth
## @param gateway.auth.username Basic auth username
## @param gateway.auth.password Basic auth password
## @param gateway.auth.existingSecret Name of a secret containing the Basic auth password
##
auth:
enabled: false
username: "user"
password: ""
existingSecret: ""
## Configure extra options for Gateway containers' liveness, readiness and startup probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
## @param gateway.livenessProbe.enabled Enable livenessProbe on Gateway nodes
## @param gateway.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param gateway.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param gateway.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param gateway.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param gateway.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param gateway.readinessProbe.enabled Enable readinessProbe on Gateway nodes
## @param gateway.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param gateway.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param gateway.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param gateway.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param gateway.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param gateway.startupProbe.enabled Enable startupProbe on Gateway containers
## @param gateway.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param gateway.startupProbe.periodSeconds Period seconds for startupProbe
## @param gateway.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param gateway.startupProbe.failureThreshold Failure threshold for startupProbe
## @param gateway.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 15
successThreshold: 1
## @param gateway.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param gateway.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param gateway.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## @param gateway.containerPorts.http Gateway HTTP port
##
containerPorts:
http: 8080
## gateway resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param gateway.resources.limits The resources limits for the gateway containers
## @param gateway.resources.requests The requested resources for the gateway containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param gateway.podSecurityContext.enabled Enabled Gateway pods' Security Context
## @param gateway.podSecurityContext.fsGroup Set Gateway pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param gateway.containerSecurityContext.enabled Enabled Gateway containers' Security Context
## @param gateway.containerSecurityContext.runAsUser Set Gateway containers' Security Context runAsUser
## @param gateway.containerSecurityContext.runAsNonRoot Set Gateway containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## @param gateway.lifecycleHooks for the gateway container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param gateway.hostAliases gateway pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param gateway.podLabels Extra labels for gateway pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param gateway.podAnnotations Annotations for gateway pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param gateway.podAffinityPreset Pod affinity preset. Ignored if `gateway.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param gateway.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `gateway.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node gateway.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param gateway.nodeAffinityPreset.type Node affinity preset type. Ignored if `gateway.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param gateway.nodeAffinityPreset.key Node label key to match. Ignored if `gateway.affinity` is set
##
key: ""
## @param gateway.nodeAffinityPreset.values Node label values to match. Ignored if `gateway.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param gateway.affinity Affinity for Gateway pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `gateway.podAffinityPreset`, `gateway.podAntiAffinityPreset`, and `gateway.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param gateway.nodeSelector Node labels for Gateway pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param gateway.tolerations Tolerations for Gateway pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param gateway.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param gateway.priorityClassName Gateway pods' priorityClassName
##
priorityClassName: ""
## @param gateway.schedulerName Kubernetes pod scheduler registry
## https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param gateway.updateStrategy.type Gateway statefulset strategy type
## @param gateway.updateStrategy.rollingUpdate Gateway statefulset rolling update configuration parameters
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param gateway.extraVolumes Optionally specify extra list of additional volumes for the Gateway pod(s)
##
extraVolumes: []
## @param gateway.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Gateway container(s)
##
extraVolumeMounts: []
## @param gateway.sidecars Add additional sidecar containers to the Gateway pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param gateway.initContainers Add additional init containers to the Gateway pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @section Gateway Traffic Exposure Parameters
##
## gateway service parameters
##
service:
## @param gateway.service.type Gateway service type
##
type: ClusterIP
## @param gateway.service.ports.http Gateway HTTP service port
##
ports:
http: 80
## Node ports to expose
## NOTE: choose port between <30000-32767>
## @param gateway.service.nodePorts.http Node port for HTTP
##
nodePorts:
http: ""
## @param gateway.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @param gateway.service.sessionAffinity Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
##
sessionAffinity: None
## @param gateway.service.clusterIP Gateway service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param gateway.service.loadBalancerIP Gateway service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param gateway.service.loadBalancerSourceRanges Gateway service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param gateway.service.externalTrafficPolicy Gateway service external traffic policy
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param gateway.service.annotations Additional custom annotations for Gateway service
##
annotations: {}
## @param gateway.service.extraPorts Extra ports to expose in the Gateway service
##
extraPorts: []
## Configure the ingress resource that allows you to access the Loki Gateway installation
## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/
##
ingress:
## @param gateway.ingress.enabled Enable ingress record generation for Loki Gateway
##
enabled: false
## @param gateway.ingress.pathType Ingress path type
##
pathType: ImplementationSpecific
## @param gateway.ingress.apiVersion Force Ingress API version (automatically detected if not set)
##
apiVersion: ""
## @param gateway.ingress.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+)
## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster .
## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/
##
ingressClassName: ""
## @param gateway.ingress.hostname Default host for the ingress record
##
hostname: grafana-loki.local
## @param gateway.ingress.path Default path for the ingress record
## NOTE: You may need to set this to '/*' in order to use this with ALB ingress controllers
##
path: /
## @param gateway.ingress.annotations Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations.
## For a full list of possible ingress annotations, please see
## ref: https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/nginx-configuration/annotations.md
## Use this parameter to set the required annotations for cert-manager, see
## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations
##
## e.g:
## annotations:
## kubernetes.io/ingress.class: nginx
## cert-manager.io/cluster-issuer: cluster-issuer-name
##
annotations: {}
## @param gateway.ingress.tls Enable TLS configuration for the host defined at `ingress.hostname` parameter
## TLS certificates will be retrieved from a TLS secret with name: `{{- printf "%s-tls" .Values.ingress.hostname }}`
## You can:
## - Use the `ingress.secrets` parameter to create this TLS secret
## - Rely on cert-manager to create it by setting the corresponding annotations
## - Rely on Helm to create self-signed certificates by setting `ingress.selfSigned=true`
##
tls: false
## @param gateway.ingress.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm
##
selfSigned: false
## @param gateway.ingress.extraHosts An array with additional hostname(s) to be covered with the ingress record
## e.g:
## extraHosts:
## - name: Loki Gateway.local
## path: /
##
extraHosts: []
## @param gateway.ingress.extraPaths An array with additional arbitrary paths that may need to be added to the ingress under the main host
## e.g:
## extraPaths:
## - path: /*
## backend:
## serviceName: ssl-redirect
## servicePort: use-annotation
##
extraPaths: []
## @param gateway.ingress.extraTls TLS configuration for additional hostname(s) to be covered with this ingress record
## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
## e.g:
## extraTls:
## - hosts:
## - Loki Gateway.local
## secretName: Loki Gateway.local-tls
##
extraTls: []
## @param gateway.ingress.secrets Custom TLS certificates as secrets
## NOTE: 'key' and 'certificate' are expected in PEM format
## NOTE: 'name' should line up with a 'secretName' set further up
## If it is not set and you're using cert-manager, this is unneeded, as it will create a secret for you with valid certificates
## If it is not set and you're NOT using cert-manager either, self-signed certificates will be created valid for 365 days
## It is also possible to create and manage the certificates outside of this helm chart
## Please see README.md for more information
## e.g:
## secrets:
## - name: Loki Gateway.local-tls
## key: |-
## -----BEGIN RSA PRIVATE KEY-----
## ...
## -----END RSA PRIVATE KEY-----
## certificate: |-
## -----BEGIN CERTIFICATE-----
## ...
## -----END CERTIFICATE-----
##
secrets: []
## @section index-gateway Deployment Parameters
##
indexGateway:
## @param indexGateway.enabled Enable index-gateway deployment
##
enabled: false
## @param indexGateway.extraEnvVars Array with extra environment variables to add to indexGateway nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param indexGateway.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for indexGateway nodes
##
extraEnvVarsCM: ""
## @param indexGateway.extraEnvVarsSecret Name of existing Secret containing extra env vars for indexGateway nodes
##
extraEnvVarsSecret: ""
## @param indexGateway.command Override default container command (useful when using custom images)
##
command: []
## @param indexGateway.args Override default container args (useful when using custom images)
##
args: []
## @param indexGateway.replicaCount Number of index-gateway replicas to deploy
##
replicaCount: 1
## @param indexGateway.podManagementPolicy podManagementPolicy to manage scaling operation
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies
##
podManagementPolicy: ""
## Configure extra options for index-gateway containers' liveness, readiness and startup probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
## @param indexGateway.livenessProbe.enabled Enable livenessProbe on index-gateway nodes
## @param indexGateway.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param indexGateway.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param indexGateway.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param indexGateway.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param indexGateway.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param indexGateway.readinessProbe.enabled Enable readinessProbe on index-gateway nodes
## @param indexGateway.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param indexGateway.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param indexGateway.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param indexGateway.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param indexGateway.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param indexGateway.startupProbe.enabled Enable startupProbe on index-gateway containers
## @param indexGateway.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param indexGateway.startupProbe.periodSeconds Period seconds for startupProbe
## @param indexGateway.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param indexGateway.startupProbe.failureThreshold Failure threshold for startupProbe
## @param indexGateway.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 15
successThreshold: 1
## @param indexGateway.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param indexGateway.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param indexGateway.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## indexGateway resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param indexGateway.resources.limits The resources limits for the indexGateway containers
## @param indexGateway.resources.requests The requested resources for the indexGateway containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param indexGateway.podSecurityContext.enabled Enabled index-gateway pods' Security Context
## @param indexGateway.podSecurityContext.fsGroup Set index-gateway pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param indexGateway.containerSecurityContext.enabled Enabled index-gateway containers' Security Context
## @param indexGateway.containerSecurityContext.runAsUser Set index-gateway containers' Security Context runAsUser
## @param indexGateway.containerSecurityContext.runAsNonRoot Set index-gateway containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## @param indexGateway.lifecycleHooks for the indexGateway container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param indexGateway.hostAliases indexGateway pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param indexGateway.podLabels Extra labels for indexGateway pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param indexGateway.podAnnotations Annotations for indexGateway pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param indexGateway.podAffinityPreset Pod affinity preset. Ignored if `indexGateway.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param indexGateway.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `indexGateway.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node indexGateway.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param indexGateway.nodeAffinityPreset.type Node affinity preset type. Ignored if `indexGateway.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param indexGateway.nodeAffinityPreset.key Node label key to match. Ignored if `indexGateway.affinity` is set
##
key: ""
## @param indexGateway.nodeAffinityPreset.values Node label values to match. Ignored if `indexGateway.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param indexGateway.affinity Affinity for index-gateway pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `indexGateway.podAffinityPreset`, `indexGateway.podAntiAffinityPreset`, and `indexGateway.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param indexGateway.nodeSelector Node labels for index-gateway pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param indexGateway.tolerations Tolerations for index-gateway pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param indexGateway.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param indexGateway.priorityClassName index-gateway pods' priorityClassName
##
priorityClassName: ""
## @param indexGateway.schedulerName Kubernetes pod scheduler registry
## https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param indexGateway.updateStrategy.type index-gateway statefulset strategy type
## @param indexGateway.updateStrategy.rollingUpdate index-gateway statefulset rolling update configuration parameters
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param indexGateway.extraVolumes Optionally specify extra list of additional volumes for the index-gateway pod(s)
##
extraVolumes: []
## @param indexGateway.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the index-gateway container(s)
##
extraVolumeMounts: []
## @param indexGateway.sidecars Add additional sidecar containers to the index-gateway pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param indexGateway.initContainers Add additional init containers to the index-gateway pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @section index-gateway Traffic Exposure Parameters
##
## indexGateway service parameters
##
service:
## @param indexGateway.service.type index-gateway service type
##
type: ClusterIP
## @param indexGateway.service.ports.http index-gateway HTTP service port
## @param indexGateway.service.ports.grpc index-gateway GRPC service port
##
ports:
http: 3100
grpc: 9095
## Node ports to expose
## NOTE: choose port between <30000-32767>
## @param indexGateway.service.nodePorts.http Node port for HTTP
## @param indexGateway.service.nodePorts.grpc Node port for GRPC
##
nodePorts:
http: ""
grpc: ""
## @param indexGateway.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @param indexGateway.service.sessionAffinity Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
##
sessionAffinity: None
## @param indexGateway.service.clusterIP index-gateway service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param indexGateway.service.loadBalancerIP index-gateway service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param indexGateway.service.loadBalancerSourceRanges index-gateway service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param indexGateway.service.externalTrafficPolicy index-gateway service external traffic policy
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param indexGateway.service.annotations Additional custom annotations for index-gateway service
##
annotations: {}
## @param indexGateway.service.extraPorts Extra ports to expose in the index-gateway service
##
extraPorts: []
## @section Distributor Deployment Parameters
##
distributor:
## @param distributor.extraEnvVars Array with extra environment variables to add to distributor nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param distributor.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for distributor nodes
##
extraEnvVarsCM: ""
## @param distributor.extraEnvVarsSecret Name of existing Secret containing extra env vars for distributor nodes
##
extraEnvVarsSecret: ""
## @param distributor.command Override default container command (useful when using custom images)
##
command: []
## @param distributor.args Override default container args (useful when using custom images)
##
args: []
## @param distributor.replicaCount Number of Distributor replicas to deploy
##
replicaCount: 1
## Configure extra options for Distributor containers' liveness, readiness and startup probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
## @param distributor.livenessProbe.enabled Enable livenessProbe on Distributor nodes
## @param distributor.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param distributor.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param distributor.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param distributor.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param distributor.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param distributor.readinessProbe.enabled Enable readinessProbe on Distributor nodes
## @param distributor.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param distributor.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param distributor.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param distributor.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param distributor.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param distributor.startupProbe.enabled Enable startupProbe on Distributor containers
## @param distributor.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param distributor.startupProbe.periodSeconds Period seconds for startupProbe
## @param distributor.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param distributor.startupProbe.failureThreshold Failure threshold for startupProbe
## @param distributor.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 15
successThreshold: 1
## @param distributor.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param distributor.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param distributor.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## distributor resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param distributor.resources.limits The resources limits for the distributor containers
## @param distributor.resources.requests The requested resources for the distributor containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param distributor.podSecurityContext.enabled Enabled Distributor pods' Security Context
## @param distributor.podSecurityContext.fsGroup Set Distributor pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param distributor.containerSecurityContext.enabled Enabled Distributor containers' Security Context
## @param distributor.containerSecurityContext.runAsUser Set Distributor containers' Security Context runAsUser
## @param distributor.containerSecurityContext.runAsNonRoot Set Distributor containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## @param distributor.lifecycleHooks for the distributor container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param distributor.hostAliases distributor pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param distributor.podLabels Extra labels for distributor pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param distributor.podAnnotations Annotations for distributor pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param distributor.podAffinityPreset Pod affinity preset. Ignored if `distributor.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param distributor.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `distributor.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node distributor.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param distributor.nodeAffinityPreset.type Node affinity preset type. Ignored if `distributor.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param distributor.nodeAffinityPreset.key Node label key to match. Ignored if `distributor.affinity` is set
##
key: ""
## @param distributor.nodeAffinityPreset.values Node label values to match. Ignored if `distributor.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param distributor.affinity Affinity for Distributor pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `distributor.podAffinityPreset`, `distributor.podAntiAffinityPreset`, and `distributor.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param distributor.nodeSelector Node labels for Distributor pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param distributor.tolerations Tolerations for Distributor pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param distributor.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param distributor.priorityClassName Distributor pods' priorityClassName
##
priorityClassName: ""
## @param distributor.schedulerName Kubernetes pod scheduler registry
## https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param distributor.updateStrategy.type Distributor statefulset strategy type
## @param distributor.updateStrategy.rollingUpdate Distributor statefulset rolling update configuration parameters
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param distributor.extraVolumes Optionally specify extra list of additional volumes for the Distributor pod(s)
##
extraVolumes: []
## @param distributor.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Distributor container(s)
##
extraVolumeMounts: []
## @param distributor.sidecars Add additional sidecar containers to the Distributor pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param distributor.initContainers Add additional init containers to the Distributor pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @section Distributor Traffic Exposure Parameters
##
## distributor service parameters
##
service:
## @param distributor.service.type Distributor service type
##
type: ClusterIP
## @param distributor.service.ports.http Distributor HTTP service port
## @param distributor.service.ports.grpc Distributor GRPC service port
##
ports:
http: 3100
grpc: 9095
## Node ports to expose
## NOTE: choose port between <30000-32767>
## @param distributor.service.nodePorts.http Node port for HTTP
## @param distributor.service.nodePorts.grpc Node port for GRPC
##
nodePorts:
http: ""
grpc: ""
## @param distributor.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @param distributor.service.sessionAffinity Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
##
sessionAffinity: None
## @param distributor.service.clusterIP Distributor service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param distributor.service.loadBalancerIP Distributor service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param distributor.service.loadBalancerSourceRanges Distributor service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param distributor.service.externalTrafficPolicy Distributor service external traffic policy
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param distributor.service.annotations Additional custom annotations for Distributor service
##
annotations: {}
## @param distributor.service.extraPorts Extra ports to expose in the Distributor service
##
extraPorts: []
## @section Ingester Deployment Parameters
##
ingester:
## @param ingester.extraEnvVars Array with extra environment variables to add to ingester nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param ingester.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for ingester nodes
##
extraEnvVarsCM: ""
## @param ingester.extraEnvVarsSecret Name of existing Secret containing extra env vars for ingester nodes
##
extraEnvVarsSecret: ""
## @param ingester.command Override default container command (useful when using custom images)
##
command: []
## @param ingester.args Override default container args (useful when using custom images)
##
args: []
## @param ingester.replicaCount Number of Ingester replicas to deploy
##
replicaCount: 1
## Configure extra options for Ingester containers' liveness, readiness and startup probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
## @param ingester.livenessProbe.enabled Enable livenessProbe on Ingester nodes
## @param ingester.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param ingester.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param ingester.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param ingester.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param ingester.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param ingester.readinessProbe.enabled Enable readinessProbe on Ingester nodes
## @param ingester.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param ingester.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param ingester.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param ingester.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param ingester.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param ingester.startupProbe.enabled Enable startupProbe on Ingester containers
## @param ingester.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param ingester.startupProbe.periodSeconds Period seconds for startupProbe
## @param ingester.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param ingester.startupProbe.failureThreshold Failure threshold for startupProbe
## @param ingester.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 15
successThreshold: 1
## @param ingester.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param ingester.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param ingester.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## @param ingester.lifecycleHooks for the ingester container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## ingester resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param ingester.resources.limits The resources limits for the Ingester containers
## @param ingester.resources.requests The requested resources for the Ingester containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param ingester.podSecurityContext.enabled Enabled Ingester pods' Security Context
## @param ingester.podSecurityContext.fsGroup Set Ingester pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param ingester.containerSecurityContext.enabled Enabled Ingester containers' Security Context
## @param ingester.containerSecurityContext.runAsUser Set Ingester containers' Security Context runAsUser
## @param ingester.containerSecurityContext.runAsNonRoot Set Ingester containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## @param ingester.hostAliases ingester pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param ingester.podLabels Extra labels for ingester pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param ingester.podAnnotations Annotations for ingester pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param ingester.podAffinityPreset Pod affinity preset. Ignored if `ingester.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param ingester.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `ingester.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node ingester.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param ingester.nodeAffinityPreset.type Node affinity preset type. Ignored if `ingester.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param ingester.nodeAffinityPreset.key Node label key to match. Ignored if `ingester.affinity` is set
##
key: ""
## @param ingester.nodeAffinityPreset.values Node label values to match. Ignored if `ingester.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param ingester.affinity Affinity for ingester pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `ingester.podAffinityPreset`, `ingester.podAntiAffinityPreset`, and `ingester.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param ingester.nodeSelector Node labels for Ingester pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param ingester.tolerations Tolerations for Ingester pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param ingester.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param ingester.podManagementPolicy podManagementPolicy to manage scaling operation
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies
##
podManagementPolicy: ""
## @param ingester.priorityClassName Ingester pods' priorityClassName
##
priorityClassName: ""
## @param ingester.schedulerName Kubernetes pod scheduler registry
## https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param ingester.updateStrategy.type Ingester statefulset strategy type
## @param ingester.updateStrategy.rollingUpdate Ingester statefulset rolling update configuration parameters
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param ingester.extraVolumes Optionally specify extra list of additional volumes for the Ingester pod(s)
##
extraVolumes: []
## @param ingester.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the ingester container(s)
##
extraVolumeMounts: []
## @param ingester.sidecars Add additional sidecar containers to the Ingester pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param ingester.initContainers Add additional init containers to the Ingester pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @section Ingester Persistence Parameters
##
## Enable persistence using Persistent Volume Claims
## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/
##
persistence:
## @param ingester.persistence.enabled Enable persistence in Ingester instances
##
enabled: true
## @param ingester.persistence.storageClass PVC Storage Class for Memcached data volume
## 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: ""
## @param ingester.persistence.subPath The subdirectory of the volume to mount to
##
subPath: ""
## @param ingester.persistence.accessModes PVC Access modes
##
accessModes:
- ReadWriteOnce
## @param ingester.persistence.size PVC Storage Request for Memcached data volume
##
size: 8Gi
## @param ingester.persistence.annotations Additional PVC annotations
##
annotations: {}
## @param ingester.persistence.selector Selector to match an existing Persistent Volume for Ingester's data PVC
## If set, the PVC can't have a PV dynamically provisioned for it
## E.g.
## selector:
## matchLabels:
## app: my-app
##
selector: {}
## @section Ingester Traffic Exposure Parameters
##
## ingester service parameters
##
service:
## @param ingester.service.type Ingester service type
##
type: ClusterIP
## @param ingester.service.ports.http Ingester HTTP service port
## @param ingester.service.ports.grpc Ingester GRPC service port
##
ports:
http: 3100
grpc: 9095
## Node ports to expose
## NOTE: choose port between <30000-32767>
## @param ingester.service.nodePorts.http Node port for HTTP
## @param ingester.service.nodePorts.grpc Node port for GRPC
##
nodePorts:
http: ""
grpc: ""
## @param ingester.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @param ingester.service.sessionAffinity Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
##
sessionAffinity: None
## @param ingester.service.clusterIP Ingester service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param ingester.service.loadBalancerIP Ingester service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param ingester.service.loadBalancerSourceRanges Ingester service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param ingester.service.externalTrafficPolicy Ingester service external traffic policy
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param ingester.service.annotations Additional custom annotations for Ingester service
##
annotations: {}
## @param ingester.service.extraPorts Extra ports to expose in the Ingester service
##
extraPorts: []
## @section Querier Deployment Parameters
##
querier:
## @param querier.replicaCount Number of Querier replicas to deploy
##
replicaCount: 1
## @param querier.extraEnvVars Array with extra environment variables to add to Querier nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param querier.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Querier nodes
##
extraEnvVarsCM: ""
## @param querier.extraEnvVarsSecret Name of existing Secret containing extra env vars for Querier nodes
##
extraEnvVarsSecret: ""
## @param querier.command Override default container command (useful when using custom images)
##
command: []
## @param querier.args Override default container args (useful when using custom images)
##
args: []
## @param querier.podManagementPolicy podManagementPolicy to manage scaling operation
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies
##
podManagementPolicy: ""
## Configure extra options for Querier containers' liveness, readiness and startup probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
## @param querier.livenessProbe.enabled Enable livenessProbe on Querier nodes
## @param querier.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param querier.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param querier.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param querier.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param querier.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param querier.readinessProbe.enabled Enable readinessProbe on Querier nodes
## @param querier.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param querier.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param querier.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param querier.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param querier.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param querier.startupProbe.enabled Enable startupProbe on Querier containers
## @param querier.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param querier.startupProbe.periodSeconds Period seconds for startupProbe
## @param querier.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param querier.startupProbe.failureThreshold Failure threshold for startupProbe
## @param querier.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 15
successThreshold: 1
## @param querier.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param querier.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param querier.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## querier resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param querier.resources.limits The resources limits for the Querier containers
## @param querier.resources.requests The requested resources for the Querier containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param querier.podSecurityContext.enabled Enabled Querier pods' Security Context
## @param querier.podSecurityContext.fsGroup Set Querier pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param querier.containerSecurityContext.enabled Enabled Querier containers' Security Context
## @param querier.containerSecurityContext.runAsUser Set Querier containers' Security Context runAsUser
## @param querier.containerSecurityContext.runAsNonRoot Set Querier containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## @param querier.lifecycleHooks for the Querier container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param querier.hostAliases querier pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param querier.podLabels Extra labels for querier pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param querier.podAnnotations Annotations for querier pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param querier.podAffinityPreset Pod affinity preset. Ignored if `querier.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param querier.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `querier.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node querier.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param querier.nodeAffinityPreset.type Node affinity preset type. Ignored if `querier.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param querier.nodeAffinityPreset.key Node label key to match. Ignored if `querier.affinity` is set
##
key: ""
## @param querier.nodeAffinityPreset.values Node label values to match. Ignored if `querier.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param querier.affinity Affinity for Querier pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `querier.podAffinityPreset`, `querier.podAntiAffinityPreset`, and `querier.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param querier.nodeSelector Node labels for Querier pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param querier.tolerations Tolerations for Querier pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param querier.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param querier.priorityClassName Querier pods' priorityClassName
##
priorityClassName: ""
## @param querier.schedulerName Kubernetes pod scheduler registry
## https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param querier.updateStrategy.type Querier statefulset strategy type
## @param querier.updateStrategy.rollingUpdate Querier statefulset rolling update configuration parameters
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param querier.extraVolumes Optionally specify extra list of additional volumes for the Querier pod(s)
##
extraVolumes: []
## @param querier.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the querier container(s)
##
extraVolumeMounts: []
## @param querier.sidecars Add additional sidecar containers to the Querier pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param querier.initContainers Add additional init containers to the Querier pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @section Querier Persistence Parameters
##
## Enable persistence using Persistent Volume Claims
## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/
##
persistence:
## @param querier.persistence.enabled Enable persistence in Querier instances
##
enabled: true
## @param querier.persistence.storageClass PVC Storage Class for Memcached data volume
## 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: ""
## @param querier.persistence.subPath The subdirectory of the volume to mount to
##
subPath: ""
## @param querier.persistence.accessModes PVC Access modes
##
accessModes:
- ReadWriteOnce
## @param querier.persistence.size PVC Storage Request for Memcached data volume
##
size: 8Gi
## @param querier.persistence.annotations Additional PVC annotations
##
annotations: {}
## @param querier.persistence.selector Selector to match an existing Persistent Volume for Querier's data PVC
## If set, the PVC can't have a PV dynamically provisioned for it
## E.g.
## selector:
## matchLabels:
## app: my-app
##
selector: {}
## @section Querier Traffic Exposure Parameters
##
## querier service parameters
##
service:
## @param querier.service.type Querier service type
##
type: ClusterIP
## @param querier.service.ports.http Querier HTTP service port
## @param querier.service.ports.grpc Querier GRPC service port
##
ports:
http: 3100
grpc: 9095
## Node ports to expose
## NOTE: choose port between <30000-32767>
## @param querier.service.nodePorts.http Node port for HTTP
## @param querier.service.nodePorts.grpc Node port for GRPC
##
nodePorts:
http: ""
grpc: ""
## @param querier.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @param querier.service.sessionAffinity Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
##
sessionAffinity: None
## @param querier.service.clusterIP Querier service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param querier.service.loadBalancerIP Querier service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param querier.service.loadBalancerSourceRanges Querier service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param querier.service.externalTrafficPolicy Querier service external traffic policy
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param querier.service.annotations Additional custom annotations for Querier service
##
annotations: {}
## @param querier.service.extraPorts Extra ports to expose in the Querier service
##
extraPorts: []
## @section Query Frontend Deployment Parameters
##
queryFrontend:
## @param queryFrontend.extraEnvVars Array with extra environment variables to add to queryFrontend nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param queryFrontend.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for queryFrontend nodes
##
extraEnvVarsCM: ""
## @param queryFrontend.extraEnvVarsSecret Name of existing Secret containing extra env vars for queryFrontend nodes
##
extraEnvVarsSecret: ""
## @param queryFrontend.command Override default container command (useful when using custom images)
##
command: []
## @param queryFrontend.args Override default container args (useful when using custom images)
##
args: []
## @param queryFrontend.replicaCount Number of queryFrontend replicas to deploy
##
replicaCount: 1
## Configure extra options for queryFrontend containers' liveness, readiness and startup probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
## @param queryFrontend.livenessProbe.enabled Enable livenessProbe on queryFrontend nodes
## @param queryFrontend.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param queryFrontend.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param queryFrontend.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param queryFrontend.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param queryFrontend.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param queryFrontend.readinessProbe.enabled Enable readinessProbe on queryFrontend nodes
## @param queryFrontend.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param queryFrontend.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param queryFrontend.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param queryFrontend.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param queryFrontend.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param queryFrontend.startupProbe.enabled Enable startupProbe on queryFrontend containers
## @param queryFrontend.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param queryFrontend.startupProbe.periodSeconds Period seconds for startupProbe
## @param queryFrontend.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param queryFrontend.startupProbe.failureThreshold Failure threshold for startupProbe
## @param queryFrontend.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 15
successThreshold: 1
## @param queryFrontend.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param queryFrontend.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param queryFrontend.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## queryFrontend resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param queryFrontend.resources.limits The resources limits for the queryFrontend containers
## @param queryFrontend.resources.requests The requested resources for the queryFrontend containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param queryFrontend.podSecurityContext.enabled Enabled queryFrontend pods' Security Context
## @param queryFrontend.podSecurityContext.fsGroup Set queryFrontend pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param queryFrontend.containerSecurityContext.enabled Enabled queryFrontend containers' Security Context
## @param queryFrontend.containerSecurityContext.runAsUser Set queryFrontend containers' Security Context runAsUser
## @param queryFrontend.containerSecurityContext.runAsNonRoot Set queryFrontend containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## @param queryFrontend.lifecycleHooks for the queryFrontend container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param queryFrontend.hostAliases queryFrontend pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param queryFrontend.podLabels Extra labels for queryFrontend pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param queryFrontend.podAnnotations Annotations for queryFrontend pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param queryFrontend.podAffinityPreset Pod affinity preset. Ignored if `queryFrontend.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param queryFrontend.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `queryFrontend.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node queryFrontend.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param queryFrontend.nodeAffinityPreset.type Node affinity preset type. Ignored if `queryFrontend.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param queryFrontend.nodeAffinityPreset.key Node label key to match. Ignored if `queryFrontend.affinity` is set
##
key: ""
## @param queryFrontend.nodeAffinityPreset.values Node label values to match. Ignored if `queryFrontend.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param queryFrontend.affinity Affinity for queryFrontend pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `queryFrontend.podAffinityPreset`, `queryFrontend.podAntiAffinityPreset`, and `queryFrontend.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param queryFrontend.nodeSelector Node labels for queryFrontend pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param queryFrontend.tolerations Tolerations for queryFrontend pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param queryFrontend.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param queryFrontend.priorityClassName queryFrontend pods' priorityClassName
##
priorityClassName: ""
## @param queryFrontend.schedulerName Kubernetes pod scheduler registry
## https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param queryFrontend.updateStrategy.type queryFrontend statefulset strategy type
## @param queryFrontend.updateStrategy.rollingUpdate queryFrontend statefulset rolling update configuration parameters
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param queryFrontend.extraVolumes Optionally specify extra list of additional volumes for the queryFrontend pod(s)
##
extraVolumes: []
## @param queryFrontend.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the queryFrontend container(s)
##
extraVolumeMounts: []
## @param queryFrontend.sidecars Add additional sidecar containers to the queryFrontend pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param queryFrontend.initContainers Add additional init containers to the queryFrontend pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @section Query Frontend Traffic Exposure Parameters
##
## queryFrontend service parameters
##
service:
## @param queryFrontend.service.type queryFrontend service type
##
type: ClusterIP
## @param queryFrontend.service.ports.http queryFrontend HTTP service port
## @param queryFrontend.service.ports.grpc queryFrontend GRPC service port
##
ports:
http: 3100
grpc: 9095
## Node ports to expose
## NOTE: choose port between <30000-32767>
## @param queryFrontend.service.nodePorts.http Node port for HTTP
## @param queryFrontend.service.nodePorts.grpc Node port for GRPC
##
nodePorts:
http: ""
grpc: ""
## @param queryFrontend.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @param queryFrontend.service.sessionAffinity Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
##
sessionAffinity: None
## @param queryFrontend.service.clusterIP queryFrontend service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param queryFrontend.service.loadBalancerIP queryFrontend service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param queryFrontend.service.loadBalancerSourceRanges queryFrontend service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param queryFrontend.service.externalTrafficPolicy queryFrontend service external traffic policy
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param queryFrontend.service.annotations Additional custom annotations for queryFrontend service
##
annotations: {}
## @param queryFrontend.service.extraPorts Extra ports to expose in the queryFrontend service
##
extraPorts: []
## @section Query Scheduler Deployment Parameters
##
queryScheduler:
## @param queryScheduler.extraEnvVars Array with extra environment variables to add to queryScheduler nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param queryScheduler.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for queryScheduler nodes
##
extraEnvVarsCM: ""
## @param queryScheduler.extraEnvVarsSecret Name of existing Secret containing extra env vars for queryScheduler nodes
##
extraEnvVarsSecret: ""
## @param queryScheduler.command Override default container command (useful when using custom images)
##
command: []
## @param queryScheduler.args Override default container args (useful when using custom images)
##
args: []
## @param queryScheduler.replicaCount Number of queryScheduler replicas to deploy
##
replicaCount: 1
## Configure extra options for queryScheduler containers' liveness, readiness and startup probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
## @param queryScheduler.livenessProbe.enabled Enable livenessProbe on queryScheduler nodes
## @param queryScheduler.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param queryScheduler.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param queryScheduler.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param queryScheduler.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param queryScheduler.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param queryScheduler.minReadySeconds Minimum time to wait before performing readiness check
##
minReadySeconds: 10
## @param queryScheduler.readinessProbe.enabled Enable readinessProbe on queryScheduler nodes
## @param queryScheduler.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param queryScheduler.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param queryScheduler.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param queryScheduler.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param queryScheduler.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param queryScheduler.startupProbe.enabled Enable startupProbe on queryScheduler containers
## @param queryScheduler.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param queryScheduler.startupProbe.periodSeconds Period seconds for startupProbe
## @param queryScheduler.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param queryScheduler.startupProbe.failureThreshold Failure threshold for startupProbe
## @param queryScheduler.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 15
successThreshold: 1
## @param queryScheduler.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param queryScheduler.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param queryScheduler.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## queryScheduler resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param queryScheduler.resources.limits The resources limits for the queryScheduler containers
## @param queryScheduler.resources.requests The requested resources for the queryScheduler containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param queryScheduler.podSecurityContext.enabled Enabled queryScheduler pods' Security Context
## @param queryScheduler.podSecurityContext.fsGroup Set queryScheduler pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param queryScheduler.containerSecurityContext.enabled Enabled queryScheduler containers' Security Context
## @param queryScheduler.containerSecurityContext.runAsUser Set queryScheduler containers' Security Context runAsUser
## @param queryScheduler.containerSecurityContext.runAsNonRoot Set queryScheduler containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## @param queryScheduler.lifecycleHooks for the queryScheduler container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param queryScheduler.hostAliases queryScheduler pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param queryScheduler.podLabels Extra labels for queryScheduler pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param queryScheduler.podAnnotations Annotations for queryScheduler pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param queryScheduler.podAffinityPreset Pod affinity preset. Ignored if `queryScheduler.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param queryScheduler.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `queryScheduler.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node queryScheduler.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param queryScheduler.nodeAffinityPreset.type Node affinity preset type. Ignored if `queryScheduler.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param queryScheduler.nodeAffinityPreset.key Node label key to match. Ignored if `queryScheduler.affinity` is set
##
key: ""
## @param queryScheduler.nodeAffinityPreset.values Node label values to match. Ignored if `queryScheduler.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param queryScheduler.affinity Affinity for queryScheduler pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `queryScheduler.podAffinityPreset`, `queryScheduler.podAntiAffinityPreset`, and `queryScheduler.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param queryScheduler.nodeSelector Node labels for queryScheduler pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param queryScheduler.tolerations Tolerations for queryScheduler pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param queryScheduler.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param queryScheduler.priorityClassName queryScheduler pods' priorityClassName
##
priorityClassName: ""
## @param queryScheduler.schedulerName Kubernetes pod scheduler registry
## https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param queryScheduler.updateStrategy.type queryScheduler statefulset strategy type
## @param queryScheduler.updateStrategy.rollingUpdate queryScheduler statefulset rolling update configuration parameters
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param queryScheduler.extraVolumes Optionally specify extra list of additional volumes for the queryScheduler pod(s)
##
extraVolumes: []
## @param queryScheduler.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the queryScheduler container(s)
##
extraVolumeMounts: []
## @param queryScheduler.sidecars Add additional sidecar containers to the queryScheduler pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param queryScheduler.initContainers Add additional init containers to the queryScheduler pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @section Query Frontend Traffic Exposure Parameters
##
## queryScheduler service parameters
##
service:
## @param queryScheduler.service.type queryScheduler service type
##
type: ClusterIP
## @param queryScheduler.service.ports.http queryScheduler HTTP service port
## @param queryScheduler.service.ports.grpc queryScheduler GRPC service port
##
ports:
http: 3100
grpc: 9095
## Node ports to expose
## NOTE: choose port between <30000-32767>
## @param queryScheduler.service.nodePorts.http Node port for HTTP
## @param queryScheduler.service.nodePorts.grpc Node port for GRPC
##
nodePorts:
http: ""
grpc: ""
## @param queryScheduler.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @param queryScheduler.service.sessionAffinity Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
##
sessionAffinity: None
## @param queryScheduler.service.clusterIP queryScheduler service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param queryScheduler.service.loadBalancerIP queryScheduler service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param queryScheduler.service.loadBalancerSourceRanges queryScheduler service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param queryScheduler.service.externalTrafficPolicy queryScheduler service external traffic policy
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param queryScheduler.service.annotations Additional custom annotations for queryScheduler service
##
annotations: {}
## @param queryScheduler.service.extraPorts Extra ports to expose in the queryScheduler service
##
extraPorts: []
## @section Ruler Deployment Parameters
##
ruler:
## @param ruler.enabled Deploy ruler component
##
enabled: false
## @param ruler.extraEnvVars Array with extra environment variables to add to ruler nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param ruler.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for ruler nodes
##
extraEnvVarsCM: ""
## @param ruler.extraEnvVarsSecret Name of existing Secret containing extra env vars for ruler nodes
##
extraEnvVarsSecret: ""
## @param ruler.command Override default container command (useful when using custom images)
##
command: []
## @param ruler.args Override default container args (useful when using custom images)
##
args: []
## @param ruler.podManagementPolicy podManagementPolicy to manage scaling operation
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies
##
podManagementPolicy: ""
## @param ruler.replicaCount Number of Ruler replicas to deploy
##
replicaCount: 1
## Configure extra options for Ruler containers' liveness, readiness and startup probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
## @param ruler.livenessProbe.enabled Enable livenessProbe on Ruler nodes
## @param ruler.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param ruler.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param ruler.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param ruler.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param ruler.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param ruler.readinessProbe.enabled Enable readinessProbe on Ruler nodes
## @param ruler.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param ruler.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param ruler.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param ruler.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param ruler.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param ruler.startupProbe.enabled Enable startupProbe on Ruler containers
## @param ruler.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param ruler.startupProbe.periodSeconds Period seconds for startupProbe
## @param ruler.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param ruler.startupProbe.failureThreshold Failure threshold for startupProbe
## @param ruler.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 15
successThreshold: 1
## @param ruler.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param ruler.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param ruler.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## @param ruler.lifecycleHooks for the ruler container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## ruler resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param ruler.resources.limits The resources limits for the Ruler containers
## @param ruler.resources.requests The requested resources for the Ruler containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param ruler.podSecurityContext.enabled Enabled Ruler pods' Security Context
## @param ruler.podSecurityContext.fsGroup Set Ruler pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param ruler.containerSecurityContext.enabled Enabled Ruler containers' Security Context
## @param ruler.containerSecurityContext.runAsUser Set Ruler containers' Security Context runAsUser
## @param ruler.containerSecurityContext.runAsNonRoot Set Ruler containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## @param ruler.hostAliases ruler pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param ruler.podLabels Extra labels for ruler pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param ruler.podAnnotations Annotations for ruler pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param ruler.podAffinityPreset Pod affinity preset. Ignored if `ruler.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param ruler.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `ruler.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node ruler.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param ruler.nodeAffinityPreset.type Node affinity preset type. Ignored if `ruler.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param ruler.nodeAffinityPreset.key Node label key to match. Ignored if `ruler.affinity` is set
##
key: ""
## @param ruler.nodeAffinityPreset.values Node label values to match. Ignored if `ruler.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param ruler.affinity Affinity for ruler pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `ruler.podAffinityPreset`, `ruler.podAntiAffinityPreset`, and `ruler.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param ruler.nodeSelector Node labels for Ruler pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param ruler.tolerations Tolerations for Ruler pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param ruler.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param ruler.priorityClassName Ruler pods' priorityClassName
##
priorityClassName: ""
## @param ruler.schedulerName Kubernetes pod scheduler registry
## https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param ruler.updateStrategy.type Ruler statefulset strategy type
## @param ruler.updateStrategy.rollingUpdate Ruler statefulset rolling update configuration parameters
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param ruler.extraVolumes Optionally specify extra list of additional volumes for the Ruler pod(s)
##
extraVolumes: []
## @param ruler.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the ruler container(s)
##
extraVolumeMounts: []
## @param ruler.sidecars Add additional sidecar containers to the Ruler pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param ruler.initContainers Add additional init containers to the Ruler pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @section Ruler Persistence Parameters
##
## Enable persistence using Persistent Volume Claims
## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/
##
persistence:
## @param ruler.persistence.enabled Enable persistence in Ruler instances
##
enabled: true
## @param ruler.persistence.storageClass PVC Storage Class for Memcached data volume
## 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: ""
## @param ruler.persistence.subPath The subdirectory of the volume to mount to
##
subPath: ""
## @param ruler.persistence.accessModes PVC Access modes
##
accessModes:
- ReadWriteOnce
## @param ruler.persistence.size PVC Storage Request for Memcached data volume
##
size: 8Gi
## @param ruler.persistence.annotations Additional PVC annotations
##
annotations: {}
## @param ruler.persistence.selector Selector to match an existing Persistent Volume for Ruler's data PVC
## If set, the PVC can't have a PV dynamically provisioned for it
## E.g.
## selector:
## matchLabels:
## app: my-app
##
selector: {}
## @section Ruler Traffic Exposure Parameters
##
## ruler service parameters
##
service:
## @param ruler.service.type Ruler service type
##
type: ClusterIP
## @param ruler.service.ports.http Ruler HTTP service port
## @param ruler.service.ports.grpc Ruler GRPC service port
##
ports:
http: 3100
grpc: 9095
## Node ports to expose
## NOTE: choose port between <30000-32767>
## @param ruler.service.nodePorts.http Node port for HTTP
## @param ruler.service.nodePorts.grpc Node port for GRPC
##
nodePorts:
http: ""
grpc: ""
## @param ruler.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @param ruler.service.sessionAffinity Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
##
sessionAffinity: None
## @param ruler.service.clusterIP Ruler service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param ruler.service.loadBalancerIP Ruler service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param ruler.service.loadBalancerSourceRanges Ruler service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param ruler.service.externalTrafficPolicy Ruler service external traffic policy
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param ruler.service.annotations Additional custom annotations for Ruler service
##
annotations: {}
## @param ruler.service.extraPorts Extra ports to expose in the Ruler service
##
extraPorts: []
## @section table-manager Deployment Parameters
##
tableManager:
## @param tableManager.enabled Deploy table-manager
##
enabled: false
## @param tableManager.extraEnvVars Array with extra environment variables to add to tableManager nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param tableManager.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for tableManager nodes
##
extraEnvVarsCM: ""
## @param tableManager.extraEnvVarsSecret Name of existing Secret containing extra env vars for tableManager nodes
##
extraEnvVarsSecret: ""
## @param tableManager.command Override default container command (useful when using custom images)
##
command: []
## @param tableManager.args Override default container args (useful when using custom images)
##
args: []
## @param tableManager.replicaCount Number of table-manager replicas to deploy
##
replicaCount: 1
## Configure extra options for table-manager containers' liveness, readiness and startup probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
## @param tableManager.livenessProbe.enabled Enable livenessProbe on table-manager nodes
## @param tableManager.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param tableManager.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param tableManager.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param tableManager.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param tableManager.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param tableManager.readinessProbe.enabled Enable readinessProbe on table-manager nodes
## @param tableManager.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param tableManager.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param tableManager.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param tableManager.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param tableManager.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param tableManager.startupProbe.enabled Enable startupProbe on table-manager containers
## @param tableManager.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param tableManager.startupProbe.periodSeconds Period seconds for startupProbe
## @param tableManager.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param tableManager.startupProbe.failureThreshold Failure threshold for startupProbe
## @param tableManager.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 15
successThreshold: 1
## @param tableManager.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param tableManager.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param tableManager.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## tableManager resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param tableManager.resources.limits The resources limits for the tableManager containers
## @param tableManager.resources.requests The requested resources for the tableManager containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param tableManager.podSecurityContext.enabled Enabled table-manager pods' Security Context
## @param tableManager.podSecurityContext.fsGroup Set table-manager pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroup: 1001
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param tableManager.containerSecurityContext.enabled Enabled table-manager containers' Security Context
## @param tableManager.containerSecurityContext.runAsUser Set table-manager containers' Security Context runAsUser
## @param tableManager.containerSecurityContext.runAsNonRoot Set table-manager containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## @param tableManager.lifecycleHooks for the tableManager container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## @param tableManager.hostAliases tableManager pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param tableManager.podLabels Extra labels for tableManager pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param tableManager.podAnnotations Annotations for tableManager pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param tableManager.podAffinityPreset Pod affinity preset. Ignored if `tableManager.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param tableManager.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `tableManager.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node tableManager.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param tableManager.nodeAffinityPreset.type Node affinity preset type. Ignored if `tableManager.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param tableManager.nodeAffinityPreset.key Node label key to match. Ignored if `tableManager.affinity` is set
##
key: ""
## @param tableManager.nodeAffinityPreset.values Node label values to match. Ignored if `tableManager.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param tableManager.affinity Affinity for table-manager pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `tableManager.podAffinityPreset`, `tableManager.podAntiAffinityPreset`, and `tableManager.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param tableManager.nodeSelector Node labels for table-manager pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param tableManager.tolerations Tolerations for table-manager pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param tableManager.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param tableManager.priorityClassName table-manager pods' priorityClassName
##
priorityClassName: ""
## @param tableManager.schedulerName Kubernetes pod scheduler registry
## https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param tableManager.updateStrategy.type table-manager statefulset strategy type
## @param tableManager.updateStrategy.rollingUpdate table-manager statefulset rolling update configuration parameters
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param tableManager.extraVolumes Optionally specify extra list of additional volumes for the table-manager pod(s)
##
extraVolumes: []
## @param tableManager.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the table-manager container(s)
##
extraVolumeMounts: []
## @param tableManager.sidecars Add additional sidecar containers to the table-manager pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param tableManager.initContainers Add additional init containers to the table-manager pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @section table-manager Traffic Exposure Parameters
##
## tableManager service parameters
##
service:
## @param tableManager.service.type table-manager service type
##
type: ClusterIP
## @param tableManager.service.ports.http table-manager HTTP service port
## @param tableManager.service.ports.grpc table-manager GRPC service port
##
ports:
http: 3100
grpc: 9095
## Node ports to expose
## NOTE: choose port between <30000-32767>
## @param tableManager.service.nodePorts.http Node port for HTTP
## @param tableManager.service.nodePorts.grpc Node port for GRPC
##
nodePorts:
http: ""
grpc: ""
## @param tableManager.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @param tableManager.service.sessionAffinity Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
##
sessionAffinity: None
## @param tableManager.service.clusterIP table-manager service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param tableManager.service.loadBalancerIP table-manager service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param tableManager.service.loadBalancerSourceRanges table-manager service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param tableManager.service.externalTrafficPolicy table-manager service external traffic policy
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param tableManager.service.annotations Additional custom annotations for table-manager service
##
annotations: {}
## @param tableManager.service.extraPorts Extra ports to expose in the table-manager service
##
extraPorts: []
## @section Promtail Deployment Parameters
##
promtail:
## @param promtail.enabled Deploy promtail
##
enabled: true
## Bitnami Promtail image
## ref: https://hub.docker.com/r/bitnami/grafana-promtail/tags/
## @param promtail.image.registry Grafana Promtail image registry
## @param promtail.image.repository Grafana Promtail image repository
## @param promtail.image.tag Grafana Promtail image tag (immutable tags are recommended)
## @param promtail.image.digest Grafana Promtail image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
## @param promtail.image.pullPolicy Grafana Promtail image pull policy
## @param promtail.image.pullSecrets Grafana Promtail image pull secrets
##
image:
registry: docker.io
repository: bitnami/promtail
tag: 2.6.1-debian-11-r8
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## e.g:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## @param promtail.extraEnvVars Array with extra environment variables to add to promtail nodes
## e.g:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param promtail.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for promtail nodes
##
extraEnvVarsCM: ""
## @param promtail.extraEnvVarsSecret Name of existing Secret containing extra env vars for promtail nodes
##
extraEnvVarsSecret: ""
## @param promtail.command Override default container command (useful when using custom images)
##
command: []
## @param promtail.args Override default container args (useful when using custom images)
##
args: []
## @param promtail.containerPorts.http Promtail HTTP port
##
containerPorts:
http: 8080
## Configure extra options for Promtail containers' liveness, readiness and startup probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
## @param promtail.livenessProbe.enabled Enable livenessProbe on Promtail nodes
## @param promtail.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param promtail.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param promtail.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param promtail.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param promtail.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param promtail.readinessProbe.enabled Enable readinessProbe on Promtail nodes
## @param promtail.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param promtail.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param promtail.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param promtail.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param promtail.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
failureThreshold: 3
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
## @param promtail.startupProbe.enabled Enable startupProbe on Promtail containers
## @param promtail.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param promtail.startupProbe.periodSeconds Period seconds for startupProbe
## @param promtail.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param promtail.startupProbe.failureThreshold Failure threshold for startupProbe
## @param promtail.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 15
successThreshold: 1
## @param promtail.customLivenessProbe Custom livenessProbe that overrides the default one
##
customLivenessProbe: {}
## @param promtail.customReadinessProbe Custom readinessProbe that overrides the default one
##
customReadinessProbe: {}
## @param promtail.customStartupProbe Custom startupProbe that overrides the default one
##
customStartupProbe: {}
## @param promtail.lifecycleHooks for the promtail container(s) to automate configuration before or after startup
##
lifecycleHooks: {}
## promtail resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param promtail.resources.limits The resources limits for the Promtail containers
## @param promtail.resources.requests The requested resources for the Promtail containers
##
resources:
limits: {}
requests: {}
## Configure Pods Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param promtail.podSecurityContext.enabled Enabled Promtail pods' Security Context
## @param promtail.podSecurityContext.fsGroup Set Promtail pod's Security Context fsGroup
##
podSecurityContext:
enabled: true
fsGroup: 0
## Configure Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param promtail.containerSecurityContext.enabled Enabled Promtail containers' Security Context
## @param promtail.containerSecurityContext.runAsUser Set Promtail containers' Security Context runAsUser
## @param promtail.containerSecurityContext.runAsNonRoot Set Promtail containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 0
runAsNonRoot: false
## @param promtail.hostAliases promtail pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param promtail.podLabels Extra labels for promtail pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param promtail.podAnnotations Annotations for promtail pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param promtail.podAffinityPreset Pod affinity preset. Ignored if `promtail.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAffinityPreset: ""
## @param promtail.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `promtail.affinity` is set. Allowed values: `soft` or `hard`
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
##
podAntiAffinityPreset: soft
## Node promtail.affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param promtail.nodeAffinityPreset.type Node affinity preset type. Ignored if `promtail.affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param promtail.nodeAffinityPreset.key Node label key to match. Ignored if `promtail.affinity` is set
##
key: ""
## @param promtail.nodeAffinityPreset.values Node label values to match. Ignored if `promtail.affinity` is set
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param promtail.affinity Affinity for promtail pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
## NOTE: `promtail.podAffinityPreset`, `promtail.podAntiAffinityPreset`, and `promtail.nodeAffinityPreset` will be ignored when it's set
##
affinity: {}
## @param promtail.nodeSelector Node labels for Promtail pods assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param promtail.tolerations Tolerations for Promtail pods assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param promtail.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods
##
topologySpreadConstraints: []
## @param promtail.priorityClassName Promtail pods' priorityClassName
##
priorityClassName: ""
## @param promtail.schedulerName Kubernetes pod scheduler registry
## https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""
## @param promtail.updateStrategy.type Promtail statefulset strategy type
## @param promtail.updateStrategy.rollingUpdate Promtail statefulset rolling update configuration parameters
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param promtail.extraVolumes Optionally specify extra list of additional volumes for the Promtail pod(s)
##
extraVolumes: []
## @param promtail.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the promtail container(s)
##
extraVolumeMounts: []
## @param promtail.sidecars Add additional sidecar containers to the Promtail pod(s)
## e.g:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## @param promtail.initContainers Add additional init containers to the Promtail pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: []
## @param promtail.configuration [string] Promtail configuration
##
configuration: |
server:
log_level: {{ .Values.promtail.logLevel }}
http_listen_port: {{ .Values.promtail.containerPorts.http }}
clients:
- url: http://{{ include "grafana-loki.gateway.fullname" . }}:{{ .Values.gateway.service.ports.http }}/loki/api/v1/push
{{- if .Values.gateway.auth.enabled }}
basic_auth:
# The username to use for basic auth
username: {{ .Values.gateway.auth.username }}
password_file: /bitnami/promtail/conf/secrets/password
{{- end }}
positions:
filename: /run/promtail/positions.yaml
scrape_configs:
# See also https://github.com/grafana/loki/blob/master/production/ksonnet/promtail/scrape_config.libsonnet for reference
- job_name: kubernetes-pods
pipeline_stages:
- cri: {}
kubernetes_sd_configs:
- role: pod
relabel_configs:
- source_labels:
- __meta_kubernetes_pod_controller_name
regex: ([0-9a-z-.]+?)(-[0-9a-f]{8,10})?
action: replace
target_label: __tmp_controller_name
- source_labels:
- __meta_kubernetes_pod_label_app_kubernetes_io_name
- __meta_kubernetes_pod_label_app
- __tmp_controller_name
- __meta_kubernetes_pod_name
regex: ^;*([^;]+)(;.*)?$
action: replace
target_label: app
- source_labels:
- __meta_kubernetes_pod_label_app_kubernetes_io_component
- __meta_kubernetes_pod_label_component
regex: ^;*([^;]+)(;.*)?$
action: replace
target_label: component
- action: replace
source_labels:
- __meta_kubernetes_pod_node_name
target_label: node_name
- action: replace
source_labels:
- __meta_kubernetes_namespace
target_label: namespace
- action: replace
replacement: $1
separator: /
source_labels:
- namespace
- app
target_label: job
- action: replace
source_labels:
- __meta_kubernetes_pod_name
target_label: pod
- action: replace
source_labels:
- __meta_kubernetes_pod_container_name
target_label: container
- action: replace
replacement: /var/log/pods/*$1/*.log
separator: /
source_labels:
- __meta_kubernetes_pod_uid
- __meta_kubernetes_pod_container_name
target_label: __path__
- action: replace
regex: true/(.*)
replacement: /var/log/pods/*$1/*.log
separator: /
source_labels:
- __meta_kubernetes_pod_annotationpresent_kubernetes_io_config_hash
- __meta_kubernetes_pod_annotation_kubernetes_io_config_hash
- __meta_kubernetes_pod_container_name
target_label: __path__
## @param promtail.existingSecret Name of a Secret that contains the Promtail configuration
##
existingSecret: ""
## @param promtail.logLevel Promtail logging level
##
logLevel: info
## @section Promtail Traffic Exposure Parameters
##
## promtail service parameters
##
service:
## @param promtail.service.type Promtail service type
##
type: ClusterIP
## @param promtail.service.ports.http Promtail HTTP service port
##
ports:
http: 3100
## Node ports to expose
## NOTE: choose port between <30000-32767>
## @param promtail.service.nodePorts.http Node port for HTTP
##
nodePorts:
http: ""
## @param promtail.service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: {}
## @param promtail.service.sessionAffinity Control where client requests go, to the same pod or round-robin
## Values: ClientIP or None
## ref: https://kubernetes.io/docs/user-guide/services/
##
sessionAffinity: None
## @param promtail.service.clusterIP Promtail service Cluster IP
## e.g.:
## clusterIP: None
##
clusterIP: ""
## @param promtail.service.loadBalancerIP Promtail service Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerIP: ""
## @param promtail.service.loadBalancerSourceRanges Promtail service Load Balancer sources
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g:
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param promtail.service.externalTrafficPolicy Promtail service external traffic policy
## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param promtail.service.annotations Additional custom annotations for Promtail service
##
annotations: {}
## @param promtail.service.extraPorts Extra ports to expose in the Promtail service
##
extraPorts: []
## Create RBAC
## @param promtail.rbac.create Create RBAC rules
##
rbac:
create: true
## Service account for Loki to use
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
##
serviceAccount:
## @param promtail.serviceAccount.create Enable creation of ServiceAccount for Promtail pods
##
create: true
## @param promtail.serviceAccount.name The name of the ServiceAccount to use
## If not set and create is true, a name is generated using the common.names.fullname template
##
name: ""
## @param promtail.serviceAccount.automountServiceAccountToken Allows auto mount of ServiceAccountToken on the promtail.serviceAccount.created
## Can be set to false if pods using this promtail.serviceAccount.do not need to use K8s API
##
automountServiceAccountToken: true
## @param promtail.serviceAccount.annotations Additional custom annotations for the ServiceAccount
##
annotations: {}
## @section Init Container Parameters
##
## 'volumePermissions' init container parameters
## Changes the owner and group of the persistent volume mount point to runAsUser:fsGroup values
## based on the *podSecurityContext/*containerSecurityContext parameters
##
volumePermissions:
## @param volumePermissions.enabled Enable init container that changes the owner/group of the PV mount point to `runAsUser:fsGroup`
##
enabled: false
## Bitnami Shell image
## ref: https://hub.docker.com/r/bitnami/bitnami-shell/tags/
## @param volumePermissions.image.registry Bitnami Shell image registry
## @param volumePermissions.image.repository Bitnami Shell image repository
## @param volumePermissions.image.tag Bitnami Shell image tag (immutable tags are recommended)
## @param volumePermissions.image.digest Bitnami Shell image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
## @param volumePermissions.image.pullPolicy Bitnami Shell image pull policy
## @param volumePermissions.image.pullSecrets Bitnami Shell image pull secrets
##
image:
registry: docker.io
repository: bitnami/bitnami-shell
tag: 11-debian-11-r23
digest: ""
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## e.g:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## Init container's resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param volumePermissions.resources.limits The resources limits for the init container
## @param volumePermissions.resources.requests The requested resources for the init container
##
resources:
limits: {}
requests: {}
## Init container Container Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## @param volumePermissions.containerSecurityContext.runAsUser Set init container's Security Context runAsUser
## NOTE: when runAsUser is set to special value "auto", init container will try to chown the
## data folder to auto-determined user&group, using commands: `id -u`:`id -G | cut -d" " -f2`
## "auto" is especially useful for OpenShift which has scc with dynamic user ids (and 0 is not allowed)
##
containerSecurityContext:
runAsUser: 0
## @section Other Parameters
##
## Service account for Loki to use
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
##
serviceAccount:
## @param serviceAccount.create Enable creation of ServiceAccount for Loki pods
##
create: false
## @param serviceAccount.name The name of the ServiceAccount to use
## If not set and create is true, a name is generated using the common.names.fullname template
##
name: ""
## @param serviceAccount.automountServiceAccountToken Allows auto mount of ServiceAccountToken on the serviceAccount created
## Can be set to false if pods using this serviceAccount do not need to use K8s API
##
automountServiceAccountToken: true
## @param serviceAccount.annotations Additional custom annotations for the ServiceAccount
##
annotations: {}
## @section Metrics Parameters
## Prometheus Exporter / Metrics
##
metrics:
## @param metrics.enabled Enable metrics
##
enabled: false
## Prometheus Operator ServiceMonitor configuration
##
serviceMonitor:
## @param metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using Prometheus Operator
##
enabled: false
## @param metrics.serviceMonitor.namespace Namespace for the ServiceMonitor Resource (defaults to the Release Namespace)
##
namespace: ""
## @param metrics.serviceMonitor.interval Interval at which metrics should be scraped.
## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
##
interval: ""
## @param metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
##
scrapeTimeout: ""
## @param metrics.serviceMonitor.labels Additional labels that can be used so ServiceMonitor will be discovered by Prometheus
##
labels: {}
## @param metrics.serviceMonitor.selector Prometheus instance selector labels
## ref: https://github.com/bitnami/charts/tree/master/bitnami/prometheus-operator#prometheus-configuration
##
selector: {}
## @param metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping
##
relabelings: []
## @param metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion
##
metricRelabelings: []
## @param metrics.serviceMonitor.honorLabels Specify honorLabels parameter to add the scrape endpoint
##
honorLabels: false
## @param metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus.
##
jobLabel: ""
## @section External Memcached (Chunks) Parameters
##
externalMemcachedChunks:
## @param externalMemcachedChunks.host Host of a running external memcached instance
##
host: ""
## @param externalMemcachedChunks.port Port of a running external memcached instance
##
port: 11211
## @section Memcached Sub-chart Parameters (Chunks)
## Memcached sub-chart (Chunks)
##
memcachedchunks:
## @param memcachedchunks.enabled Deploy memcached sub-chart
##
enabled: true
## Bitnami Memcached image version
## ref: https://hub.docker.com/r/bitnami/memcached/tags/
## @param memcachedchunks.image.registry Memcached image registry
## @param memcachedchunks.image.repository Memcached image repository
## @param memcachedchunks.image.tag Memcached image tag (immutable tags are recommended)
## @param memcachedchunks.image.digest Memcached image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
##
image:
registry: docker.io
repository: bitnami/memcached
tag: 1.6.16-debian-11-r2
digest: ""
## @param memcachedchunks.nameOverride override the subchart name
##
nameOverride: ""
## @param memcachedchunks.architecture Memcached architecture
##
architecture: high-availability
## @param memcachedchunks.service.ports.memcached Memcached service port
##
service:
ports:
memcached: 11211
## @section External Memcached (Frontend) Parameters
##
externalMemcachedFrontend:
## @param externalMemcachedFrontend.host Host of a running external memcached instance
##
host: ""
## @param externalMemcachedFrontend.port Port of a running external memcached instance
##
port: 11211
## @section Memcached Sub-chart Parameters (Frontend)
## Memcached sub-chart (Frontend)
##
memcachedfrontend:
## @param memcachedfrontend.enabled Deploy memcached sub-chart
##
enabled: true
## Bitnami Memcached image version
## ref: https://hub.docker.com/r/bitnami/memcached/tags/
## @param memcachedfrontend.image.registry Memcached image registry
## @param memcachedfrontend.image.repository Memcached image repository
## @param memcachedfrontend.image.tag Memcached image tag (immutable tags are recommended)
## @param memcachedfrontend.image.digest Memcached image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
##
image:
registry: docker.io
repository: bitnami/memcached
tag: 1.6.16-debian-11-r2
digest: ""
## @param memcachedfrontend.architecture Memcached architecture
##
architecture: high-availability
## @param memcachedfrontend.nameOverride override the subchart name
##
nameOverride: ""
## @param memcachedfrontend.service.ports.memcached Memcached service port
##
service:
ports:
memcached: 11211
## @section External Memcached (Index-Queries) Parameters
##
externalMemcachedIndexQueries:
## @param externalMemcachedIndexQueries.host Host of a running external memcached instance
##
host: ""
## @param externalMemcachedIndexQueries.port Port of a running external memcached instance
##
port: 11211
## @section Memcached Sub-chart Parameters (Index-Queries)
## Memcached sub-chart (Index-Queries)
##
memcachedindexqueries:
## @param memcachedindexqueries.enabled Deploy memcached sub-chart
##
enabled: true
## Bitnami Memcached image version
## ref: https://hub.docker.com/r/bitnami/memcached/tags/
## @param memcachedindexqueries.image.registry Memcached image registry
## @param memcachedindexqueries.image.repository Memcached image repository
## @param memcachedindexqueries.image.tag Memcached image tag (immutable tags are recommended)
## @param memcachedindexqueries.image.digest Memcached image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
##
image:
registry: docker.io
repository: bitnami/memcached
tag: 1.6.16-debian-11-r2
digest: ""
## @param memcachedindexqueries.architecture Memcached architecture
##
architecture: high-availability
## @param memcachedindexqueries.nameOverride override the subchart name
##
nameOverride: ""
## @param memcachedindexqueries.service.ports.memcached Memcached service port
##
service:
ports:
memcached: 11211
## @section External Memcached (IndexWrites) Parameters
##
externalMemcachedIndexWrites:
## @param externalMemcachedIndexWrites.host Host of a running external memcached instance
##
host: ""
## @param externalMemcachedIndexWrites.port Port of a running external memcached instance
##
port: 11211
## @section Memcached Sub-chart Parameters (Index-Writes)
## Memcached sub-chart (Index-Writes)
##
memcachedindexwrites:
## @param memcachedindexwrites.enabled Deploy memcached sub-chart
##
enabled: false
## Bitnami Memcached image version
## ref: https://hub.docker.com/r/bitnami/memcached/tags/
## @param memcachedindexwrites.image.registry Memcached image registry
## @param memcachedindexwrites.image.repository Memcached image repository
## @param memcachedindexwrites.image.tag Memcached image tag (immutable tags are recommended)
## @param memcachedindexwrites.image.digest Memcached image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
##
image:
registry: docker.io
repository: bitnami/memcached
tag: 1.6.16-debian-11-r2
digest: ""
## @param memcachedindexwrites.architecture Memcached architecture
##
architecture: high-availability
## @param memcachedindexwrites.nameOverride override the subchart name
##
nameOverride: ""
## @param memcachedindexwrites.service.ports.memcached Memcached service port
##
service:
ports:
memcached: 11211