"Hello World" is a simple Kubernetes application that contains a single Deployment and a corresponding Service. The Deployment contains a Flask-based web server that renders a simple webpage.
This sample was written to demonstrate how to use the Cloud Code extension for Visual Studio Code.
- Set up a Google Kubernetes Engine Cluster
- Running the app
- Debug the app
- View Container Logs
- Open a Terminal in Your Container
This sample was written to demonstrate how to use the Cloud Code plugin for IntelliJ.
As an alternative to using Cloud Code, the application can be deployed to a cluster using standard command line tools
Skaffold is a command line tool that can be used to build, push, and deploy your container images
skaffold run --default-repo=gcr.io/YOUR-PROJECT-ID-HERE/cloudcodekubectl is the official Kubernetes command line tool. It can be used to deploy Kubernetes manifests to your cluster, but images must be build separately using another tool (for example, using the Docker CLI)
