Skip to main content

Demo Application Setup

  1. Begin by accessing your Kubernetes cluster by following the steps in the Access page in your cluster view.
  2. Once you have access to your cluster, you can deploy the demo application by running the following command: Update the command below with your kubeconfig name
kubectl --kubeconfig ~/.kube/<your_kube_config_name>_kubeconfig run --restart=Never --image=gcr.io/kuar-demo/kuard-amd64:blue kuard
  1. Port forward the demo application port to your local machine by running the following command: Update the command below with your kubeconfig name
kubectl --kubeconfig ~/.kube/<your_kube_config_name>_kubeconfig port-forward kuard 8080:8080
  1. You can now access the demo application by navigating to http://localhost:8080 in your browser.