Skip to content

Commit 47bc3d8

Browse files
authored
Merge pull request #305 from prgrms-web-devcourse-final-project/chore/33-infra
chore[infra]: sentry 버전 변경
2 parents 356a88d + 8674477 commit 47bc3d8

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

backend/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ dependencies {
6262
implementation 'org.springframework.session:spring-session-data-redis'
6363

6464
// Logging & Monitoring (로깅/모니터링)
65-
implementation 'io.sentry:sentry-spring-boot-starter:7.16.0'
66-
implementation 'io.sentry:sentry-logback:7.16.0'
65+
implementation 'io.sentry:sentry-spring-boot-starter:7.18.0'
66+
implementation 'io.sentry:sentry-logback:7.18.0'
6767

6868
// Development Tools (개발 도구)
6969
compileOnly 'org.projectlombok:lombok'

infra/main.tf

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,7 @@ docker run -d \
409409
--network common \
410410
-p 11434:11434 \
411411
-v ollama-data:/root/.ollama \
412+
--memory 2g \
412413
--entrypoint /bin/sh \
413414
--health-cmd 'curl -f http://localhost:11434/api/version || exit 1' \
414415
--health-interval 10s \
@@ -418,7 +419,15 @@ docker run -d \
418419
-c 'ollama serve & sleep 5 && ollama pull daynice/kure-v1:567m && wait'
419420
420421
echo "${var.github_access_token_1}" | docker login ghcr.io -u ${var.github_access_token_1_owner} --password-stdin
421-
# zookeeper
422+
# zookeeper 설치
423+
docker run -d \
424+
--name zookeeper \
425+
--network common \
426+
-p 2181:2181 \
427+
-e ALLOW_ANONYMOUS_LOGIN=yes \
428+
bitnami/zookeeper:latest
429+
430+
# kafka
422431
docker run -d \
423432
--name kafka \
424433
--network common \
@@ -430,13 +439,7 @@ docker run -d \
430439
-e KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR=1 \
431440
confluentinc/cp-kafka:7.6.0
432441
433-
# kafka 설치
434-
docker run -d \
435-
--name zookeeper \
436-
--network common \
437-
-p 2181:2181 \
438-
-e ALLOW_ANONYMOUS_LOGIN=yes \
439-
bitnami/zookeeper:latest
442+
440443
441444
END_OF_FILE
442445
}

0 commit comments

Comments
 (0)