From 2530edcd7eaf669cb15d70f536e69fbddc9f65f8 Mon Sep 17 00:00:00 2001 From: Neha Date: Tue, 19 Jun 2018 14:59:56 -0700 Subject: [PATCH] some new files --- .../users/application-developer/Concepts 2 | 0 .../users/application-developer/Concepts2.md | 0 .../users/application-developer/Concepts3.md | 0 .../users/application-developer/concepts2 | 0 .../users/application-developer/tryitout.md | 30 +++++++++++-------- 5 files changed, 18 insertions(+), 12 deletions(-) create mode 100644 content/en/docs/user-journeys/users/application-developer/Concepts 2 create mode 100644 content/en/docs/user-journeys/users/application-developer/Concepts2.md create mode 100644 content/en/docs/user-journeys/users/application-developer/Concepts3.md create mode 100644 content/en/docs/user-journeys/users/application-developer/concepts2 diff --git a/content/en/docs/user-journeys/users/application-developer/Concepts 2 b/content/en/docs/user-journeys/users/application-developer/Concepts 2 new file mode 100644 index 0000000000..e69de29bb2 diff --git a/content/en/docs/user-journeys/users/application-developer/Concepts2.md b/content/en/docs/user-journeys/users/application-developer/Concepts2.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/content/en/docs/user-journeys/users/application-developer/Concepts3.md b/content/en/docs/user-journeys/users/application-developer/Concepts3.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/content/en/docs/user-journeys/users/application-developer/concepts2 b/content/en/docs/user-journeys/users/application-developer/concepts2 new file mode 100644 index 0000000000..e69de29bb2 diff --git a/content/en/docs/user-journeys/users/application-developer/tryitout.md b/content/en/docs/user-journeys/users/application-developer/tryitout.md index 608ae7102e..1990439f34 100644 --- a/content/en/docs/user-journeys/users/application-developer/tryitout.md +++ b/content/en/docs/user-journeys/users/application-developer/tryitout.md @@ -9,15 +9,12 @@ track: "USERS › APPLICATION DEVELOPER › FOUNDATIONAL" content_template: templates/user-journey-content --- {{% capture body %}} -*//## Try it out -Try our virtual terminal in your web browser to run Minikube. Minikube is a small-scale local deployment of Kubernetes that can run anywhere. -* After you run these commands, you will learn to: -* Create a cluster -* Deploy a containerized application on a cluster -* Expose the app -* Scale the deployment -* Update the containerized application with a new software version -* Debug the containerized application +## Learn to create a Containerized application + +Try our virtual terminal to create a containerized application with an existing image{popup} running on Minikube. +Minikube is a lightweight Kubernetes implementation that creates a Virtual Machine on your local machine and deploys a simple cluster containing only one node. +For the purposes of this tutorial, we have installed and preconfigured Minikube on the virtual terminal. +
{{< tabs name="test_drive_k8s" >}} -{{% tab name="1. Deploy" %}} +{{% tab name="1. Create a cluster" %}} -1. Deploy a sample app. +1. Verify that Minikube installed. ``` - kubectl run kubernetes-bootcamp --image=gcr.io/google-samples/kubernetes-bootcamp:v1 --port=8080 + minikube version + ``` + +{{< tabs name="test_drive_k8s" >}} +{{% tab name="1. Deploy" %}} + +1. Start the Minikube cluster: + + ``` + minikube start ``` 1. Verify the deployment.