Compare commits
13 Commits
eb199775b3
...
main
Author | SHA1 | Date | |
---|---|---|---|
9bb7a2e764
|
|||
2ef81803c6
|
|||
53e79c0067
|
|||
80dbbb90a0
|
|||
c1122e9abd
|
|||
|
395ccacf0a | ||
|
30eb922427 | ||
|
7701524322 | ||
6e88162fcf
|
|||
|
3b77400dcc | ||
22972fdc37
|
|||
144ec36a75
|
|||
1720f57f7c |
@@ -11,9 +11,11 @@ USER app
|
|||||||
|
|
||||||
# Copy all needed project files to a folder
|
# Copy all needed project files to a folder
|
||||||
COPY --chown=app ./gradle/ ./gradle
|
COPY --chown=app ./gradle/ ./gradle
|
||||||
COPY --chown=app ./gradlew ./build.gradle ./settings.gradle ./app.json ./
|
COPY --chown=app ./gradlew ./build.gradle ./settings.gradle ./
|
||||||
COPY --chown=app ./src ./src
|
COPY --chown=app ./src ./src
|
||||||
|
|
||||||
|
RUN curl -OL https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar
|
||||||
|
|
||||||
# Build the production package
|
# Build the production package
|
||||||
RUN ./gradlew clean build -x test
|
RUN ./gradlew clean build -x test
|
||||||
|
|
||||||
@@ -24,7 +26,8 @@ RUN useradd -m app
|
|||||||
USER app
|
USER app
|
||||||
|
|
||||||
COPY --chown=app --from=build /usr/src/app/build/libs/*-SNAPSHOT.jar /usr/app/config.jar
|
COPY --chown=app --from=build /usr/src/app/build/libs/*-SNAPSHOT.jar /usr/app/config.jar
|
||||||
|
COPY --chown=app --from=build /usr/src/app/opentelemetry-javaagent.jar /usr/app/opentelemetry-javaagent.jar
|
||||||
|
|
||||||
HEALTHCHECK CMD curl --fail http://localhost:5000/actuator/health || exit 1
|
HEALTHCHECK CMD curl --fail http://localhost:8888/actuator/health || exit 1
|
||||||
|
|
||||||
CMD ["java", "-jar", "/usr/app/config.jar"]
|
CMD ["java", "-jar", "/usr/app/config.jar"]
|
||||||
|
20
Makefile
Normal file
20
Makefile
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
REMOTE_HOST = mars3142@172.16.20.1
|
||||||
|
PROJECT_NAME = firmware-hq
|
||||||
|
SERVICE_NAME = config-service
|
||||||
|
RASPI_PATH = /mnt/data/${PROJECT_NAME}
|
||||||
|
|
||||||
|
install: build deploy import cleanup
|
||||||
|
|
||||||
|
build:
|
||||||
|
docker buildx build --platform linux/arm64 --no-cache -t ${PROJECT_NAME}/${SERVICE_NAME}:latest -o type=docker,dest=./${SERVICE_NAME}-arm64.tar .
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
scp ./${SERVICE_NAME}-arm64.tar ${REMOTE_HOST}:${RASPI_PATH}/
|
||||||
|
|
||||||
|
import:
|
||||||
|
ssh ${REMOTE_HOST} "sudo docker load -i ${RASPI_PATH}/${SERVICE_NAME}-arm64.tar && rm ${RASPI_PATH}/${SERVICE_NAME}-arm64.tar"
|
||||||
|
|
||||||
|
cleanup:
|
||||||
|
rm -f ${SERVICE_NAME}-arm64.tar
|
||||||
|
|
||||||
|
.PHONY: build deploy import cleanup
|
14
app.json
14
app.json
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"healthchecks": {
|
|
||||||
"web": [
|
|
||||||
{
|
|
||||||
"type": "readiness",
|
|
||||||
"name": "web check",
|
|
||||||
"description": "Checking if the app responds to the /actuator/health/readiness endpoint",
|
|
||||||
"path": "/actuator/health/readiness",
|
|
||||||
"port": 5000,
|
|
||||||
"attempts": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
15
build.gradle
15
build.gradle
@@ -1,8 +1,7 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'org.springframework.boot' version '3.3.4'
|
id 'org.springframework.boot' version '3.4.0'
|
||||||
id 'io.spring.dependency-management' version '1.1.6'
|
id 'io.spring.dependency-management' version '1.1.6'
|
||||||
id "io.sentry.jvm.gradle" version "4.11.0"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
group = 'dev.mars3142.fhq'
|
group = 'dev.mars3142.fhq'
|
||||||
@@ -25,16 +24,16 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
set('springCloudVersion', "2023.0.3")
|
set('springCloudVersion', "2024.0.0")
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'org.springframework.cloud:spring-cloud-config-server'
|
|
||||||
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
|
||||||
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
|
|
||||||
implementation 'com.github.ben-manes.caffeine:caffeine:3.1.8'
|
|
||||||
compileOnly 'org.projectlombok:lombok'
|
|
||||||
annotationProcessor 'org.projectlombok:lombok'
|
annotationProcessor 'org.projectlombok:lombok'
|
||||||
|
compileOnly 'org.projectlombok:lombok'
|
||||||
|
implementation 'com.github.ben-manes.caffeine:caffeine:3.1.8'
|
||||||
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
||||||
|
implementation 'org.springframework.cloud:spring-cloud-config-server'
|
||||||
|
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
|
||||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||||
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
||||||
}
|
}
|
||||||
|
@@ -17,11 +17,7 @@ spring:
|
|||||||
native:
|
native:
|
||||||
search-locations: classpath:/configurations
|
search-locations: classpath:/configurations
|
||||||
git:
|
git:
|
||||||
uri: https://github.com/${GIT_USER}/configuration.git
|
uri: https://${GIT_LOGIN_USER}:${GIT_TOKEN}@${GIT_USER}/${GIT_REPO}/remote-config.git
|
||||||
username: ${GIT_USER}
|
|
||||||
password: ${GIT_TOKEN}
|
|
||||||
clone-on-start: true
|
|
||||||
default-label: main
|
default-label: main
|
||||||
searchPaths: configurations
|
|
||||||
profiles:
|
profiles:
|
||||||
active: native
|
active: native
|
||||||
|
@@ -14,15 +14,16 @@ info:
|
|||||||
|
|
||||||
logging:
|
logging:
|
||||||
level:
|
level:
|
||||||
com:
|
com.netflix.discovery: off
|
||||||
netflix:
|
|
||||||
discovery: off
|
|
||||||
|
|
||||||
management:
|
management:
|
||||||
endpoint:
|
endpoint:
|
||||||
health:
|
health:
|
||||||
probes:
|
probes:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
web:
|
||||||
|
exposure:
|
||||||
|
include: refresh, bus-refresh, beans, env
|
||||||
|
|
||||||
sentry:
|
sentry:
|
||||||
dsn: https://354321d371291036cffcdb5b1a72fd6e@o394865.ingest.us.sentry.io/4507718826262528
|
dsn: https://354321d371291036cffcdb5b1a72fd6e@o394865.ingest.us.sentry.io/4507718826262528
|
||||||
|
@@ -1,5 +1,21 @@
|
|||||||
server:
|
springdoc:
|
||||||
port: ${PORT:8080}
|
enable-native-support: true
|
||||||
|
api-docs:
|
||||||
|
enabled: true
|
||||||
|
swagger-ui:
|
||||||
|
enabled: true
|
||||||
|
path: /swagger-ui.html
|
||||||
|
config-url: /v3/api-docs/swagger-config
|
||||||
|
urls:
|
||||||
|
- url: /v3/api-docs
|
||||||
|
name: API Gateway Service
|
||||||
|
primaryName: API Gateway Service
|
||||||
|
- url: /timezone-service/v3/api-docs
|
||||||
|
name: Timezone Service
|
||||||
|
primaryName: Timezone Service
|
||||||
|
- url: /google-service/v3/api-docs
|
||||||
|
name: Google Service
|
||||||
|
primaryName: Google Service
|
||||||
|
|
||||||
spring:
|
spring:
|
||||||
cloud:
|
cloud:
|
||||||
@@ -18,33 +34,26 @@ spring:
|
|||||||
locator:
|
locator:
|
||||||
enabled: false
|
enabled: false
|
||||||
routes:
|
routes:
|
||||||
- id: edge
|
|
||||||
uri: lb://edge-service
|
|
||||||
predicates:
|
|
||||||
- Path=/v3/api-docs/**
|
|
||||||
filters:
|
|
||||||
- RewritePath=/v3/api-docs/(?<path>.*), /$\{path}/v3/api-docs
|
|
||||||
|
|
||||||
- id: timezone-service
|
- id: timezone-service
|
||||||
uri: lb://timezone-service
|
uri: lb://timezone-service
|
||||||
predicates:
|
predicates:
|
||||||
- Path=/v1/timezone/**, /health/timezone, /timezone/v3/api-docs
|
- Path=/v1/timezone/**, /health/timezone, /timezone-service/v3/api-docs
|
||||||
filters:
|
filters:
|
||||||
- RewritePath=/health/timezone, /actuator/health
|
- RewritePath=/health/timezone, /actuator/health
|
||||||
- RewritePath=/timezone/(?<segment>.*), /$\{segment}
|
- RewritePath=/timezone-service/(?<segment>.*), /$\{segment}
|
||||||
|
|
||||||
- id: google-service
|
- id: google-service
|
||||||
uri: ${GOOGLE_SERVICE_URI:http://google-service.web:8080}
|
uri: lb://google-service
|
||||||
predicates:
|
predicates:
|
||||||
- Path=/v1/account/**, /health/google, /google/v3/api-docs
|
- Path=/v1/account/**, /health/google, /google-service/v3/api-docs
|
||||||
filters:
|
filters:
|
||||||
- RewritePath=/health/google, /actuator/health
|
- RewritePath=/health/google, /actuator/health
|
||||||
- RewritePath=/google/(?<segment>.*), /$\{segment}
|
- RewritePath=/google-service/(?<segment>.*), /$\{segment}
|
||||||
|
|
||||||
- id: token-service
|
- id: token-service
|
||||||
uri: ${BACKEND_SERVICE_URI:http://backend-service.web:8080}
|
uri: lb://backend-service
|
||||||
predicates:
|
predicates:
|
||||||
- Path=/v1/token/**, /health/backend, /token/v3/api-docs
|
- Path=/v1/token/**, /health/backend, /token-service/v3/api-docs
|
||||||
filters:
|
filters:
|
||||||
- RewritePath=/health/backend, /actuator/health
|
- RewritePath=/health/backend, /actuator/health
|
||||||
- RewritePath=/token/(?<segment>.*), /$\{segment}
|
- RewritePath=/token-service/(?<segment>.*), /$\{segment}
|
||||||
|
@@ -1,2 +0,0 @@
|
|||||||
server:
|
|
||||||
port: ${PORT:8081}
|
|
||||||
|
@@ -1,2 +0,0 @@
|
|||||||
server:
|
|
||||||
port: ${PORT:9000}
|
|
||||||
|
Reference in New Issue
Block a user