Skip to content

Commit

Permalink
feat: fix keycloak
Browse files Browse the repository at this point in the history
  • Loading branch information
incubator4 committed Oct 25, 2023
1 parent 1796759 commit dd35081
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 9 additions & 1 deletion application.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,21 @@ resource "argocd_application" "keycloak" {
source {
helm {
release_name = "keycloak"
values = file("keycloak/prod/values.yaml")
value_files = [
"$values/keycloak/prod/values.yaml"
]
}
repo_url = "https://codecentric.github.io/helm-charts"
target_revision = "18.x.x"
chart = "keycloak"
}

source {
repo_url = var.repo_url
target_revision = "HEAD"
ref = "values"
}

source {
repo_url = var.repo_url
target_revision = "HEAD"
Expand Down
2 changes: 0 additions & 2 deletions keyclock/prod/values.yaml → keycloak/prod/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ keycloak:
persistence:
deployPostgres: false

replicas: 2

extraEnv: |
- name: JAVA_OPTS
value: >-
Expand Down

0 comments on commit dd35081

Please sign in to comment.