Skip to content

Commit

Permalink
0.2.3
Browse files Browse the repository at this point in the history
Signed-off-by: Marcin Trojanowski <[email protected]>
  • Loading branch information
m-trojanowski committed Dec 21, 2021
1 parent ddd3697 commit b4e0872
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion orc8r/cloud/helm/domain-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

apiVersion: v2
appVersion: "0.1.0"
version: 0.2.2
version: 0.2.3
description: A Helm chart for magma orchestrator's domain-proxy module.
name: domain-proxy
engine: gotpl
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{- if .Values.dp.create -}}
{{- $fullName := include "domain-proxy.fullname" . -}}
{{- $secret := lookup "v1" "Secret" .Release.Namespace "${fullName}-cc-ca" -}}
{{- if not $secret -}}
{{- $secret := printf "%s-%s" $fullName "cc-ca" -}}
{{- if not (lookup "v1" "Secret" .Release.Namespace $secret) -}}
apiVersion: v1
kind: Secret
metadata:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{- if .Values.dp.create -}}
{{- $fullName := include "domain-proxy.fullname" . -}}
{{- $secret := lookup "v1" "Secret" .Release.Namespace "${fullName}-cc" -}}
{{- if not $secret -}}
{{- $secret := printf "%s-%s" $fullName "cc" -}}
{{- if not (lookup "v1" "Secret" .Release.Namespace $secret) -}}
apiVersion: v1
kind: Secret
metadata:
Expand Down

0 comments on commit b4e0872

Please sign in to comment.