Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
16 changes: 14 additions & 2 deletions .github/workflows/snyk.yaml
Comment thread
rm3l marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
chart:
- backstage
- orchestrator-infra
- backstage-orchestrator

steps:
- name: Checkout
Expand All @@ -32,8 +33,19 @@ jobs:
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add backstage https://backstage.github.io/charts
helm repo update
helm dependency build ./charts/${{ matrix.chart }}
helm template ./charts/${{ matrix.chart }} --output-dir ./output/${{ matrix.chart }}

if [ "${{ matrix.chart }}" = "backstage-orchestrator" ]; then
Comment thread
Fortune-Ndlovu marked this conversation as resolved.
Outdated
helm dependency build ./charts/backstage
helm template rhdh charts/backstage \
--set orchestrator.enabled=true \
--set orchestrator.serverlessOperator.enabled=true \
--set orchestrator.serverlessLogicOperator.enabled=true \
--output-dir ./output/backstage-orchestrator
else
helm dependency build ./charts/${{ matrix.chart }}
helm template rhdh ./charts/${{ matrix.chart }} \
--output-dir ./output/${{ matrix.chart }}
fi

- name: Run Snyk IaC Scan for ${{ matrix.chart }}
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion charts/backstage/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,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.2.7
version: 4.2.8
Comment thread
Fortune-Ndlovu marked this conversation as resolved.
Outdated
2 changes: 1 addition & 1 deletion charts/backstage/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# RHDH Backstage Helm Chart for OpenShift (Community Version)

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

Red Hat Developer Hub is a Red Hat supported version of Backstage.
Expand Down
Loading