Skip to content
Merged
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: 4 additions & 1 deletion deployment/kubernetes/charts/medcat-service-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ env:
OTEL_EXPORTER_OTLP_PROTOCOL: "grpc"
OTEL_EXPERIMENTAL_RESOURCE_DETECTORS: "containerid,os"
OTEL_RESOURCE_ATTRIBUTES: "k8s.pod.uid=$(K8S_POD_UID),k8s.pod.name=$(K8S_POD_NAME),k8s.namespace.name=$(K8S_POD_NAMESPACE),k8s.node.name=$(K8S_NODE_NAME)"

OTEL_METRICS_EXPORTER: "none"
OTEL_LOGS_EXPORTER: "none"
OTEL_PYTHON_FASTAPI_EXCLUDED_URLS: "/api/health,/metrics"

# Enable downloading of public models using wget on startup. Model will be downloaded to /models/<name> and used for APP_MEDCAT_MODEL_PACK
model: {}
# Public URL to download a model pack from
Expand Down
17 changes: 16 additions & 1 deletion deployment/kubernetes/charts/medcat-trainer-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ postgresql:
persistence:
# Size of the PVC for the postgres database
size: 500Mi

image:
repository: bitnamilegacy/postgresql
# Pin legacy version of postgresql following bitnami change to remove free images. Match prefect version
tag: 17.6.0-debian-12-r4

persistence:
media:
# Size of PVC for files like model packs and other media downloaded by medcat trainer
Expand Down Expand Up @@ -104,6 +108,17 @@ solr:
podLabels:
app.kubernetes.io/component: solr
app.kubernetes.io/part-of: cogstack
image:
repository: bitnamilegacy/solr
# Pin legacy version of postgresql following bitnami change to remove free images. Match prefect version
tag: 9.9.0-debian-12-r1

zookeeper:
image:
repository: bitnamilegacy/zookeeper
tag: 3.9.3-debian-12-r22



# This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
imagePullSecrets: []
Expand Down
Loading