Skip to content

Commit

Permalink
add simple bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
WitoDelnat committed Sep 30, 2022
1 parent 36844bc commit 61a903e
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions bundles/simple.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: blue-cms
labels:
monokle.io/demo: vanilla-blue-cms
spec:
replicas: "this-should-be-a-number"
selector:
matchLabels:
app: blue-cms
template:
metadata:
labels:
app: blue-cms
spec:
containers:
- name: blue-cms
image: blue-cms:latest
ports:
- name: http-web
containerPort: 8080
---
apiVersion: v1
kind: Service
metadata:
name: blue-cms
labels:
monokle.io/demo: vanilla-blue-cms
spec:
selector:
app: blue-INCORRECT_REFERENCE
ports:
- name: http-web
protocol: TCP
port: "this-should-be-a-number"
targetPort: 8080

0 comments on commit 61a903e

Please sign in to comment.