Skip to content

Commit

Permalink
initial add
Browse files Browse the repository at this point in the history
gbpeloton committed Jul 3, 2022
0 parents commit e6b291a
Showing 4 changed files with 32 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
FROM nginx
COPY html /usr/share/nginx/html
20 changes: 20 additions & 0 deletions dumbserver-deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: guestbook-ui
spec:
replicas: 1
revisionHistoryLimit: 3
selector:
matchLabels:
app: guestbook-ui
template:
metadata:
labels:
app: guestbook-ui
spec:
containers:
- image: gcr.io/heptio-images/ks-guestbook-demo:0.2
name: guestbook-ui
ports:
- containerPort: 80
10 changes: 10 additions & 0 deletions html/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Hello World!</title>
</head>
<body>
<H1>Hello World!</H1>
</body>
</html>

0 comments on commit e6b291a

Please sign in to comment.