Files
charts/bitnami/solr/values.yaml
Miguel Ruiz 2be11a70b9 [bitnami/*] Replace nil values (#6993)
* Fix global.imageRegistry nil value

* Fix kubeVersion nil value

* Fix nameOverride nil value

* Fix fullnameOverride nil value

* Fix storageClass nil value

* Fix extraEnvVarsCM nil value

* Fix extraEnvVarsSecret nil value

* Fix targetCPU nil value

* Fix existingConfigmap nil value

* Fix clusterIP nil value

* Fix nodePort nil value

* Fix loadBalancerIP nil value

* Fix nil values

* Fix existingClaim nil value

* Fix maxUnavailable nil value

* Fix targetMemory nil value

* Fix nil values

* Fix namespace nil value

* Fix command nil value

* Fix args nil value

* Fix nil values

* Fix nil values

* Fix nil values

* Fix nil values, update README and bump chart version

* Revert airfllow changes

* Apply suggestions

* redis,suitecrm - new version bump

* Minor changes and update readmes

* Update tensorflow-resnet version

Co-authored-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>
2021-07-21 11:41:17 +02:00

840 lines
33 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 nameOverride String to partially override solr.fullname template (will maintain the release name)
##
nameOverride: ""
## @param fullnameOverride String to fully override solr.fullname template
##
fullnameOverride: ""
## @param clusterDomain Kubernetes cluster domain
##
clusterDomain: cluster.local
## @param commonLabels Add labels to all the deployed resources
##
commonLabels: {}
## @param commonAnnotations Add annotations to all the deployed resources
##
commonAnnotations: {}
## @param extraDeploy Extra objects to deploy (value evaluated as a template)
##
extraDeploy: []
## @section Solr parameters
## Bitnami Solr image version
## ref: https://hub.docker.com/r/bitnami/solr/tags
## @param image.registry Solr image registry
## @param image.repository Solr image repository
## @param image.tag Solr image tag (immutable tags are recommended)
## @param image.pullPolicy image pull policy
## @param image.pullSecrets Specify docker-registry secret names as an array
##
image:
registry: docker.io
repository: bitnami/solr
tag: 8.9.0-debian-10-r15
## 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/
## e.g:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## @param coreName Solr core name to be created
##
coreName: my-core
## @param cloudEnabled Enable Solr cloud mode
##
cloudEnabled: true
## @param cloudBootstrap Enable cloud bootstrap. It will be performed from the node 0.
##
cloudBootstrap: true
## @param collection Solr collection name
##
collection: my-collection
## @param collectionShards Number of collection shards
##
collectionShards: 1
## @param collectionReplicas Number of collection replicas
##
collectionReplicas: 2
## @param containerPort Port number where Solr is running inside the container
##
containerPort: 8983
## @param serverDirectory Name of the created directory for the server
##
serverDirectory: "server"
## @param javaMem Java memory options to pass to the Solr container
##
javaMem: ""
## @param heap Java Heap options to pass to the solr container
##
heap: ""
authentication:
## @param authentication.enabled Enable Solr authentication
##
enabled: true
## @param authentication.adminUsername Solr admin username
##
adminUsername: admin
## @param authentication.adminPassword Solr admin password. Autogenerated if not provided.
##
adminPassword: ""
## @param existingSecret Existing secret with Solr password
##
existingSecret: ""
## @param command Override Solr entrypoint string
##
command: []
## @param args Arguments for the provided command if needed
##
args: []
## @param extraEnvVars Additional environment variables to set
## Example:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param extraEnvVarsCM ConfigMap with extra environment variables
##
extraEnvVarsCM: ""
## @param extraEnvVarsSecret Secret with extra environment variables
##
extraEnvVarsSecret: ""
## @section Solr statefulset parameters
## @param hostAliases Deployment pod host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
## @param replicaCount Number of solr replicas
##
replicaCount: 3
## Configure extra options for liveness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param livenessProbe.enabled Enable livenessProbe
## @param livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param livenessProbe.periodSeconds Period seconds for livenessProbe
## @param livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: true
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
## Configure extra options for readiness probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
## @param readinessProbe.enabled Enable readinessProbe
## @param readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param readinessProbe.periodSeconds Period seconds for readinessProbe
## @param readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
## Solr 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 resources.limits The resources limits for the container
## @param resources.requests The requested resources for the container
##
resources:
## Example:
## limits:
## cpu: 250m
## memory: 256Mi
limits: {}
## Examples:
## requests:
## cpu: 200m
## memory: 10Mi
requests: {}
## Solr containers' Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## @param containerSecurityContext.enabled Enable Solr containers' Security Context
## @param containerSecurityContext.runAsUser User ID for the containers
## @param containerSecurityContext.runAsNonRoot Enable Solr containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## Solr pods' Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param podSecurityContext.enabled Enable Solr pods' Security Context
## @param podSecurityContext.fsGroup Group ID for the pods.
##
podSecurityContext:
enabled: true
fsGroup: 1001
## @param podAffinityPreset Solr 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 podAntiAffinityPreset Solr 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 nodeAffinityPreset.type Solr node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
type: ""
## @param nodeAffinityPreset.key Solr node label key to match Ignored if `affinity` is set.
## E.g.
## key: "kubernetes.io/e2e-az-name"
##
key: ""
## @param nodeAffinityPreset.values Solr node label values to match. Ignored if `affinity` is set.
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param affinity Affinity settings for Solr pod assignment. Evaluated as a template
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
## @param nodeSelector Node labels for Solr pods assignment. Evaluated as a template
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param tolerations Tolerations for Solr pods assignment. Evaluated as a template
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param podLabels Additional labels for pods pod
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param podAnnotations Additional annotations for pods
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param podManagementPolicy Management Policy for Solr StatefulSet
## StatefulSet controller supports relaxing its ordering guarantees while preserving its uniqueness and identity guarantees
## There are two valid pod management policies: OrderedReady and Parallel
## ref: https://kubernetes.io/docs/tutorials/stateful-application/basic-stateful-set/#pod-management-policy
##
podManagementPolicy: Parallel
## @param priorityClassName Solr pods' priority.
## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
##
priorityClassName: ""
## @param lifecycleHooks lifecycleHooks for the Solr container to automate configuration before or after startup
##
lifecycleHooks: {}
## @param customLivenessProbe Override default liveness probe
##
customLivenessProbe: {}
## @param customReadinessProbe Override default readiness probe
##
customReadinessProbe: {}
## 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
## Update strategy - only really applicable for deployments with RWO PVs attached
## @param updateStrategy.type Update strategy - only really applicable for deployments with RWO PVs attached
## @param updateStrategy.rollingUpdate Deployment rolling update configuration parameters
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param extraVolumes Extra volumes to add to the deployment
##
extraVolumes: []
## @param extraVolumeMounts Extra volume mounts to add to the container
##
extraVolumeMounts: []
## @param initContainers Add init containers to the Solr pods
## Example:
## initContainers:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
initContainers: []
## @param sidecars Add sidecars to the Solr pods
## Example:
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
##
sidecars: []
## Init containers parameters:
## volumePermissions: Change the owner and group of the persistent volume mountpoint to runAsUser:fsGroup values from the securityContext section.
##
volumePermissions:
## @param volumePermissions.enabled Enable init container that changes volume permissions in the registry (for cases where the default k8s `runAsUser` and `fsUser` values do not work)
##
enabled: false
## @param volumePermissions.image.registry Init container volume-permissions image registry
## @param volumePermissions.image.repository Init container volume-permissions image name
## @param volumePermissions.image.tag Init container volume-permissions image tag
## @param volumePermissions.image.pullPolicy Init container volume-permissions image pull policy
## @param volumePermissions.image.pullSecrets Specify docker-registry secret names as an array
##
image:
registry: docker.io
repository: bitnami/bitnami-shell
tag: 10-debian-10-r131
pullPolicy: Always
## 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/
##
pullSecrets: []
## - myRegistryKeySecretName
## Init containers' 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 volumePermissions.resources.limits The resources limits for the container
## @param volumePermissions.resources.requests The requested resources for the container
##
resources:
## Example:
## limits:
## cpu: 100m
## memory: 128Mi
limits: {}
## Examples:
## requests:
## cpu: 100m
## memory: 128Mi
requests: {}
## Container security context
## @param volumePermissions.containerSecurityContext.enabled Container security context for volume permissions
## @param volumePermissions.containerSecurityContext.runAsUser Container security context fsGroup for volume permissions
## @param volumePermissions.containerSecurityContext.runAsNonRoot Container security context runAsNonRoot for volume permissions
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## Persistence parameters
##
persistence:
## @param persistence.enabled Use a PVC to persist data.
##
enabled: true
## @param persistence.existingClaim A manually managed Persistent Volume and Claim
## If defined, PVC must be created manually before volume will be bound
## The value is evaluated as a template
##
existingClaim: ""
## @param persistence.storageClass Storage class of backing PVC
## 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.
##
storageClass: ""
## @param persistence.accessModes Persistent Volume Access Modes
##
accessModes:
- ReadWriteOnce
## @param persistence.size Size of data volume
##
size: 8Gi
## @param persistence.annotations Persistence annotations for Solr
##
annotations: {}
## @param persistence.mountPath Persistence mount path for Solr
##
mountPath: /bitnami/solr
serviceAccount:
## @param serviceAccount.create Specifies whether a ServiceAccount should be created
##
create: false
## @param 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: ""
## @section Solr SSL parameters
## TLS configuration
##
tls:
## @param tls.enabled Enable the TLS/SSL configuration
##
enabled: false
## @param tls.autoGenerated Create self-signed TLS certificates. Currently only supports PEM certificates
##
autoGenerated: false
## @param tls.certificatesSecretName Name of the secret that contains the certificates
## It should contain two keys called "keystore.p12" and "trustore.p12" with the files in JKS or P12 format
## certificatesSecretName: cert-files
##
certificatesSecretName: ""
## @param tls.passwordsSecretName Set the name of the secret that contains the passwords for the certificate files
## It should contain two keys called "tls-keystore-password" and "tls-truststore-password".
## e.g:
## passwordsSecretName: my-passwords
##
passwordsSecretName: ""
## @param tls.keystorePassword Password to access the keystore when it's password-protected
##
keystorePassword: ""
## @param tls.truststorePassword Password to access the truststore when it's password-protected
##
truststorePassword: ""
## 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 tls.resources.limits The resources limits for the TLS init container
## @param tls.resources.requests The requested resources for the TLS init container
##
resources:
## Example:
## limits:
## cpu: 100m
## memory: 128Mi
limits: {}
## Examples:
## requests:
## cpu: 100m
## memory: 128Mi
requests: {}
## @section Solr Traffic Exposure Parameters
service:
## @param service.type Service type for default solr service
##
type: ClusterIP
## @param service.port HTTP Port
##
port: 8983
## @param service.annotations Annotations for solr service
##
annotations: {}
## @param service.labels Additional labels for solr service
##
labels: {}
## @param service.loadBalancerIP Load balancer IP for the Solr Service (optional, cloud specific)
## ref: http://kubernetes.io/docs/user-guide/services/#type-loadbalancer
##
loadBalancerIP: ""
## @param service.nodePorts.http Node ports for the HTTP service
## @param service.nodePorts.https Node ports for the HTTPS service
## nodePorts:
## http: <to set explicitly, choose port between 30000-32767>
## https: <to set explicitly, choose port between 30000-32767>
nodePorts:
http: ""
https: ""
## Configure the ingress resource that allows you to access the
## Solr installation. Set up the URL
## ref: http://kubernetes.io/docs/user-guide/ingress/
##
ingress:
## @param ingress.enabled Enable ingress controller resource
##
enabled: false
## @param ingress.certManager Set this to true in order to add the corresponding annotations for cert-manager
##
certManager: false
## @param ingress.pathType Path type for the ingress resource
##
pathType: ImplementationSpecific
## @param ingress.apiVersion Override API Version (automatically detected if not set)
##
apiVersion: ""
## @param ingress.hostname Default host for the ingress resource
##
hostname: solr.local
## @param ingress.path The Path to Solr. You may need to set this to '/*' in order to use this with ALB ingress controllers.
##
path: /
## @param ingress.annotations Ingress 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
##
## If certManager is set to true, annotation kubernetes.io/tls-acme: "true" will automatically be set
##
annotations: {}
## @param ingress.tls Enable TLS configuration for the hostname 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 or relay on cert-manager to create it
##
tls: false
## @param ingress.existingSecret The name of an existing Secret in the same namespase to use on the generated Ingress resource
## This option will override certManager: true
existingSecret: ""
## @param ingress.extraHosts The list of additional hostnames to be covered with this ingress record.
## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array
## extraHosts:
## - name: solr.local
## path: /
##
extraHosts: []
## @param ingress.extraPaths Any additional arbitrary paths that may need to be added to the ingress under the main host.
## For example: The ALB ingress controller requires a special rule for handling SSL redirection.
## extraPaths:
## - path: /*
## backend:
## serviceName: ssl-redirect
## servicePort: use-annotation
##
extraPaths: []
## @param ingress.extraTls The tls configuration for additional hostnames to be covered with this ingress record.
## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
## extraTls:
## - hosts:
## - solr.local
## secretName: solr.local-tls
##
extraTls: []
## @param ingress.secrets If you're providing your own certificates, please use this to add the certificates as secrets
## key and certificate should start with -----BEGIN CERTIFICATE----- or
## -----BEGIN RSA PRIVATE KEY-----
##
## name should line up with a tlsSecret set further up
## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set
##
## It is also possible to create and manage the certificates outside of this helm chart
## Please see README.md for more information
## e.g:
## - name: solr.local-tls
## key:
## certificate:
##
secrets: []
## @section Zookeeper parameters
## Zookeeper chart configuration
## https://github.com/bitnami/charts/blob/master/bitnami/zookeeper/values.yaml
## @param zookeeper.enabled Enable Zookeeper deployment. Needed for Solr cloud
## @param zookeeper.persistence.enabled Enabled persistence for Zookeeper
## @param zookeeper.port Zookeeper port service port
## @param zookeeper.replicaCount Number of Zookeeper cluster replicas
## @param zookeeper.fourlwCommandsWhitelist Zookeeper four letters commands to enable
## @param zookeeper.service.publishNotReadyAddresses Publish not Ready ips for zookeeper
##
zookeeper:
enabled: true
persistence:
enabled: true
port: 2181
replicaCount: 3
fourlwCommandsWhitelist: srvr,mntr,conf,ruok
service:
publishNotReadyAddresses: true
## This value is only used when zookeeper.enabled is set to false
##
externalZookeeper:
## @param externalZookeeper.servers Server or list of external zookeeper servers to use
##
servers: []
## @section Exporter deployment parameters
## Configuration for the solr prometheus exporter
##
exporter:
## @param exporter.enabled Start a side-car prometheus exporter
##
enabled: false
## @param exporter.image.registry Solr exporter image registry
## @param exporter.image.repository Solr exporter image name
## @param exporter.image.tag Solr exporter image tag
## @param exporter.image.pullPolicy Image pull policy
## @param exporter.image.pullSecrets Specify docker-registry secret names as an array
##
image:
registry: docker.io
repository: bitnami/solr
tag: 8.9.0-debian-10-r14
## 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/
## e.g:
## 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 exporter.livenessProbe.enabled Enable livenessProbe
## @param exporter.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param exporter.livenessProbe.periodSeconds Period seconds for livenessProbe
## @param exporter.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param exporter.livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param 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 exporter.readinessProbe.enabled Enable readinessProbe
## @param exporter.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param exporter.readinessProbe.periodSeconds Period seconds for readinessProbe
## @param exporter.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param exporter.readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param exporter.readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: true
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 15
failureThreshold: 15
successThreshold: 15
## @param exporter.configFile Config file with metrics to export by the Solr prometheus exporter. To change it mount a different file using `extraConfigMaps`
##
configFile: "/opt/bitnami/solr/contrib/prometheus-exporter/conf/solr-exporter-config.xml"
## @param exporter.port Solr exporter port
##
port: 9983
## @param exporter.threads Number of Solr exporter threads
##
threads: 7
## @param exporter.command Override Solr entrypoint string.
##
command: []
## @param exporter.args Arguments for the provided command if needed
##
args: []
## Solr 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 exporter.resources.limits The resources limits for the container
## @param exporter.resources.requests The requested resources for the container
##
resources:
## Example:
## limits:
## cpu: 200m
## memory: 256Mi
limits: {}
## Examples:
## requests:
## cpu: 200m
## memory: 10Mi
requests: {}
## Solr exporter containers' Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## @param exporter.containerSecurityContext.enabled Enable Solr exporter containers' Security Context
## @param exporter.containerSecurityContext.runAsUser User ID for the containers.
## @param exporter.containerSecurityContext.runAsNonRoot Enable Solr exporter containers' Security Context runAsNonRoot
##
containerSecurityContext:
enabled: true
runAsUser: 1001
runAsNonRoot: true
## Solr exporter pods' Security Context
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
## @param exporter.podSecurityContext.enabled Enable Solr exporter pods' Security Context
## @param exporter.podSecurityContext.fsGroup Group ID for the pods.
##
podSecurityContext:
enabled: true
fsGroup: 1001
## @param exporter.podAffinityPreset Solr 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 exporter.podAntiAffinityPreset Solr 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 exporter.nodeAffinityPreset.type Solr node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
type: ""
## @param exporter.nodeAffinityPreset.key Solr node label key to match Ignored if `affinity` is set.
## E.g.
## key: "kubernetes.io/e2e-az-name"
##
key: ""
## @param exporter.nodeAffinityPreset.values Solr node label values to match. Ignored if `affinity` is set.
## E.g.
## values:
## - e2e-az1
## - e2e-az2
##
values: []
## @param exporter.affinity Affinity settings for Solr pod assignment. Evaluated as a template
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
## @param exporter.nodeSelector Node labels for Solr pods assignment. Evaluated as a template
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## @param exporter.tolerations Tolerations for Solr pods assignment. Evaluated as a template
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param exporter.podLabels Additional labels for Metrics exporter pod
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}
## @param exporter.podAnnotations Additional annotations for Metrics exporter pod
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## @param exporter.customLivenessProbe Override default liveness probe%%MAIN_CONTAINER_NAME%%
##
customLivenessProbe: {}
## @param exporter.customReadinessProbe Override default readiness probe%%MAIN_CONTAINER_NAME%%
##
customReadinessProbe: {}
## 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 exporter.updateStrategy.type Update strategy - only really applicable for deployments with RWO PVs attached
## @param exporter.updateStrategy.rollingUpdate Deployment rolling update configuration parameters
##
updateStrategy:
type: RollingUpdate
rollingUpdate: {}
## @param exporter.extraEnvVars Additional environment variables to set
## Example:
## extraEnvVars:
## - name: FOO
## value: "bar"
##
extraEnvVars: []
## @param exporter.extraEnvVarsCM ConfigMap with extra environment variables
##
extraEnvVarsCM: ""
## @param exporter.extraEnvVarsSecret Secret with extra environment variables
##
extraEnvVarsSecret: ""
## @param exporter.extraVolumes Extra volumes to add to the deployment
##
extraVolumes: []
## @param exporter.extraVolumeMounts Extra volume mounts to add to the container
##
extraVolumeMounts: []
## @param 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 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 Solr exporter deployment
##
service:
## @param exporter.service.type Service type for default solr exporter service
##
type: ClusterIP
## @param exporter.service.annotations annotations for solr exporter service
##
annotations: {}
## @param exporter.service.labels Additional labels for solr exporter service
##
labels: {}
## @param exporter.service.port Kubernetes Service port
##
port: 9983
## @param exporter.service.loadBalancerIP Load balancer IP for the Solr Exporter Service (optional, cloud specific)
## ref: http://kubernetes.io/docs/user-guide/services/#type-loadbalancer
##
loadBalancerIP: ""
## @param exporter.service.nodePorts.http Node ports for the HTTP exporter service
## @param exporter.service.nodePorts.https Node ports for the HTTPS exporter service
## nodePorts:
## http: <to set explicitly, choose port between 30000-32767>
## https: <to set explicitly, choose port between 30000-32767>
nodePorts:
http: ""
https: ""
## @param exporter.service.loadBalancerSourceRanges Exporter Load Balancer Source ranges
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param exporter.hostAliases Deployment pod host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []