Skip to content

Commit

Permalink
First attempt at API manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Freeman committed Aug 23, 2018
1 parent 8f0cff3 commit c1a5d73
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions api/manifest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: roulette-api
spec:
selector:
matchLabels:
app: roulette-api
tier: backend
track: stable
replicas: 1
template:
metadata:
labels:
app: roulette-api
tier: backend
track: stable
spec:
containers:
- name: roulette-api
image: "cfree/roulette-api:latest"
ports:
- name: http
containerPort: 5001
---
kind: Service
apiVersion: v1
metadata:
name: roulette-api
spec:
selector:
app: roulette-api
tier: backend
ports:
- protocol: TCP
port: 5001
targetPort: http

Empty file added ui/manifest.yml
Empty file.

0 comments on commit c1a5d73

Please sign in to comment.