mirror of
https://github.com/bitnami/charts.git
synced 2026-03-16 14:57:08 +08:00
[bitnami/several] Fix default values and regenerate README (#7024)
* etcd: remove nil values * external-dns: remove nil values * fluentd: remove nil values * ghost: remove nil values * grafana: remove nil values * grafana-operator: remove nil values * grafana-tempo: remove nil values * haproxy: remove nil values * harbor: remove nil values * influxdb: remove nil values * jasperreports: remove nil values * jenkins: remove nil values * joomla: remove nil values * jupyterhub: remove nil values * kafka: remove nil values * keycloak: remove nil values * kiam: remove nil values * kibana: remove nil values * Replace default values of sidecars and initContainers * Uncomment remaining parameters * kiam: change allowedHostPaths to array and regenerate readme * jupyterhub: change extraIngress and extraEgress to array * influxdb: bump chart's patch version * Bump charts' patch versions * kafka: set liveness and readiness probes missing values * logstash: set liveness and readiness probes missing values * logstash: bump chart's patch version * Regenerate READMEs with latest changes from master * Regenerate READMEs with latest changes from master * Bump influxdb and harbor charts patch versions Co-authored-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>
This commit is contained in:
@@ -26,4 +26,4 @@ name: jupyterhub
|
||||
sources:
|
||||
- https://github.com/bitnami/bitnami-docker-jupyterhub
|
||||
- https://github.com/jupyterhub/jupyterhub
|
||||
version: 0.1.12
|
||||
version: 0.1.13
|
||||
|
||||
@@ -54,18 +54,18 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
|
||||
| Name | Description | Value |
|
||||
| ------------------------- | ----------------------------------------------- | ----- |
|
||||
| `global.imageRegistry` | Global Docker image registry | `nil` |
|
||||
| `global.imageRegistry` | Global Docker image registry | `""` |
|
||||
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
|
||||
| `global.storageClass` | Global StorageClass for Persistent Volume(s) | `nil` |
|
||||
| `global.storageClass` | Global StorageClass for Persistent Volume(s) | `""` |
|
||||
|
||||
|
||||
### Common parameters
|
||||
|
||||
| Name | Description | Value |
|
||||
| ------------------- | ----------------------------------------------------------------------------------- | ----- |
|
||||
| `kubeVersion` | Override Kubernetes version | `nil` |
|
||||
| `nameOverride` | String to partially override common.names.fullname (will maintain the release name) | `nil` |
|
||||
| `fullnameOverride` | String to fully override common.names.fullname | `nil` |
|
||||
| `kubeVersion` | Override Kubernetes version | `""` |
|
||||
| `nameOverride` | String to partially override common.names.fullname (will maintain the release name) | `""` |
|
||||
| `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 | `[]` |
|
||||
@@ -77,7 +77,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| ------------------------------------------- | ----------------------------------------------------------------------------------------- | -------------------- |
|
||||
| `hub.image.registry` | Hub image registry | `docker.io` |
|
||||
| `hub.image.repository` | Hub image repository | `bitnami/jupyterhub` |
|
||||
| `hub.image.tag` | Hub image tag (immutabe tags are recommended) | `1.4.1-debian-10-r0` |
|
||||
| `hub.image.tag` | Hub image tag (immutabe tags are recommended) | `1.4.2-debian-10-r0` |
|
||||
| `hub.image.pullPolicy` | Hub image pull policy | `IfNotPresent` |
|
||||
| `hub.image.pullSecrets` | Hub image pull secrets | `[]` |
|
||||
| `hub.startupProbe.enabled` | Enable startupProbe | `true` |
|
||||
@@ -100,17 +100,17 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `hub.readinessProbe.successThreshold` | Success threshold for readinessProbe | `1` |
|
||||
| `hub.baseUrl` | Hub base URL | `/` |
|
||||
| `hub.adminUser` | Hub Dummy authenticator admin user | `user` |
|
||||
| `hub.password` | Hub Dummy authenticator password | `nil` |
|
||||
| `hub.password` | Hub Dummy authenticator password | `""` |
|
||||
| `hub.configuration` | Hub configuration file (to be used by jupyterhub_config.py) | `{}` |
|
||||
| `hub.containerPort` | Hub container port | `8081` |
|
||||
| `hub.existingConfigmap` | Configmap with Hub init scripts (replaces the scripts in templates/hub/configmap.yml) | `nil` |
|
||||
| `hub.existingSecret` | Secret with hub configuration (replaces the hub.configuration value) and proxy token | `nil` |
|
||||
| `hub.existingConfigmap` | Configmap with Hub init scripts (replaces the scripts in templates/hub/configmap.yml) | `""` |
|
||||
| `hub.existingSecret` | Secret with hub configuration (replaces the hub.configuration value) and proxy token | `""` |
|
||||
| `hub.command` | Override Hub default command | `[]` |
|
||||
| `hub.args` | Override Hub default args | `[]` |
|
||||
| `hub.pdb.create` | Deploy Hub PodDisruptionBudget | `false` |
|
||||
| `hub.pdb.minAvailable` | Set minimum available hub instances | `nil` |
|
||||
| `hub.pdb.maxUnavailable` | Set maximum available hub instances | `nil` |
|
||||
| `hub.priorityClassName` | Hub pod priority class name | `nil` |
|
||||
| `hub.pdb.minAvailable` | Set minimum available hub instances | `""` |
|
||||
| `hub.pdb.maxUnavailable` | Set maximum available hub instances | `""` |
|
||||
| `hub.priorityClassName` | Hub pod priority class name | `""` |
|
||||
| `hub.hostAliases` | Add deployment host aliases | `[]` |
|
||||
| `hub.resources.limits` | The resources limits for the container | `{}` |
|
||||
| `hub.resources.requests` | The requested resources for the container | `{}` |
|
||||
@@ -135,12 +135,12 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `hub.customReadinessProbe` | Override default readiness probe | `{}` |
|
||||
| `hub.updateStrategy.type` | Update strategy - only really applicable for deployments with RWO PVs attached | `RollingUpdate` |
|
||||
| `hub.extraEnvVars` | Add extra environment variables to the Hub container | `[]` |
|
||||
| `hub.extraEnvVarsCM` | Name of existing ConfigMap containing extra env vars | `nil` |
|
||||
| `hub.extraEnvVarsSecret` | Name of existing Secret containing extra env vars | `nil` |
|
||||
| `hub.extraEnvVarsCM` | Name of existing ConfigMap containing extra env vars | `""` |
|
||||
| `hub.extraEnvVarsSecret` | Name of existing Secret containing extra env vars | `""` |
|
||||
| `hub.extraVolumes` | Optionally specify extra list of additional volumes for Hub pods | `[]` |
|
||||
| `hub.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for Hub container(s) | `[]` |
|
||||
| `hub.initContainers` | Add additional init containers to the Hub pods | `{}` |
|
||||
| `hub.sidecars` | Add additional sidecar containers to the Hub pod | `{}` |
|
||||
| `hub.initContainers` | Add additional init containers to the Hub pods | `[]` |
|
||||
| `hub.sidecars` | Add additional sidecar containers to the Hub pod | `[]` |
|
||||
|
||||
|
||||
### Hub RBAC parameters
|
||||
@@ -148,7 +148,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| Name | Description | Value |
|
||||
| --------------------------- | ---------------------------------------------------- | ------ |
|
||||
| `hub.serviceAccount.create` | Specifies whether a ServiceAccount should be created | `true` |
|
||||
| `hub.serviceAccount.name` | Override Hub service account name | `nil` |
|
||||
| `hub.serviceAccount.name` | Override Hub service account name | `""` |
|
||||
| `hub.rbac.create` | Specifies whether RBAC resources should be created | `true` |
|
||||
|
||||
|
||||
@@ -159,10 +159,10 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `hub.networkPolicy.enabled` | Deploy Hub network policies | `true` |
|
||||
| `hub.networkPolicy.allowInterspaceAccess` | Allow communication between pods in different namespaces | `true` |
|
||||
| `hub.networkPolicy.extraIngress` | Add extra ingress rules to the NetworkPolicy | `[]` |
|
||||
| `hub.networkPolicy.extraEgress` | Add extra ingress rules to the NetworkPolicy | `{}` |
|
||||
| `hub.networkPolicy.extraEgress` | Add extra ingress rules to the NetworkPolicy | `[]` |
|
||||
| `hub.service.type` | Hub service type | `ClusterIP` |
|
||||
| `hub.service.port` | Hub service HTTP port | `8081` |
|
||||
| `hub.service.loadBalancerIP` | Hub service LoadBalancer IP (optional, cloud specific) | `nil` |
|
||||
| `hub.service.loadBalancerIP` | Hub service LoadBalancer IP (optional, cloud specific) | `""` |
|
||||
| `hub.service.loadBalancerSourceRanges` | loadBalancerIP source ranges for the Service | `[]` |
|
||||
| `hub.service.nodePorts.http` | NodePort for the HTTP endpoint | `""` |
|
||||
| `hub.service.externalTrafficPolicy` | External traffic policy for the service | `Cluster` |
|
||||
@@ -174,7 +174,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| --------------------------------------------- | ----------------------------------------------------------------------------------------- | --------------------------------- |
|
||||
| `proxy.image.registry` | Proxy image registry | `docker.io` |
|
||||
| `proxy.image.repository` | Proxy image repository | `bitnami/configurable-http-proxy` |
|
||||
| `proxy.image.tag` | Proxy image tag (immutable tags are recommended) | `4.4.0-debian-10-r8` |
|
||||
| `proxy.image.tag` | Proxy image tag (immutable tags are recommended) | `4.4.0-debian-10-r40` |
|
||||
| `proxy.image.pullPolicy` | Proxy image pull policy | `IfNotPresent` |
|
||||
| `proxy.image.pullSecrets` | Proxy image pull secrets | `[]` |
|
||||
| `proxy.image.debug` | Activate verbose output | `false` |
|
||||
@@ -198,14 +198,14 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `proxy.readinessProbe.successThreshold` | Success threshold for readinessProbe | `1` |
|
||||
| `proxy.command` | Override Proxy default command | `[]` |
|
||||
| `proxy.args` | Override Proxy default args | `[]` |
|
||||
| `proxy.secretToken` | Proxy secret token (used for communication with the Hub) | `nil` |
|
||||
| `proxy.secretToken` | Proxy secret token (used for communication with the Hub) | `""` |
|
||||
| `proxy.hostAliases` | Add deployment host aliases | `[]` |
|
||||
| `proxy.pdb.create` | Deploy Proxy PodDisruptionBudget | `false` |
|
||||
| `proxy.pdb.minAvailable` | Set minimum available proxy instances | `nil` |
|
||||
| `proxy.pdb.maxUnavailable` | Set maximum available proxy instances | `nil` |
|
||||
| `proxy.pdb.minAvailable` | Set minimum available proxy instances | `""` |
|
||||
| `proxy.pdb.maxUnavailable` | Set maximum available proxy instances | `""` |
|
||||
| `proxy.containerPort.api` | Proxy api container port | `8001` |
|
||||
| `proxy.containerPort.http` | Proxy http container port | `8000` |
|
||||
| `proxy.priorityClassName` | Proxy pod priority class name | `nil` |
|
||||
| `proxy.priorityClassName` | Proxy pod priority class name | `""` |
|
||||
| `proxy.resources.limits` | The resources limits for the container | `{}` |
|
||||
| `proxy.resources.requests` | The requested resources for the container | `{}` |
|
||||
| `proxy.containerSecurityContext.enabled` | Enabled Proxy containers' Security Context | `true` |
|
||||
@@ -229,12 +229,12 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `proxy.customReadinessProbe` | Override default readiness probe | `{}` |
|
||||
| `proxy.updateStrategy.type` | Update strategy - only really applicable for deployments with RWO PVs attached | `RollingUpdate` |
|
||||
| `proxy.extraEnvVars` | Add extra environment variables to the Proxy container | `[]` |
|
||||
| `proxy.extraEnvVarsCM` | Name of existing ConfigMap containing extra env vars | `nil` |
|
||||
| `proxy.extraEnvVarsSecret` | Name of existing Secret containing extra env vars | `nil` |
|
||||
| `proxy.extraEnvVarsCM` | Name of existing ConfigMap containing extra env vars | `""` |
|
||||
| `proxy.extraEnvVarsSecret` | Name of existing Secret containing extra env vars | `""` |
|
||||
| `proxy.extraVolumes` | Optionally specify extra list of additional volumes for Proxy pods | `[]` |
|
||||
| `proxy.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for Proxy container(s) | `[]` |
|
||||
| `proxy.initContainers` | Add additional init containers to the Proxy pods | `{}` |
|
||||
| `proxy.sidecars` | Add additional sidecar containers to the Proxy pod | `{}` |
|
||||
| `proxy.initContainers` | Add additional init containers to the Proxy pods | `[]` |
|
||||
| `proxy.sidecars` | Add additional sidecar containers to the Proxy pod | `[]` |
|
||||
|
||||
|
||||
### Proxy Traffic Exposure Parameters
|
||||
@@ -243,17 +243,17 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| ----------------------------------------------- | -------------------------------------------------------------------------------------------- | ------------------------ |
|
||||
| `proxy.networkPolicy.enabled` | Deploy Proxy network policies | `true` |
|
||||
| `proxy.networkPolicy.allowInterspaceAccess` | Allow communication between pods in different namespaces | `true` |
|
||||
| `proxy.networkPolicy.extraIngress` | Add extra ingress rules to the NetworkPolicy | `{}` |
|
||||
| `proxy.networkPolicy.extraEgress` | Add extra ingress rules to the NetworkPolicy | `nil` |
|
||||
| `proxy.networkPolicy.extraIngress` | Add extra ingress rules to the NetworkPolicy | `[]` |
|
||||
| `proxy.networkPolicy.extraEgress` | Add extra egress rules to the NetworkPolicy | `[]` |
|
||||
| `proxy.service.api.type` | API service type | `ClusterIP` |
|
||||
| `proxy.service.api.port` | API service port | `8001` |
|
||||
| `proxy.service.api.loadBalancerIP` | API service LoadBalancer IP (optional, cloud specific) | `nil` |
|
||||
| `proxy.service.api.loadBalancerIP` | API service LoadBalancer IP (optional, cloud specific) | `""` |
|
||||
| `proxy.service.api.loadBalancerSourceRanges` | loadBalancerIP source ranges for the Service | `[]` |
|
||||
| `proxy.service.api.nodePorts.http` | NodePort for the HTTP endpoint | `""` |
|
||||
| `proxy.service.api.externalTrafficPolicy` | External traffic policy for the service | `Cluster` |
|
||||
| `proxy.service.public.type` | Public service type | `LoadBalancer` |
|
||||
| `proxy.service.public.port` | Public service port | `80` |
|
||||
| `proxy.service.public.loadBalancerIP` | Public service LoadBalancer IP (optional, cloud specific) | `nil` |
|
||||
| `proxy.service.public.loadBalancerIP` | Public service LoadBalancer IP (optional, cloud specific) | `""` |
|
||||
| `proxy.service.public.loadBalancerSourceRanges` | loadBalancerIP source ranges for the Service | `[]` |
|
||||
| `proxy.service.public.nodePorts.http` | NodePort for the HTTP endpoint | `""` |
|
||||
| `proxy.service.public.externalTrafficPolicy` | External traffic policy for the service | `Cluster` |
|
||||
@@ -302,12 +302,12 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `imagePuller.customReadinessProbe` | Override default readiness probe | `{}` |
|
||||
| `imagePuller.updateStrategy.type` | Update strategy - only really applicable for deployments with RWO PVs attached | `RollingUpdate` |
|
||||
| `imagePuller.extraEnvVars` | Add extra environment variables to the ImagePuller container | `[]` |
|
||||
| `imagePuller.extraEnvVarsCM` | Name of existing ConfigMap containing extra env vars | `nil` |
|
||||
| `imagePuller.extraEnvVarsSecret` | Name of existing Secret containing extra env vars | `nil` |
|
||||
| `imagePuller.extraEnvVarsCM` | Name of existing ConfigMap containing extra env vars | `""` |
|
||||
| `imagePuller.extraEnvVarsSecret` | Name of existing Secret containing extra env vars | `""` |
|
||||
| `imagePuller.extraVolumes` | Optionally specify extra list of additional volumes for ImagePuller pods | `[]` |
|
||||
| `imagePuller.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for ImagePuller container(s) | `[]` |
|
||||
| `imagePuller.initContainers` | Add additional init containers to the ImagePuller pods | `{}` |
|
||||
| `imagePuller.sidecars` | Add additional sidecar containers to the ImagePuller pod | `{}` |
|
||||
| `imagePuller.initContainers` | Add additional init containers to the ImagePuller pods | `[]` |
|
||||
| `imagePuller.sidecars` | Add additional sidecar containers to the ImagePuller pod | `[]` |
|
||||
|
||||
|
||||
### Singleuser deployment parameters
|
||||
@@ -316,7 +316,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| ----------------------------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------ |
|
||||
| `singleuser.image.registry` | Single User image registry | `docker.io` |
|
||||
| `singleuser.image.repository` | Single User image repository | `bitnami/jupyter-base-notebook` |
|
||||
| `singleuser.image.tag` | Single User image tag (immutabe tags are recommended) | `1.4.1-debian-10-r18` |
|
||||
| `singleuser.image.tag` | Single User image tag (immutabe tags are recommended) | `1.4.1-debian-10-r65` |
|
||||
| `singleuser.image.pullPolicy` | Single User image pull policy | `IfNotPresent` |
|
||||
| `singleuser.image.pullSecrets` | Single User image pull secrets | `[]` |
|
||||
| `singleuser.command` | Override Single User default command | `[]` |
|
||||
@@ -332,13 +332,13 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `singleuser.nodeSelector` | Node labels for pod assignment. Evaluated as a template. | `{}` |
|
||||
| `singleuser.podLabels` | Extra labels for Single User pods | `{}` |
|
||||
| `singleuser.podAnnotations` | Annotations for Single User pods | `{}` |
|
||||
| `singleuser.priorityClassName` | Single User pod priority class name | `nil` |
|
||||
| `singleuser.priorityClassName` | Single User pod priority class name | `""` |
|
||||
| `singleuser.lifecycleHooks` | Add lifecycle hooks to the Single User deployment to automate configuration before or after startup | `{}` |
|
||||
| `singleuser.extraEnvVars` | Add extra environment variables to the Single User container | `[]` |
|
||||
| `singleuser.extraVolumes` | Optionally specify extra list of additional volumes for Single User pods | `[]` |
|
||||
| `singleuser.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for Single User container(s) | `[]` |
|
||||
| `singleuser.initContainers` | Add additional init containers to the Single User pods | `{}` |
|
||||
| `singleuser.sidecars` | Add additional sidecar containers to the Single User pod | `{}` |
|
||||
| `singleuser.initContainers` | Add additional init containers to the Single User pods | `[]` |
|
||||
| `singleuser.sidecars` | Add additional sidecar containers to the Single User pod | `[]` |
|
||||
|
||||
|
||||
### Single User RBAC parameters
|
||||
@@ -346,7 +346,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| Name | Description | Value |
|
||||
| ---------------------------------- | ---------------------------------------------------- | ------ |
|
||||
| `singleuser.serviceAccount.create` | Specifies whether a ServiceAccount should be created | `true` |
|
||||
| `singleuser.serviceAccount.name` | Override Single User service account name | `nil` |
|
||||
| `singleuser.serviceAccount.name` | Override Single User service account name | `""` |
|
||||
|
||||
|
||||
### Single User Persistence parameters
|
||||
@@ -366,8 +366,8 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `singleuser.networkPolicy.enabled` | Deploy Single User network policies | `true` |
|
||||
| `singleuser.networkPolicy.allowInterspaceAccess` | Allow communication between pods in different namespaces | `true` |
|
||||
| `singleuser.networkPolicy.allowCloudMetadataAccess` | Allow Single User pods to access Cloud Metada endpoints | `false` |
|
||||
| `singleuser.networkPolicy.extraIngress` | Add extra ingress rules to the NetworkPolicy | `nil` |
|
||||
| `singleuser.networkPolicy.extraEgress` | Add extra ingress rules to the NetworkPolicy | `nil` |
|
||||
| `singleuser.networkPolicy.extraIngress` | Add extra ingress rules to the NetworkPolicy | `[]` |
|
||||
| `singleuser.networkPolicy.extraEgress` | Add extra egress rules to the NetworkPolicy | `[]` |
|
||||
|
||||
|
||||
### Auxiliary image parameters
|
||||
@@ -376,7 +376,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| ---------------------------- | --------------------------------------------------- | ----------------------- |
|
||||
| `auxiliaryImage.registry` | Auxiliary image registry | `docker.io` |
|
||||
| `auxiliaryImage.repository` | Auxiliary image repository | `bitnami/bitnami-shell` |
|
||||
| `auxiliaryImage.tag` | Auxiliary image tag (immutabe tags are recommended) | `10-debian-10-r101` |
|
||||
| `auxiliaryImage.tag` | Auxiliary image tag (immutabe tags are recommended) | `10-debian-10-r134` |
|
||||
| `auxiliaryImage.pullPolicy` | Auxiliary image pull policy | `Always` |
|
||||
| `auxiliaryImage.pullSecrets` | Auxiliary image pull secrets | `[]` |
|
||||
|
||||
@@ -385,7 +385,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
|
||||
| Name | Description | Value |
|
||||
| --------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------ |
|
||||
| `externalDatabase.host` | Host of an external PostgreSQL instance to connect (only if postgresql.enabled=false) | `nil` |
|
||||
| `externalDatabase.host` | Host of an external PostgreSQL instance to connect (only if postgresql.enabled=false) | `""` |
|
||||
| `externalDatabase.user` | User of an external PostgreSQL instance to connect (only if postgresql.enabled=false) | `postgres` |
|
||||
| `externalDatabase.password` | Password of an external PostgreSQL instance to connect (only if postgresql.enabled=false) | `""` |
|
||||
| `externalDatabase.existingSecret` | Secret containing the password of an external PostgreSQL instance to connect (only if postgresql.enabled=false) | `""` |
|
||||
@@ -398,15 +398,15 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| Name | Description | Value |
|
||||
| -------------------------------------- | ---------------------------------------------------------------------------------- | -------------------- |
|
||||
| `postgresql.enabled` | Deploy PostgreSQL subchart | `true` |
|
||||
| `postgresql.nameOverride` | Override name of the PostgreSQL chart | `nil` |
|
||||
| `postgresql.existingSecret` | Existing secret containing the password of the PostgreSQL chart | `nil` |
|
||||
| `postgresql.nameOverride` | Override name of the PostgreSQL chart | `""` |
|
||||
| `postgresql.existingSecret` | Existing secret containing the password of the PostgreSQL chart | `""` |
|
||||
| `postgresql.postgresqlPassword` | Password for the postgres user of the PostgreSQL chart (auto-generated if not set) | `""` |
|
||||
| `postgresql.postgresqlUsername` | Username to create when deploying the PostgreSQL chart | `bn_jupyterhub` |
|
||||
| `postgresql.postgresqlDatabase` | Database to create when deploying the PostgreSQL chart | `bitnami_jupyterhub` |
|
||||
| `postgresql.service.port` | PostgreSQL service port | `5432` |
|
||||
| `postgresql.persistence.enabled` | Use PVCs when deploying the PostgreSQL chart | `true` |
|
||||
| `postgresql.persistence.existingClaim` | Use an existing PVC when deploying the PostgreSQL chart | `nil` |
|
||||
| `postgresql.persistence.storageClass` | storageClass of the created PVCs | `nil` |
|
||||
| `postgresql.persistence.existingClaim` | Use an existing PVC when deploying the PostgreSQL chart | `""` |
|
||||
| `postgresql.persistence.storageClass` | storageClass of the created PVCs | `""` |
|
||||
| `postgresql.persistence.accessMode` | Access mode of the created PVCs | `ReadWriteOnce` |
|
||||
| `postgresql.persistence.size` | Size of the created PVCs | `8Gi` |
|
||||
|
||||
|
||||
@@ -8,25 +8,25 @@
|
||||
## @param global.storageClass Global StorageClass for Persistent Volume(s)
|
||||
##
|
||||
global:
|
||||
imageRegistry:
|
||||
imageRegistry: ""
|
||||
## E.g.
|
||||
## imagePullSecrets:
|
||||
## - myRegistryKeySecretName
|
||||
##
|
||||
imagePullSecrets: []
|
||||
storageClass:
|
||||
storageClass: ""
|
||||
|
||||
## @section Common parameters
|
||||
|
||||
## @param kubeVersion Override Kubernetes version
|
||||
##
|
||||
kubeVersion:
|
||||
kubeVersion: ""
|
||||
## @param nameOverride String to partially override common.names.fullname (will maintain the release name)
|
||||
##
|
||||
nameOverride:
|
||||
nameOverride: ""
|
||||
## @param fullnameOverride String to fully override common.names.fullname
|
||||
##
|
||||
fullnameOverride:
|
||||
fullnameOverride: ""
|
||||
## @param commonLabels Labels to add to all deployed objects
|
||||
##
|
||||
commonLabels: {}
|
||||
@@ -122,7 +122,7 @@ hub:
|
||||
adminUser: user
|
||||
## @param hub.password Hub Dummy authenticator password
|
||||
##
|
||||
password:
|
||||
password: ""
|
||||
## Configuration file passed to the hub. This will be used by the jupyterhub_config.py file
|
||||
## This configuration uses the values for the `singleuser` section. In the upstream chart the
|
||||
## values.yaml file is mounted in the hub container. This is chart, we tried to separate both
|
||||
@@ -272,10 +272,10 @@ hub:
|
||||
containerPort: 8081
|
||||
## @param hub.existingConfigmap Configmap with Hub init scripts (replaces the scripts in templates/hub/configmap.yml)
|
||||
##
|
||||
existingConfigmap:
|
||||
existingConfigmap: ""
|
||||
## @param hub.existingSecret Secret with hub configuration (replaces the hub.configuration value) and proxy token
|
||||
##
|
||||
existingSecret:
|
||||
existingSecret: ""
|
||||
## @param hub.command Override Hub default command
|
||||
##
|
||||
command: []
|
||||
@@ -288,13 +288,13 @@ hub:
|
||||
create: false
|
||||
## @param hub.pdb.minAvailable Set minimum available hub instances
|
||||
##
|
||||
minAvailable:
|
||||
minAvailable: ""
|
||||
## @param hub.pdb.maxUnavailable Set maximum available hub instances
|
||||
##
|
||||
maxUnavailable:
|
||||
maxUnavailable: ""
|
||||
## @param hub.priorityClassName Hub pod priority class name
|
||||
##
|
||||
priorityClassName:
|
||||
priorityClassName: ""
|
||||
## @param hub.hostAliases Add deployment host aliases
|
||||
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
|
||||
##
|
||||
@@ -414,10 +414,10 @@ hub:
|
||||
extraEnvVars: []
|
||||
## @param hub.extraEnvVarsCM Name of existing ConfigMap containing extra env vars
|
||||
##
|
||||
extraEnvVarsCM:
|
||||
extraEnvVarsCM: ""
|
||||
## @param hub.extraEnvVarsSecret Name of existing Secret containing extra env vars
|
||||
##
|
||||
extraEnvVarsSecret:
|
||||
extraEnvVarsSecret: ""
|
||||
## @param hub.extraVolumes Optionally specify extra list of additional volumes for Hub pods
|
||||
##
|
||||
extraVolumes: []
|
||||
@@ -434,7 +434,7 @@ hub:
|
||||
## - name: portname
|
||||
## containerPort: 1234
|
||||
##
|
||||
initContainers: {}
|
||||
initContainers: []
|
||||
## @param hub.sidecars Add additional sidecar containers to the Hub pod
|
||||
## Example:
|
||||
## sidecars:
|
||||
@@ -445,7 +445,7 @@ hub:
|
||||
## - name: portname
|
||||
## containerPort: 1234
|
||||
##
|
||||
sidecars: {}
|
||||
sidecars: []
|
||||
|
||||
## @section Hub RBAC parameters
|
||||
|
||||
@@ -458,7 +458,7 @@ hub:
|
||||
## @param hub.serviceAccount.name Override Hub service account name
|
||||
## If not set and create is true, a name is generated using the fullname template
|
||||
##
|
||||
name:
|
||||
name: ""
|
||||
## RBAC resources
|
||||
##
|
||||
rbac:
|
||||
@@ -480,9 +480,9 @@ hub:
|
||||
## @param hub.networkPolicy.extraIngress Add extra ingress rules to the NetworkPolicy
|
||||
##
|
||||
extraIngress: []
|
||||
## @param hub.networkPolicy.extraEgress [object] Add extra ingress rules to the NetworkPolicy
|
||||
## @param hub.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy
|
||||
##
|
||||
extraEgress: |
|
||||
extraEgress:
|
||||
## Hub --> Any IP:PORT
|
||||
##
|
||||
- to:
|
||||
@@ -495,7 +495,7 @@ hub:
|
||||
## @param hub.service.loadBalancerIP Hub service LoadBalancer IP (optional, cloud specific)
|
||||
## ref: http://kubernetes.io/docs/user-guide/services/#type-loadbalancer
|
||||
##
|
||||
loadBalancerIP:
|
||||
loadBalancerIP: ""
|
||||
## @param hub.service.loadBalancerSourceRanges loadBalancerIP source ranges for the Service
|
||||
##
|
||||
loadBalancerSourceRanges: []
|
||||
@@ -598,7 +598,7 @@ proxy:
|
||||
args: []
|
||||
## @param proxy.secretToken Proxy secret token (used for communication with the Hub)
|
||||
##
|
||||
secretToken:
|
||||
secretToken: ""
|
||||
## Deployment pod host aliases
|
||||
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
|
||||
## @param proxy.hostAliases Add deployment host aliases
|
||||
@@ -612,10 +612,10 @@ proxy:
|
||||
create: false
|
||||
## @param proxy.pdb.minAvailable Set minimum available proxy instances
|
||||
##
|
||||
minAvailable:
|
||||
minAvailable: ""
|
||||
## @param proxy.pdb.maxUnavailable Set maximum available proxy instances
|
||||
##
|
||||
maxUnavailable:
|
||||
maxUnavailable: ""
|
||||
## Container ports
|
||||
##
|
||||
containerPort:
|
||||
@@ -627,7 +627,7 @@ proxy:
|
||||
http: 8000
|
||||
## @param proxy.priorityClassName Proxy pod priority class name
|
||||
##
|
||||
priorityClassName:
|
||||
priorityClassName: ""
|
||||
## proxy 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
|
||||
@@ -741,10 +741,10 @@ proxy:
|
||||
extraEnvVars: []
|
||||
## @param proxy.extraEnvVarsCM Name of existing ConfigMap containing extra env vars
|
||||
##
|
||||
extraEnvVarsCM:
|
||||
extraEnvVarsCM: ""
|
||||
## @param proxy.extraEnvVarsSecret Name of existing Secret containing extra env vars
|
||||
##
|
||||
extraEnvVarsSecret:
|
||||
extraEnvVarsSecret: ""
|
||||
## @param proxy.extraVolumes Optionally specify extra list of additional volumes for Proxy pods
|
||||
##
|
||||
extraVolumes: []
|
||||
@@ -761,7 +761,7 @@ proxy:
|
||||
## - name: portname
|
||||
## containerPort: 1234
|
||||
##
|
||||
initContainers: {}
|
||||
initContainers: []
|
||||
## @param proxy.sidecars Add additional sidecar containers to the Proxy pod
|
||||
## Example:
|
||||
## sidecars:
|
||||
@@ -772,7 +772,7 @@ proxy:
|
||||
## - name: portname
|
||||
## containerPort: 1234
|
||||
##
|
||||
sidecars: {}
|
||||
sidecars: []
|
||||
|
||||
## @section Proxy Traffic Exposure Parameters
|
||||
|
||||
@@ -785,16 +785,16 @@ proxy:
|
||||
## @param proxy.networkPolicy.allowInterspaceAccess Allow communication between pods in different namespaces
|
||||
##
|
||||
allowInterspaceAccess: true
|
||||
## @param proxy.networkPolicy.extraIngress [object] Add extra ingress rules to the NetworkPolicy
|
||||
## @param proxy.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy
|
||||
##
|
||||
extraIngress: |
|
||||
extraIngress:
|
||||
## Any IP --> Proxy
|
||||
##
|
||||
- ports:
|
||||
- port: {{ .Values.proxy.containerPort.http }}
|
||||
## @param proxy.networkPolicy.extraEgress Add extra ingress rules to the NetworkPolicy
|
||||
- port: "{{ .Values.proxy.containerPort.http }}"
|
||||
## @param proxy.networkPolicy.extraEgress Add extra egress rules to the NetworkPolicy
|
||||
##
|
||||
extraEgress:
|
||||
extraEgress: []
|
||||
service:
|
||||
api:
|
||||
## @param proxy.service.api.type API service type
|
||||
@@ -806,7 +806,7 @@ proxy:
|
||||
## @param proxy.service.api.loadBalancerIP API service LoadBalancer IP (optional, cloud specific)
|
||||
## ref: http://kubernetes.io/docs/user-guide/services/#type-loadbalancer
|
||||
##
|
||||
loadBalancerIP:
|
||||
loadBalancerIP: ""
|
||||
## @param proxy.service.api.loadBalancerSourceRanges loadBalancerIP source ranges for the Service
|
||||
##
|
||||
loadBalancerSourceRanges: []
|
||||
@@ -833,7 +833,7 @@ proxy:
|
||||
## @param proxy.service.public.loadBalancerIP Public service LoadBalancer IP (optional, cloud specific)
|
||||
## ref: http://kubernetes.io/docs/user-guide/services/#type-loadbalancer
|
||||
##
|
||||
loadBalancerIP:
|
||||
loadBalancerIP: ""
|
||||
## @param proxy.service.public.loadBalancerSourceRanges loadBalancerIP source ranges for the Service
|
||||
##
|
||||
loadBalancerSourceRanges: []
|
||||
@@ -1050,10 +1050,10 @@ imagePuller:
|
||||
extraEnvVars: []
|
||||
## @param imagePuller.extraEnvVarsCM Name of existing ConfigMap containing extra env vars
|
||||
##
|
||||
extraEnvVarsCM:
|
||||
extraEnvVarsCM: ""
|
||||
## @param imagePuller.extraEnvVarsSecret Name of existing Secret containing extra env vars
|
||||
##
|
||||
extraEnvVarsSecret:
|
||||
extraEnvVarsSecret: ""
|
||||
## @param imagePuller.extraVolumes Optionally specify extra list of additional volumes for ImagePuller pods
|
||||
##
|
||||
extraVolumes: []
|
||||
@@ -1070,7 +1070,7 @@ imagePuller:
|
||||
## - name: portname
|
||||
## containerPort: 1234
|
||||
##
|
||||
initContainers: {}
|
||||
initContainers: []
|
||||
## @param imagePuller.sidecars Add additional sidecar containers to the ImagePuller pod
|
||||
## Example:
|
||||
## sidecars:
|
||||
@@ -1081,7 +1081,7 @@ imagePuller:
|
||||
## - name: portname
|
||||
## containerPort: 1234
|
||||
##
|
||||
sidecars: {}
|
||||
sidecars: []
|
||||
|
||||
## @section Singleuser deployment parameters
|
||||
|
||||
@@ -1178,7 +1178,7 @@ singleuser:
|
||||
## @param singleuser.priorityClassName Single User pod priority class name
|
||||
## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
|
||||
##
|
||||
priorityClassName:
|
||||
priorityClassName: ""
|
||||
## @param singleuser.lifecycleHooks Add lifecycle hooks to the Single User deployment to automate configuration before or after startup
|
||||
##
|
||||
lifecycleHooks: {}
|
||||
@@ -1205,7 +1205,7 @@ singleuser:
|
||||
## - name: portname
|
||||
## containerPort: 1234
|
||||
##
|
||||
initContainers: {}
|
||||
initContainers: []
|
||||
## @param singleuser.sidecars Add additional sidecar containers to the Single User pod
|
||||
## Example:
|
||||
## sidecars:
|
||||
@@ -1216,7 +1216,7 @@ singleuser:
|
||||
## - name: portname
|
||||
## containerPort: 1234
|
||||
##
|
||||
sidecars: {}
|
||||
sidecars: []
|
||||
|
||||
## @section Single User RBAC parameters
|
||||
|
||||
@@ -1229,7 +1229,7 @@ singleuser:
|
||||
## @param singleuser.serviceAccount.name Override Single User service account name
|
||||
## If not set and create is true, a name is generated using the fullname template
|
||||
##
|
||||
name:
|
||||
name: ""
|
||||
|
||||
## @section Single User Persistence parameters
|
||||
|
||||
@@ -1273,10 +1273,10 @@ singleuser:
|
||||
allowCloudMetadataAccess: false
|
||||
## @param singleuser.networkPolicy.extraIngress Add extra ingress rules to the NetworkPolicy
|
||||
##
|
||||
extraIngress:
|
||||
## @param singleuser.networkPolicy.extraEgress Add extra ingress rules to the NetworkPolicy
|
||||
extraIngress: []
|
||||
## @param singleuser.networkPolicy.extraEgress Add extra egress rules to the NetworkPolicy
|
||||
##
|
||||
extraEgress:
|
||||
extraEgress: []
|
||||
|
||||
## @section Auxiliary image parameters
|
||||
|
||||
@@ -1308,7 +1308,7 @@ auxiliaryImage:
|
||||
externalDatabase:
|
||||
## @param externalDatabase.host Host of an external PostgreSQL instance to connect (only if postgresql.enabled=false)
|
||||
##
|
||||
host:
|
||||
host: ""
|
||||
## @param externalDatabase.user User of an external PostgreSQL instance to connect (only if postgresql.enabled=false)
|
||||
##
|
||||
user: postgres
|
||||
@@ -1337,14 +1337,14 @@ postgresql:
|
||||
enabled: true
|
||||
## @param postgresql.nameOverride Override name of the PostgreSQL chart
|
||||
##
|
||||
nameOverride:
|
||||
nameOverride: ""
|
||||
## @param postgresql.existingSecret Existing secret containing the password of the PostgreSQL chart
|
||||
##
|
||||
existingSecret:
|
||||
existingSecret: ""
|
||||
## @param postgresql.postgresqlPassword Password for the postgres user of the PostgreSQL chart (auto-generated if not set)
|
||||
## ref: https://hub.docker.com/_/postgres/
|
||||
##
|
||||
postgresqlPassword: ''
|
||||
postgresqlPassword: ""
|
||||
## @param postgresql.postgresqlUsername Username to create when deploying the PostgreSQL chart
|
||||
##
|
||||
postgresqlUsername: bn_jupyterhub
|
||||
@@ -1366,7 +1366,7 @@ postgresql:
|
||||
enabled: true
|
||||
## @param postgresql.persistence.existingClaim Use an existing PVC when deploying the PostgreSQL chart
|
||||
##
|
||||
existingClaim:
|
||||
existingClaim: ""
|
||||
## @param postgresql.persistence.storageClass storageClass of the created PVCs
|
||||
## postgresql data Persistent Volume Storage Class
|
||||
## If defined, storageClassName: <storageClass>
|
||||
@@ -1375,7 +1375,7 @@ postgresql:
|
||||
## set, choosing the default provisioner. (gp2 on AWS, standard on
|
||||
## GKE, AWS & OpenStack)
|
||||
##
|
||||
storageClass:
|
||||
storageClass: ""
|
||||
## @param postgresql.persistence.accessMode Access mode of the created PVCs
|
||||
##
|
||||
accessMode: ReadWriteOnce
|
||||
|
||||
Reference in New Issue
Block a user