Skip to content

Commit

Permalink
Remove case api (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
hbrace authored Sep 17, 2024
1 parent 8355f77 commit a73eddc
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 34 deletions.
4 changes: 0 additions & 4 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ EX_POSTGRES_PORT=6432
UAC_HOST=uacqid
UAC_PORT=8164

# Case API
CASE_API_HOST=caseapi
CASE_API_PORT=8161

# Security
SECURITY_USER_NAME=admin
SECURITY_USER_PASSWORD=secret
Expand Down
3 changes: 0 additions & 3 deletions checkout_and_build_pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,6 @@ checkout_and_build_repo_branch_with_bespoke_commands "ssdc-rm-ddl" "$BRANCH_NAME
# Case Processor
checkout_and_build_repo_branch "ssdc-rm-caseprocessor" "$BRANCH_NAME" true

# Case API
checkout_and_build_repo_branch "ssdc-rm-case-api" "$BRANCH_NAME" true

# Notify Service
checkout_and_build_repo_branch "ssdc-rm-notify-service" "$BRANCH_NAME" true

Expand Down
27 changes: 0 additions & 27 deletions rm-services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,33 +27,6 @@ services:
start_period: 45s


caseapi:
container_name: caseapi
image: europe-west2-docker.pkg.dev/ssdc-rm-ci/docker/ssdc-rm-case-api
ports:
- "${CASE_API_PORT}:8161"
external_links:
- postgres
- pubsub-emulator
environment:
- SPRING_CLOUD_GCP_PUBSUB_EMULATOR_HOST=pubsub-emulator:8538
- SPRING_CLOUD_GCP_PUBSUB_PROJECT_ID=our-project
- SPRING_DATASOURCE_URL=jdbc:postgresql://${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DATABASE}?sslmode=disable
- SPRING_DATASOURCE_USERNAME=${POSTGRES_USERNAME}
- SPRING_DATASOURCE_PASSWORD=${POSTGRES_PASSWORD}
- UACSERVICE_CONNECTION_HOST=${UAC_HOST}
- UACSERVICE_CONNECTION_PORT=${UAC_PORT}
restart: always
volumes:
- ./java_healthcheck:/opt/healthcheck/
healthcheck:
test: [ "CMD", "java", "-jar", "/opt/healthcheck/HealthCheck.jar", "http://localhost:8161/actuator/health" ]
interval: 60s
timeout: 10s
retries: 4
start_period: 50s


uacqid:
container_name: uacqid
image: europe-west2-docker.pkg.dev/ssdc-rm-ci/docker/ssdc-rm-uac-qid-service
Expand Down

0 comments on commit a73eddc

Please sign in to comment.