[bitnami/several] Regenerate README tables

Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
This commit is contained in:
Carlos Rodriguez Hernandez
2021-11-25 10:20:50 +00:00
parent 687ce0cf21
commit 15b13c902e
9 changed files with 110 additions and 110 deletions

View File

@@ -71,78 +71,78 @@ The command removes all the Kubernetes components associated with the chart and
### Drupal parameters
| Name | Description | Value |
| ------------------------------------ | --------------------------------------------------------------------------------------------------------------------- | -------------------- |
| `image.registry` | Drupal image registry | `docker.io` |
| `image.repository` | Drupal Image name | `bitnami/drupal` |
| `image.tag` | Drupal Image tag | `9.2.9-debian-10-r0` |
| `image.pullPolicy` | Drupal image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `image.debug` | Specify if debug logs should be enabled | `false` |
| `replicaCount` | Number of Drupal Pods to run (requires ReadWriteMany PVC support) | `1` |
| `drupalProfile` | Drupal installation profile | `standard` |
| `drupalSkipInstall` | Skip Drupal installation wizard. Useful for migrations and restoring from SQL dump | `false` |
| `drupalUsername` | User of the application | `user` |
| `drupalPassword` | Application password | `""` |
| `drupalEmail` | Admin email | `user@example.com` |
| `allowEmptyPassword` | Allow DB blank passwords | `true` |
| `command` | Override default container command (useful when using custom images) | `[]` |
| `args` | Override default container args (useful when using custom images) | `[]` |
| `updateStrategy.type` | Update strategy - only really applicable for deployments with RWO PVs attached | `RollingUpdate` |
| `hostAliases` | Add deployment host aliases | `[]` |
| `extraEnvVars` | Extra environment variables | `[]` |
| `extraEnvVarsCM` | ConfigMap containing extra env vars | `""` |
| `extraEnvVarsSecret` | Secret containing extra env vars (in case of sensitive data) | `""` |
| `extraVolumes` | Array of extra volumes to be added to the deployment (evaluated as template). Requires setting `extraVolumeMounts` | `[]` |
| `extraVolumeMounts` | Array of extra volume mounts to be added to the container (evaluated as template). Normally used with `extraVolumes`. | `[]` |
| `initContainers` | Add additional init containers to the pod (evaluated as a template) | `[]` |
| `sidecars` | Attach additional containers to the pod (evaluated as a template) | `[]` |
| `tolerations` | Tolerations for pod assignment | `[]` |
| `existingSecret` | Name of a secret with the application password | `""` |
| `smtpHost` | SMTP host | `""` |
| `smtpPort` | SMTP port | `""` |
| `smtpUser` | SMTP user | `""` |
| `smtpPassword` | SMTP password | `""` |
| `smtpProtocol` | SMTP Protocol (options: ssl,tls, nil) | `""` |
| `containerPorts` | Container ports | `{}` |
| `sessionAffinity` | Control where client requests go, to the same pod or round-robin. Values: ClientIP or None | `None` |
| `persistence.enabled` | Enable persistence using PVC | `true` |
| `persistence.storageClass` | PVC Storage Class for Drupal volume | `""` |
| `persistence.accessMode` | PVC Access Mode for Drupal volume | `ReadWriteOnce` |
| `persistence.size` | PVC Storage Request for Drupal volume | `8Gi` |
| `persistence.existingClaim` | A manually managed Persistent Volume Claim | `""` |
| `persistence.hostPath` | If defined, the drupal-data volume will mount to the specified hostPath. | `""` |
| `podAffinityPreset` | Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `""` |
| `podAntiAffinityPreset` | Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `soft` |
| `nodeAffinityPreset.type` | Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `""` |
| `nodeAffinityPreset.key` | Node label key to match Ignored if `affinity` is set. | `""` |
| `nodeAffinityPreset.values` | Node label values to match. Ignored if `affinity` is set. | `[]` |
| `affinity` | Affinity for pod assignment | `{}` |
| `nodeSelector` | Node labels for pod assignment. Evaluated as a template. | `{}` |
| `resources` | CPU/Memory resource requests/limits | `{}` |
| `podSecurityContext.enabled` | Enable Drupal pods' Security Context | `true` |
| `podSecurityContext.fsGroup` | Drupal pods' group ID | `1001` |
| `containerSecurityContext.enabled` | Enable Drupal containers' Security Context | `true` |
| `containerSecurityContext.runAsUser` | Drupal containers' Security Context | `1001` |
| `livenessProbe.enabled` | Enable livenessProbe | `true` |
| `livenessProbe.path` | Request path for livenessProbe | `/user/login` |
| `livenessProbe.initialDelaySeconds` | Initial delay seconds for livenessProbe | `600` |
| `livenessProbe.periodSeconds` | Period seconds for livenessProbe | `10` |
| `livenessProbe.timeoutSeconds` | Timeout seconds for livenessProbe | `5` |
| `livenessProbe.failureThreshold` | Failure threshold for livenessProbe | `5` |
| `livenessProbe.successThreshold` | Success threshold for livenessProbe | `1` |
| `readinessProbe.enabled` | Enable readinessProbe | `true` |
| `readinessProbe.path` | Request path for readinessProbe | `/user/login` |
| `readinessProbe.initialDelaySeconds` | Initial delay seconds for readinessProbe | `30` |
| `readinessProbe.periodSeconds` | Period seconds for readinessProbe | `5` |
| `readinessProbe.timeoutSeconds` | Timeout seconds for readinessProbe | `1` |
| `readinessProbe.failureThreshold` | Failure threshold for readinessProbe | `5` |
| `readinessProbe.successThreshold` | Success threshold for readinessProbe | `1` |
| `customLivenessProbe` | Override default liveness probe | `{}` |
| `customReadinessProbe` | Override default readiness probe | `{}` |
| `lifecycleHooks` | LifecycleHook to set additional configuration at startup Evaluated as a template | `{}` |
| `podAnnotations` | Pod annotations | `{}` |
| `podLabels` | Add additional labels to the pod (evaluated as a template) | `{}` |
| Name | Description | Value |
| ------------------------------------ | --------------------------------------------------------------------------------------------------------------------- | --------------------- |
| `image.registry` | Drupal image registry | `docker.io` |
| `image.repository` | Drupal Image name | `bitnami/drupal` |
| `image.tag` | Drupal Image tag | `9.2.10-debian-10-r0` |
| `image.pullPolicy` | Drupal image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `image.debug` | Specify if debug logs should be enabled | `false` |
| `replicaCount` | Number of Drupal Pods to run (requires ReadWriteMany PVC support) | `1` |
| `drupalProfile` | Drupal installation profile | `standard` |
| `drupalSkipInstall` | Skip Drupal installation wizard. Useful for migrations and restoring from SQL dump | `false` |
| `drupalUsername` | User of the application | `user` |
| `drupalPassword` | Application password | `""` |
| `drupalEmail` | Admin email | `user@example.com` |
| `allowEmptyPassword` | Allow DB blank passwords | `true` |
| `command` | Override default container command (useful when using custom images) | `[]` |
| `args` | Override default container args (useful when using custom images) | `[]` |
| `updateStrategy.type` | Update strategy - only really applicable for deployments with RWO PVs attached | `RollingUpdate` |
| `hostAliases` | Add deployment host aliases | `[]` |
| `extraEnvVars` | Extra environment variables | `[]` |
| `extraEnvVarsCM` | ConfigMap containing extra env vars | `""` |
| `extraEnvVarsSecret` | Secret containing extra env vars (in case of sensitive data) | `""` |
| `extraVolumes` | Array of extra volumes to be added to the deployment (evaluated as template). Requires setting `extraVolumeMounts` | `[]` |
| `extraVolumeMounts` | Array of extra volume mounts to be added to the container (evaluated as template). Normally used with `extraVolumes`. | `[]` |
| `initContainers` | Add additional init containers to the pod (evaluated as a template) | `[]` |
| `sidecars` | Attach additional containers to the pod (evaluated as a template) | `[]` |
| `tolerations` | Tolerations for pod assignment | `[]` |
| `existingSecret` | Name of a secret with the application password | `""` |
| `smtpHost` | SMTP host | `""` |
| `smtpPort` | SMTP port | `""` |
| `smtpUser` | SMTP user | `""` |
| `smtpPassword` | SMTP password | `""` |
| `smtpProtocol` | SMTP Protocol (options: ssl,tls, nil) | `""` |
| `containerPorts` | Container ports | `{}` |
| `sessionAffinity` | Control where client requests go, to the same pod or round-robin. Values: ClientIP or None | `None` |
| `persistence.enabled` | Enable persistence using PVC | `true` |
| `persistence.storageClass` | PVC Storage Class for Drupal volume | `""` |
| `persistence.accessMode` | PVC Access Mode for Drupal volume | `ReadWriteOnce` |
| `persistence.size` | PVC Storage Request for Drupal volume | `8Gi` |
| `persistence.existingClaim` | A manually managed Persistent Volume Claim | `""` |
| `persistence.hostPath` | If defined, the drupal-data volume will mount to the specified hostPath. | `""` |
| `podAffinityPreset` | Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `""` |
| `podAntiAffinityPreset` | Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `soft` |
| `nodeAffinityPreset.type` | Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `""` |
| `nodeAffinityPreset.key` | Node label key to match Ignored if `affinity` is set. | `""` |
| `nodeAffinityPreset.values` | Node label values to match. Ignored if `affinity` is set. | `[]` |
| `affinity` | Affinity for pod assignment | `{}` |
| `nodeSelector` | Node labels for pod assignment. Evaluated as a template. | `{}` |
| `resources` | CPU/Memory resource requests/limits | `{}` |
| `podSecurityContext.enabled` | Enable Drupal pods' Security Context | `true` |
| `podSecurityContext.fsGroup` | Drupal pods' group ID | `1001` |
| `containerSecurityContext.enabled` | Enable Drupal containers' Security Context | `true` |
| `containerSecurityContext.runAsUser` | Drupal containers' Security Context | `1001` |
| `livenessProbe.enabled` | Enable livenessProbe | `true` |
| `livenessProbe.path` | Request path for livenessProbe | `/user/login` |
| `livenessProbe.initialDelaySeconds` | Initial delay seconds for livenessProbe | `600` |
| `livenessProbe.periodSeconds` | Period seconds for livenessProbe | `10` |
| `livenessProbe.timeoutSeconds` | Timeout seconds for livenessProbe | `5` |
| `livenessProbe.failureThreshold` | Failure threshold for livenessProbe | `5` |
| `livenessProbe.successThreshold` | Success threshold for livenessProbe | `1` |
| `readinessProbe.enabled` | Enable readinessProbe | `true` |
| `readinessProbe.path` | Request path for readinessProbe | `/user/login` |
| `readinessProbe.initialDelaySeconds` | Initial delay seconds for readinessProbe | `30` |
| `readinessProbe.periodSeconds` | Period seconds for readinessProbe | `5` |
| `readinessProbe.timeoutSeconds` | Timeout seconds for readinessProbe | `1` |
| `readinessProbe.failureThreshold` | Failure threshold for readinessProbe | `5` |
| `readinessProbe.successThreshold` | Success threshold for readinessProbe | `1` |
| `customLivenessProbe` | Override default liveness probe | `{}` |
| `customReadinessProbe` | Override default readiness probe | `{}` |
| `lifecycleHooks` | LifecycleHook to set additional configuration at startup Evaluated as a template | `{}` |
| `podAnnotations` | Pod annotations | `{}` |
| `podLabels` | Add additional labels to the pod (evaluated as a template) | `{}` |
### Traffic Exposure Parameters
@@ -200,7 +200,7 @@ The command removes all the Kubernetes components associated with the chart and
| `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) | `false` |
| `volumePermissions.image.registry` | Init container volume-permissions image registry | `docker.io` |
| `volumePermissions.image.repository` | Init container volume-permissions image name | `bitnami/bitnami-shell` |
| `volumePermissions.image.tag` | Init container volume-permissions image tag | `10-debian-10-r255` |
| `volumePermissions.image.tag` | Init container volume-permissions image tag | `10-debian-10-r260` |
| `volumePermissions.image.pullPolicy` | Init container volume-permissions image pull policy | `IfNotPresent` |
| `volumePermissions.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `volumePermissions.resources.limits` | The resources limits for the container | `{}` |
@@ -214,7 +214,7 @@ The command removes all the Kubernetes components associated with the chart and
| `metrics.enabled` | Start a exporter side-car | `false` |
| `metrics.image.registry` | Apache exporter image registry | `docker.io` |
| `metrics.image.repository` | Apache exporter image repository | `bitnami/apache-exporter` |
| `metrics.image.tag` | Apache exporter image tag | `0.10.1-debian-10-r57` |
| `metrics.image.tag` | Apache exporter image tag | `0.10.1-debian-10-r62` |
| `metrics.image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `metrics.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `metrics.resources` | Metrics exporter resource requests and limits | `{}` |
@@ -239,7 +239,7 @@ The command removes all the Kubernetes components associated with the chart and
| `certificates.extraEnvVarsSecret` | Secret containing extra env vars (in case of sensitive data) | `""` |
| `certificates.image.registry` | Container sidecar registry | `docker.io` |
| `certificates.image.repository` | Container sidecar image | `bitnami/bitnami-shell` |
| `certificates.image.tag` | Container sidecar image tag | `10-debian-10-r255` |
| `certificates.image.tag` | Container sidecar image tag | `10-debian-10-r260` |
| `certificates.image.pullPolicy` | Container sidecar image pull policy | `IfNotPresent` |
| `certificates.image.pullSecrets` | Container sidecar image pull secrets | `[]` |

