Skip to content

Commit 25a5d37

Browse files
authored
chore: bump charts minor versions (#304)
1 parent 2d4e98a commit 25a5d37

9 files changed

Lines changed: 13 additions & 45 deletions

File tree

charts/backstage/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ sources: []
4747
# Versions are expected to follow Semantic Versioning (https://semver.org/)
4848
# Note that when this chart is published to https://github.com/openshift-helm-charts/charts
4949
# it will follow the RHDH versioning 1.y.z
50-
version: 5.0.1
50+
version: 5.1.0

charts/backstage/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# RHDH Backstage Helm Chart for OpenShift
33

4-
![Version: 5.0.1](https://img.shields.io/badge/Version-5.0.1-informational?style=flat-square)
4+
![Version: 5.1.0](https://img.shields.io/badge/Version-5.1.0-informational?style=flat-square)
55
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
66

77
A Helm chart for deploying Red Hat Developer Hub, which is a Red Hat supported version of Backstage.
@@ -30,7 +30,7 @@ helm repo add bitnami https://charts.bitnami.com/bitnami
3030
helm repo add backstage https://backstage.github.io/charts
3131
helm repo add redhat-developer https://redhat-developer.github.io/rhdh-chart
3232

33-
helm install my-backstage redhat-developer/backstage --version 5.0.1
33+
helm install my-backstage redhat-developer/backstage --version 5.1.0
3434
```
3535

3636
## Introduction

charts/backstage/values.yaml

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
nameOverride: developer-hub
2-
32
global:
43
dynamic:
54
# -- Array of YAML files listing dynamic plugins to include with those listed in the `plugins` field.
@@ -8,13 +7,11 @@ global:
87
# -- List of dynamic plugins included inside the `rhdh` container image, some of which are disabled by default.
98
# This file ONLY works with the `rhdh` container image.
109
- "dynamic-plugins.default.yaml"
11-
1210
# -- List of dynamic plugins, possibly overriding the plugins listed in `includes` files.
1311
# Every item defines the plugin `package` as a [NPM package spec](https://docs.npmjs.com/cli/v10/using-npm/package-spec),
1412
# an optional `pluginConfig` with plugin-specific backstage configuration, and an optional `disabled` flag to disable/enable a plugin
1513
# listed in `includes` files. It also includes an `integrity` field that is used to verify the plugin package [integrity](https://w3c.github.io/webappsec-subresource-integrity/#integrity-metadata-description).
1614
plugins: []
17-
1815
# -- Shorthand for users who do not want to specify a custom HOSTNAME. Used ONLY with the DEFAULT upstream.backstage.appConfig value and with OCP Route enabled.
1916
clusterRouterBase: "apps.example.com"
2017
# -- Custom hostname shorthand, overrides `global.clusterRouterBase`, `upstream.ingress.host`, `route.host`, and url values in `upstream.backstage.appConfig`.
@@ -30,7 +27,6 @@ global:
3027
existingSecret: ""
3128
# -- Instead of generating a secret value, use the following value
3229
value: ""
33-
3430
# -- Catalog index configuration for automatic plugin discovery.
3531
# The `install-dynamic-plugins.py` script pulls this image if the `CATALOG_INDEX_IMAGE` environment variable is set.
3632
# The `dynamic-plugins.default.yaml` file will be extracted and written to `dynamic-plugins-root` volume mount.
@@ -39,7 +35,6 @@ global:
3935
registry: quay.io
4036
repository: rhdh/plugin-catalog-index
4137
tag: "1.9"
42-
4338
# -- Upstream Backstage [chart configuration](https://github.com/backstage/charts/blob/main/charts/backstage/values.yaml)
4439
# @default -- Use Openshift compatible settings
4540
upstream:
@@ -258,8 +253,7 @@ upstream:
258253
installDir: /opt/app-root/src
259254
podAnnotations:
260255
checksum/dynamic-plugins: >-
261-
{{- include "common.tplvalues.render" ( dict "value"
262-
.Values.global.dynamic "context" $) | sha256sum }}
256+
{{- include "common.tplvalues.render" ( dict "value" .Values.global.dynamic "context" $) | sha256sum }}
263257
ingress:
264258
host: "{{ .Values.global.host }}"
265259
metrics:
@@ -313,71 +307,53 @@ upstream:
313307
- name: http-metrics
314308
port: 9464
315309
targetPort: 9464
316-
317310
# -- OpenShift Route parameters
318311
route:
319312
# -- Route specific annotations
320313
annotations: {}
321-
322314
# -- Enable the creation of the route resource
323315
enabled: true
324-
325316
# -- Set the host attribute to a custom value. If not set, OpenShift will generate it, please make sure to match your baseUrl
326317
host: "{{ .Values.global.host }}"
327-
328318
# -- Path that the router watches for, to route traffic for to the service.
329319
path: "/"
330-
331320
# -- Wildcard policy if any for the route. Currently only 'Subdomain' or 'None' is allowed.
332321
wildcardPolicy: None
333-
334322
# -- Route TLS parameters
335323
# <br /> Ref: https://docs.openshift.com/container-platform/4.9/networking/routes/secured-routes.html
336324
tls:
337325
# -- Enable TLS configuration for the host defined at `route.host` parameter
338326
enabled: true
339-
340327
# -- Specify TLS termination.
341328
termination: "edge"
342-
343329
# -- Certificate contents
344330
certificate: ""
345-
346331
# -- Key file contents
347332
key: ""
348-
349333
# -- Cert authority certificate contents. Optional
350334
caCertificate: ""
351-
352335
# -- Contents of the ca certificate of the final destination.
353336
# <br /> When using reencrypt termination this file should be provided in order to have routers use it for health checks on the secure connection. If this field is not specified, the router may provide its own destination CA and perform hostname validation using the short service name (service.namespace.svc), which allows infrastructure generated certificates to automatically verify.
354337
destinationCACertificate: ""
355-
356338
# -- Indicates the desired behavior for insecure connections to a route.
357339
# <br /> While each router may make its own decisions on which ports to expose, this is normally port 80. The only valid values are None, Redirect, or empty for disabled.
358340
insecureEdgeTerminationPolicy: "Redirect"
359-
360341
# -- Test pod parameters
361342
test:
362343
# -- Whether to enable the test-connection pod used for testing the Release using `helm test`.
363344
enabled: true
364-
365345
image:
366346
# -- Test connection pod image registry
367347
registry: quay.io
368-
369348
# -- Test connection pod image repository. Note that the image needs to have both the `sh` and `curl` binaries in it.
370349
repository: curl/curl
371-
372350
# -- Test connection pod image tag. Note that the image needs to have both the `sh` and `curl` binaries in it.
373351
tag: latest
374-
375352
# -- Whether to inject a fake dynamic plugins npmrc secret.
376353
# <br />See RHDHBUGS-1893 and RHDHBUGS-1464 for the motivation behind this.
377354
# <br />This is only used for testing purposes and should not be used in production.
378355
# <br />Only relevant when `test.enabled` field is set to `true`.
379356
injectTestNpmrcSecret: false
380-
381357
orchestrator:
382358
enabled: false
383359
# Disable Serverless Logic Operator if it already exists on the cluster
@@ -402,28 +378,20 @@ orchestrator:
402378
cpu: "500m"
403379
# -- Secret name for the user-created secret to connect an external DB
404380
externalDBsecretRef: ""
405-
406381
# -- Name for the user-configured external Database
407382
externalDBName: ""
408-
409383
# -- Host for the user-configured external Database
410384
externalDBHost: ""
411-
412385
# -- Port for the user-configured external Database
413386
externalDBPort: ""
414-
415387
# -- Image for the init container used by the create-db job
416388
initContainerImage: "{{ .Values.upstream.postgresql.image.registry }}/{{ .Values.upstream.postgresql.image.repository }}:{{ .Values.upstream.postgresql.image.tag }}"
417-
418389
# -- Image for the container used by the create-db job
419390
createDBJobImage: "{{ .Values.upstream.postgresql.image.registry }}/{{ .Values.upstream.postgresql.image.repository }}:{{ .Values.upstream.postgresql.image.tag }}"
420-
421391
# -- Image for the container used by the sonataflow jobs service, optional and used for disconnected environments
422392
jobServiceImage: ""
423-
424393
# -- Image for the container used by the sonataflow data index, optional and used for disconnected environments
425394
dataIndexImage: ""
426-
427395
# -- Orchestrator plugins and their configuration
428396
plugins:
429397
# RHDHBUGS-1464: Note that the plugins here fetch the packages from their direct HTTP download URLs from the (official) Red Hat NPM Registry.

charts/orchestrator-infra/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ maintainers:
1414
type: application
1515
sources:
1616
- https://github.com/redhat-developer/rhdh-chart
17-
version: 0.4.0
17+
version: 0.5.0

charts/orchestrator-infra/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Orchestrator Infra Chart for OpenShift
33

4-
![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square)
4+
![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square)
55
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
66

77
Helm chart to deploy the Orchestrator solution's required infrastructure suite on OpenShift, including OpenShift Serverless Operator and OpenShift Serverless Logic Operator, both required to configure Red Hat Developer Hub to use the Orchestrator.
@@ -25,7 +25,7 @@ Kubernetes: `>= 1.25.0-0`
2525
```console
2626
helm repo add redhat-developer https://redhat-developer.github.io/rhdh-chart
2727

28-
helm install my-orchestrator-infra redhat-developer/redhat-developer-hub-orchestrator-infra --version 0.4.0
28+
helm install my-orchestrator-infra redhat-developer/redhat-developer-hub-orchestrator-infra --version 0.5.0
2929
```
3030

3131
> **Tip**: List all releases using `helm list`

charts/orchestrator-software-templates-infra/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ kubeVersion: ">= 1.25.0-0"
1010
type: application
1111
sources:
1212
- https://github.com/redhat-developer/rhdh-software-templates-infrastructure
13-
version: 0.3.1
13+
version: 0.4.0
1414
maintainers:
1515
- name: Red Hat Developer Hub Team
1616
url: https://github.com/redhat-developer/rhdh-chart

charts/orchestrator-software-templates-infra/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Orchestrator Software Templates Infra Chart for OpenShift (Community Version)
33

4-
![Version: 0.3.1](https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square)
4+
![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square)
55
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
66

77
A Helm chart to install Openshift GitOps and Openshift Pipelines, which are required operators for installing the Orchestrator Software Templates to be available on RHDH.
@@ -25,7 +25,7 @@ Kubernetes: `>= 1.25.0-0`
2525
```console
2626
helm repo add redhat-developer https://redhat-developer.github.io/rhdh-chart
2727

28-
helm install my-orchestrator-software-templates-infra redhat-developer/orchestrator-software-templates-infra --version 0.3.1
28+
helm install my-orchestrator-software-templates-infra redhat-developer/orchestrator-software-templates-infra --version 0.4.0
2929
```
3030

3131
> **Tip**: List all releases using `helm list`

charts/orchestrator-software-templates/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ kubeVersion: ">= 1.25.0-0"
1111
type: application
1212
sources:
1313
- https://github.com/redhat-developer/rhdh-chart
14-
version: 0.2.1
14+
version: 0.3.0
1515
maintainers:
1616
- name: Red Hat Developer Hub Team
1717
url: https://github.com/redhat-developer/rhdh-chart

charts/orchestrator-software-templates/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Orchestrator Software Templates Chart for Red Hat Developer Hub
33

4-
![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square)
4+
![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square)
55
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
66

77
This Helm chart deploys the Orchestrator Software Templates for Red Hat Developer Hub (RHDH) and other necessary GitOps configurations.
@@ -78,7 +78,7 @@ After configuring all prerequisites, you can install the chart with the followin
7878
```console
7979
helm repo add redhat-developer https://redhat-developer.github.io/rhdh-chart
8080

81-
helm install my-orchestrator-templates redhat-developer/orchestrator-software-templates --version 0.2.1
81+
helm install my-orchestrator-templates redhat-developer/orchestrator-software-templates --version 0.3.0
8282
```
8383

8484
Now, follow the instruction on the post-installation Notes. They will include the steps to create a custom values.yaml file to allow you to update the backstage chart

0 commit comments

Comments
 (0)