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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ See [keep a changelog] for information about writing changes to this log.

## [Unreleased]

* Extracted repoUrl in argo-cd-resources to values.yaml for easier configuration
* Added ArgoCD sync waves to LiteLLM to fix database migration timing
* Extracted repoUrl in argo-cd-resources to values.yaml for easier configuration
* Added configuration for the OIDC patch (disabled by default)
* Update docker image with the AAK OIDC patch

Expand Down
2 changes: 1 addition & 1 deletion applications/argo-cd-resources/templates/applications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ metadata:
spec:
project: {{ .project }}
source:
repoURL: {{ .Values.repoUrl }}
repoURL: {{ $.Values.repoUrl }}
path: applications/{{ .path | default .name }}
targetRevision: HEAD
helm:
Expand Down
3 changes: 2 additions & 1 deletion applications/litellm/litellm-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ litellm:
retries: 3 # Number of retries for the Job in case of failure
backoffLimit: 4 # Backoff limit for Job restarts
disableSchemaUpdate: false # Skip schema migrations for specific environments. When True, the job will exit with code 0.
annotations: {}
annotations:
argocd.argoproj.io/sync-wave: "1"
ttlSecondsAfterFinished: 120
extraContainers: []

Expand Down
2 changes: 2 additions & 0 deletions applications/litellm/templates/database.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ apiVersion: postgresql.cnpg.io/v1
kind: Database
metadata:
name: litellm
annotations:
argocd.argoproj.io/sync-wave: "-1"
spec:
name: litellm
owner: litellm
Expand Down