Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jul 30, 2024
1 parent 5bc7667 commit 093fee2
Show file tree
Hide file tree
Showing 6 changed files with 3,610 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/mta-v7.x/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.26
version: 0.2.27

# 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
7 changes: 7 additions & 0 deletions charts/mta-v7.x/templates/00-secret_mta-analysis-v7.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
apiVersion: v1
data:
NOTIFICATIONS_BEARER_TOKEN: ""
kind: Secret
metadata:
creationTimestamp: null
name: mta-analysis-v7-creds
19 changes: 19 additions & 0 deletions charts/mta-v7.x/templates/01-configmap_mta-analysis-v7-props.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
apiVersion: v1
data:
application.properties: |
# MTA
mta.url = ${MTA_URL:http://mta-ui.openshift-mta.svc.cluster.local:8080}
quarkus.rest-client.mta_json.url = ${mta.url}
# Backstage Notifications service
quarkus.rest-client.notifications.url=${BACKSTAGE_NOTIFICATIONS_URL:http://backstage-backstage.rhdh-operator}
quarkus.openapi-generator.notifications.auth.BearerToken.bearer-token=${NOTIFICATIONS_BEARER_TOKEN}
quarkus.flyway.migrate-at-start=true
kind: ConfigMap
metadata:
creationTimestamp: null
labels:
app: mta-analysis-v7
sonataflow.org/workflow-app: mta-analysis-v7
name: mta-analysis-v7-props
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
apiVersion: v1
data:
mta-input.json: |+
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"repositoryURL": {
"type": "string",
"pattern": "^(git|http|https)://.+$"
},
"recipients": {
"title": "Recipients",
"type": "array",
"description": "A list of recipients for the notification in the format of 'user:<namespace>/<username>' or 'group:<namespace>/<groupname>', i.e. 'user:default/jsmith'",
"items": {
"title": "Recipient",
"type": "string",
"pattern": "^(user|group):[a-z0-9]([-a-z0-9]*[a-z0-9])?/([a-z0-9]([-a-z0-9]*[a-z0-9])?)$"
},
"minItems": 1
},
"exportToIssueManager": {
"type": "string",
"enum": ["true", "false"],
"description": "Creating Jira issues for a migration wave"
},
"migrationStartDatetime": {
"type": "string"
},
"migrationEndDatetime": {
"type": "string"
}
},
"required": [
"repositoryURL",
"exportToIssueManager",
"recipients"
]
}
kind: ConfigMap
metadata:
creationTimestamp: null
name: 01-mta-analysis-v7-resources-schemas
Loading

0 comments on commit 093fee2

Please sign in to comment.