Before you begin
Complete the Install Kf guide.
Push an application
Prerequisites
The following are required to complete this section:
- The
kfCLI installed and in your path. See Install Kf CLI for instructions. You have connected to the Kf cluster:
gcloud container clusters get-credentials CLUSTER_NAME \ --project=CLUSTER_PROJECT_ID \ --zone=CLUSTER_LOCATION
The
gitCLI installed and in your path.
Prepare space
Create new space:
kf create-space test-spaceTarget the space:
kf target -s test-space
Push the Cloud Foundry test app
Clone the test-app repo.
git clone https://github.com/cloudfoundry-samples/test-app go-test-appcd go-test-appPush the app.
kf push test-appGet the application's URL.
kf appsOpen the URL in your browser where you should see the app running.
Clean up
These steps should return the cluster to the starting state.
Delete the application.
kf delete test-appDelete the Space.
kf delete-space test-space