Skip to content

Commit

Permalink
fix: remove unused backstage.debug flag (#159)
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Coufal <tcoufal@redhat.com>
  • Loading branch information
tumido authored Jan 9, 2024
1 parent 644d435 commit e122dc5
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 16 deletions.
2 changes: 1 addition & 1 deletion charts/backstage/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ sources:
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.8.1
version: 1.8.2
3 changes: 1 addition & 2 deletions charts/backstage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Backstage Helm Chart

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

A Helm chart for deploying a Backstage application
Expand Down Expand Up @@ -127,7 +127,6 @@ Kubernetes: `>= 1.19.0-0`
| backstage.extraEnvVarsSecrets | Backstage container environment variables from existing Secrets | list | `[]` |
| backstage.extraVolumeMounts | Backstage container additional volume mounts | list | `[]` |
| backstage.extraVolumes | Backstage container additional volumes | list | `[]` |
| backstage.image.debug | Set to true if you would like to see extra information on logs | bool | `false` |
| 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"` |
| 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 | `[]` |
| backstage.image.registry | Backstage image registry | string | `"ghcr.io"` |
Expand Down
5 changes: 0 additions & 5 deletions charts/backstage/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3096,11 +3096,6 @@
"image": {
"additionalProperties": false,
"properties": {
"debug": {
"default": false,
"title": "Set to true if you would like to see extra information on logs",
"type": "boolean"
},
"pullPolicy": {
"default": "Always",
"description": "Ref: https://kubernetes.io/docs/concepts/containers/images/#image-pull-policy",
Expand Down
5 changes: 0 additions & 5 deletions charts/backstage/values.schema.tmpl.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,6 @@
"examples": [
"myRegistryKeySecretName"
]
},
"debug": {
"title": "Set to true if you would like to see extra information on logs",
"type": "boolean",
"default": false
}
}
},
Expand Down
3 changes: 0 additions & 3 deletions charts/backstage/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,6 @@ backstage:
# <br /> E.g: `pullSecrets: [myRegistryKeySecretName]`
pullSecrets: []

# -- Set to true if you would like to see extra information on logs
debug: false

# -- Container ports on the Deployment
containerPorts:
backend: 7007
Expand Down

0 comments on commit e122dc5

Please sign in to comment.