Skip to content

Commit

Permalink
Adds bgd
Browse files Browse the repository at this point in the history
  • Loading branch information
lordofthejars committed Jun 15, 2022
0 parents commit 42b791d
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added ch07/.DS_Store
Binary file not shown.
Binary file added ch07/bgd/.DS_Store
Binary file not shown.
28 changes: 28 additions & 0 deletions ch07/bgd/bgd-deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: bgd
name: bgd
namespace: bgd
spec:
replicas: 1
selector:
matchLabels:
app: bgd
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: bgd
spec:
containers:
- image: quay.io/redhatworkshops/bgd:latest
name: bgd
env:
- name: COLOR
value: "blue"
resources: {}
---
4 changes: 4 additions & 0 deletions ch07/bgd/bgd-ns.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: bgd
16 changes: 16 additions & 0 deletions ch07/bgd/bgd-svc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
apiVersion: v1
kind: Service
metadata:
labels:
app: bgd
name: bgd
namespace: bgd
spec:
ports:
- port: 8080
protocol: TCP
targetPort: 8080
selector:
app: bgd
---

0 comments on commit 42b791d

Please sign in to comment.