Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
k8s-helmfiles
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
012bbb50
authored
2022-08-03 13:54:42 -0500
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Add support for cloning the database from a backup.
1 parent
fd2d38f5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
keycloak/environments/default-values.yaml
keycloak/helmfile.yaml
keycloak/environments/default-values.yaml
View file @
012bbb5
...
...
@@ -6,6 +6,9 @@ postgresql:
version
:
"
14"
waitForPg
:
image
:
registry.opensource.zalan.do/acid/spilo-14:2.1-p6
# clone:
# uid:
# timestamp:
initialAdmin
:
username
:
admin
password
:
admin
...
...
keycloak/helmfile.yaml
View file @
012bbb5
...
...
@@ -19,6 +19,10 @@ releases:
size
:
{{
.Values.postgresql.volume.size | quote
}}
postgresql
:
version
:
{{
.Values.postgresql.version | quote
}}
{{
- if .Values | get "clone.uid" nil
}}
clone
:
{{
merge .Values.clone ( dict "cluster" "kpg-postgres" ) | toYaml | nindent 12
}}
{{
- end
}}
-
name
:
kpg-keycloak
namespace
:
{{
.Values.namespace
}}
...
...
Please
register
or
sign in
to post a comment