Skip to content

Commit

Permalink
Deploy Dataset Knowledge Graph
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeboer committed Dec 6, 2023
1 parent 2d2e877 commit 22ea69f
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions k8s/dataset-knowledge-graph/deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: dataset-knowledge-graph
spec:
replicas: 1
selector:
matchLabels:
app: dataset-knowledge-graph
template:
metadata:
labels:
app: dataset-knowledge-graph
spec:
containers:
- name: app
image: ghcr.io/netwerk-digitaal-erfgoed/dataset-knowledge-graph
env:
- name: GRAPHDB_URL
value: "http://graphdb"
- name: GRAPHDB_USERNAME
valueFrom:
secretKeyRef:
name: graphdb
key: username
- name: GRAPHDB_PASSWORD
valueFrom:
secretKeyRef:
name: graphdb
key: password
restartPolicy: Never
imagePullSecrets:
- name: ghcr

0 comments on commit 22ea69f

Please sign in to comment.