File tree Expand file tree Collapse file tree 4 files changed +10
-1
lines changed
Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -33,4 +33,4 @@ maintainers:
3333name : pytorch
3434sources :
3535- https://github.com/bitnami/charts/tree/main/bitnami/pytorch
36- version : 3.7 .0
36+ version : 3.8 .0
Original file line number Diff line number Diff line change @@ -186,6 +186,7 @@ The command removes all the Kubernetes components associated with the chart and
186186| ` service.headless.annotations ` | Annotations for the headless service. | ` {} ` |
187187| ` networkPolicy.enabled ` | Specifies whether a NetworkPolicy should be created | ` true ` |
188188| ` networkPolicy.allowExternal ` | Don't require server label for connections | ` true ` |
189+ | ` networkPolicy.allowExternalEgress ` | Allow the pod to access any range of port and all destinations. | ` true ` |
189190| ` networkPolicy.extraIngress ` | Add extra ingress rules to the NetworkPolice | ` [] ` |
190191| ` networkPolicy.extraEgress ` | Add extra ingress rules to the NetworkPolicy | ` [] ` |
191192| ` networkPolicy.ingressNSMatchLabels ` | Labels to match to allow traffic from other namespaces | ` {} ` |
Original file line number Diff line number Diff line change 2020 policyTypes :
2121 - Ingress
2222 - Egress
23+ {{- if .Values.networkPolicy.allowExternalEgress }}
24+ egress :
25+ - {}
26+ {{- else }}
2327 egress :
2428 # Allow dns resolution
2529 - ports :
4145 {{- if .Values.networkPolicy.extraEgress }}
4246 {{- include "common.tplvalues.render" ( dict "value" .Values.rts.networkPolicy.extraEgress "context" $ ) | nindent 4 }}
4347 {{- end }}
48+ {{- end }}
4449 ingress :
4550 # Allow inbound connections
4651 - ports :
Original file line number Diff line number Diff line change @@ -477,6 +477,9 @@ networkPolicy:
477477 # # (with the correct destination port).
478478 # #
479479 allowExternal : true
480+ # # @param networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations.
481+ # #
482+ allowExternalEgress : true
480483 # # @param networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolice
481484 # # e.g:
482485 # # extraIngress:
You can’t perform that action at this time.
0 commit comments