diff --git a/README.md b/README.md index 2541693fd6..98c982aae8 100644 --- a/README.md +++ b/README.md @@ -545,7 +545,6 @@ A connection string is used to connect to App Insights. This is configured to re Connecting to App Insights locally is possible, although a bit fiddly. The easiest way is to get the connection string from Azure, set it as an environment variable (`APPLICATIONINSIGHTS_CONNECTION_STRING`), and add the Java agent as a VM argument. You'll also need to remove or comment out the connection string line in the config file. - ## License This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details diff --git a/charts/pre-api/values.dev.template.yaml b/charts/pre-api/values.dev.template.yaml index f931365e36..756eb56381 100644 --- a/charts/pre-api/values.dev.template.yaml +++ b/charts/pre-api/values.dev.template.yaml @@ -1,4 +1,5 @@ java: + replicas: 2 devmemoryLimits: '3Gi' devmemoryRequests: '3Gi' postgresql: diff --git a/infrastructure/main.tf b/infrastructure/main.tf index fb15bf0b70..eddbbe7937 100644 --- a/infrastructure/main.tf +++ b/infrastructure/main.tf @@ -10,7 +10,7 @@ locals { env_to_deploy = 1 env_long_name = var.env == "sbox" ? "sandbox" : var.env == "stg" ? "staging" : var.env apim_service_url = var.env == "prod" ? "https://pre-api.platform.hmcts.net" : "https://pre-api.${local.env_long_name}.platform.hmcts.net" - api_revision = "118" + api_revision = "120" } data "azurerm_client_config" "current" {}