mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
41 lines
911 B
YAML
41 lines
911 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -f ../docker-compose.yml
|
|
kompose.version: 1.16.0 (0c01309)
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.service: neo4j
|
|
name: neo4j
|
|
spec:
|
|
replicas: 1
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.service: neo4j
|
|
spec:
|
|
containers:
|
|
- env:
|
|
- name: NEO4J_AUTH
|
|
value: none
|
|
image: humanconnection/neo4j:latest
|
|
name: neo4j
|
|
ports:
|
|
- containerPort: 7687
|
|
- containerPort: 7474
|
|
resources: {}
|
|
imagePullPolicy: IfNotPresent
|
|
volumeMounts:
|
|
- mountPath: /data
|
|
name: neo4j-data
|
|
restartPolicy: Always
|
|
volumes:
|
|
- name: neo4j-data
|
|
persistentVolumeClaim:
|
|
claimName: neo4j-data
|
|
status: {}
|