Skip to content

Commit cdbb043

Browse files
author
lanceplarsen
committed
add chaos actuator
1 parent 0ae48f6 commit cdbb043

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM openjdk:12-alpine
22

3-
COPY ./build/libs/spring-boot-payments-0.0.14.jar .
3+
COPY ./build/libs/spring-boot-payments-0.0.15.jar .
44

5-
CMD ["java", "-jar", "./spring-boot-payments-0.0.14.jar"]
5+
CMD ["java", "-jar", "./spring-boot-payments-0.0.15.jar"]

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ clean:
66

77
run:
88
./gradlew build
9-
java -jar build/libs/spring-boot-payments-0.0.14.jar
9+
java -jar build/libs/spring-boot-payments-0.0.15.jar
1010

1111
build_docker:
12-
docker build -t hashicorpdemoapp/payments:v0.0.14 .
12+
docker build -t hashicorpdemoapp/payments:v0.0.15 .
1313

1414
push_docker: build_docker
15-
docker push hashicorpdemoapp/payments:v0.0.14
15+
docker push hashicorpdemoapp/payments:v0.0.15

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ext['log4j2.version'] = '2.16.0'
2727

2828
bootJar {
2929
archiveBaseName = 'spring-boot-payments'
30-
archiveVersion = '0.0.14'
30+
archiveVersion = '0.0.15'
3131
}
3232

3333
dependencies {
@@ -41,7 +41,7 @@ dependencies {
4141
implementation('io.opentracing.contrib:opentracing-spring-jaeger-cloud-starter:3.2.2')
4242
implementation('com.h2database:h2')
4343
implementation('org.postgresql:postgresql')
44-
implementation('de.codecentric:chaos-monkey-spring-boot:2.3.9')
44+
implementation('de.codecentric:chaos-monkey-spring-boot:2.5.0')
4545
implementation('io.micrometer:micrometer-registry-prometheus:1.7.0')
4646
modules {
4747
module('org.springframework.boot:spring-boot-starter-logging') {

0 commit comments

Comments
 (0)