Added flog
This commit is contained in:
29
flog/flog-deployment.yaml
Normal file
29
flog/flog-deployment.yaml
Normal file
@ -0,0 +1,29 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
app: flog
|
||||
name: flog
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: flog
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: flog
|
||||
spec:
|
||||
containers:
|
||||
- image: squi/flog:0.1.0
|
||||
name: flog
|
||||
ports:
|
||||
- containerPort: 8000
|
||||
volumeMounts:
|
||||
- mountPath: /opt/flog
|
||||
name: flog
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
- name: flog
|
||||
persistentVolumeClaim:
|
||||
claimName: flog-data
|
||||
Reference in New Issue
Block a user