Skip to content

Commit

Permalink
Adds ch08
Browse files Browse the repository at this point in the history
  • Loading branch information
lordofthejars committed Aug 30, 2022
1 parent 3caf0af commit aea6fd6
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
27 changes: 27 additions & 0 deletions ch08/bgd-gen/prod/bgd-deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: bgd
name: bgd
spec:
replicas: 1
selector:
matchLabels:
app: bgd
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: bgd
spec:
containers:
- image: quay.io/rhdevelopers/bgd:1.0.0
name: bgd
env:
- name: COLOR
value: "green"
resources: {}
---
27 changes: 27 additions & 0 deletions ch08/bgd-gen/staging/bgd-deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: bgd
name: bgd
spec:
replicas: 1
selector:
matchLabels:
app: bgd
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: bgd
spec:
containers:
- image: quay.io/rhdevelopers/bgd:1.0.0
name: bgd
env:
- name: COLOR
value: "blue"
resources: {}
---

0 comments on commit aea6fd6

Please sign in to comment.