From 7fed7e9896d0ce105a47ee182586bd876f581583 Mon Sep 17 00:00:00 2001 From: Edward Viaene Date: Tue, 15 Nov 2016 19:16:13 +0100 Subject: [PATCH] first app --- README.md | 2 ++ first-app/helloworld.yml | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 README.md create mode 100644 first-app/helloworld.yml diff --git a/README.md b/README.md new file mode 100644 index 0000000..6169e47 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Kubernetes course +This repository contains the course files for my Kubernetes course on Udemy diff --git a/first-app/helloworld.yml b/first-app/helloworld.yml new file mode 100644 index 0000000..cc79f36 --- /dev/null +++ b/first-app/helloworld.yml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Pod +metadata: + name: nodehelloworld.example.com + labels: + app: helloworld +spec: + containers: + - name: k8s-demo + image: wardviaene/k8s-demo + ports: + - containerPort: 3000