Skip to content

Commit 26410f9

Browse files
Merge pull request #90 from tkummer33/replace_omp_lodestar
replace omp/lodestar
2 parents 3e5efd9 + 04e9790 commit 26410f9

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![Container Build](https://github.com/rht-labs/open-management-portal-git-api/workflows/Container%20Build/badge.svg) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=com.redhat.labs%3Alodestar-git-api&metric=alert_status)](https://sonarcloud.io/dashboard?id=com.redhat.labs%3Alodestar-git-api) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=com.redhat.labs%3Alodestar-git-api&metric=coverage)](https://sonarcloud.io/dashboard?id=com.redhat.labs%3Alodestar-git-api)
1+
![Container Build](https://github.com/rht-labs/lodestar-git-api/workflows/Container%20Build/badge.svg) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=com.redhat.labs%3Alodestar-git-api&metric=alert_status)](https://sonarcloud.io/dashboard?id=com.redhat.labs%3Alodestar-git-api) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=com.redhat.labs%3Alodestar-git-api&metric=coverage)](https://sonarcloud.io/dashboard?id=com.redhat.labs%3Alodestar-git-api)
22

33
# LodeStar - Git API
44

@@ -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/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
name: git-api
3-
description: A Helm chart to deploy the Git API of the Open Management Portal
3+
description: A Helm chart to deploy the Git API of Lodestar
44

55
# A chart can be either an 'application' or a 'library' chart.
66
#

deployment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ 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

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 }}

deployment/templates/gitlab-secret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: v1
33
kind: Secret
44
metadata:
5-
name: omp-gitlab-configuration
5+
name: lodestar-gitlab-configuration
66
type: Opaque
77
stringData:
88
CONFIG_REPOSITORY_ID: "{{ .Values.configRepositoryId }}"

deployment/values-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: omp-git-api
1+
name: lodestar-git-api
22
development: true
33

44
servicePort: 8080

deployment/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: omp-git-api
1+
name: lodestar-git-api
22

33
servicePort: 8080
44

src/main/docker/Dockerfile.jvm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
#
88
# Then, build the image with:
99
#
10-
# docker build -f src/main/docker/Dockerfile.jvm -t quarkus/open-management-portal-git-api-jvm .
10+
# docker build -f src/main/docker/Dockerfile.jvm -t quarkus/lodestar-git-api-jvm .
1111
#
1212
# Then run the container using:
1313
#
14-
# docker run -i --rm -p 8080:8080 quarkus/open-management-portal-git-api-jvm
14+
# docker run -i --rm -p 8080:8080 quarkus/lodestar-git-api-jvm
1515
#
1616
###
1717
FROM fabric8/java-alpine-openjdk8-jre:1.6.5

src/main/docker/Dockerfile.native

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
#
88
# Then, build the image with:
99
#
10-
# docker build -f src/main/docker/Dockerfile.native -t quarkus/open-management-portal-git-api .
10+
# docker build -f src/main/docker/Dockerfile.native -t quarkus/lodestar-git-api .
1111
#
1212
# Then run the container using:
1313
#
14-
# docker run -i --rm -p 8080:8080 quarkus/open-management-portal-git-api
14+
# docker run -i --rm -p 8080:8080 quarkus/lodestar-git-api
1515
#
1616
###
1717
FROM registry.access.redhat.com/ubi8/ubi-minimal

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)