From cfb85065978de0a6d806d69af57c62ba3b34a980 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Rodr=C3=ADguez=20Hern=C3=A1ndez?= Date: Thu, 29 Jul 2021 11:47:15 +0200 Subject: [PATCH] [bitnami/jupyterhub] Fix default value for extraIngress/extraEgress (#7091) * [bitnami/jupyterhub] Fix default value for extraIngress/extraEgress * Change objexts by string --- bitnami/jupyterhub/Chart.yaml | 2 +- bitnami/jupyterhub/README.md | 12 ++++++------ bitnami/jupyterhub/values.yaml | 18 +++++++++--------- 3 files changed, 16 insertions(+), 16 deletions(-) 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