Skip to content

Commit

Permalink
Change envFrom type
Browse files Browse the repository at this point in the history
  • Loading branch information
philipsens committed Dec 12, 2024
1 parent c8f9b12 commit 9ec05c2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/frankframework/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: frankframework
description: A Helm chart for running the Frank!Framework on Kubernetes
version: 0.5.2
version: 0.5.3
appVersion: "8.3.0-SNAPSHOT"
type: application
home: https://frankframework.org
Expand Down
6 changes: 2 additions & 4 deletions charts/frankframework/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,8 @@
"envFrom": {
"type": "array",
"description": "Set environment variables from configmaps or secrets",
"default": "[]",
"items": {
"type": "string"
}
"default": [],
"items": {}
},
"extraVolumes": {
"type": "array",
Expand Down
4 changes: 2 additions & 2 deletions charts/frankframework/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ environmentVariables:
application.server.type.custom: "NARAYANA"
JAVA_OPTS: "-XX:MaxRAMPercentage=80.0"

## @param envFrom [array] Set environment variables from configmaps or secrets
## @param envFrom Set environment variables from configmaps or secrets
## @extra envFrom Example is shown in the `values.yaml` file
## e.g.
## envFrom:
Expand All @@ -137,7 +137,7 @@ environmentVariables:
## - secretRef:
## name: frankframework-custom-env
##
envFrom: []
envFrom: [ ]

## @section Generate ConfigMaps and Secrets
## @descriptionStart
Expand Down

0 comments on commit 9ec05c2

Please sign in to comment.