Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/backstage/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ sources: []
# Versions are expected to follow Semantic Versioning (https://semver.org/)
# Note that when this chart is published to https://github.com/openshift-helm-charts/charts
# it will follow the RHDH versioning 1.y.z
version: 4.5.10
version: 4.5.11
4 changes: 2 additions & 2 deletions charts/backstage/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# RHDH Backstage Helm Chart for OpenShift

![Version: 4.5.10](https://img.shields.io/badge/Version-4.5.10-informational?style=flat-square)
![Version: 4.5.11](https://img.shields.io/badge/Version-4.5.11-informational?style=flat-square)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

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

helm install my-backstage redhat-developer/backstage --version 4.5.10
helm install my-backstage redhat-developer/backstage --version 4.5.11
```

## Introduction
Expand Down
2 changes: 1 addition & 1 deletion charts/backstage/templates/tests/test-connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
- ls
- /usr/bin/curl
image: "{{ .Values.test.image.registry }}/{{ .Values.test.image.repository }}:{{ .Values.test.image.tag }}"
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
command: ["/bin/sh", "-c"]
args:
- |
Expand Down
4 changes: 2 additions & 2 deletions charts/backstage/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4556,7 +4556,7 @@
"type": "string"
},
"pullPolicy": {
"default": "Always",
"default": "IfNotPresent",
"description": "Ref: https://kubernetes.io/docs/concepts/containers/images/#image-pull-policy",
"enum": [
"Always",
Expand Down Expand Up @@ -4620,7 +4620,7 @@
}
],
"image": "{{ include \"backstage.image\" . }}",
"imagePullPolicy": "Always",
"imagePullPolicy": "IfNotPresent",
"name": "install-dynamic-plugins",
"resources": {
"limits": {
Expand Down
3 changes: 2 additions & 1 deletion charts/backstage/values.schema.tmpl.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"image": {
"registry": "quay.io",
"repository": "janus-idp/redhat-backstage-build",
"tag": "latest"
"tag": "latest",
"pullPolicy": "IfNotPresent"
}
}
}
Expand Down
3 changes: 2 additions & 1 deletion charts/backstage/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ upstream:
registry: quay.io
repository: rhdh/rhdh-hub-rhel9
tag: latest
pullPolicy: IfNotPresent
Comment thread
rm3l marked this conversation as resolved.
command: []
# FIXME (tumido): USE POSTGRES_PASSWORD and POSTGRES_USER instead of POSTGRES_ADMIN_PASSWORD
# This is a hack. In {fedora,rhel}/postgresql images, regular user is forbidden
Expand Down Expand Up @@ -212,7 +213,7 @@ upstream:
# This following variable is required for orchestrator to startup properly.
- name: MAX_ENTRY_SIZE
value: "30000000"
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
Comment thread
rm3l marked this conversation as resolved.
volumeMounts:
- mountPath: /dynamic-plugins-root
name: dynamic-plugins-root
Expand Down
Loading