Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit 7c06e3f

Browse files
committed
tensorflow network policy
1 parent 9eb2b7f commit 7c06e3f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

charts/tensorflow/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ type: application
2424
# This is the chart version. This version number should be incremented each time you make changes
2525
# to the chart and its templates, including the app version.
2626
# Versions are expected to follow Semantic Versioning (https://semver.org/)
27-
version: 4.6.1
27+
version: 4.7.0
2828

2929
# This is the version number of the application being deployed. This version number should be
3030
# incremented each time you make changes to the application. Versions are not expected to

charts/tensorflow/templates/networkpolicy-ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- if .Values.security.networkPolicy.enable -}}
1+
{{- if .Values.security.networkPolicy.enabled -}}
22
{{- if .Values.ingress.enabled -}}
33
kind: NetworkPolicy
44
apiVersion: networking.k8s.io/v1

charts/tensorflow/templates/networkpolicy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- if .Values.security.networkPolicy.enable -}}
1+
{{- if .Values.security.networkPolicy.enabled -}}
22
kind: NetworkPolicy
33
apiVersion: networking.k8s.io/v1
44
metadata:

charts/tensorflow/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@
210210
"type": "object",
211211
"description": "Define access policy to the service",
212212
"properties": {
213-
"enable": {
213+
"enabled": {
214214
"type": "boolean",
215215
"title": "Enable network policy",
216216
"description": "Only pod from the same namespace will be allowed",

charts/tensorflow/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ service:
1212
security:
1313
password: "changeme"
1414
networkPolicy:
15-
enable: false
15+
enabled: false
1616
from:
1717
- ipBlock:
1818
cidr: 10.233.103.0/32

0 commit comments

Comments
 (0)