mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-24 13:39:35 +02:00
29 lines
533 B
YAML
29 lines
533 B
YAML
|
---
|
||
|
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
|