Skip to content

Commit 4cffcc5

Browse files
author
Tomas Kummer
committed
replace omp lodestar
1 parent 7857e56 commit 4cffcc5

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- uses: redhat-cop/github-actions/s2i@v2
3030
with:
3131
base: registry.access.redhat.com/ubi8/openjdk-11:1.3
32-
output_image: "quay.io/rht-labs/omp-git-api:${{ github.sha }}"
32+
output_image: "quay.io/rht-labs/lodestar-git-api:${{ github.sha }}"
3333
image_push_registry: quay.io
3434
image_push_username: ${{ secrets.QUAY_USERNAME }}
3535
image_push_password: ${{ secrets.QUAY_PASSWORD }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: tag with release version
1313
uses: tinact/[email protected]
1414
with:
15-
image_name: rht-labs/omp-git-api
15+
image_name: rht-labs/lodestar-git-api
1616
image_old_tag: ${{ github.sha }}
1717
image_new_tag: ${{ github.event.release.tag_name }}
1818
registry: quay.io
@@ -21,7 +21,7 @@ jobs:
2121
- name: tag with latest
2222
uses: tinact/[email protected]
2323
with:
24-
image_name: rht-labs/omp-git-api
24+
image_name: rht-labs/lodestar-git-api
2525
image_old_tag: ${{ github.sha }}
2626
registry: quay.io
2727
registry_username: ${{ secrets.QUAY_USERNAME }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Deployment template will read from the above secret and inject following env var
5252

5353
| Name | Example Value | Required |
5454
|------|---------------|----------|
55-
| OMP_LOGGING | DEBUG | False |
55+
| LODESTAR_LOGGING | DEBUG | False |
5656

5757
### GitLab
5858

@@ -108,7 +108,7 @@ You can run your application using Quarkus using:
108108
```
109109
110110
# logging
111-
export OMP_LOGGING=DEBUG
111+
export LODESTAR_LOGGING=DEBUG
112112
113113
# gitlab
114114
export GITLAB_API_URL=<The base url of your git api. ie https://gitlab.com>
@@ -125,5 +125,5 @@ export ENGAGEMENTS_REPOSITORY_ID=<Parent project id where repos will be saved>
125125
./mvnw clean package
126126
127127
# run the application
128-
java -jar target/open-management-portal-git-api-*-runner.jar
128+
java -jar target/lodestar-git-api-*-runner.jar
129129
```

deployment/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ It accepts the following variables
5151
| `gitLabPersonalAccessToken` | The access token to use to auth against GitLab |
5252
| `engagementsRepositoryId` | The ID of the GitLab group under which to create new projects |
5353

54-
This will spin up all of the usual resources that this service needs in production, plus a `BuildConfig` configured to build it from source from the Git repository specified. To trigger this build, use `oc start-build omp-git-api`.
54+
This will spin up all of the usual resources that this service needs in production, plus a `BuildConfig` configured to build it from source from the Git repository specified. To trigger this build, use `oc start-build lodestar-git-api`.
5555

5656
## Config Map Configurations
5757

5858
Please note that there is a configuration for both, webhooks and the runtime configuration. These are provided as samples or subsets and will not be kept current with the values configured in the test/integration/production environments.
5959

60-
These ConfigMaps have already been configured and provided when deployed into the official OpenShift environments.
60+
These ConfigMaps have already been configured and provided when deployed into the official OpenShift environments.

deployment/templates/deploymentconfig.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
containers:
3030
- envFrom:
3131
- secretRef:
32-
name: omp-gitlab-configuration
32+
name: lodestar-gitlab-configuration
3333
env:
3434
- name: GIT_API_GIT_TAG
3535
value: {{ .Values.imageTag }}

src/main/resources/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ quarkus.log.console.format=%d{HH:mm:ss} %-5p [%c{2.}] (%t) %s%e%n
77
quarkus.log.console.level=DEBUG
88
quarkus.log.console.color=false
99
quarkus.log.category."io.quarkus".level=INFO
10-
quarkus.log.category."com.redhat.labs".level=${OMP_LOGGING:DEBUG}
10+
quarkus.log.category."com.redhat.labs".level=${LODESTAR_LOGGING:DEBUG}
1111
quarkus.log.console.json=false
1212
%dev.quarkus.log.console.json=false
1313
%test.quarkus.log.console.json=false

0 commit comments

Comments
 (0)