Skip to content

Commit

Permalink
fix: template errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyannn committed Jan 5, 2024
1 parent 144c0b2 commit 01b0edd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ jobs:
lint-generated-manifests:
runs-on: ubuntu-latest
steps:
- name: Install Helm
run: curl -fsSL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash

- name: Checkout code
uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion langfuse/templates/connection-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
apiVersion: v1
kind: Secret
metadata:
name: {{ include "langfuse.connectionSecret.name" . }}
name: {{ include "langfuse.connectionSecret" . }}
type: Opaque
data:
{{- if .Values.databaseURL }}
Expand Down
2 changes: 1 addition & 1 deletion langfuse/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
- name: DATABASE_URL
valueFrom:
secretKeyRef:
name: {{- include "langfuse.connectionSecret" . }}
name: {{ include "langfuse.connectionSecret" . }}
key: database-url
{{- else }}
- name: DATABASE_USERNAME
Expand Down

0 comments on commit 01b0edd

Please sign in to comment.