-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update for Document Engine 1.4.0 (#14)
- Loading branch information
1 parent
6fdf2f8
commit 241387c
Showing
17 changed files
with
384 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
pspdfkit: | ||
storage: | ||
postgres: | ||
enabled: false | ||
|
||
postgresql: | ||
enabled: false | ||
|
||
minio: | ||
enabled: false | ||
|
||
redis: | ||
enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
pspdfkit: | ||
storage: | ||
databaseMigrationJob: | ||
enabled: false | ||
assetStorageBackend: built-in | ||
postgres: | ||
enabled: true | ||
host: postgresql | ||
port: 5432 | ||
username: postgres | ||
|
||
prometheusExporter: | ||
enabled: true | ||
|
||
postgresql: | ||
enabled: true | ||
fullnameOverride: postgresql | ||
nameOverride: postgresql | ||
primary: | ||
persistence: | ||
enabled: true | ||
size: 1Gi | ||
storageClass: standard | ||
accessModes: | ||
- ReadWriteOnce | ||
volumePermissions: | ||
enabled: true | ||
|
||
minio: | ||
enabled: false | ||
|
||
redis: | ||
enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
pspdfkit: | ||
storage: | ||
databaseMigrationJob: | ||
enabled: false | ||
podAnnotations: | ||
do: "this" | ||
podLabels: | ||
do: "that" | ||
assetStorageBackend: s3 | ||
postgres: | ||
enabled: true | ||
host: postgresql | ||
port: 5432 | ||
username: postgres | ||
s3: | ||
accessKeyId: "pspdfkitObjectStorageRootKey" | ||
secretAccessKey: "pspdfkitObjectStorageRootPassword" | ||
bucket: "document-engine-assets" | ||
region: "us-east-1" | ||
host: "minio" | ||
port: 9000 | ||
scheme: "http://" | ||
redis: | ||
enabled: true | ||
host: redis-master | ||
database: "" | ||
username: "" | ||
password: "" | ||
ttlSeconds: 3600 | ||
useTtlForPrerendering: true | ||
sentinel: | ||
enabled: false | ||
urls: | ||
- redis://redis-node-0:26379 | ||
- redis://redis-node-1:26379 | ||
- redis://redis-node-2:26379 | ||
group: pspdfkit | ||
|
||
prometheusExporter: | ||
enabled: true | ||
|
||
postgresql: | ||
enabled: true | ||
fullnameOverride: postgresql | ||
nameOverride: postgresql | ||
primary: | ||
persistence: | ||
enabled: true | ||
size: 1Gi | ||
storageClass: standard | ||
accessModes: | ||
- ReadWriteOnce | ||
volumePermissions: | ||
enabled: true | ||
|
||
minio: | ||
enabled: true | ||
fullnameOverride: minio | ||
nameOverride: minio | ||
auth: | ||
rootUser: pspdfkitObjectStorageRootKey | ||
rootPassword: pspdfkitObjectStorageRootPassword | ||
defaultBuckets: "document-engine-assets" | ||
|
||
redis: | ||
enabled: true | ||
nameOverride: redis | ||
fullnameOverride: redis | ||
architecture: standalone | ||
auth: | ||
enabled: false | ||
sentinel: false | ||
password: pspdfkit | ||
master: | ||
count: 1 | ||
revisionHistoryLimit: 1 | ||
persistence: | ||
enabled: false | ||
persistentVolumeClaimRetentionPolicy: | ||
enabled: false | ||
whenDeleted: Delete | ||
# replica: | ||
# replicaCount: 2 | ||
# revisionHistoryLimit: 1 | ||
# persistence: | ||
# enabled: false | ||
# persistentVolumeClaimRetentionPolicy: | ||
# enabled: false | ||
# whenDeleted: Delete | ||
# sentinel: | ||
# enabled: true | ||
# quorum: 3 | ||
# masterSet: pspdfkit | ||
# getMasterTimeout: 90 | ||
# automateClusterRecovery: true | ||
# redisShutdownWaitFailover: true | ||
# persistence: | ||
# enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Tests | ||
|
||
* `1-no-storage-values.yaml` — Document Engine with no storage, processing only | ||
* `2-with-db-values.yaml` — Basic configuration with PostgreSQL database | ||
* `3-with-db-s3-redis-values.yaml` — PostgreSQL, MinIO as S3 asset storage backend and Redis for rendering cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.