Files
charts/bitnami/dataplatform-bp1/values.yaml

1071 lines
44 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 commonLabels Labels to add to all deployed objects
##
commonLabels: {}
## @param commonAnnotations Annotations to add to all deployed objects
##
commonAnnotations: {}
## @section Data Platform Chart parameters
## Configuration for the dataplatform prometheus exporter
##
dataplatform:
serviceAccount:
## @param dataplatform.serviceAccount.create Specifies whether a ServiceAccount should be created
##
create: true
## @param dataplatform.serviceAccount.name The name of the ServiceAccount to create
## If not set and create is true, a name is generated using the fullname template
##
name: ""
## @param dataplatform.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
## Role Based Access
## ref: https://kubernetes.io/docs/admin/authorization/rbac/
##
rbac:
## @param dataplatform.rbac.create Whether to create & use RBAC resources or not
## binding dataplatform ServiceAccount to a role
## that allows dataplatform pods querying the K8s API
##
create: true
exporter:
## @param dataplatform.exporter.enabled Start a prometheus exporter
##
enabled: true
## Data Platform BP1 exporter image
## ref: https://hub.docker.com/r/bitnami/dataplatform-exporter/tags/
## @param dataplatform.exporter.image.registry dataplatform exporter image registry
## @param dataplatform.exporter.image.repository dataplatform exporter image repository
## @param dataplatform.exporter.image.tag dataplatform exporter image tag (immutable tags are recommended)
## @param dataplatform.exporter.image.pullPolicy dataplatform exporter image pull policy
## @param dataplatform.exporter.image.pullSecrets Specify docker-registry secret names as an array
##
image:
registry: docker.io
repository: bitnami/dataplatform-exporter
tag: 0.0.11-scratch-r4
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://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/
## Example:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## Configure extra options for liveness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param dataplatform.exporter.livenessProbe.enabled Enable livenessProbe
## @param dataplatform.exporter.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param dataplatform.exporter.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param dataplatform.exporter.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param dataplatform.exporter.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param dataplatform.exporter.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 15
failureThreshold: 15
successThreshold: 1
## Configure extra options for readiness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param dataplatform.exporter.readinessProbe.enabled Enable readinessProbe
## @param dataplatform.exporter.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param dataplatform.exporter.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param dataplatform.exporter.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param dataplatform.exporter.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param dataplatform.exporter.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 15
failureThreshold: 15
successThreshold: 15
## Configure extra options for startup probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-startup-probes/#configure-probes
## @param dataplatform.exporter.startupProbe.enabled Enable startupProbe
## @param dataplatform.exporter.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param dataplatform.exporter.startupProbe.periodSeconds Period seconds for startupProbe
## @param dataplatform.exporter.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param dataplatform.exporter.startupProbe.failureThreshold Failure threshold for startupProbe
## @param dataplatform.exporter.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 15
failureThreshold: 15
successThreshold: 15
## @param dataplatform.exporter.containerPorts.http Data Platform Prometheus exporter port
##
containerPorts:
http: 9090
## @param dataplatform.exporter.priorityClassName exporter priorityClassName
## Ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
##
priorityClassName: ""
## @param dataplatform.exporter.command Override Data Platform Exporter entrypoint string.
##
command: []
## @param dataplatform.exporter.args Arguments for the provided command if needed
##
args: []
## Exporter resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
## We usually recommend not to specify default resources and to leave this as a conscious
## choice for the user. This also increases chances charts run on environments with little
## resources, such as Minikube. If you do want to specify resources, uncomment the following
## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
## @param dataplatform.exporter.resources.limits The resources limits for the container
## @param dataplatform.exporter.resources.requests The requested resources for the container
##
resources:
## Example:
## limits:
## cpu: 200m
## memory: 256Mi
##
limits: {}
## Examples:
## requests:
## cpu: 200m
## memory: 10Mi
##
requests: {}
## dataplatform exporter containers' Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## @param dataplatform.exporter.containerSecurityContext.enabled Enable Data Platform exporter containers' Security Context
## @param dataplatform.exporter.containerSecurityContext.runAsUser User ID for the containers.
## @param dataplatform.exporter.containerSecurityContext.runAsNonRoot Enable Data Platform exporter containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## dataplatform exporter pods' Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param dataplatform.exporter.podSecurityContext.enabled Enable Data Platform exporter pods' Security Context
## @param dataplatform.exporter.podSecurityContext.fsGroup Group ID for the pods.
##
podSecurityContext:
enabled: true
fsGroup: 1001
## @param dataplatform.exporter.podAffinityPreset Data Platform exporter pod affinity preset. Ignored if `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 dataplatform.exporter.podAntiAffinityPreset Data Platform exporter pod anti-affinity preset. Ignored if `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 affinity preset
## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param dataplatform.exporter.nodeAffinityPreset.type Data Platform exporter node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param dataplatform.exporter.nodeAffinityPreset.key Data Platform exporter node label key to match Ignored if `affinity` is set.
## E.g.
## key: "kubernetes.io/e2e-az-name"
##
key: ""
## @param dataplatform.exporter.nodeAffinityPreset.values Data Platform exporter node label values to match. Ignored if `affinity` is set.
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param dataplatform.exporter.affinity Affinity settings for exporter pod assignment. Evaluated as a template
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
## @param dataplatform.exporter.nodeSelector Node labels for exporter pods assignment. Evaluated as a template
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param dataplatform.exporter.tolerations Tolerations for exporter pods assignment. Evaluated as a template
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param dataplatform.exporter.podLabels Additional labels for Metrics exporter pod
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param dataplatform.exporter.podAnnotations Additional annotations for Metrics exporter pod
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param dataplatform.exporter.customLivenessProbe Override default liveness probe
##
customLivenessProbe: {}
## @param dataplatform.exporter.customReadinessProbe Override default readiness probe
##
customReadinessProbe: {}
## @param dataplatform.exporter.customStartupProbe Override default startup probe
##
customStartupProbe: {}
## Update strategy
## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the
## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will
## terminate the single previous pod, so that the new, incoming pod can attach to the PV
## @param dataplatform.exporter.updateStrategy.type Update strategy - only really applicable for deployments with RWO PVs attached
## @param dataplatform.exporter.updateStrategy.rollingUpdate Deployment rolling update configuration parameters
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param dataplatform.exporter.extraEnvVars Additional environment variables to set
## Example:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param dataplatform.exporter.extraEnvVarsCM ConfigMap with extra environment variables
##
extraEnvVarsCM: ""
## @param dataplatform.exporter.extraEnvVarsSecret Secret with extra environment variables
##
extraEnvVarsSecret: ""
## @param dataplatform.exporter.extraVolumes Extra volumes to add to the deployment
##
extraVolumes: []
## @param dataplatform.exporter.extraVolumeMounts Extra volume mounts to add to the container
##
extraVolumeMounts: []
## @param dataplatform.exporter.initContainers Add init containers to the %%MAIN_CONTAINER_NAME%% pods
## Example:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
initContainers: []
## @param dataplatform.exporter.sidecars Add sidecars to the %%MAIN_CONTAINER_NAME%% pods
## Example:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## Service for the Data Platform exporter deployment
##
service:
## @param dataplatform.exporter.service.type Service type for default Data Platform Prometheus exporter service
##
type: ClusterIP
## @param dataplatform.exporter.service.annotations [object] Metrics exporter service annotations
##
annotations:
prometheus.io/scrape: "true"
prometheus.io/port: "9090"
prometheus.io/path: "/metrics"
## @param dataplatform.exporter.service.labels Additional labels for Data Platform exporter service
##
labels: {}
## @param dataplatform.exporter.service.ports.http Kubernetes Service port
##
ports:
http: 9090
## @param dataplatform.exporter.service.loadBalancerIP Load balancer IP for the Data Platform Exporter Service (optional, cloud specific)
## ref: http://kubernetes.io/docs/user-guide/services/#type-loadbalancer
##
loadBalancerIP: ""
## @param dataplatform.exporter.service.nodePorts.http Node ports for the HTTP exporter service
## nodePorts:
## http: <to set explicitly, choose port between 30000-32767>
## https: <to set explicitly, choose port between 30000-32767>
##
nodePorts:
http: ""
## @param dataplatform.exporter.service.loadBalancerSourceRanges Exporter Load Balancer Source ranges
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param dataplatform.exporter.hostAliases Deployment pod host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
emitter:
## @param dataplatform.emitter.enabled Start Data Platform metrics emitter
##
enabled: true
## Data Platform BP1 emitter image
## ref: https://hub.docker.com/r/bitnami/dataplatform-emitter/tags/
## @param dataplatform.emitter.image.registry Data Platform emitter image registry
## @param dataplatform.emitter.image.repository Data Platform emitter image repository
## @param dataplatform.emitter.image.tag Data Platform emitter image tag (immutable tags are recommended)
## @param dataplatform.emitter.image.pullPolicy Data Platform emitter image pull policy
## @param dataplatform.emitter.image.pullSecrets Specify docker-registry secret names as an array
##
image:
registry: docker.io
repository: bitnami/dataplatform-emitter
tag: 0.0.10-scratch-r3
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://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/
## Example:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## Configure extra options for liveness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param dataplatform.emitter.livenessProbe.enabled Enable livenessProbe
## @param dataplatform.emitter.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param dataplatform.emitter.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param dataplatform.emitter.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param dataplatform.emitter.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param dataplatform.emitter.livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 15
failureThreshold: 15
successThreshold: 1
## Configure extra options for readiness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param dataplatform.emitter.readinessProbe.enabled Enable readinessProbe
## @param dataplatform.emitter.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param dataplatform.emitter.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param dataplatform.emitter.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param dataplatform.emitter.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param dataplatform.emitter.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 15
failureThreshold: 15
successThreshold: 15
## Configure extra options for startup probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-startup-probes/#configure-probes
## @param dataplatform.emitter.startupProbe.enabled Enable startupProbe
## @param dataplatform.emitter.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param dataplatform.emitter.startupProbe.periodSeconds Period seconds for startupProbe
## @param dataplatform.emitter.startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param dataplatform.emitter.startupProbe.failureThreshold Failure threshold for startupProbe
## @param dataplatform.emitter.startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 15
failureThreshold: 15
successThreshold: 15
## @param dataplatform.emitter.containerPorts.http Data Platform emitter port
##
containerPorts:
http: 8091
## @param dataplatform.emitter.priorityClassName exporter priorityClassName
## Ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
##
priorityClassName: ""
## @param dataplatform.emitter.command Override Data Platform entrypoint string.
##
command: []
## @param dataplatform.emitter.args Arguments for the provided command if needed
##
args: []
## Data Platform metrics emitter resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
## We usually recommend not to specify default resources and to leave this as a conscious
## choice for the user. This also increases chances charts run on environments with little
## resources, such as Minikube. If you do want to specify resources, uncomment the following
## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
## @param dataplatform.emitter.resources.limits The resources limits for the container
## @param dataplatform.emitter.resources.requests The requested resources for the container
##
resources:
## Example:
## limits:
## cpu: 200m
## memory: 256Mi
##
limits: {}
## Examples:
## requests:
## cpu: 200m
## memory: 10Mi
##
requests: {}
## Data Platform emitter containers' Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## @param dataplatform.emitter.containerSecurityContext.enabled Enable Data Platform emitter containers' Security Context
## @param dataplatform.emitter.containerSecurityContext.runAsUser User ID for the containers.
## @param dataplatform.emitter.containerSecurityContext.runAsNonRoot Enable Data Platform emitter containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## Data Platform emitter pods' Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param dataplatform.emitter.podSecurityContext.enabled Enable Data Platform emitter pods' Security Context
## @param dataplatform.emitter.podSecurityContext.fsGroup Group ID for the pods.
##
podSecurityContext:
enabled: true
fsGroup: 1001
## @param dataplatform.emitter.podAffinityPreset Data Platform emitter pod affinity preset. Ignored if `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 dataplatform.emitter.podAntiAffinityPreset Data Platform emitter pod anti-affinity preset. Ignored if `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 affinity preset
## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
##
nodeAffinityPreset:
## @param dataplatform.emitter.nodeAffinityPreset.type Data Platform emitter node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
##
type: ""
## @param dataplatform.emitter.nodeAffinityPreset.key Data Platform emitter node label key to match Ignored if `affinity` is set.
## E.g.
## key: "kubernetes.io/e2e-az-name"
##
key: ""
## @param dataplatform.emitter.nodeAffinityPreset.values Data Platform emitter node label values to match. Ignored if `affinity` is set.
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param dataplatform.emitter.affinity Affinity settings for emitter pod assignment. Evaluated as a template
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
## @param dataplatform.emitter.nodeSelector Node labels for emitter pods assignment. Evaluated as a template
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param dataplatform.emitter.tolerations Tolerations for emitter pods assignment. Evaluated as a template
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param dataplatform.emitter.podLabels Additional labels for Metrics emitter pod
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param dataplatform.emitter.podAnnotations Additional annotations for Metrics emitter pod
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param dataplatform.emitter.customLivenessProbe Override default liveness probe%%MAIN_CONTAINER_NAME%%
##
customLivenessProbe: {}
## @param dataplatform.emitter.customReadinessProbe Override default readiness probe%%MAIN_CONTAINER_NAME%%
##
customReadinessProbe: {}
## @param dataplatform.emitter.customStartupProbe Override default startup probe
##
customStartupProbe: {}
## Update strategy
## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the
## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will
## terminate the single previous pod, so that the new, incoming pod can attach to the PV
## @param dataplatform.emitter.updateStrategy.type Update strategy - only really applicable for deployments with RWO PVs attached
## @param dataplatform.emitter.updateStrategy.rollingUpdate Deployment rolling update configuration parameters
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param dataplatform.emitter.extraEnvVars Additional environment variables to set
## Example:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param dataplatform.emitter.extraEnvVarsCM ConfigMap with extra environment variables
##
extraEnvVarsCM: ""
## @param dataplatform.emitter.extraEnvVarsSecret Secret with extra environment variables
##
extraEnvVarsSecret: ""
## @param dataplatform.emitter.extraVolumes Extra volumes to add to the deployment
##
extraVolumes: []
## @param dataplatform.emitter.extraVolumeMounts Extra volume mounts to add to the container
##
extraVolumeMounts: []
## @param dataplatform.emitter.initContainers Add init containers to the %%MAIN_CONTAINER_NAME%% pods
## Example:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
initContainers: []
## @param dataplatform.emitter.sidecars Add sidecars to the %%MAIN_CONTAINER_NAME%% pods
## Example:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## Service for the Data Platform emitter deployment
##
service:
## @param dataplatform.emitter.service.type Service type for default Data Platform metrics emitter service
##
type: ClusterIP
## @param dataplatform.emitter.service.annotations annotations for Data Platform emitter service
##
annotations: {}
## @param dataplatform.emitter.service.labels Additional labels for Data Platform emitter service
##
labels: {}
## @param dataplatform.emitter.service.ports.http Kubernetes Service port
##
ports:
http: 8091
## @param dataplatform.emitter.service.loadBalancerIP Load balancer IP for the dataplatform emitter Service (optional, cloud specific)
## ref: http://kubernetes.io/docs/user-guide/services/#type-loadbalancer
##
loadBalancerIP: ""
## @param dataplatform.emitter.service.nodePorts.http Node ports for the HTTP emitter service
## nodePorts:
## http: <to set explicitly, choose port between 30000-32767>
## https: <to set explicitly, choose port between 30000-32767>
##
nodePorts:
http: ""
## @param dataplatform.emitter.service.loadBalancerSourceRanges Data Platform Emitter Load Balancer Source ranges
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param dataplatform.emitter.hostAliases Deployment pod host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @section Zookeeper chart parameters
##
zookeeper:
## @param zookeeper.enabled Switch to enable or disable the Zookeeper helm chart
##
enabled: true
## @param zookeeper.replicaCount Number of Zookeeper replicas
##
replicaCount: 3
## @param zookeeper.heapSize Size in MB for the Java Heap options (Xmx and XMs).
## This env var is ignored if Xmx an Xms are configured via JVMFLAGS
##
heapSize: 4096
## Recommended values for cpu and memory requests
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
## @param zookeeper.resources.limits The resources limits for Zookeeper containers
## @param zookeeper.resources.requests [object] The requested resources for Zookeeper containers
##
resources:
limits: {}
requests:
cpu: 250m
memory: 5120Mi
## Anti Affinity rules set for resiliency
## @param zookeeper.affinity.podAntiAffinity [object] Zookeeper pods Anti Affinity rules for best possible resiliency (evaluated as a template)
## @skip zookeeper.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution
##
affinity:
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: app.kubernetes.io/name
operator: In
values:
- zookeeper
- key: app.kubernetes.io/instance
operator: In
values:
- "{{ .Release.Name }}"
topologyKey: "kubernetes.io/hostname"
## @section Kafka chart parameters
##
## Kafka Subchart parameters
##
kafka:
## @param kafka.enabled Switch to enable or disable the Kafka helm chart
##
enabled: true
## @param kafka.replicaCount Number of Kafka replicas
##
replicaCount: 3
## @param kafka.heapOpts Kafka's Java Heap size
##
heapOpts: -Xmx4096m -Xms4096m
## Recommended values for cpu and memory requests
## @param kafka.resources.limits The resources limits for Kafka containers
## @param kafka.resources.requests [object] The requested resources for Kafka containers
##
resources:
limits: {}
requests:
cpu: 250m
memory: 5120Mi
## Anti Affinity rules set for resiliency and Affinity rules set for optimal performance
## @param kafka.affinity.podAntiAffinity [object] Zookeeper pods Anti Affinity rules for best possible resiliency (evaluated as a template)
## @skip kafka.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution
## @param kafka.affinity.podAffinity [object] Zookeeper pods Affinity rules for best possible resiliency (evaluated as a template)
## @skip kafka.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution
##
affinity:
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: app.kubernetes.io/component
operator: In
values:
- kafka
- key: app.kubernetes.io/instance
operator: In
values:
- "{{ .Release.Name }}"
topologyKey: "kubernetes.io/hostname"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 50
podAffinityTerm:
labelSelector:
matchExpressions:
- key: app.kubernetes.io/name
operator: In
values:
- zookeeper
- key: app.kubernetes.io/instance
operator: In
values:
- "{{ .Release.Name }}"
topologyKey: "kubernetes.io/hostname"
## Prometheus Exporters / Metrics
##
metrics:
## Prometheus Kafka Exporter: exposes complimentary metrics to JMX Exporter
##
kafka:
## @param kafka.metrics.kafka.enabled Whether or not to create a standalone Kafka exporter to expose Kafka metrics
##
enabled: false
## Prometheus Kafka Exporter' resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
## @param kafka.metrics.kafka.resources.limits The resources limits for the container
## @param kafka.metrics.kafka.resources.requests [object] Kafka Exporter container resource requests
##
resources:
limits: {}
requests:
cpu: 100m
memory: 128Mi
## Service configuration
##
service:
## @param kafka.metrics.kafka.service.port Kafka Exporter Prometheus port to be used in Wavefront configuration
##
port: 9308
## Prometheus JMX Exporter: exposes the majority of Kafka's metrics
##
jmx:
## @param kafka.metrics.jmx.enabled Whether or not to expose JMX metrics to Prometheus
##
enabled: false
## Prometheus JMX Exporter' resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
## @param kafka.metrics.jmx.resources.limits The resources limits for the container
## @param kafka.metrics.jmx.resources.requests [object] JMX Exporter container resource requests
##
resources:
limits: {}
requests:
cpu: 100m
memory: 128Mi
## Service configuration
##
service:
## @param kafka.metrics.jmx.service.port JMX Exporter Prometheus port
##
port: 5556
## @param kafka.zookeeper.enabled Switch to enable or disable the Zookeeper helm chart
##
zookeeper:
enabled: false
## External Zookeeper. This value is only used when zookeeper.enabled is set to false.
## @param kafka.externalZookeeper.servers Server or list of external Zookeeper servers to use
##
externalZookeeper:
## This is set to the zookeeper deployed as part of this chart
##
servers:
- "{{ .Release.Name }}-zookeeper"
## @section Solr chart parameters
##
## Solr Subchart parameters
##
solr:
## @param solr.enabled Switch to enable or disable the Solr helm chart
##
enabled: true
## @param solr.replicaCount Number of Solr replicas
##
replicaCount: 2
## @param solr.authentication.enabled Enable Solr authentication. BUG: Exporter deployment does not work with authentication enabled
##
authentication:
enabled: false
## @param solr.javaMem Java recommended memory options to pass to the Solr container
##
javaMem: -Xmx4096m -Xms4096m
## Anti affinity rules set for resiliency
## @param solr.affinity.podAntiAffinity [object] Zookeeper pods Anti Affinity rules for best possible resiliency (evaluated as a template)
## @skip solr.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution
##
affinity:
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: app.kubernetes.io/component
operator: In
values:
- solr
- key: app.kubernetes.io/instance
operator: In
values:
- "{{ .Release.Name }}"
topologyKey: "kubernetes.io/hostname"
resources:
## Recommended values for cpu and memory requests
## @param solr.resources.limits The resources limits for Solr containers
## @param solr.resources.requests [object] The requested resources for Solr containers
##
limits: {}
requests:
cpu: 250m
memory: 5120Mi
## Configuration for the solr prometheus exporter
##
exporter:
## @param solr.exporter.enabled Start a prometheus exporter
##
enabled: false
## @param solr.exporter.port Solr exporter port
##
port: 9983
## @param solr.exporter.affinity.podAffinity [object] Zookeeper pods Affinity rules for best possible resiliency (evaluated as a template)
## @skip solr.exporter.affinity.podAffinity.preferredDuringSchedulingIgnoredDuringExecution
##
affinity:
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 50
podAffinityTerm:
labelSelector:
matchExpressions:
- key: app.kubernetes.io/name
operator: In
values:
- solr
- key: app.kubernetes.io/instance
operator: In
values:
- "{{ .Release.Name }}"
topologyKey: "kubernetes.io/hostname"
## Solr Prometheus exporter container resource requests and limits
## @param solr.exporter.resources.limits The resources limits for the container
## @param solr.exporter.resources.requests [object] The requested resources for the container
##
resources:
limits: {}
requests:
cpu: 100m
memory: 128Mi
## @param solr.zookeeper.enabled Enable Zookeeper deployment. Needed for Solr cloud.
##
zookeeper:
enabled: false
## External Zookeeper. This value is only used when zookeeper.enabled is set to false.
## @param solr.externalZookeeper.servers Servers for an already existing Zookeeper.
##
externalZookeeper:
## In this case, it is set to the zookeeper deployed as part of this chart.
##
servers:
- "{{ .Release.Name }}-zookeeper"
## @section Spark chart parameters
##
## Spark Subchart parameters
##
spark:
## @param spark.enabled Switch to enable or disable the Spark helm chart
##
enabled: true
## Spark master specific configuration
##
master:
## @param spark.master.webPort Specify the port where the web interface will listen on the master
##
webPort: 8080
## @param spark.master.resources.limits The resources limits for the container
## @param spark.master.resources.requests [object] The resources limits for the container
##
resources:
## Recommended values for cpu and memory requests
##
limits: {}
requests:
cpu: 250m
memory: 5120Mi
## Anti affinity rules set for resiliency
## @param spark.master.affinity.podAntiAffinity [object] Zookeeper pods Anti Affinity rules for best possible resiliency (evaluated as a template)
## @skip spark.master.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution
##
affinity:
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: app.kubernetes.io/component
operator: In
values:
- worker
- key: app.kubernetes.io/instance
operator: In
values:
- "{{ .Release.Name }}"
topologyKey: "kubernetes.io/hostname"
## Spark worker specific configuration
##
worker:
## @param spark.worker.replicaCount Set the number of workers
##
replicaCount: 2
## @param spark.worker.webPort Specify the port where the web interface will listen on the worker
##
webPort: 8081
## Anti affinity rules set for resiliency
## @param spark.worker.affinity.podAntiAffinity [object] Zookeeper pods Anti Affinity rules for best possible resiliency (evaluated as a template)
## @skip spark.worker.affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution
##
affinity:
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: app.kubernetes.io/component
operator: In
values:
- worker
- master
- key: app.kubernetes.io/instance
operator: In
values:
- "{{ .Release.Name }}"
topologyKey: "kubernetes.io/hostname"
## @param spark.worker.resources.limits The resources limits for the container
## @param spark.worker.resources.requests [object] The resources limits for the container
##
resources:
limits: {}
requests:
cpu: 250m
memory: 5120Mi
## Metrics configuration
##
metrics:
## @param spark.metrics.enabled Start a side-car Prometheus exporter
##
enabled: false
## @param spark.metrics.masterAnnotations [object] Annotations for enabling prometheus to access the metrics endpoint of the master nodes
##
masterAnnotations:
prometheus.io/scrape: "true"
prometheus.io/path: "/metrics/"
prometheus.io/port: "8080"
## @param spark.metrics.workerAnnotations [object] Annotations for enabling prometheus to access the metrics endpoint of the worker nodes
##
workerAnnotations:
prometheus.io/scrape: "true"
prometheus.io/path: "/metrics/"
prometheus.io/port: "8081"
## @section Tanzu Observability (Wavefront) chart parameters
##
## Wavefront Subchart parameters
##
wavefront:
## @param wavefront.enabled Switch to enable or disable the Wavefront helm chart
##
enabled: false
## @param wavefront.clusterName Unique name for the Kubernetes cluster (required)
## All metrics will receive a `cluster` tag with this value
##
clusterName: KUBERNETES_CLUSTER_NAME
## @param wavefront.wavefront.url Wavefront URL for your cluster (required)
## @param wavefront.wavefront.token Wavefront API Token (required)
## @param wavefront.wavefront.existingSecret Name of an existing secret containing the token
##
wavefront:
url: https://YOUR_CLUSTER.wavefront.com
token: YOUR_API_TOKEN
existingSecret: ""
## Wavefront Collector is responsible to get all Kubernetes metrics from your cluster.
## It will capture Kubernetes resources metrics available from the kubelets, as well as auto-discovery capabilities.
##
collector:
## Rules based discovery configuration
## Ref: https://github.com/wavefrontHQ/wavefront-kubernetes-collector/blob/master/docs/discovery.md
## @param wavefront.collector.resources.limits The resources limits for the collector container
## @param wavefront.collector.resources.requests [object] The requested resources for the collector container
##
resources:
limits: {}
requests:
cpu: 200m
memory: 10Mi
discovery:
## @param wavefront.collector.discovery.enabled Rules based and Prometheus endpoints auto-discovery
##
enabled: true
## @param wavefront.collector.discovery.enableRuntimeConfigs Enable runtime discovery rules
## Ref: https://github.com/wavefrontHQ/wavefront-collector-for-kubernetes/blob/master/docs/discovery.md#runtime-configurations
##
enableRuntimeConfigs: true
## @param wavefront.collector.discovery.config [array] Configuration for rules based auto-discovery
##
config:
## auto-discover kafka-exporter
##
- name: kafka-discovery
type: prometheus
selectors:
images:
- "*bitnami/kafka-exporter*"
port: 9308
path: /metrics
scheme: http
prefix: kafka.
## auto-discover jmx exporter
##
- name: kafka-jmx-discovery
type: prometheus
selectors:
images:
- "*bitnami/jmx-exporter*"
port: 5556
path: /metrics
scheme: http
prefix: kafkajmx.
## auto-discover solr
##
- name: solr-discovery
type: prometheus
selectors:
images:
- "*bitnami/solr*"
port: 9983
path: /metrics
scheme: http
## auto-discover spark
##
- name: spark-worker-discovery
type: prometheus
selectors:
images:
- "*bitnami/spark*"
port: 8081
path: /metrics/
scheme: http
prefix: spark.
## auto-discover spark
##
- name: spark-master-discovery
type: prometheus
selectors:
images:
- "*bitnami/spark*"
port: 8080
path: /metrics/
scheme: http
prefix: spark.
proxy:
## Wavefront Proxy resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
## @param wavefront.proxy.resources.limits The resources limits for the proxy container
## @param wavefront.proxy.resources.requests [object] The requested resources for the proxy container
##
resources:
limits: {}
requests:
cpu: 100m
memory: 5Gi