Skip to content

Commit

Permalink
docker-plain: allow additionalProperties; make use of .Values.service…
Browse files Browse the repository at this point in the history
….enabled
  • Loading branch information
faust2199 committed Nov 28, 2024
1 parent 167397b commit fe5fa7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docker-plain/files/chart/templates/service.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if .Values.service.enabled -}}
apiVersion: v1
kind: Service
metadata:
Expand All @@ -13,3 +14,4 @@ spec:
name: http
selector:
{{- include "chart.selectorLabels" . | nindent 4 }}
{{- end }}
4 changes: 2 additions & 2 deletions docker-plain/files/chart/values.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"replicaCount": {
"description": "Number of replicas to deploy",
Expand Down Expand Up @@ -532,7 +532,7 @@
"global": {
"description": "Global configuration - Injected by ODS pipeline",
"type": "object",
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"imageNamespace": {
"description": "Image namespace - Injected by ODS pipeline",
Expand Down

0 comments on commit fe5fa7f

Please sign in to comment.