1# This file has been modified by Chainguard, Inc.
3# Copyright Chainguard, Inc. All Rights Reserved.
4# Chainguard, Inc. modifications are subject to the license
5# available at: https://www.chainguard.dev/legal/software-license-agreement
7# Copyright Broadcom, Inc. All Rights Reserved.
8# SPDX-License-Identifier: APACHE-2.0
10## @section Global parameters
11## Global Docker image parameters
12## Please, note that this will override the image parameters, including dependencies, configured to use the global value
13## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass
15## @param global.imageRegistry Global Docker image registry
16## @param global.imagePullSecrets Global Docker registry secret names as an array
17## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s)
18## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead
24 ## - myRegistryKeySecretName
27 defaultStorageClass: ""
29 ## Security parameters
32 ## @param global.security.allowInsecureImages Allows skipping image verification
33 allowInsecureImages: false
34 ## Compatibility adaptations for Kubernetes platforms
37 ## Compatibility adaptations for Openshift
40 ## @param global.compatibility.openshift.adaptSecurityContext Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation)
42 adaptSecurityContext: auto
44## @section Common parameters
46## @param kubeVersion Force target Kubernetes version (using Helm capabilities if not set)
49## @param nameOverride String to partially override common.names.fullname template with a string (will prepend the release name)
52## @param fullnameOverride String to fully override common.names.fullname template with a string
55## @param commonAnnotations Annotations to add to all deployed objects
58## @param commonLabels Labels to add to all deployed objects
61## @param extraDeploy A list of extra kubernetes resources to be deployed
64## @param clusterDomain Kubernetes cluster domain name
66clusterDomain: cluster.local
67## @param usePasswordFiles Mount credentials as files instead of using environment variables
70## Enable diagnostic mode in the deployment(s)/statefulset(s)
73 ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden)
76 ## @param diagnosticMode.command Command to override all containers in the the deployment(s)/statefulset(s)
80 ## @param diagnosticMode.args Args to override all containers in the the deployment(s)/statefulset(s)
84## @section Kibana parameters
86## Iamguarded Kibana image version
87## ref: https://hub.docker.com/r/iamguarded/kibana/tags/
88## @param image.registry [default: REGISTRY_NAME] Kibana image registry
89## @param image.repository [default: REPOSITORY_NAME/kibana] Kibana image repository
90## @skip image.tag Kibana image tag (immutable tags are recommended)
91## @param image.digest Kibana image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
92## @param image.pullPolicy Kibana image pull policy
93## @param image.pullSecrets Specify docker-registry secret names as an array
94## @param image.debug Enable %%MAIN_CONTAINER%% image debug mode
98 repository: chainguard-private/kibana-iamguarded
101 ## Specify a imagePullPolicy
102 ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images
104 pullPolicy: IfNotPresent
105 ## Optionally specify an array of imagePullSecrets.
106 ## Secrets must be manually created in the namespace.
107 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
110 ## - myRegistryKeySecretName
116## @param replicaCount Number of replicas of the Kibana Pod
119## @param updateStrategy.type Set up update strategy for Kibana installation.
120## Set to Recreate if you use persistent volume that cannot be mounted by more than one pods to makesure the pods are destroyed first.
121## ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
124## type: RollingUpdate
127## maxUnavailable: 25%
131## @param revisionHistoryLimit Number of old replicasets to retain
133revisionHistoryLimit: 10
134## @param schedulerName Alternative scheduler
135## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
138## @param priorityClassName %%MAIN_CONTAINER_NAME%% pods' priorityClassName
141## @param terminationGracePeriodSeconds In seconds, time the given to the %%MAIN_CONTAINER_NAME%% pod needs to terminate gracefully
142## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods
144terminationGracePeriodSeconds: ""
145## @param topologySpreadConstraints Topology Spread Constraints for pod assignment
146## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
147## The value is evaluated as a template
149topologySpreadConstraints: []
150## @param automountServiceAccountToken Mount Service Account token in pod
152automountServiceAccountToken: false
153## @param hostAliases Add deployment host aliases
154## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
157## @param plugins Array containing the Kibana plugins to be installed in deployment
160## - https://github.com/fbaligand/kibana-enhanced-table/releases/download/v1.5.0/enhanced-table-1.5.0_7.3.2.zip
163## Saved objects to import (NDJSON format)
166 ## @param savedObjects.urls Array containing links to NDJSON files to be imported during Kibana initialization
169 ## - www.example.com/dashboard.ndjson
172 ## @param savedObjects.configmap Configmap containing NDJSON files to be imported during Kibana initialization (evaluated as a template)
175 ## @param savedObjects.overwrite Overwrite saved objects
178## @param extraConfiguration Extra settings to be added to the default kibana.yml configmap that the chart creates (unless replaced using `configurationCM`). Evaluated as a template
180extraConfiguration: {}
181## @param configurationCM ConfigMap containing a kibana.yml file that will replace the default one specified in configuration.yaml
184## @param command Override default container command (useful when using custom images)
187## @param args Override default container args (useful when using custom images)
190## @param lifecycleHooks for the %%MAIN_CONTAINER_NAME%% container(s) to automate configuration before or after startup
193## @param extraEnvVars Array containing extra env vars to configure Kibana
196## - name: KIBANA_ELASTICSEARCH_URL
200## @param extraEnvVarsCM ConfigMap containing extra env vars to configure Kibana
203## @param extraEnvVarsSecret Secret containing extra env vars to configure Kibana (in case of sensitive data)
205extraEnvVarsSecret: ""
206## @param extraVolumes Array to add extra volumes. Requires setting `extraVolumeMounts`
209## @param extraVolumeMounts Array to add extra mounts. Normally used with `extraVolumes`
212## Init containers parameters:
213## volumePermissions: Change the owner of the persist volume mountpoint to RunAsUser:fsGroup
216 ## @param volumePermissions.enabled Enable init container that changes volume permissions in the data directory (for cases where the default k8s `runAsUser` and `fsUser` values do not work)
219 ## @param volumePermissions.image.registry [default: REGISTRY_NAME] Init container volume-permissions image registry
220 ## @param volumePermissions.image.repository [default: REPOSITORY_NAME/os-shell] Init container volume-permissions image name
221 ## @skip volumePermissions.image.tag Init container volume-permissions image tag
222 ## @param volumePermissions.image.digest Init container volume-permissions image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
223 ## @param volumePermissions.image.pullPolicy Init container volume-permissions image pull policy
224 ## @param volumePermissions.image.pullSecrets Init container volume-permissions image pull secrets
228 repository: chainguard-private/os-shell-iamguarded
231 pullPolicy: IfNotPresent
232 ## Optionally specify an array of imagePullSecrets.
233 ## Secrets must be manually created in the namespace.
234 ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
237 ## - myRegistryKeySecretName
240 ## @param volumePermissions.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if volumePermissions.resources is set (volumePermissions.resources is recommended for production).
241 ## More information: https://github.com/iamguarded/charts/blob/main/iamguarded/common/templates/_resources.tpl#L15
243 resourcesPreset: "nano"
244 ## @param volumePermissions.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
258## Enable persistence using Persistent Volume Claims
259## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/
262 ## @param persistence.enabled Enable persistence
265 ## @param persistence.storageClass Kibana data Persistent Volume Storage Class
266 ## If defined, storageClassName: <storageClass>
267 ## If set to "-", storageClassName: "", which disables dynamic provisioning
268 ## If undefined (the default) or set to null, no storageClassName spec is
269 ## set, choosing the default provisioner. (gp2 on AWS, standard on
270 ## GKE, AWS & OpenStack)
273 ## @param persistence.existingClaim Provide an existing `PersistentVolumeClaim`
276 ## @param persistence.accessModes Persistent Volume access modes
280 ## @param persistence.size Size for the PV
283 ## @param persistence.annotations Persistent Volume Claim annotations
286 ## @param persistence.subPath The subdirectory of the volume to mount to, useful in dev environments and one PV for multiple services
289 ## @param persistence.selector Selector to match an existing Persistent Volume for Kibana data PVC
290 ## If set, the PVC can't have a PV dynamically provisioned for it
297 ## @param persistence.dataSource Custom PVC data source
300## Configure extra options for startup probe
301## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes)
302## @param startupProbe.enabled Enable/disable the startup probe
303## @param startupProbe.initialDelaySeconds Delay before startup probe is initiated
304## @param startupProbe.periodSeconds How often to perform the probe
305## @param startupProbe.timeoutSeconds When the probe times out
306## @param startupProbe.failureThreshold Minimum consecutive failures for the probe to be considered failed after having succeeded.
307## @param startupProbe.successThreshold Minimum consecutive successes for the probe to be considered successful after having failed.
311 initialDelaySeconds: 120
316## Configure extra options for liveness probe
317## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes)
318## @param livenessProbe.enabled Enable/disable the Liveness probe
319## @param livenessProbe.initialDelaySeconds Delay before liveness probe is initiated
320## @param livenessProbe.periodSeconds How often to perform the probe
321## @param livenessProbe.timeoutSeconds When the probe times out
322## @param livenessProbe.failureThreshold Minimum consecutive failures for the probe to be considered failed after having succeeded.
323## @param livenessProbe.successThreshold Minimum consecutive successes for the probe to be considered successful after having failed.
327 initialDelaySeconds: 120
332## Configure extra options for readiness probe
333## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes)
334## @param readinessProbe.enabled Enable/disable the Readiness probe
335## @param readinessProbe.initialDelaySeconds Delay before readiness probe is initiated
336## @param readinessProbe.periodSeconds How often to perform the probe
337## @param readinessProbe.timeoutSeconds When the probe times out
338## @param readinessProbe.failureThreshold Minimum consecutive failures for the probe to be considered failed after having succeeded.
339## @param readinessProbe.successThreshold Minimum consecutive successes for the probe to be considered successful after having failed.
343 initialDelaySeconds: 30
348## @param customStartupProbe Custom liveness probe for the Web component
350customStartupProbe: {}
351## @param customLivenessProbe Custom liveness probe for the Web component
353customLivenessProbe: {}
354## @param customReadinessProbe Custom readiness probe for the Web component
356customReadinessProbe: {}
357## @param forceInitScripts Force execution of init scripts
359forceInitScripts: false
360## @param initScriptsCM Configmap with init scripts to execute
363## @param initScriptsSecret Secret with init scripts to execute (for sensitive data)
366## Service configuration
369 ## @param service.ports.http Kubernetes Service port
373 ## @param service.type Kubernetes Service type
376 ## @param service.nodePorts.http Specify the nodePort value for the LoadBalancer and NodePort service types
377 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
381 ## @param service.clusterIP %%MAIN_CONTAINER_NAME%% service Cluster IP
386 ## @param service.loadBalancerIP loadBalancerIP if Kibana service type is `LoadBalancer`
387 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
390 ## @param service.loadBalancerSourceRanges %%MAIN_CONTAINER_NAME%% service Load Balancer sources
391 ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
393 ## loadBalancerSourceRanges:
396 loadBalancerSourceRanges: []
397 ## @param service.externalTrafficPolicy Enable client source IP preservation
398 ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
400 externalTrafficPolicy: Cluster
401 ## @param service.annotations Annotations for Kibana service (evaluated as a template)
402 ## This can be used to set the LoadBalancer service type to internal only.
403 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
406 ## @param service.labels Extra labels for Kibana service
409 ## @param service.extraPorts Extra ports to expose in the service (normally used with the `sidecar` value)
412 ## @param service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
413 ## If "ClientIP", consecutive client requests will be directed to the same Pod
414 ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
416 sessionAffinity: None
417 ## @param service.sessionAffinityConfig Additional settings for the sessionAffinity
418 ## sessionAffinityConfig:
420 ## timeoutSeconds: 300
422 sessionAffinityConfig: {}
424## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/
427 ## @param networkPolicy.enabled Specifies whether a NetworkPolicy should be created
430 ## @param networkPolicy.allowExternal Don't require server label for connections
431 ## The Policy model to apply. When set to false, only pods with the correct
432 ## server label will have network access to the ports server is listening
433 ## on. When true, server will accept connections from any source
434 ## (with the correct destination port).
437 ## @param networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
439 allowExternalEgress: true
440 ## @param networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
450 ## - matchExpressions:
456 ## @param networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy
466 ## - matchExpressions:
473 ## @param networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces
474 ## @param networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces
476 ingressNSMatchLabels: {}
477 ingressNSPodMatchLabels: {}
478## Configure the ingress resource that allows you to access the
479## Kibana installation. Set up the URL
480## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/
483 ## @param ingress.enabled Enable ingress controller resource
486 ## DEPRECATED: Use ingress.annotations instead of ingress.certManager
487 ## certManager: false
490 ## @param ingress.pathType Ingress Path type
492 pathType: ImplementationSpecific
493 ## @param ingress.apiVersion Override API Version (automatically detected if not set)
496 ## @param ingress.hostname Default host for the ingress resource. Evaluated as a template. If specified as "*" no host rule is configured
498 hostname: kibana.local
499 ## @param ingress.path The Path to Kibana. You may need to set this to '/*' in order to use this with ALB ingress controllers.
502 ## @param ingress.annotations Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations.
503 ## For a full list of possible ingress annotations, please see
504 ## ref: https://github.com/kubernetes/ingress-nginx/blob/main/docs/user-guide/nginx-configuration/annotations.md
505 ## Use this parameter to set the required annotations for cert-manager, see
506 ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations
510 ## kubernetes.io/ingress.class: nginx
511 ## cert-manager.io/cluster-issuer: cluster-issuer-name
514 ## @param ingress.tls Enable TLS configuration for the hostname defined at ingress.hostname parameter
515 ## TLS certificates will be retrieved from a TLS secret with name: {{- printf "%s-tls" .Values.ingress.hostname }}
516 ## You can use the ingress.secrets parameter to create this TLS secret or rely on cert-manager to create it
519 ## @param ingress.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm
522 ## @param ingress.extraHosts The list of additional hostnames to be covered with this ingress record. Evaluated as a template.
523 ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array
525 ## - name: kibana.local
529 ## @param ingress.extraPaths Additional arbitrary path/backend objects. Evaluated as a template.
530 ## For example: The ALB ingress controller requires a special rule for handling SSL redirection.
534 ## serviceName: ssl-redirect
535 ## servicePort: use-annotation
538 ## @param ingress.extraTls The tls configuration for additional hostnames to be covered with this ingress record. Evaluated as a template.
539 ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
543 ## secretName: kibana.local-tls
546 ## @param ingress.secrets If you're providing your own certificates, please use this to add the certificates as secrets
547 ## key and certificate should start with -----BEGIN CERTIFICATE----- or
548 ## -----BEGIN RSA PRIVATE KEY-----
550 ## name should line up with a tlsSecret set further up
551 ## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set
553 ## It is also possible to create and manage the certificates outside of this helm chart
554 ## Please see README.md for more information
556 ## - name: kibana.local-tls
561 ## @param ingress.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+)
562 ## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster .
563 ## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/
566 ## @param ingress.extraRules The list of additional rules to be added to this ingress record. Evaluated as a template
567 ## Useful when looking for additional customization, such as using different backend
570## Pods Service Account
571## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
572## @param serviceAccount.create Specifies whether a ServiceAccount should be created
573## @param serviceAccount.name Name of the service account to use. If not set and create is true, a name is generated using the fullname template.
574## @param serviceAccount.automountServiceAccountToken Automount service account token for the server service account
575## @param serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`.
580 automountServiceAccountToken: false
582## @param containerPorts.http Port to expose at container level
586## Configure Pods Security Context
587## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
588## @param podSecurityContext.enabled Enabled %%MAIN_CONTAINER_NAME%% pods' Security Context
589## @param podSecurityContext.fsGroupChangePolicy Set filesystem group change policy
590## @param podSecurityContext.sysctls Set kernel settings using the sysctl interface
591## @param podSecurityContext.supplementalGroups Set filesystem extra groups
592## @param podSecurityContext.fsGroup Set %%MAIN_CONTAINER_NAME%% pod's Security Context fsGroup
596 fsGroupChangePolicy: Always
598 supplementalGroups: []
600## Configure Container Security Context
601## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
602## @param containerSecurityContext.enabled Enabled containers' Security Context
603## @param containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
604## @param containerSecurityContext.runAsUser Set containers' Security Context runAsUser
605## @param containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup
606## @param containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot
607## @param containerSecurityContext.privileged Set container's Security Context privileged
608## @param containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem
609## @param containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation
610## @param containerSecurityContext.capabilities.drop List of capabilities to be dropped
611## @param containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile
613containerSecurityContext:
620 readOnlyRootFilesystem: true
621 allowPrivilegeEscalation: false
625 type: "RuntimeDefault"
626## Kibana resource requests and limits
627## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
628## We usually recommend not to specify default resources and to leave this as a conscious
629## choice for the user. This also increases chances charts run on environments with little
630## resources, such as Minikube. If you do want to specify resources, uncomment the following
631## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
632## @param resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if resources is set (resources is recommended for production).
633## More information: https://github.com/iamguarded/charts/blob/main/iamguarded/common/templates/_resources.tpl#L15
635resourcesPreset: "small"
636## @param resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
647## @param podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
648## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
651## @param podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
652## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
654podAntiAffinityPreset: soft
655## Node affinity preset
656## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
657## Allowed values: soft, hard
660 ## @param nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
663 ## @param nodeAffinityPreset.key Node label key to match Ignored if `affinity` is set.
665 ## key: "kubernetes.io/e2e-az-name"
668 ## @param nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set.
675## @param affinity Affinity for pod assignment
676## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
677## Note: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set
680## @param nodeSelector Node labels for pod assignment
681## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
684## @param tolerations Tolerations for pod assignment
685## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
688## @param podAnnotations Pod annotations
689## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
692## @param podLabels Extra labels to add to Pod
695## @param sidecars Attach additional containers to the pod
697## - name: your-image-name
699## imagePullPolicy: Always
702## containerPort: 1234
705## @param initContainers Add additional init containers to the pod
707## - name: your-image-name
709## imagePullPolicy: Always
712## containerPort: 1234
715## Pod Disruption Budget configuration
716## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb
717## @param pdb.create Enable/disable a Pod Disruption Budget creation
718## @param pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
719## @param pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `pdb.minAvailable` and `pdb.maxUnavailable` are empty.
725## @param configuration [object] Kibana configuration
732 rewriteBasePath: false
733## Prometheus metrics (requires the kibana-prometheus-exporter plugin)
736 ## @param metrics.enabled Start a side-car prometheus exporter
740 ## @param metrics.service.annotations [object] Prometheus annotations for the Kibana service
743 prometheus.io/scrape: "true"
744 prometheus.io/port: "80"
745 prometheus.io/path: "_prometheus/metrics"
746 ## Prometheus Operator ServiceMonitor configuration
749 ## @param metrics.serviceMonitor.enabled If `true`, creates a Prometheus Operator ServiceMonitor (also requires `metrics.enabled` to be `true`)
752 ## @param metrics.serviceMonitor.namespace Namespace in which Prometheus is running
755 ## @param metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus.
758 ## @param metrics.serviceMonitor.interval Interval at which metrics should be scraped.
759 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
764 ## @param metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
765 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
767 ## scrapeTimeout: 10s
770 ## @param metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping
771 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
774 ## @param metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion
775 ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig
777 metricRelabelings: []
778 ## @param metrics.serviceMonitor.selector Prometheus instance selector labels
779 ## ref: https://github.com/iamguarded/charts/tree/main/iamguarded/prometheus-operator#prometheus-configuration
782 ## prometheus: my-prometheus
785 # prometheus: my-prometheus
787 ## @param metrics.serviceMonitor.labels Extra labels for the ServiceMonitor
790 ## @param metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels
793## @section Kibana server TLS configuration
796 ## @param tls.enabled Enable SSL/TLS encryption for Kibana server (HTTPS)
799 ## @param tls.autoGenerated Create self-signed TLS certificates. Currently only supports PEM certificates.
802 ## @param tls.existingSecret Name of the existing secret containing Kibana server certificates
805 ## @param tls.usePemCerts Use this variable if your secrets contain PEM certificates instead of PKCS12
806 ## Note: Ignored when using autoGenerated certs.
809 ## @param tls.keyPassword Password to access the PEM key when it is password-protected.
812 ## @param tls.keystorePassword Password to access the PKCS12 keystore when it is password-protected.
815 ## @param tls.passwordsSecret Name of a existing secret containing the Keystore or PEM key password
818## @section Elasticsearch parameters
821 ## @param elasticsearch.hosts List of elasticsearch hosts to connect to.
828 ## @param elasticsearch.port Elasticsearch port
833 ## @param elasticsearch.security.auth.enabled Set to 'true' if Elasticsearch has authentication enabled
836 ## @param elasticsearch.security.auth.kibanaPassword Password of the 'kibana_system' user, used to authenticate Kibana connection with Elasticsearch.
839 ## @param elasticsearch.security.auth.existingSecret Name of the existing secret containing the password for the 'kibana_system' user.
842 ## @param elasticsearch.security.auth.createSystemUser If enabled, Kibana will use Elasticsearch API to create the 'kibana_system' user at startup.
844 createSystemUser: false
845 ## @param elasticsearch.security.auth.elasticsearchPasswordSecret Name of the existing secret containing the password for the 'elastic' user.
846 ## Required if createSystemUser=true. The secret must containt the key 'elasticsearch-password'.
848 elasticsearchPasswordSecret: ""
850 ## @param elasticsearch.security.tls.enabled Set to 'true' if Elasticsearch API uses TLS/SSL (HTTPS)
853 ## @param elasticsearch.security.tls.verificationMode Verification mode for SSL communications.
854 ## Supported values: full, certificate, none.
855 ## Ref: https://www.elastic.co/guide/en/kibana/7.x/settings.html#elasticsearch-ssl-verificationmode
856 verificationMode: "full"
857 ## @param elasticsearch.security.tls.existingSecret Name of the existing secret containing Elasticsearch Truststore or CA certificate. Required unless verificationMode=none
860 ## @param elasticsearch.security.tls.usePemCerts Set to 'true' to use PEM certificates instead of PKCS12.
863 ## @param elasticsearch.security.tls.truststorePassword Password to access the PKCS12 trustore in case it is password-protected.
865 truststorePassword: ""
866 ## @param elasticsearch.security.tls.passwordsSecret Name of a existing secret containing the Truststore password