This commit is contained in:
Justine Pelletreau
2022-06-16 15:11:26 +02:00
commit f1decc1dd4
5 changed files with 104 additions and 0 deletions

View File

@ -0,0 +1,38 @@
apiVersion: apps/v1
kind: DaemonSet
metadata:
annotations:
kompose.cmd: kompose convert -f squinotes.yml
kompose.version: 1.26.1 (a9d05d509)
labels:
io.kompose.service: notes
name: notes
spec:
selector:
matchLabels:
io.kompose.service: notes
template:
metadata:
labels:
io.kompose.service: notes
spec:
containers:
- image: squi/sqnotes:1.0
name: notes
ports:
- containerPort: 8080
resources: {}
volumeMounts:
- mountPath: /app/data
name: notes
restartPolicy: Always
volumes:
- name: notes
persistentVolumeClaim:
claimName: sqnotes-data
updateStrategy: {}
status:
currentNumberScheduled: 0
desiredNumberScheduled: 0
numberMisscheduled: 0
numberReady: 0