Skip to content
Snippets Groups Projects
Unverified Commit 4cdb85d1 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

provenance/values: Design yaml configuration

So this will drive the development adaptations of the template.

Refs. swh/infra/sysadm-environment#5608
parent 1f158e86
No related branches found
No related tags found
No related merge requests found
......@@ -1922,8 +1922,24 @@ provenance:
# enabled: false
# # The server type to deploy, either a rpc or a grpc
# type: grpc
# # For type grpc, the parquet files to use
# parquetFiles: /srv/volumes/datasets/parquet-$version
# # For type grpc, datasets need to be available for the service to use
# dataset:
# # Name of the dataset, graph and provenance must be in sync so same
# # version must be used
# name: 2024-08-23-popular-500-python
# # Graph setup
# graph:
# # Where to store the files
# path: /srv/dataset/graph
# provenance:
# # Whether or not to fetch provenance dataset
# fetch: true
# # Whether or not to build the provenance dataset indices
# index: true
# # Where to store the parquet files
# path: /srv/dataset/provenance
# # Whether to start/stop the service
# startService: true
# hosts: []
# ingress:
# enabled: true
......
......@@ -1464,7 +1464,22 @@ provenance:
test-grpc:
enabled: true
type: grpc
graphConfigurationRef: fakeGraphConfiguration
dataset:
name: 2024-08-23-popular-500-python
provenance:
fetch: true
index: true
path: /srv/dataset/provenance
graph:
path: /srv/dataset/graph
startService: true
extraVolumes:
dataset-persistent:
mountPath: /srv/dataset
volumeDefinition:
persistentVolumeClaim:
claimName: provenance-popular-persistent-pvc
replicas: 1
# gunicorn:
# workers: 4
......@@ -1523,6 +1538,17 @@ externalServices:
volumes:
enabled: true
persistentVolumeClaims:
provenance-popular-persistent-pvc:
enabled: true
appName: provenance-test-grpc
spec:
storageClassName: standard
volumeMode: Filesystem
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
alter-recovery-bundles-pvc:
enabled: true
appName: alter
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment