This is an automated email from the ASF dual-hosted git repository.
omartushevskyi pushed a commit to branch DLAB-1158
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git
The following commit(s) were added to refs/heads/DLAB-1158 by this push:
new d188142 added step-ca
d188142 is described below
commit d18814225ad0d92a8837b2a9c5fe0a2d37a78fe7
Author: Oleh Martushevskyi <[email protected]>
AuthorDate: Thu Nov 21 22:18:26 2019 +0200
added step-ca
---
.../terraform/gcp/ssn-gke/main/modules/helm_charts/keycloak.tf | 2 +-
.../terraform/gcp/ssn-gke/main/modules/helm_charts/mysql.tf | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/keycloak.tf
b/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/keycloak.tf
index 2446973..a5ab90e 100644
---
a/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/keycloak.tf
+++
b/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/keycloak.tf
@@ -46,7 +46,7 @@ data "template_file" "keycloak_values" {
configure_keycloak_file = data.template_file.configure_keycloak.rendered
mysql_db_name = var.mysql_db_name
mysql_user = var.mysql_user
- mysql_user_password = random_string.mysql_user_password.result
+ mysql_user_password = random_string.mysql_keycloak_user_password.result
# replicas_count = var.ssn_k8s_workers_count > 3 ? 3 :
var.ssn_k8s_workers_count
}
}
diff --git
a/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/mysql.tf
b/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/mysql.tf
index 1cc6e87..88a0088 100644
---
a/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/mysql.tf
+++
b/infrastructure-provisioning/terraform/gcp/ssn-gke/main/modules/helm_charts/mysql.tf
@@ -24,7 +24,7 @@ data "template_file" "mysql_values" {
vars = {
mysql_root_password = random_string.mysql_root_password.result
mysql_user = var.mysql_user
- mysql_user_password = random_string.mysql_user_password.result
+ mysql_user_password = random_string.mysql_keycloak_user_password.result
mysql_db_name = var.mysql_db_name
storage_class = "standard"
mysql_disk_size = var.mysql_disk_size
@@ -39,7 +39,7 @@ resource "helm_release" "keycloak-mysql" {
values = [
data.template_file.mysql_values.rendered
]
- depends_on = [kubernetes_secret.mysql_root_password_secret,
kubernetes_secret.mysql_user_password_secret,
+ depends_on = [kubernetes_secret.mysql_root_password_secret,
kubernetes_secret.mysql_keycloak_user_password_secret,
helm_release.nginx]
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]