-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathvalues.yaml
More file actions
91 lines (74 loc) · 2.09 KB
/
values.yaml
File metadata and controls
91 lines (74 loc) · 2.09 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Default values for rubin-rag.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
# -- Number of web deployment pods to start
replicaCount: 1
image:
# -- Image to use in the rubin-rag deployment
repository: "ghcr.io/lsst-dm/rubin_rag"
# -- Pull policy for the rubin-rag image
pullPolicy: "Always"
# -- Tag of image to use
# @default -- The appVersion of the chart
tag: null
config:
# -- Logging level
logLevel: "INFO"
# -- Logging profile (`production` for JSON, `development` for
# human-friendly)
logProfile: "production"
# -- URL path prefix
pathPrefix: "/rubin-rag"
ingress:
# -- Additional annotations for the ingress rule
annotations: {}
# -- Affinity rules for the rubin-rag deployment pod
affinity: {}
# -- Node selection rules for the rubin-rag deployment pod
nodeSelector: {}
# -- Annotations for the rubin-rag deployment pod
podAnnotations: {}
# -- Resource limits and requests for the rubin-rag deployment pod
# @default -- See `values.yaml`
resources: {}
# -- Tolerations for the rubin-rag deployment pod
tolerations: []
# The following will be set by parameters injected by Argo CD and should not
# be set in the individual environment values files.
global:
# -- Base URL for the environment
# @default -- Set by Argo CD
baseUrl: null
# -- Host name for ingress
# @default -- Set by Argo CD
host: null
# -- Base path for Vault secrets
# @default -- Set by Argo CD
vaultSecretsPath: null
weaviate:
resources:
requests:
cpu: '300m'
memory: '150Mi'
limits:
cpu: '500m'
memory: '300Mi'
authentication:
anonymous_access:
enabled: true
env:
AUTHENTICATION_APIKEY_ENABLED: 'true'
AUTHENTICATION_APIKEY_USERS: 'admin'
AUTHORIZATION_ADMINLIST_ENABLED: 'true'
AUTHORIZATION_ADMINLIST_USERS: 'admin'
envSecrets:
AUTHENTICATION_APIKEY_ALLOWED_KEYS: rubin-rag
modules:
generative-openai:
enabled: true
text2vec-openai:
enabled: true
storage:
size: 32Gi
storageClassName: "wekafs--sdf-k8s01"
fullnameOverride: "weaviate-data-alt"