cloudfoundry-samples / cf-sample-app-spring

Introduction to Cloud Foundry app deployment and management concepts.
31 stars 142 forks source link

Unable to set PCF health-check invocation-timeout through stream spring boot app #23

Closed suresh-chidham closed 3 years ago

suresh-chidham commented 3 years ago

I need to set PCF health-check invocation-timeout through manifest file.

In manifest.yaml file

cloudfoundry.health-check: "HTTP" cloudfoundry.health-check-http-endpoint: "/actuator/health" cloudfoundry.health-check-timeout: "130"

cloudfoundry.health-check-invocation-timeout: "10"

In this, first 3 properties are able to set in PCF health-check section through spring boot app . But invocation-timeout is not able to set. Please can you help on this?

dmikusa commented 3 years ago

You can see the schema for the v3 manifest.yml here: http://v3-apidocs.cloudfoundry.org/version/3.102.0/index.html#the-manifest-schema

The invocation timeout is set beneath the processes: block.

This isn't really a question about this sample app though, so I'm going to close this.