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

Commit 34cf74d

Browse files
committed
vscode
1 parent 1d549d5 commit 34cf74d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

charts/vscode/Chart.yaml

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

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

charts/vscode/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/vscode/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/vscode/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
"type": "object",
196196
"description": "Define access policy to the service",
197197
"properties": {
198-
"enable": {
198+
"enabled": {
199199
"type": "boolean",
200200
"title": "Enable network policy",
201201
"description": "Only pod from the same namespace will be allowed",

charts/vscode/values.yaml

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

0 commit comments

Comments
 (0)