Skip to content
This repository has been archived by the owner on Jul 19, 2022. It is now read-only.

Commit

Permalink
Change random length to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSchmidt authored Jan 12, 2022
1 parent f32d87b commit a7db5bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ name: eo-base-helm-chart
description: A Helm chart for Kubernetes

type: application
version: v0.4.8
version: v0.4.9
4 changes: 2 additions & 2 deletions chart/templates/random-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ data:
{{- if $password_b64 }}
{{ . }}: {{ $password_b64 }}
{{- else }}
{{- $password := randAlphaNum 32 }}
{{- $password := randAlphaNum 20 }}
{{ . }}: {{ $password | b64enc }}
{{- end}}
{{- else}}
{{- $password := randAlphaNum 32 }}
{{- $password := randAlphaNum 32 }}
{{ . }}: {{ $password | b64enc }}
{{- end }}

Expand Down

0 comments on commit a7db5bd

Please sign in to comment.