Skip to content

Commit

Permalink
fix: increase default size of dynamic-plugins-root volume (#5)
Browse files Browse the repository at this point in the history
* fix: increase default size of dynamic-plugins-root volume

Signed-off-by: Tomas Kral <tomas.kral@gmail.com>

* Update charts/backstage/Chart.yaml

* Update charts/backstage/README.md

* Update charts/backstage/README.md

---------

Signed-off-by: Tomas Kral <tomas.kral@gmail.com>
Co-authored-by: Nick Boldt <nboldt@redhat.com>
  • Loading branch information
kadel and nickboldt committed Feb 26, 2024
1 parent 855065d commit 50f14a2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/backstage/Chart.yaml
Expand Up @@ -41,4 +41,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: 2.13.4
version: 2.13.5
6 changes: 3 additions & 3 deletions charts/backstage/README.md
Expand Up @@ -2,7 +2,7 @@
# RHDH Backstage Helm Chart for OpenShift

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

A Helm chart for deploying RHDH (a Backstage application)
Expand Down Expand Up @@ -148,8 +148,8 @@ Kubernetes: `>= 1.19.0-0`
| route.tls.termination | Specify TLS termination. | string | `"edge"` |
| route.wildcardPolicy | Wildcard policy if any for the route. Currently only 'Subdomain' or 'None' is allowed. | string | `"None"` |
| upstream | Upstream Backstage [chart configuration](https://github.com/backstage/charts/blob/main/charts/backstage/values.yaml) | object | Use Openshift compatible settings |
| upstream.backstage.extraVolumes[0] | Ephemeral volume that will contain the dynamic plugins installed by the initContainer below at start. | object | `{"ephemeral":{"volumeClaimTemplate":{"spec":{"accessModes":["ReadWriteOnce"],"resources":{"requests":{"storage":"1Gi"}}}}},"name":"dynamic-plugins-root"}` |
| upstream.backstage.extraVolumes[0].ephemeral.volumeClaimTemplate.spec.resources.requests.storage | Size of the volume that will contain the dynamic plugins. It should be large enough to contain all the plugins. | string | `"1Gi"` |
| upstream.backstage.extraVolumes[0] | Ephemeral volume that will contain the dynamic plugins installed by the initContainer below at start. | object | `{"ephemeral":{"volumeClaimTemplate":{"spec":{"accessModes":["ReadWriteOnce"],"resources":{"requests":{"storage":"2Gi"}}}}},"name":"dynamic-plugins-root"}` |
| upstream.backstage.extraVolumes[0].ephemeral.volumeClaimTemplate.spec.resources.requests.storage | Size of the volume that will contain the dynamic plugins. It should be large enough to contain all the plugins. | string | `"2Gi"` |
| upstream.backstage.initContainers[0].image | Image used by the initContainer to install dynamic plugins into the `dynamic-plugins-root` volume mount. It could be replaced by a custom image based on this one. | string | `quay.io/janus-idp/backstage-showcase:latest` |

## Opinionated Backstage deployment
Expand Down
2 changes: 1 addition & 1 deletion charts/backstage/values.schema.json
Expand Up @@ -1793,7 +1793,7 @@
],
"resources": {
"requests": {
"storage": "1Gi"
"storage": "2Gi"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion charts/backstage/values.yaml
Expand Up @@ -113,7 +113,7 @@ upstream:
resources:
requests:
# -- Size of the volume that will contain the dynamic plugins. It should be large enough to contain all the plugins.
storage: 1Gi
storage: 2Gi

# Volume that will expose the `dynamic-plugins.yaml` file from the `dynamic-plugins` config map.
# The `dynamic-plugins` config map is created by the helm chart from the content of the `global.dynamic` field.
Expand Down

0 comments on commit 50f14a2

Please sign in to comment.