View File

@@ -80,7 +80,7 @@ $ helm delete --purge my-release
| ------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------ |
| `image.registry` | Elasticsearch image registry | `docker.io` |
| `image.repository` | Elasticsearch image repository | `bitnami/elasticsearch` |
| `image.tag` | Elasticsearch image tag (immutable tags are recommended) | `7.15.2-debian-10-r0` |
| `image.tag` | Elasticsearch image tag (immutable tags are recommended) | `7.15.2-debian-10-r10` |
| `image.pullPolicy` | Elasticsearch image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Elasticsearch image pull secrets | `[]` |
| `image.debug` | Enable image debug mode | `false` |
@@ -391,7 +391,7 @@ $ helm delete --purge my-release
| `curator.name` | Elasticsearch Curator pod name | `curator` |
| `curator.image.registry` | Elasticsearch Curator image registry | `docker.io` |
| `curator.image.repository` | Elasticsearch Curator image repository | `bitnami/elasticsearch-curator` |
| `curator.image.tag` | Elasticsearch Curator image tag | `5.8.4-debian-10-r179` |
| `curator.image.tag` | Elasticsearch Curator image tag | `5.8.4-debian-10-r190` |
| `curator.image.pullPolicy` | Elasticsearch Curator image pull policy | `IfNotPresent` |
| `curator.image.pullSecrets` | Elasticsearch Curator image pull secrets | `[]` |
| `curator.cronjob.schedule` | Schedule for the CronJob | `0 1 * * *` |
@@ -440,7 +440,7 @@ $ helm delete --purge my-release
| `metrics.name` | Metrics pod name | `metrics` |
| `metrics.image.registry` | Metrics exporter image registry | `docker.io` |
| `metrics.image.repository` | Metrics exporter image repository | `bitnami/elasticsearch-exporter` |
| `metrics.image.tag` | Metrics exporter image tag | `1.3.0-debian-10-r19` |
| `metrics.image.tag` | Metrics exporter image tag | `1.3.0-debian-10-r31` |
| `metrics.image.pullPolicy` | Metrics exporter image pull policy | `IfNotPresent` |
| `metrics.image.pullSecrets` | Metrics exporter image pull secrets | `[]` |
| `metrics.extraArgs` | Extra arguments to add to the default exporter command | `[]` |
@@ -487,7 +487,7 @@ $ helm delete --purge my-release
| `sysctlImage.enabled` | Enable kernel settings modifier image | `true` |
| `sysctlImage.registry` | Kernel settings modifier image registry | `docker.io` |
| `sysctlImage.repository` | Kernel settings modifier image repository | `bitnami/bitnami-shell` |
| `sysctlImage.tag` | Kernel settings modifier image tag | `10-debian-10-r248` |
| `sysctlImage.tag` | Kernel settings modifier image tag | `10-debian-10-r259` |
| `sysctlImage.pullPolicy` | Kernel settings modifier image pull policy | `IfNotPresent` |
| `sysctlImage.pullSecrets` | Kernel settings modifier image pull secrets | `[]` |
| `sysctlImage.resources.limits` | The resources limits for the container | `{}` |
@@ -501,7 +501,7 @@ $ helm delete --purge my-release
| `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) | `false` |
| `volumePermissions.image.registry` | Init container volume-permissions image registry | `docker.io` |
| `volumePermissions.image.repository` | Init container volume-permissions image name | `bitnami/bitnami-shell` |
| `volumePermissions.image.tag` | Init container volume-permissions image tag | `10-debian-10-r248` |
| `volumePermissions.image.tag` | Init container volume-permissions image tag | `10-debian-10-r259` |
| `volumePermissions.image.pullPolicy` | Init container volume-permissions image pull policy | `IfNotPresent` |
| `volumePermissions.image.pullSecrets` | Init container volume-permissions image pull secrets | `[]` |
| `volumePermissions.resources.limits` | The resources limits for the container | `{}` |

View File

@@ -80,7 +80,7 @@ The command removes all the Kubernetes components associated with the chart and
| -------------------------------------- | ---------------------------------------------------------- | ----------------------------- |
| `tempo.image.registry` | Grafana Tempo image registry | `docker.io` |
| `tempo.image.repository` | Grafana Tempo image repository | `bitnami/grafana-tempo` |
| `tempo.image.tag` | Grafana Tempo image tag (immutable tags are recommended) | `1.1.0-debian-10-r54` |
| `tempo.image.tag` | Grafana Tempo image tag (immutable tags are recommended) | `1.2.1-debian-10-r0` |
| `tempo.image.pullPolicy` | Grafana Tempo image pull policy | `IfNotPresent` |
| `tempo.image.pullSecrets` | Grafana Tempo image pull secrets | `[]` |
| `tempo.containerPort` | Tempo components web port | `3100` |
@@ -432,7 +432,7 @@ The command removes all the Kubernetes components associated with the chart and
| `queryFrontend.initContainers` | Add additional init containers to the queryFrontend pod(s) | `[]` |
| `queryFrontend.query.image.registry` | Grafana Tempo Query image registry | `docker.io` |
| `queryFrontend.query.image.repository` | Grafana Tempo Query image repository | `bitnami/grafana-tempo-query` |
| `queryFrontend.query.image.tag` | Grafana Tempo Query image tag (immutable tags are recommended) | `1.1.0-debian-10-r58` |
| `queryFrontend.query.image.tag` | Grafana Tempo Query image tag (immutable tags are recommended) | `1.2.1-debian-10-r8` |
| `queryFrontend.query.image.pullPolicy` | Grafana Tempo Query image pull policy | `IfNotPresent` |
| `queryFrontend.query.image.pullSecrets` | Grafana Tempo Query image pull secrets | `[]` |
| `queryFrontend.query.command` | Override default container command (useful when using custom images) | `[]` |
@@ -489,7 +489,7 @@ The command removes all the Kubernetes components associated with the chart and
| `vulture.enabled` | Enable vulture deployment | `true` |
| `vulture.image.registry` | Grafana Vulture image registry | `docker.io` |
| `vulture.image.repository` | Grafana Vulture image repository | `bitnami/grafana-tempo-vulture` |
| `vulture.image.tag` | Grafana Vulture image tag (immutable tags are recommended) | `1.1.0-debian-10-r59` |
| `vulture.image.tag` | Grafana Vulture image tag (immutable tags are recommended) | `1.2.1-debian-10-r8` |
| `vulture.image.pullPolicy` | Grafana Vulture image pull policy | `IfNotPresent` |
| `vulture.image.pullSecrets` | Grafana Vulture image pull secrets | `[]` |
| `vulture.replicaCount` | Number of vulture replicas to deploy | `1` |
@@ -560,7 +560,7 @@ The command removes all the Kubernetes components associated with the chart and
| `volumePermissions.enabled` | Enable init container that changes the owner/group of the PV mount point to `runAsUser:fsGroup` | `false` |
| `volumePermissions.image.registry` | Bitnami Shell image registry | `docker.io` |
| `volumePermissions.image.repository` | Bitnami Shell image repository | `bitnami/bitnami-shell` |
| `volumePermissions.image.tag` | Bitnami Shell image tag (immutable tags are recommended) | `10-debian-10-r233` |
| `volumePermissions.image.tag` | Bitnami Shell image tag (immutable tags are recommended) | `10-debian-10-r261` |
| `volumePermissions.image.pullPolicy` | Bitnami Shell image pull policy | `IfNotPresent` |
| `volumePermissions.image.pullSecrets` | Bitnami Shell image pull secrets | `[]` |
| `volumePermissions.resources.limits` | The resources limits for the init container | `{}` |

View File

@@ -158,7 +158,7 @@ This solution allows to easily deploy multiple Grafana instances compared to the
| ---------------------------------- | --------------------------------------------------------------------------------- | -------------------- |
| `image.registry` | Grafana image registry | `docker.io` |
| `image.repository` | Grafana image repository | `bitnami/grafana` |
| `image.tag` | Grafana image tag (immutable tags are recommended) | `8.2.5-debian-10-r0` |
| `image.tag` | Grafana image tag (immutable tags are recommended) | `8.2.5-debian-10-r6` |
| `image.pullPolicy` | Grafana image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Grafana image pull secrets | `[]` |
| `hostAliases` | Add deployment host aliases | `[]` |
@@ -336,7 +336,7 @@ This solution allows to easily deploy multiple Grafana instances compared to the
| `imageRenderer.enabled` | Enable using a remote rendering service to render PNG images | `false` |
| `imageRenderer.image.registry` | Grafana Image Renderer image registry | `docker.io` |
| `imageRenderer.image.repository` | Grafana Image Renderer image repository | `bitnami/grafana-image-renderer` |
| `imageRenderer.image.tag` | Grafana Image Renderer image tag (immutable tags are recommended) | `3.2.1-debian-10-r36` |
| `imageRenderer.image.tag` | Grafana Image Renderer image tag (immutable tags are recommended) | `3.3.0-debian-10-r5` |
| `imageRenderer.image.pullPolicy` | Grafana Image Renderer image pull policy | `IfNotPresent` |
| `imageRenderer.image.pullSecrets` | Grafana image Renderer pull secrets | `[]` |
| `imageRenderer.replicaCount` | Number of Grafana Image Renderer Pod replicas | `1` |
@@ -382,7 +382,7 @@ This solution allows to easily deploy multiple Grafana instances compared to the
| `volumePermissions.enabled` | Enable init container that changes the owner/group of the PV mount point to `runAsUser:fsGroup` | `false` |
| `volumePermissions.image.registry` | Bitnami Shell image registry | `docker.io` |
| `volumePermissions.image.repository` | Bitnami Shell image repository | `bitnami/bitnami-shell` |
| `volumePermissions.image.tag` | Bitnami Shell image tag (immutable tags are recommended) | `10-debian-10-r255` |
| `volumePermissions.image.tag` | Bitnami Shell image tag (immutable tags are recommended) | `10-debian-10-r260` |
| `volumePermissions.image.pullPolicy` | Bitnami Shell image pull policy | `IfNotPresent` |
| `volumePermissions.image.pullSecrets` | Bitnami Shell image pull secrets | `[]` |
| `volumePermissions.resources.limits` | The resources limits for the init container | `{}` |

View File

@@ -93,7 +93,7 @@ The command removes all the Kubernetes components associated with the chart and
| ------------------------------------ | ----------------------------------------------------------------------------------------- | -------------------- |
| `image.registry` | HAProxy image registry | `docker.io` |
| `image.repository` | HAProxy image repository | `bitnami/haproxy` |
| `image.tag` | HAProxy image tag (immutable tags are recommended) | `2.4.8-debian-10-r0` |
| `image.tag` | HAProxy image tag (immutable tags are recommended) | `2.5.0-debian-10-r0` |
| `image.pullPolicy` | HAProxy image pull policy | `IfNotPresent` |
| `image.pullSecrets` | HAProxy image pull secrets | `[]` |
| `replicaCount` | Number of haproxy replicas to deploy | `1` |

View File

@@ -73,7 +73,7 @@ The command removes all the Kubernetes components associated with the chart and
| --------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | --------------------------- |
| `image.registry` | Logstash image registry | `docker.io` |
| `image.repository` | Logstash image repository | `bitnami/logstash` |
| `image.tag` | Logstash image tag (immutable tags are recommended) | `7.15.2-debian-10-r0` |
| `image.tag` | Logstash image tag (immutable tags are recommended) | `7.15.2-debian-10-r12` |
| `image.pullPolicy` | Logstash image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `image.debug` | Specify if debug logs should be enabled | `false` |
@@ -143,7 +143,7 @@ The command removes all the Kubernetes components associated with the chart and
| `volumePermissions.securityContext.runAsUser` | User ID for the volumePermissions init container | `0` |
| `volumePermissions.image.registry` | Init container volume-permissions image registry | `docker.io` |
| `volumePermissions.image.repository` | Init container volume-permissions image repository | `bitnami/bitnami-shell` |
| `volumePermissions.image.tag` | Init container volume-permissions image tag (immutable tags are recommended) | `10-debian-10-r247` |
| `volumePermissions.image.tag` | Init container volume-permissions image tag (immutable tags are recommended) | `10-debian-10-r259` |
| `volumePermissions.image.pullPolicy` | Init container volume-permissions image pull policy | `IfNotPresent` |
| `volumePermissions.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `volumePermissions.resources.limits` | Init container volume-permissions resource limits | `{}` |
@@ -162,7 +162,7 @@ The command removes all the Kubernetes components associated with the chart and
| `metrics.enabled` | Enable the export of Prometheus metrics | `false` |
| `metrics.image.registry` | Logstash Relay image registry | `docker.io` |
| `metrics.image.repository` | Logstash Relay image repository | `bitnami/logstash-exporter` |
| `metrics.image.tag` | Logstash Relay image tag (immutable tags are recommended) | `7.3.0-debian-10-r348` |
| `metrics.image.tag` | Logstash Relay image tag (immutable tags are recommended) | `7.3.0-debian-10-r360` |
| `metrics.image.pullPolicy` | Logstash Relay image pull policy | `IfNotPresent` |
| `metrics.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `metrics.resources.limits` | The resources limits for the Logstash Prometheus Exporter container | `{}` |

View File

@@ -72,7 +72,7 @@ The command removes all the Kubernetes components associated with the chart and
| -------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------- |
| `image.registry` | Nginx Ingress Controller image registry | `docker.io` |
| `image.repository` | Nginx Ingress Controller image repository | `bitnami/nginx-ingress-controller` |
| `image.tag` | Nginx Ingress Controller image tag (immutable tags are recommended) | `1.0.5-debian-10-r4` |
| `image.tag` | Nginx Ingress Controller image tag (immutable tags are recommended) | `1.1.0-debian-10-r0` |
| `image.pullPolicy` | Nginx Ingress Controller image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `containerPorts` | Controller container ports to open | `{}` |
@@ -179,7 +179,7 @@ The command removes all the Kubernetes components associated with the chart and
| `defaultBackend.hostAliases` | Add deployment host aliases | `[]` |
| `defaultBackend.image.registry` | Default backend image registry | `docker.io` |
| `defaultBackend.image.repository` | Default backend image repository | `bitnami/nginx` |
| `defaultBackend.image.tag` | Default backend image tag (immutable tags are recommended) | `1.21.4-debian-10-r17` |
| `defaultBackend.image.tag` | Default backend image tag (immutable tags are recommended) | `1.21.4-debian-10-r19` |
| `defaultBackend.image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `defaultBackend.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `defaultBackend.extraArgs` | Additional command line arguments to pass to Nginx container | `{}` |

View File

@@ -105,9 +105,9 @@ The command removes all the Kubernetes components associated with the chart and
| `podSecurityContext.enabled` | Enabled NGINX pods' Security Context | `false` |
| `podSecurityContext.fsGroup` | Set NGINX pod's Security Context fsGroup | `1001` |
| `podSecurityContext.sysctls` | sysctl settings of the NGINX pods | `[]` |
| `containerSecurityContext.enabled` | Enabled NGINX containers' Security Context | `false` |
| `containerSecurityContext.runAsUser` | Set NGINX container's Security Context runAsUser | `1001` |
| `containerSecurityContext.runAsNonRoot` | Set NGINX container's Security Context runAsNonRoot | `true` |
| `containerSecurityContext.enabled` | Enabled NGINX containers' Security Context | `false` |
| `containerSecurityContext.runAsUser` | Set NGINX container's Security Context runAsUser | `1001` |
| `containerSecurityContext.runAsNonRoot` | Set NGINX container's Security Context runAsNonRoot | `true` |
| `containerPorts.http` | Sets http port inside NGINX container | `8080` |
| `containerPorts.https` | Sets https port inside NGINX container | `""` |
| `resources.limits` | The resources limits for the NGINX container | `{}` |

View File

@@ -59,20 +59,20 @@ The command removes all the Kubernetes components associated with the chart and
### Common parameters
| Name | Description | Value |
| ------------------- | -------------------------------------------------- | ----------------------------- |
| `kubeVersion` | Override Kubernetes version | `""` |
| `nameOverride` | String to partially override common.names.fullname | `""` |
| `fullnameOverride` | String to fully override common.names.fullname | `""` |
| `commonLabels` | Labels to add to all deployed objects | `{}` |
| `commonAnnotations` | Annotations to add to all deployed objects | `{}` |
| `extraDeploy` | Array of extra objects to deploy with the release | `[]` |
| `image.registry` | Odoo image registry | `docker.io` |
| `image.repository` | Odoo image repository | `bitnami/odoo` |
| `image.tag` | Odoo image tag (immutable tags are recommended) | `15.0.20211010-debian-10-r14` |
| `image.pullPolicy` | Odoo image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Odoo image pull secrets | `[]` |
| `image.debug` | Enable image debug mode | `false` |
| Name | Description | Value |
| ------------------- | -------------------------------------------------- | ---------------------------- |
| `kubeVersion` | Override Kubernetes version | `""` |
| `nameOverride` | String to partially override common.names.fullname | `""` |
| `fullnameOverride` | String to fully override common.names.fullname | `""` |
| `commonLabels` | Labels to add to all deployed objects | `{}` |
| `commonAnnotations` | Annotations to add to all deployed objects | `{}` |
| `extraDeploy` | Array of extra objects to deploy with the release | `[]` |
| `image.registry` | Odoo image registry | `docker.io` |
| `image.repository` | Odoo image repository | `bitnami/odoo` |
| `image.tag` | Odoo image tag (immutable tags are recommended) | `15.0.20211110-debian-10-r0` |
| `image.pullPolicy` | Odoo image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Odoo image pull secrets | `[]` |
| `image.debug` | Enable image debug mode | `false` |
### Odoo Configuration parameters