Skip to content

Commit f6d7ca5

Browse files
committed
fix: remove unused backstage.debug flag
Signed-off-by: Tomas Coufal <tcoufal@redhat.com>
1 parent 644d435 commit f6d7ca5

File tree

5 files changed

+2
-16
lines changed

5 files changed

+2
-16
lines changed

charts/backstage/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ sources:
3838
# This is the chart version. This version number should be incremented each time you make changes
3939
# to the chart and its templates, including the app version.
4040
# Versions are expected to follow Semantic Versioning (https://semver.org/)
41-
version: 1.8.1
41+
version: 1.8.2

charts/backstage/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Backstage Helm Chart
33

44
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/backstage)](https://artifacthub.io/packages/search?repo=backstage)
5-
![Version: 1.8.1](https://img.shields.io/badge/Version-1.8.1-informational?style=flat-square)
5+
![Version: 1.8.2](https://img.shields.io/badge/Version-1.8.2-informational?style=flat-square)
66
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
77

88
A Helm chart for deploying a Backstage application
@@ -127,7 +127,6 @@ Kubernetes: `>= 1.19.0-0`
127127
| backstage.extraEnvVarsSecrets | Backstage container environment variables from existing Secrets | list | `[]` |
128128
| backstage.extraVolumeMounts | Backstage container additional volume mounts | list | `[]` |
129129
| backstage.extraVolumes | Backstage container additional volumes | list | `[]` |
130-
| backstage.image.debug | Set to true if you would like to see extra information on logs | bool | `false` |
131130
| backstage.image.pullPolicy | Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' <br /> Ref: https://kubernetes.io/docs/concepts/containers/images/#image-pull-policy | string | `"Always"` |
132131
| backstage.image.pullSecrets | Optionally specify an array of imagePullSecrets. Secrets must be manually created in the namespace. <br /> Ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ <br /> E.g: `pullSecrets: [myRegistryKeySecretName]` | list | `[]` |
133132
| backstage.image.registry | Backstage image registry | string | `"ghcr.io"` |

charts/backstage/values.schema.json

-5
Original file line numberDiff line numberDiff line change
@@ -3096,11 +3096,6 @@
30963096
"image": {
30973097
"additionalProperties": false,
30983098
"properties": {
3099-
"debug": {
3100-
"default": false,
3101-
"title": "Set to true if you would like to see extra information on logs",
3102-
"type": "boolean"
3103-
},
31043099
"pullPolicy": {
31053100
"default": "Always",
31063101
"description": "Ref: https://kubernetes.io/docs/concepts/containers/images/#image-pull-policy",

charts/backstage/values.schema.tmpl.json

-5
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,6 @@
227227
"examples": [
228228
"myRegistryKeySecretName"
229229
]
230-
},
231-
"debug": {
232-
"title": "Set to true if you would like to see extra information on logs",
233-
"type": "boolean",
234-
"default": false
235230
}
236231
}
237232
},

charts/backstage/values.yaml

-3
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,6 @@ backstage:
109109
# <br /> E.g: `pullSecrets: [myRegistryKeySecretName]`
110110
pullSecrets: []
111111

112-
# -- Set to true if you would like to see extra information on logs
113-
debug: false
114-
115112
# -- Container ports on the Deployment
116113
containerPorts:
117114
backend: 7007

0 commit comments

Comments
 (0)