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.4.3
version: 4.4.4
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

![Version: 4.4.3](https://img.shields.io/badge/Version-4.4.3-informational?style=flat-square)
![Version: 4.4.4](https://img.shields.io/badge/Version-4.4.4-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
7 changes: 6 additions & 1 deletion charts/backstage/templates/network-policies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: {{ .Release.Name }}-allow-knative-to-sonataflow-and-workflows
name: {{ .Release.Name }}-allow-infra-ns-to-workflow-ns
# Sonataflow and Workflows are using the RHDH target namespace.
namespace: {{ .Release.Namespace | quote }}
spec:
Expand All @@ -17,6 +17,11 @@ spec:
matchLabels:
# Allow auxiliary knative function for workflow (such as m2k-save-transformation)
kubernetes.io/metadata.name: knative-serving
- namespaceSelector:
matchLabels:
# Allow communication between the serverless logic operator and the workflow namespace.
kubernetes.io/metadata.name: openshift-serverless-logic

---
# NetworkPolicy to unblock incoming traffic to the namespace
apiVersion: networking.k8s.io/v1
Expand Down
Loading