We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I have been struggling to deploy an application as the client is timing out. I have tried with and without a VPN without luck.
resource "cloudfoundry_app" "app-test" { space_name = cloudfoundry_space.dev.name org_name = jsondecode(btp_subaccount_environment_instance.cloudfoundry.labels)["Org Name"] name = "app-test" path = "./exes/sg.jar" timeout = 600 // health_check_invocation_timeout = 600 // health_check_interval = 10 // health_check_type = "process" // readiness_health_check_invocation_timeout = 600 memory = "2048M" disk_quota = "1024M" random_route = false buildpacks = ["sap_java_buildpack"] instances = 1 labels = { version = 0.1 } environment = { JBP_CONFIG_COMPONENTS = "jres: ['com.sap.xs.java.buildpack.jdk.SAPMachineJDK']" JBP_CONFIG_SAP_MACHINE_JDK = "{ version: 17.+ }" } }
The deployment times out after 30 seconds:
Similarly, when all the timeouts are set to some large value:
The text was updated successfully, but these errors were encountered:
Dray56
Successfully merging a pull request may close this issue.
Hi,
I have been struggling to deploy an application as the client is timing out.
I have tried with and without a VPN without luck.
resource "cloudfoundry_app" "app-test" {
space_name = cloudfoundry_space.dev.name
org_name = jsondecode(btp_subaccount_environment_instance.cloudfoundry.labels)["Org Name"]
name = "app-test"
path = "./exes/sg.jar"
timeout = 600
// health_check_invocation_timeout = 600
// health_check_interval = 10
// health_check_type = "process"
// readiness_health_check_invocation_timeout = 600
memory = "2048M"
disk_quota = "1024M"
random_route = false
buildpacks = ["sap_java_buildpack"]
instances = 1
labels = {
version = 0.1
}
environment = {
JBP_CONFIG_COMPONENTS = "jres: ['com.sap.xs.java.buildpack.jdk.SAPMachineJDK']"
JBP_CONFIG_SAP_MACHINE_JDK = "{ version: 17.+ }"
}
}
The deployment times out after 30 seconds:
Similarly, when all the timeouts are set to some large value:
The text was updated successfully, but these errors were encountered: