mirror of
https://github.com/pawelmalak/flame.git
synced 2025-08-05 10:55:17 +02:00
Kubernetes integration (#80)
* chore(): skaffold
* chore(): kubernetes integration
* chore(skaffold): refine shokohsc profile
* chore(): removed docker & kubernetes from database + stoppedApp pin option
* Revert "chore(): removed docker & kubernetes from database + stoppedApp pin option"
This reverts commit 5111c7ad79
.
This commit is contained in:
parent
c1b61f9cd9
commit
8681f75bab
24 changed files with 5567 additions and 89 deletions
28
k8s/base/deployment.yaml
Normal file
28
k8s/base/deployment.yaml
Normal file
|
@ -0,0 +1,28 @@
|
|||
---
|
||||
kind: Deployment
|
||||
apiVersion: apps/v1
|
||||
metadata:
|
||||
name: flame
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: flame
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: flame
|
||||
spec:
|
||||
serviceAccountName: flame
|
||||
securityContext:
|
||||
fsGroup: 1000
|
||||
containers:
|
||||
- name: flame
|
||||
image: shokohsc/flame
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 5005
|
||||
protocol: TCP
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: http
|
Loading…
Add table
Add a link
Reference in a new issue