Skip to content

Commit

Permalink
Fix value casting
Browse files Browse the repository at this point in the history
  • Loading branch information
jcortejoso committed Sep 25, 2024
1 parent cb7c1a3 commit f32cfa2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion charts/eigenda-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: eigenda-proxy
apiVersion: v2
version: 0.2.2
version: 0.2.3
description: Helm chart deploying Layr-Labs eigenda-proxy
home: https://clabs.co
sources:
Expand Down
6 changes: 3 additions & 3 deletions charts/eigenda-proxy/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# eigenda-proxy

![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.0.0](https://img.shields.io/badge/AppVersion-v1.0.0-informational?style=flat-square)
![Version: 0.2.3](https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.0.0](https://img.shields.io/badge/AppVersion-v1.0.0-informational?style=flat-square)

Helm chart deploying Layr-Labs eigenda-proxy

Expand Down Expand Up @@ -41,10 +41,10 @@ Helm chart deploying Layr-Labs eigenda-proxy
| config.routing.cacheTargets | string | `""` | |
| config.s3.accessKeyId | string | `""` | |
| config.s3.accessKeySecret | string | `""` | |
| config.s3.backup | string | `""` | |
| config.s3.backup | string | `nil` | |
| config.s3.bucket | string | `""` | |
| config.s3.credentialType | string | `""` | |
| config.s3.disableTls | string | `""` | |
| config.s3.disableTls | string | `nil` | |
| config.s3.endpoint | string | `""` | |
| config.s3.path | string | `""` | |
| extraArgs | list | `[]` | |
Expand Down
4 changes: 2 additions & 2 deletions charts/eigenda-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ spec:
{{- if .Values.config.routing.cacheTargets }}
--routing.cache-targets={{ .Values.config.routing.cacheTargets }} \
{{- end }}
{{- if and (hasKey .Values.config.s3 "backup") (ne .Values.config.s3.backup "") -}}
{{- if and (hasKey .Values.config.s3 "backup") (not (empty .Values.config.s3.backup)) -}}
--s3.backup={{ .Values.config.s3.backup }} \
{{- end }}
{{- if .Values.config.s3.bucket }}
Expand All @@ -117,7 +117,7 @@ spec:
{{- if .Values.config.s3.endpoint }}
--s3.endpoint={{ .Values.config.s3.endpoint }}
{{- end }}
{{- if and (hasKey .Values.config.s3 "disableTls") (ne .Values.config.s3.disableTls "") -}}
{{- if and (hasKey .Values.config.s3 "disableTls") (not (empty .Values.config.s3.disableTls)) -}}
--s3.disable-tls={{ .Values.config.s3.disableTls }} \
{{- end }}
{{- if .Values.config.s3.credentialType }}
Expand Down
4 changes: 2 additions & 2 deletions charts/eigenda-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ config:
# secretName: test
# secretKey: test
s3:
backup: ""
backup: null
bucket: ""
endpoint: ""
disableTls: ""
disableTls: null
credentialType: ""
accessKeyId: ""
accessKeySecret: ""
Expand Down

0 comments on commit f32cfa2

Please sign in to comment.