Skip to content

Commit

Permalink
chore: Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartłomiej Rasztabiga committed Apr 15, 2024
1 parent be86d1d commit f5b6e1e
Show file tree
Hide file tree
Showing 22 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 deletions delivery/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ val axonVersion = "4.9.2"
val kotestVersion = "5.8.0"

dependencies {
implementation("me.rasztabiga.thesis:shared:0.21.3")
implementation("me.rasztabiga.thesis:shared:0.21.4")

implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-webflux")
Expand All @@ -55,7 +55,7 @@ dependencies {
implementation("com.google.maps:google-maps-services:2.2.0")
implementation("io.axoniq.console:console-framework-client-spring-boot-starter:1.2.0")

testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.3"))
testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.4"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
testImplementation("org.axonframework:axon-test")
Expand Down
4 changes: 2 additions & 2 deletions docs/thesis/tex/6-wdrozenie.tex
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ \subsection{Orkiestracja kontenerów}
secretKeyRef:
name: gmaps-api-key
key: key
image: ghcr.io/bartlomiejrasztabiga/thesis/order:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/order:0.21.4
name: order-service
ports:
- containerPort: 8102
Expand All @@ -139,7 +139,7 @@ \subsection{Orkiestracja kontenerów}

Oprócz podanego na wycinku \ref{lst:deployment-k8s} tzw. \textit{deploymentu}, który definiuje wymagane zasoby, należy zdefiniować również \textit{service}, który umożliwia komunikację sieciową.

Na podstawie powyższego pliku konfiguracyjnego, Kubernetes zapewni automatyczne wdrożenie jednej instancji serwisu zamówień w wersji 0.21.3, uruchomionego na porcie 8102 ze wstrzykniętymi podanymi zmiennymi środowiskowymi w sekcji \texttt{env}.
Na podstawie powyższego pliku konfiguracyjnego, Kubernetes zapewni automatyczne wdrożenie jednej instancji serwisu zamówień w wersji 0.21.4, uruchomionego na porcie 8102 ze wstrzykniętymi podanymi zmiennymi środowiskowymi w sekcji \texttt{env}.

\subsection{Skalowanie}

Expand Down
4 changes: 2 additions & 2 deletions e2e/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ val axonVersion = "4.9.2"
val kotestVersion = "5.8.0"

dependencies {
implementation("me.rasztabiga.thesis:shared:0.21.3")
implementation("me.rasztabiga.thesis:shared:0.21.4")

implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-webflux")
Expand All @@ -54,7 +54,7 @@ dependencies {

testImplementation("io.rest-assured:rest-assured:5.3.2")
testImplementation("io.rest-assured:kotlin-extensions:5.3.2")
testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.3"))
testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.4"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
testImplementation("org.axonframework:axon-test")
Expand Down
2 changes: 1 addition & 1 deletion k8s/main/delivery-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
secretKeyRef:
name: gmaps-api-key
key: key
image: ghcr.io/bartlomiejrasztabiga/thesis/delivery:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/delivery:0.21.4
name: delivery-service
ports:
- containerPort: 8104
Expand Down
2 changes: 1 addition & 1 deletion k8s/main/frontend-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
value: "3gSK8og83MMTCUlNrzGNfnzpBNyLlpTS"
- name: AUTH_CLIENT_SECRET
value: "fxntskIoYgCCXgxT-DYzTZraK4OwX-mwAcv8C4kZdszLDedqdtuwgTK8xB840C2G"
image: ghcr.io/bartlomiejrasztabiga/thesis/frontend:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/frontend:0.21.4
name: frontend
ports:
- containerPort: 8080
Expand Down
2 changes: 1 addition & 1 deletion k8s/main/order-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
secretKeyRef:
name: gmaps-api-key
key: key
image: ghcr.io/bartlomiejrasztabiga/thesis/order:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/order:0.21.4
name: order-service
ports:
- containerPort: 8102
Expand Down
2 changes: 1 addition & 1 deletion k8s/main/payment-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
secretKeyRef:
name: stripe-api-key
key: frontend-domain
image: ghcr.io/bartlomiejrasztabiga/thesis/payment:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/payment:0.21.4
name: payment-service
ports:
- containerPort: 8103
Expand Down
2 changes: 1 addition & 1 deletion k8s/main/query-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
secretKeyRef:
name: gmaps-api-key
key: key
image: ghcr.io/bartlomiejrasztabiga/thesis/query:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/query:0.21.4
name: query-service
ports:
- containerPort: 8105
Expand Down
2 changes: 1 addition & 1 deletion k8s/main/restaurant-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
secretKeyRef:
name: gmaps-api-key
key: key
image: ghcr.io/bartlomiejrasztabiga/thesis/restaurant:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/restaurant:0.21.4
name: restaurant-service
ports:
- containerPort: 8101
Expand Down
2 changes: 1 addition & 1 deletion k8s/main/saga-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
value: "68447ea9-1:4ac1289d784047ac88cc1e1ab39bdefc"
- name: SPRING_DATA_MONGODB_URI
value: "mongodb://root:password@saga-db:27017/saga?authSource=admin"
image: ghcr.io/bartlomiejrasztabiga/thesis/saga:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/saga:0.21.4
name: saga-service
ports:
- containerPort: 8106
Expand Down
2 changes: 1 addition & 1 deletion k8s/performance/delivery-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
value: "68447ea9-1:4ac1289d784047ac88cc1e1ab39bdefc"
- name: SPRING_PROFILES_ACTIVE
value: nosecurity
image: ghcr.io/bartlomiejrasztabiga/thesis/delivery:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/delivery:0.21.4
name: delivery-service
ports:
- containerPort: 8104
Expand Down
2 changes: 1 addition & 1 deletion k8s/performance/frontend-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
value: "3gSK8og83MMTCUlNrzGNfnzpBNyLlpTS"
- name: AUTH_CLIENT_SECRET
value: "fxntskIoYgCCXgxT-DYzTZraK4OwX-mwAcv8C4kZdszLDedqdtuwgTK8xB840C2G"
image: ghcr.io/bartlomiejrasztabiga/thesis/frontend:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/frontend:0.21.4
name: frontend
ports:
- containerPort: 8080
Expand Down
2 changes: 1 addition & 1 deletion k8s/performance/order-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
value: "68447ea9-1:4ac1289d784047ac88cc1e1ab39bdefc"
- name: SPRING_PROFILES_ACTIVE
value: nosecurity
image: ghcr.io/bartlomiejrasztabiga/thesis/order:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/order:0.21.4
name: order-service
ports:
- containerPort: 8102
Expand Down
2 changes: 1 addition & 1 deletion k8s/performance/payment-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
value: "68447ea9-1:4ac1289d784047ac88cc1e1ab39bdefc"
- name: SPRING_PROFILES_ACTIVE
value: nosecurity
image: ghcr.io/bartlomiejrasztabiga/thesis/payment:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/payment:0.21.4
name: payment-service
ports:
- containerPort: 8103
Expand Down
2 changes: 1 addition & 1 deletion k8s/performance/query-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
value: "mongodb://root:password@query-db:27017/query?authSource=admin"
- name: SPRING_PROFILES_ACTIVE
value: nosecurity
image: ghcr.io/bartlomiejrasztabiga/thesis/query:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/query:0.21.4
name: query-service
ports:
- containerPort: 8105
Expand Down
2 changes: 1 addition & 1 deletion k8s/performance/restaurant-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
value: "68447ea9-1:4ac1289d784047ac88cc1e1ab39bdefc"
- name: SPRING_PROFILES_ACTIVE
value: nosecurity
image: ghcr.io/bartlomiejrasztabiga/thesis/restaurant:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/restaurant:0.21.4
name: restaurant-service
ports:
- containerPort: 8101
Expand Down
2 changes: 1 addition & 1 deletion k8s/performance/saga-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
- name: SPRING_DATA_MONGODB_URI
# value: "mongodb+srv://thesis:[email protected]/saga?retryWrites=true&w=majority"
value: "mongodb://root:password@saga-db:27017/saga?authSource=admin"
image: ghcr.io/bartlomiejrasztabiga/thesis/saga:0.21.3
image: ghcr.io/bartlomiejrasztabiga/thesis/saga:0.21.4
name: saga-service
ports:
- containerPort: 8106
Expand Down
4 changes: 2 additions & 2 deletions order/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ val axonVersion = "4.9.2"
val kotestVersion = "5.8.0"

dependencies {
implementation("me.rasztabiga.thesis:shared:0.21.3")
implementation("me.rasztabiga.thesis:shared:0.21.4")
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-security")
Expand All @@ -55,7 +55,7 @@ dependencies {

implementation("io.axoniq.console:console-framework-client-spring-boot-starter:1.2.0")

testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.3"))
testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.4"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
testImplementation("org.axonframework:axon-test")
Expand Down
4 changes: 2 additions & 2 deletions payment/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ val axonVersion = "4.9.2"
val kotestVersion = "5.8.0"

dependencies {
implementation("me.rasztabiga.thesis:shared:0.21.3")
implementation("me.rasztabiga.thesis:shared:0.21.4")

implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-webflux")
Expand All @@ -56,7 +56,7 @@ dependencies {

implementation("io.axoniq.console:console-framework-client-spring-boot-starter:1.2.0")

testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.3"))
testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.4"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
testImplementation("org.axonframework:axon-test")
Expand Down
4 changes: 2 additions & 2 deletions query/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ val axonVersion = "4.9.2"
val kotestVersion = "5.8.0"

dependencies {
implementation("me.rasztabiga.thesis:shared:0.21.3")
implementation("me.rasztabiga.thesis:shared:0.21.4")

implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-webflux")
Expand All @@ -57,7 +57,7 @@ dependencies {
implementation("com.google.maps:google-maps-services:2.2.0")
implementation("io.axoniq.console:console-framework-client-spring-boot-starter:1.2.0")

testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.3"))
testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.4"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
testImplementation("org.axonframework:axon-test")
Expand Down
4 changes: 2 additions & 2 deletions restaurant/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ val axonVersion = "4.9.2"
val kotestVersion = "5.8.0"

dependencies {
implementation("me.rasztabiga.thesis:shared:0.21.3")
implementation("me.rasztabiga.thesis:shared:0.21.4")

implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-webflux")
Expand All @@ -54,7 +54,7 @@ dependencies {

implementation("io.axoniq.console:console-framework-client-spring-boot-starter:1.2.0")

testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.3"))
testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.4"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
testImplementation("org.axonframework:axon-test")
Expand Down
4 changes: 2 additions & 2 deletions saga/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ val axonVersion = "4.9.2"
val kotestVersion = "5.8.0"

dependencies {
implementation("me.rasztabiga.thesis:shared:0.21.3")
implementation("me.rasztabiga.thesis:shared:0.21.4")

implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-security")
Expand All @@ -55,7 +55,7 @@ dependencies {

implementation("io.axoniq.console:console-framework-client-spring-boot-starter:1.2.0")

testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.3"))
testImplementation(testFixtures("me.rasztabiga.thesis:shared:0.21.4"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
testImplementation("org.axonframework:axon-test")
Expand Down

0 comments on commit f5b6e1e

Please sign in to comment.