first app

This commit is contained in:
Edward Viaene
2016-11-15 19:16:13 +01:00
commit 7fed7e9896
2 changed files with 14 additions and 0 deletions

2
README.md Normal file
View File

@@ -0,0 +1,2 @@
# Kubernetes course
This repository contains the course files for my Kubernetes course on Udemy

12
first-app/helloworld.yml Normal file
View File

@@ -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