diff --git a/bitnami/jupyterhub/Chart.yaml b/bitnami/jupyterhub/Chart.yaml index 20d9428790..b47fc11983 100644 --- a/bitnami/jupyterhub/Chart.yaml +++ b/bitnami/jupyterhub/Chart.yaml @@ -26,4 +26,4 @@ name: jupyterhub sources: - https://github.com/bitnami/bitnami-docker-jupyterhub - https://github.com/jupyterhub/jupyterhub -version: 0.1.13 +version: 0.1.14 diff --git a/bitnami/jupyterhub/README.md b/bitnami/jupyterhub/README.md index 0aa93a9731..7f4e7e0782 100644 --- a/bitnami/jupyterhub/README.md +++ b/bitnami/jupyterhub/README.md @@ -158,8 +158,8 @@ 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.extraIngress` | 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) | `""` | @@ -243,8 +243,8 @@ 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 egress rules to the NetworkPolicy | `[]` | +| `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) | `""` | @@ -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 | `[]` | -| `singleuser.networkPolicy.extraEgress` | Add extra egress rules to the NetworkPolicy | `[]` | +| `singleuser.networkPolicy.extraIngress` | Add extra ingress rules to the NetworkPolicy | `""` | +| `singleuser.networkPolicy.extraEgress` | Add extra egress rules to the NetworkPolicy | `""` | ### Auxiliary image parameters diff --git a/bitnami/jupyterhub/values.yaml b/bitnami/jupyterhub/values.yaml index 86ba048efa..3edb064b26 100644 --- a/bitnami/jupyterhub/values.yaml +++ b/bitnami/jupyterhub/values.yaml @@ -479,10 +479,10 @@ hub: allowInterspaceAccess: true ## @param hub.networkPolicy.extraIngress Add extra ingress rules to the NetworkPolicy ## - extraIngress: [] - ## @param hub.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy + extraIngress: "" + ## @param hub.networkPolicy.extraEgress [string] Add extra ingress rules to the NetworkPolicy ## - extraEgress: + extraEgress: | ## Hub --> Any IP:PORT ## - to: @@ -785,16 +785,16 @@ proxy: ## @param proxy.networkPolicy.allowInterspaceAccess Allow communication between pods in different namespaces ## allowInterspaceAccess: true - ## @param proxy.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy + ## @param proxy.networkPolicy.extraIngress [string] Add extra ingress rules to the NetworkPolicy ## - extraIngress: + extraIngress: | ## Any IP --> Proxy ## - ports: - - port: "{{ .Values.proxy.containerPort.http }}" + - 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 @@ -1273,10 +1273,10 @@ singleuser: allowCloudMetadataAccess: false ## @param singleuser.networkPolicy.extraIngress Add extra ingress rules to the NetworkPolicy ## - extraIngress: [] + extraIngress: "" ## @param singleuser.networkPolicy.extraEgress Add extra egress rules to the NetworkPolicy ## - extraEgress: [] + extraEgress: "" ## @section Auxiliary image parameters