Skip to content

Commit

Permalink
feat: increase Dataverse file upload limit, update postgres operator …
Browse files Browse the repository at this point in the history
…config
  • Loading branch information
vera committed Jul 18, 2024
1 parent 658397d commit a4f8fa4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion k8s/cluster_config/postgres_operator/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ helm repo add postgres-operator-charts https://opensource.zalando.com/postgres-o
```
## install the postgres-operator
```
helm upgrade postgres-operator postgres-operator-charts/postgres-operator -f ./values_postgres_operator.yaml --version=1.8.2
helm upgrade postgres-operator postgres-operator-charts/postgres-operator -f ./values_postgres_operator.yaml --version=1.10.1
```
# Documentation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ configLogicalBackup:
# storage provider - either "s3" or "gcs"
logical_backup_provider: "s3"
# S3 endpoint url when not using AWS
logical_backup_s3_endpoint: "https://de-2.s3.psmanaged.com"
logical_backup_s3_endpoint: "https://s3.de-west-1.psmanaged.com"
# S3 bucket to store backup results
logical_backup_s3_bucket: "postgres-test"
# S3 Access Key ID
Expand Down
2 changes: 1 addition & 1 deletion k8s/dataverse/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.4.2
version: 0.5.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 4 additions & 0 deletions k8s/dataverse/persona/nfdi4health/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ echo "Disable tabular file ingest"
curl -s -H "X-Dataverse-key:$API_TOKEN" -X PUT -d 0 "${DATAVERSE_URL}/api/admin/settings/:TabularIngestSizeLimit"
echo

echo "Setting file upload limit to 5Gi"
curl -s -H "X-Dataverse-key:$API_TOKEN" -X PUT -d 5368709120 "${DATAVERSE_URL}/api/admin/settings/:MaxFileUploadSizeInBytes"
echo

echo "Upload licenses"
#curl -X POST -H "Content-Type: application/json" -H "X-Dataverse-key:$DATAVERSE_API_KEY" $DATAVERSE_HOST/api/licenses --upload-file license-CC0-1.0.json
# Find all licence files
Expand Down

0 comments on commit a4f8fa4

Please sign in to comment.