Skip to content

Commit 4d57a97

Browse files
committed
init commit
1 parent 4f0ef8f commit 4d57a97

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

examples/basic/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module "cloudpak_data" {
1919
prefix = var.prefix
2020
region = var.region
2121
cluster_name = module.roks_landing_zone.workload_cluster_id
22+
cloud_pak_deployer_image = "quay.io/cloud-pak-deployer/cloud-pak-deployer"
2223
cpd_admin_password = "Passw0rd" #pragma: allowlist secret
2324
cpd_entitlement_key = "entitlementKey"
2425
install_odf_cluster_addon = var.install_odf_cluster_addon

solutions/deploy/cloud-pak-deployer/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,9 @@ resource "terraform_data" "uninstall_cpd" {
326326
327327
done
328328
329+
${self.input.oc} get pods -n ${self.input.namespace_name}
330+
${self.input.oc} describe pods -n ${self.input.namespace_name}
331+
329332
if $failed; then
330333
echo "Job ${self.input.job_name} failed"
331334
exit 1

solutions/deploy/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ variable "cloud_pak_deployer_image" {
2828
variable "cloud_pak_deployer_release" {
2929
description = "Release of Cloud Pak Deployer version to use. View releases at: https://github.com/IBM/cloud-pak-deployer/releases."
3030
type = string
31-
default = "v3.0.3"
31+
default = "v3.1.1"
3232
}
3333

3434
variable "cloud_pak_deployer_secret" {

0 commit comments

Comments
 (0)