Skip to content

Instantly share code, notes, and snippets.

@rhardt-pivotal
Forked from nota-ja/README.md
Created June 9, 2017 23:50
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save rhardt-pivotal/b0795e2bc3a02b7d5487caca3caa1b18 to your computer and use it in GitHub Desktop.
Multiple App Ports Demo on Cloud Foundry

"Multiple App Ports" Demo Operations for HTTP Routing

  1. Cloning demo app
    Using cf-acceptance-tests/assets/multi-port-app
    • git clone https://github.com/cloudfoundry/cf-acceptance-tests.git
  2. Creating routes
    • (confirmation before operations) cf routes
    • cf create-route demo-spc bosh-lite.com --hostname mpg2
    • (confirmation after operations) cf routes
  3. Pushing app with listening multiple ports
    • cf push mpg -c 'go-online --ports=7777,8888,8080'
    • (checking current status)
      • curl -k https://mpg.bosh-lite.com/ports
      • curl -k https://mpg2.bosh-lite.com/ports -> should fail
  4. Updating external ports of app
    • (confirmation before operations) cf curl /v2/apps/$(cf app mpg --guid)
    • cf curl /v2/apps/$(cf app mpg --guid) -X PUT -d '\{"ports": \[7777, 8888, 8080\]\}'
  5. Adding route mappings
    • (confirmation before operations) cf curl /v2/route_mappings
    • (checking <ROUTE-GUID>s) cf curl /v2/routes?q=host:mpg2
    • cf curl /v2/route_mappings -X POST -d "\{\"app_guid\": \"$(cf app mpg --guid)\", \"route_guid\": \"<ROUTE-GUID>\", \"app_port\": 7777\}"
    • (confirmation after operations) cf curl /v2/route_mappings
  6. Validating behavior
    • curl -k https://mpg.bosh-lite.com/ports
    • curl -k https://mpg2.bosh-lite.com/ports

"Multiple App Ports" Demo Operations for TCP Routing

  1. Cloning demo app
    Using cf-acceptance-tests/assets/multi-port-app
    • git clone https://github.com/cloudfoundry/cf-acceptance-tests.git
  2. Creating routes
    • (confirmation before operations) cf routes
    • cf create-route demo-spc tcp.bosh-lite.com --port 1077
    • cf create-route demo-spc tcp.bosh-lite.com --port 1080
    • cf create-route demo-spc tcp.bosh-lite.com --port 1088
    • (confirmation after operations) cf routes
  3. Pushing app with listening multiple ports, not-started, no-routes
    • cf push mpg-tcp -c 'go-online --ports=7777,8888,8080' --no-route --no-start
  4. Updating external ports of app
    • (confirmation before operations) cf curl /v2/apps/$(cf app mpg-tcp --guid)
    • cf curl /v2/apps/$(cf app mpg-tcp --guid) -X PUT -d '\{"ports": \[7777, 8888, 8080\]\}'
  5. Adding route mappings
    • (confirmation before operations) cf curl /v2/route_mappings
    • (checking <ROUTE-GUID>s) cf curl /v2/routes and check each guid for routes tcp.bosh-lite.com:1080, tcp.bosh-lite.com:1077, tcp.bosh-lite.com:1088
    • cf curl /v2/route_mappings -X POST -d "\{\"app_guid\": \"$(cf app mpg-tcp --guid)\", \"route_guid\": \"<ROUTE-GUID>\", \"app_port\": 8080\}"
    • cf curl /v2/route_mappings -X POST -d "\{\"app_guid\": \"$(cf app mpg-tcp --guid)\", \"route_guid\": \"<ROUTE-GUID>\", \"app_port\": 7777\}"
    • cf curl /v2/route_mappings -X POST -d "\{\"app_guid\": \"$(cf app mpg-tcp --guid)\", \"route_guid\": \"<ROUTE-GUID>\", \"app_port\": 8888\}"
    • (confirmation after operations) cf curl /v2/route_mappings
  6. Validating behavior
    • curl -k http://tcp.bosh-lite.com:1077
    • curl -k http://tcp.bosh-lite.com:1080
    • curl -k http://tcp.bosh-lite.com:1088
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment