Skip to content

Commit

Permalink
Add burry (lnk shrtnr)
Browse files Browse the repository at this point in the history
  • Loading branch information
gerrited committed Jun 15, 2024
1 parent 3a40f56 commit caa4025
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
33 changes: 33 additions & 0 deletions manifests/burry/burry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: burry
spec:
replicas: 1
selector:
matchLabels:
app: burry
template:
metadata:
labels:
app: burry
spec:
containers:
- name: url-shortener
image: ghcr.io/gerrited/burry:latest
ports:
- containerPort: 8080

---

apiVersion: v1
kind: Service
metadata:
name: burry
spec:
type: ClusterIP
ports:
- port: 80
targetPort: 8080
selector:
app: burry
31 changes: 31 additions & 0 deletions manifests/burry/cache.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: burry-cache
spec:
replicas: 1
selector:
matchLabels:
app: burry-cache
template:
metadata:
labels:
app: burry-cache
spec:
containers:
- name: burry-cache
image: redis:alpine
ports:
- containerPort: 6379

---

apiVersion: v1
kind: Service
metadata:
name: burry-cache
spec:
ports:
- port: 6379
selector:
app: burry-cache

0 comments on commit caa4025

Please sign in to comment.