mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-07-12 07:09:17 +00:00
first app
This commit is contained in:
2
README.md
Normal file
2
README.md
Normal 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
12
first-app/helloworld.yml
Normal 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
|
||||
Reference in New Issue
Block a user