We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using below code for neo4j deployment in my code , but Neo4j plugins that i am specifying is not getting downloaded
apiVersion: apps/v1 kind: Deployment metadata: namespace: default
labels: component: neo4j name: neo4j spec: replicas: 1 selector: matchLabels: component: neo4j strategy: type: Recreate template: metadata: namespace: default labels: component: neo4j spec: containers: - env: - name: NEO4J_AUTH value: neo4j/Vectoredge@#456 - name: NEO4J_db_temporal_timezone value: UTC - name: NEO4JLABS_PLUGINS value: '["graph-data-science"]' image: neo4j:4.4 name: neo4j ports: - containerPort: 7474 - containerPort: 7687 resources: {} volumeMounts: - mountPath: /conf name: neo4j-claim0 - mountPath: /data name: neo4j-claim1 - mountPath: /import name: neo4j-claim2 - mountPath: /logs name: neo4j-claim3 - mountPath: /plugins name: neo4j-claim4 restartPolicy: Always imagePullSecrets: - name: docker-cred volumes: - name: neo4j-claim0 persistentVolumeClaim: claimName: neo4j-claim0 - name: neo4j-claim1 persistentVolumeClaim: claimName: neo4j-claim1 - name: neo4j-claim2 persistentVolumeClaim: claimName: neo4j-claim2 - name: neo4j-claim3 persistentVolumeClaim: claimName: neo4j-claim3 - name: neo4j-claim4 persistentVolumeClaim: claimName: neo4j-claim4 status: {}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am using below code for neo4j deployment in my code , but Neo4j plugins that i am specifying is not getting downloaded
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: default
labels:
component: neo4j
name: neo4j
spec:
replicas: 1
selector:
matchLabels:
component: neo4j
strategy:
type: Recreate
template:
metadata:
namespace: default
labels:
component: neo4j
spec:
containers:
- env:
- name: NEO4J_AUTH
value: neo4j/Vectoredge@#456
- name: NEO4J_db_temporal_timezone
value: UTC
- name: NEO4JLABS_PLUGINS
value: '["graph-data-science"]'
image: neo4j:4.4
name: neo4j
ports:
- containerPort: 7474
- containerPort: 7687
resources: {}
volumeMounts:
- mountPath: /conf
name: neo4j-claim0
- mountPath: /data
name: neo4j-claim1
- mountPath: /import
name: neo4j-claim2
- mountPath: /logs
name: neo4j-claim3
- mountPath: /plugins
name: neo4j-claim4
restartPolicy: Always
imagePullSecrets:
- name: docker-cred
volumes:
- name: neo4j-claim0
persistentVolumeClaim:
claimName: neo4j-claim0
- name: neo4j-claim1
persistentVolumeClaim:
claimName: neo4j-claim1
- name: neo4j-claim2
persistentVolumeClaim:
claimName: neo4j-claim2
- name: neo4j-claim3
persistentVolumeClaim:
claimName: neo4j-claim3
- name: neo4j-claim4
persistentVolumeClaim:
claimName: neo4j-claim4
status: {}
The text was updated successfully, but these errors were encountered: