Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
apiVersion: v1
data:
application.properties: |
# This property is used to select the log level, which controls the amount
# of information logged on HTTP requests based on the severity of the events.
# Possible values: OFF, FATAL, ERROR, WARN, INFO, DEBUG, ALL.
# and see https://quarkus.io/guides/logging for documentation
quarkus.log.category."org.apache.http".level=INFO
quarkus.log.level=INFO

quarkus.datasource.db-kind=postgresql

# Persistence
kogito.persistence.type=jdbc
kogito.persistence.auto.ddl=false
kie.flyway.enabled=true

quarkus.oidc.enabled=false
quarkus.oidc.tenant-enabled=false
quarkus.kogito.devservices.enabled=false
quarkus.openapi-generator.github_yaml.auth.BearerToken.token-propagation=true
quarkus.openapi-generator.github_yaml.auth.BearerToken.header-name=X-Authorization-Github

quarkus.openapi-generator.gitlab_yaml.auth.BearerToken.token-propagation=true
quarkus.openapi-generator.gitlab_yaml.auth.BearerToken.header-name=X-Authorization-gitlab

kie.flyway.enabled=true
kind: ConfigMap
metadata:
labels:
app: universal-pr
app.kubernetes.io/component: serverless-workflow
app.kubernetes.io/managed-by: sonataflow-operator
app.kubernetes.io/name: universal-pr
sonataflow.org/workflow-app: universal-pr
sonataflow.org/workflow-namespace: ""
name: universal-pr-props
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
apiVersion: v1
data:
create-pr-universal-input-schema.json: |
{
"$id": "classpath:/schemas/create-pr-universal-input-schema.json",
"title": "Create Universal PR/MR Input Schema",
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"approvalTool": {
"title": "Approval Tool",
"description": "The Git provider to use: GIT for GitHub or GITLAB for GitLab",
"type": "string",
"enum": ["GIT", "GITLAB"]
},
"owner": {
"title": "Owner",
"description": "The owner/namespace of the repository",
"type": "string"
},
"repo": {
"title": "Repository",
"description": "The repository name",
"type": "string"
},
"baseBranch": {
"title": "Base Branch",
"description": "The base branch to create the PR/MR from",
"type": "string"
},
"targetBranch": {
"title": "Target Branch",
"description": "The target branch name for the PR/MR",
"type": "string"
}
},
"required": [
"approvalTool",
"owner",
"repo",
"baseBranch",
"targetBranch"
]
}
kind: ConfigMap
metadata:
name: 01-universal-pr-resources-schemas
Loading
Loading