We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e907f15 commit 93eeaf9Copy full SHA for 93eeaf9
solutions/fully-configurable/main.tf
@@ -39,3 +39,18 @@ module "watsonx_self_managed_ocp" {
39
watson_discovery_install = var.watson_discovery_install
40
watson_assistant_install = var.watson_assistant_install
41
}
42
+
43
+resource "null_resource" "wait_for_cloud_pak_deployer_complete" {
44
+ provisioner "local-exec" {
45
+ command = "${path.module}/../../scripts/wait_for_cpd_pod.sh"
46
47
+ environment = {
48
+ KUBECONFIG = data.ibm_container_cluster_config.cluster_config[0].config_file_path
49
+ }
50
51
+ triggers = {
52
+ always_run = timestamp()
53
54
55
+ depends_on = [module.watsonx_self_managed_ocp]
56
+}
0 commit comments