Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
memoriav
Memobase 2020
services
Cantaloupe on Docker
Commits
025e1f53
Verified
Commit
025e1f53
authored
Sep 30, 2021
by
Sebastian Schüpbach
Browse files
add more envvars
parent
0e2e5487
Pipeline
#33918
passed with stages
in 10 minutes and 3 seconds
Changes
5
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
helm-charts/helm-values/api-image-server-prod.yaml
View file @
025e1f53
tag
:
"
5.x-
images
"
tag
:
"
5.x-
turbojpeg
"
k8sEnvironment
:
prod
k8sEnvironment
:
prod
k8sReplicas
:
2
k8sReplicas
:
2
...
@@ -12,8 +12,17 @@ mediaVolumeClaimName: "media-volume-claim"
...
@@ -12,8 +12,17 @@ mediaVolumeClaimName: "media-volume-claim"
mediaFolderRootPath
:
"
/home/cantaloupe/images"
mediaFolderRootPath
:
"
/home/cantaloupe/images"
cacheServerDerivativeEnabled
:
"
true"
cacheServerDerivativeEnabled
:
"
true"
cacheServerDerivative
:
FilesystemCache
cacheServerDerivative
:
"
FilesystemCache
"
cacheServerDerivativeTtlSeconds
:
"
172800"
cacheServerDerivativeTtlSeconds
:
"
172800"
cacheServerInfoEnabled
:
"
false"
cacheServerInfoEnabled
:
"
false"
cacheServerPurgeMissing
:
"
false"
cacheServerPurgeMissing
:
"
false"
cacheServerResolveFirst
:
"
false"
cacheServerResolveFirst
:
"
false"
endpointAdminEnabled
:
"
false"
endpointAdminUsername
:
"
"
endpointAdminSecret
:
"
"
endpointApiEnabled
:
"
false"
endpointApiUsername
:
"
"
endpointApiSecret
:
"
"
logApplicationLevel
:
"
warn"
helm-charts/helm-values/api-image-server-stage.yaml
View file @
025e1f53
tag
:
"
5.x-
images
"
tag
:
"
5.x-
turbojpeg
"
k8sEnvironment
:
stage
k8sEnvironment
:
stage
k8sReplicas
:
1
k8sReplicas
:
1
...
@@ -12,8 +12,17 @@ mediaVolumeClaimName: "stage-media-volume-claim"
...
@@ -12,8 +12,17 @@ mediaVolumeClaimName: "stage-media-volume-claim"
mediaFolderRootPath
:
"
/home/cantaloupe/images"
mediaFolderRootPath
:
"
/home/cantaloupe/images"
cacheServerDerivativeEnabled
:
"
true"
cacheServerDerivativeEnabled
:
"
true"
cacheServerDerivative
:
FilesystemCache
cacheServerDerivative
:
"
FilesystemCache
"
cacheServerDerivativeTtlSeconds
:
"
172800"
cacheServerDerivativeTtlSeconds
:
"
172800"
cacheServerInfoEnabled
:
"
false"
cacheServerInfoEnabled
:
"
false"
cacheServerPurgeMissing
:
"
false"
cacheServerPurgeMissing
:
"
false"
cacheServerResolveFirst
:
"
false"
cacheServerResolveFirst
:
"
false"
endpointAdminEnabled
:
"
false"
endpointAdminUsername
:
"
"
endpointAdminSecret
:
"
"
endpointApiEnabled
:
"
false"
endpointApiUsername
:
"
"
endpointApiSecret
:
"
"
logApplicationLevel
:
"
warn"
helm-charts/helm-values/api-image-server-test.yaml
View file @
025e1f53
tag
:
"
5.x-
images
"
tag
:
"
5.x-
turbojpeg
"
k8sEnvironment
:
test
k8sEnvironment
:
test
k8sReplicas
:
1
k8sReplicas
:
1
...
@@ -12,8 +12,17 @@ mediaVolumeClaimName: "test-media-volume-claim"
...
@@ -12,8 +12,17 @@ mediaVolumeClaimName: "test-media-volume-claim"
mediaFolderRootPath
:
"
/home/cantaloupe/images"
mediaFolderRootPath
:
"
/home/cantaloupe/images"
cacheServerDerivativeEnabled
:
"
true"
cacheServerDerivativeEnabled
:
"
true"
cacheServerDerivative
:
FilesystemCache
cacheServerDerivative
:
"
FilesystemCache
"
cacheServerDerivativeTtlSeconds
:
"
172800"
cacheServerDerivativeTtlSeconds
:
"
172800"
cacheServerInfoEnabled
:
"
false"
cacheServerInfoEnabled
:
"
false"
cacheServerPurgeMissing
:
"
false"
cacheServerPurgeMissing
:
"
false"
cacheServerResolveFirst
:
"
false"
cacheServerResolveFirst
:
"
false"
endpointAdminEnabled
:
"
false"
endpointAdminUsername
:
"
"
endpointAdminSecret
:
"
"
endpointApiEnabled
:
"
false"
endpointApiUsername
:
"
"
endpointApiSecret
:
"
"
logApplicationLevel
:
"
info"
helm-charts/templates/app-config.yaml
View file @
025e1f53
...
@@ -10,3 +10,10 @@ data:
...
@@ -10,3 +10,10 @@ data:
CACHE_SERVER_INFO_ENABLED
:
"
{{
.Values.cacheServerInfoEnabled
}}"
CACHE_SERVER_INFO_ENABLED
:
"
{{
.Values.cacheServerInfoEnabled
}}"
CACHE_SERVER_PURGE_MISSING
:
"
{{
.Values.cacheServerPurgeMissing
}}"
CACHE_SERVER_PURGE_MISSING
:
"
{{
.Values.cacheServerPurgeMissing
}}"
CACHE_SERVER_RESOLVE_FIRST
:
"
{{
.Values.cacheServerResolveFirst
}}"
CACHE_SERVER_RESOLVE_FIRST
:
"
{{
.Values.cacheServerResolveFirst
}}"
ENDPOINT_ADMIN_ENABLED
:
"
{{
.Values.endpointAdminEnabled
}}"
ENDPOINT_ADMIN_USERNAME
:
"
{{
.Values.endpointAdminUsername
}}"
ENDPOINT_ADMIN_SECRET
:
"
{{
.Values.endpointAdminSecret
}}"
ENDPOINT_API_ENABLED
:
"
{{
.Values.endpointApiEnabled
}}"
ENDPOINT_API_USERNAME
:
"
{{
.Values.endpointApiUsername
}}"
ENDPOINT_API_SECRET
:
"
{{
.Values.endpointApiSecret
}}"
LOG_APPLICATION_LEVEL
:
"
{{
.Values.logApplicationLevel
}}"
helm-charts/values.yaml
View file @
025e1f53
...
@@ -23,3 +23,12 @@ cacheServerDerivativeTtlSeconds: placeholder
...
@@ -23,3 +23,12 @@ cacheServerDerivativeTtlSeconds: placeholder
cacheServerInfoEnabled
:
placeholder
cacheServerInfoEnabled
:
placeholder
cacheServerPurgeMissing
:
placeholder
cacheServerPurgeMissing
:
placeholder
cacheServerResolveFirst
:
placeholder
cacheServerResolveFirst
:
placeholder
endpointAdminEnabled
:
placeholder
endpointAdminUsername
:
placeholder
endpointAdminSecret
:
placeholder
endpointApiEnabled
:
placeholder
endpointApiUsername
:
placeholder
endpointApiSecret
:
placeholder
logApplicationLevel
:
placeholder
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment