mirror of
https://github.com/bitnami/charts.git
synced 2026-03-11 07:17:45 +08:00
[bitnami/jupyterhub] Fix default value for extraIngress/extraEgress (#7091)
* [bitnami/jupyterhub] Fix default value for extraIngress/extraEgress * Change objexts by string
This commit is contained in:
committed by
GitHub
parent
a8f1b62b77
commit
cfb8506597
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user