commit 7fed7e9896d0ce105a47ee182586bd876f581583 Author: Edward Viaene Date: Tue Nov 15 19:16:13 2016 +0100 first app 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