Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions charts/trustify/templates/services/server/030-Deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ spec:
value: {{ . | quote }}
{{- end }}

{{- with $mod.module.paginationCacheTtl }}
- name: TRUSTD_PAGINATION_TOTAL_CACHE_TTL
value: {{ . | quote }}
{{- end }}

{{- if eq ( include "trustification.openshift.useServiceCa" .root ) "true" }}
- name: CLIENT_TLS_CA_CERTIFICATES
value: /run/secrets/kubernetes.io/serviceaccount/service-ca.crt
Expand Down
4 changes: 4 additions & 0 deletions charts/trustify/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,10 @@
"maximumCacheSize": {
"description": "The maximum number of the bytes the analysis cache will hold before evicting entries.\n",
"$ref": "#/definitions/ByteSize"
},
"paginationCacheTtl": {
"type": "string",
"description": "The TTL for the pagination total-count cache (humantime, e.g. \"60s\", \"5m\").\nIf not set, the application default of \"60s\" is used.\n"
}
}
}
Expand Down
5 changes: 5 additions & 0 deletions charts/trustify/values.schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,11 @@ properties:
description: |
The maximum number of the bytes the analysis cache will hold before evicting entries.
$ref: "#/definitions/ByteSize"
paginationCacheTtl:
type: string
description: |
The TTL for the pagination total-count cache (humantime, e.g. "60s", "5m").
If not set, the application default of "60s" is used.

importer:
description: |
Expand Down
Loading