30 lines
665 B
YAML
30 lines
665 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
resources:
|
|
- ../../base
|
|
- postgres.yaml
|
|
- redis.yaml
|
|
- configmaps.yaml
|
|
- namespace.yaml
|
|
- ../../service-config/Secrets/litellm-secrets-qat.yaml
|
|
configMapGenerator:
|
|
- name: litellm-config
|
|
files:
|
|
- config.yaml=../../service-config/config.qat/config.yaml
|
|
patches:
|
|
- target:
|
|
kind: Ingress
|
|
name: litellm
|
|
patch: |-
|
|
- op: replace
|
|
path: /spec/rules/0/host
|
|
value: litellm.qat.local
|
|
- target:
|
|
kind: Deployment
|
|
name: litellm
|
|
patch: |-
|
|
- op: replace
|
|
path: /spec/replicas
|
|
value: 1
|
|
- path: litellm-patch.yaml
|