Skip to content

Commit

Permalink
fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
reschandreas committed Jul 25, 2024
1 parent 761ac78 commit 606bfcc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion helm/ravatar/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: ravatar
description: Ravatar is an implementation of the Libavatar service, which make it easy to host your own avatar service.
type: application
version: 0.1.0
version: 0.1.1
appVersion: "v0.1.0"
10 changes: 5 additions & 5 deletions helm/ravatar/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ spec:
- name: PORT
value: {{ .Values.ravatar.port | default 8080 | quote }}
- name: EXTENSION
value: {{ .Values.ravatar.imageExtension | default "png" }}
value: {{ .Values.ravatar.imageExtension | default "png" | quote }}
- name: RAW_PATH
value: {{ .Values.ravatar.rawImagesPath | default "/raw" }}
value: {{ .Values.ravatar.rawImagesPath | default "/raw"| quote }}
- name: IMAGES_PATH
value: {{ .Values.ravatar.generatedImagesPath | default "/images" }}
value: {{ .Values.ravatar.generatedImagesPath | default "/images" | quote }}
- name: LOG_LEVEL
value: {{ .Values.ravatar.logLevel | default "info" }}
value: {{ .Values.ravatar.logLevel | default "info" | quote }}
- name: OFFER_ORIGINAL_DIMENSIONS
value: {{ .Values.ravatar.offerOriginalDimensions | default "false" }}
value: {{ .Values.ravatar.offerOriginalDimensions | default false | quote }}
{{ if .Values.ravatar.ldap.enabled }}
- name: LDAP_URL
value: {{ .Values.ravatar.ldap.url | quote }}
Expand Down
1 change: 0 additions & 1 deletion helm/ravatar/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ replicaCount: 2
image:
repository: ghcr.io/reschandreas/ravatar
pullPolicy: IfNotPresent
tag: v0.1.0

ravatar:
prefix: "/avatar"
Expand Down

0 comments on commit 606bfcc

Please sign in to comment.