Skip to content

Commit

Permalink
Merge pull request #172 from masayag/guest-group
Browse files Browse the repository at this point in the history
Add default guest group, with guest user as a member
  • Loading branch information
masayag authored May 6, 2024
2 parents 582bfdd + 88fbe8b commit 4b2e2de
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/orchestrator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# 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: 0.2.29
version: 0.2.30

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/orchestrator/templates/rhdh-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ data:
]
locations:
- type: url
target: https://github.com/janus-idp/backstage-plugins/blob/main/plugins/notifications-backend/users.yaml
target: https://github.com/parodos-dev/orchestrator-helm-chart/blob/main/resources/users.yaml
- type: url
target: https://github.com/parodos-dev/workflow-software-templates/blob/main/entities/workflow-resources.yaml
- type: url
Expand Down
17 changes: 17 additions & 0 deletions resources/users.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: backstage.io/v1alpha1
kind: Group
metadata:
name: guest
description: Team A
spec:
type: team
children: []
---
apiVersion: backstage.io/v1alpha1
kind: User
metadata:
name: guest
spec:
profile:
displayName: Guest User
memberOf: [guest]

0 comments on commit 4b2e2de

Please sign in to comment.