简体   繁体   中英

How can I see cloudfoundry properties are defined on an application

I'm deploying my CloudFoundry application, and want to configure some http routing properties as described in https://docs.cloudfoundry.org/concepts/http-routing.html

I think to configure what I want, I need to add this to my manifest.yml :

      properties:
        router:
          tracing:
            enable_zipkin: true
          balancing_algorithm: least-connection

Question: However, when I deploy, how do I know that these properties really take place, for example that the balancing_algorithm works as I configured?

I tried:

  • cf app - doesn't show it
  • create-app-manifest - creates a manifest, but there's no properties: in it
  • Looking in Stratos , I don't see the properties anywhere

I've never tried to enable zipkin, bit "cf env APP" usually shows user provided configuration.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM