-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigmap-and-secrets.yaml
More file actions
37 lines (34 loc) · 1.37 KB
/
configmap-and-secrets.yaml
File metadata and controls
37 lines (34 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Default configuration for the e2e test environment.
#
# All values here can be overridden by the ragas-env secret (created from .env).
# The ragas-env secret is loaded AFTER this ConfigMap, so .env values take precedence.
#
# The following keys MUST be provided in .env (they are left blank here):
# LITELLM_API_URL, LITELLM_API_KEY
#
apiVersion: v1
kind: ConfigMap
metadata:
name: kubeflow-ragas-config
namespace: ragas-test
data:
# Inference
INFERENCE_MODEL: "Mistral-Small-24B-W8A8"
LITELLM_API_URL: ""
LITELLM_API_KEY: ""
# Embedding (inline sentence-transformers, model downloaded at startup)
EMBEDDING_MODEL: "nomic-ai/nomic-embed-text-v1.5"
# Kubeflow pipelines
KUBEFLOW_LLAMA_STACK_URL: "http://lsd-ragas-test-service.ragas-test.svc.cluster.local:8321"
KUBEFLOW_PIPELINES_ENDPOINT: "http://ds-pipeline-ragas-e2e-dspa.ragas-test.svc.cluster.local:8888"
KUBEFLOW_PIPELINES_TOKEN: ""
KUBEFLOW_NAMESPACE: "ragas-test"
KUBEFLOW_BASE_IMAGE: "quay.io/sclorg/python-312-minimal-c9s:latest"
# S3 / MinIO results storage
KUBEFLOW_RESULTS_S3_PREFIX: "s3://ragas-results/evaluations"
KUBEFLOW_S3_CREDENTIALS_SECRET_NAME: "aws-credentials"
RESULTS_S3_ENDPOINT: "http://ragas-results-minio.ragas-test.svc.cluster.local:9000"
RESULTS_S3_PATH_STYLE: "true"
AWS_ACCESS_KEY_ID: "minioadmin"
AWS_SECRET_ACCESS_KEY: "minioadmin"
AWS_DEFAULT_REGION: "us-east-1"