Skip to content

Commit

Permalink
Fix parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjyhy committed May 28, 2023
1 parent 4976cb5 commit b0dc4f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/t-clo-902/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ name: t-clo-902
description: A Helm chart to sell cats on Kubernetes
type: application

version: 0.41.0
version: 0.42.0

appVersion: "1.1.0"
4 changes: 2 additions & 2 deletions charts/t-clo-902/templates/back-secret.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{{- $esName := (printf "elasticsearch-%s-es-elastic-user" .Release.Name }}
{{- $esName := (printf "elasticsearch-%s-es-elastic-user" .Release.Name) }}
{{- $secretEs := (lookup "v1" "Secret" .Release.Namespace $esName) }}
{{- $secretEsData := (get $secretEs "data") }}
{{- $esPass := (get $secretEsData "elastic") }}

{{- $amqpName := (printf "amqp-%s-rabbitmq" .Release.Name }}
{{- $amqpName := (printf "amqp-%s-rabbitmq" .Release.Name) }}
{{- $secretAmqp := (lookup "v1" "Secret" .Release.Namespace $amqpName) }}
{{- $secretAmqpData := (get $secretAmqp "data") }}
{{- $amqpPass := (get $secretAmqpData "rabbitmq-password") }}
Expand Down

0 comments on commit b0dc4f0

Please sign in to comment.