Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dscc-admin-ch committed Jun 14, 2024
1 parent 082c976 commit 9fc7ad5
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/lomas_server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Lomas deployment chart

type: application

version: 0.0.5
version: 0.0.6

appVersion: "0.0.1"

Expand Down
7 changes: 6 additions & 1 deletion charts/lomas_server/templates/server/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,9 @@ data:
db_name: {{ index .Values.mongodb.auth.databases 0}}
dataset_store:
ds_store_type: {{ .Values.server.runtime_args.settings.dataset_store.ds_store_type }}
max_memory_usage : {{ .Values.server.runtime_args.settings.dataset_store.max_memory_usage }}
max_memory_usage : {{ .Values.server.runtime_args.settings.dataset_store.max_memory_usage }}
dp_libraries:
opendp:
contrib: {{ .Values.server.runtime_args.settings.dp_libraries.opendp.contrib }}
floating_point: {{ .Values.server.runtime_args.settings.dp_libraries.opendp.floating_point }}
honest_but_curious: {{ .Values.server.runtime_args.settings.dp_libraries.opendp.honest_but_curious }}
24 changes: 24 additions & 0 deletions charts/lomas_server/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,30 @@
},
"submit_limit": {
"type": "integer"
},
"dp_libraries": {
"description": "Settings for DP libraries",
"type": "object",
"properties": {
"opendp": {
"description": "Settings for opendp library",
"type": "object",
"properties": {
"contrib": {
"description": "Enable contrib feature",
"type": "boolean"
},
"floating_point": {
"description": "Enable floating-point feature",
"type": "boolean"
},
"honest_but_curious": {
"description": "Enable honest-but-curious feature",
"type": "boolean"
}
}
}
}
}
}
}
Expand Down
5 changes: 5 additions & 0 deletions charts/lomas_server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ server:
dataset_store:
ds_store_type: "LRU_cache"
max_memory_usage : 512
dp_libraries:
opendp:
contrib: True
floating_point: True
honest_but_curious: True


service:
Expand Down

0 comments on commit 9fc7ad5

Please sign in to comment.