Skip to content

Commit

Permalink
Fix ingress host (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
zheileman authored Feb 21, 2025
1 parent ad5bc5d commit 7b1b84f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![repo standards badge](https://img.shields.io/badge/endpoint.svg?&style=flat&logo=github&url=https%3A%2F%2Foperations-engineering-reports.cloud-platform.service.justice.gov.uk%2Fapi%2Fv1%2Fcompliant_public_repositories%2Fhmpps-manage-pom-cases-api)](https://operations-engineering-reports.cloud-platform.service.justice.gov.uk/public-report/hmpps-manage-pom-cases-api "Link to report")
[![Docker Repository on ghcr](https://img.shields.io/badge/ghcr.io-repository-2496ED.svg?logo=docker)](https://ghcr.io/ministryofjustice/hmpps-manage-pom-cases-api)
[![API docs](https://img.shields.io/badge/API_docs_-view-85EA2D.svg?logo=swagger)](https://hmpps-manage-pom-cases-api-dev.hmpps.service.justice.gov.uk/webjars/swagger-ui/index.html?configUrl=/v3/api-docs)
[![API docs](https://img.shields.io/badge/API_docs_-view-85EA2D.svg?logo=swagger)](https://hmpps-manage-pom-cases-api-dev.prison.service.justice.gov.uk/webjars/swagger-ui/index.html?configUrl=/v3/api-docs)

New MPC written in Kotlin.
Digital service for allocating, managing and handing over POM cases. API repository.
Expand Down
4 changes: 2 additions & 2 deletions helm_deploy/values-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

generic-service:
ingress:
host: manage-pom-cases-api-dev.hmpps.service.justice.gov.uk
host: manage-pom-cases-api-dev.prison.service.justice.gov.uk

env:
APPLICATIONINSIGHTS_CONFIGURATION_FILE: "applicationinsights.dev.json"
HMPPS_AUTH_URL: "https://sign-in-dev.hmpps.service.justice.gov.uk/auth"
# Template kotlin calls out to itself to provide an example of a service call
# TODO: This should be replaced by a call to a different service, or removed
EXAMPLE_API_URL: "https://manage-pom-cases-api-dev.hmpps.service.justice.gov.uk"
EXAMPLE_API_URL: "https://manage-pom-cases-api-dev.prison.service.justice.gov.uk"

# CloudPlatform AlertManager receiver to route prometheus alerts to slack
# See https://user-guide.cloud-platform.service.justice.gov.uk/documentation/monitoring-an-app/how-to-create-alarms.html#creating-your-own-custom-alerts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class OpenApiConfiguration(buildProperties: BuildProperties) {
fun customOpenAPI(): OpenAPI = OpenAPI()
.servers(
listOf(
Server().url("https://manage-pom-cases-api-dev.hmpps.service.justice.gov.uk").description("Development"),
Server().url("https://manage-pom-cases-api-dev.prison.service.justice.gov.uk").description("Development"),
Server().url("https://manage-pom-cases-api-preprod.hmpps.service.justice.gov.uk").description("Pre-Production"),
Server().url("https://manage-pom-cases-api.hmpps.service.justice.gov.uk").description("Production"),
Server().url("http://localhost:8080").description("Local"),
Expand Down

0 comments on commit 7b1b84f

Please sign in to comment.