Skip to content

Commit

Permalink
OCTOPUS-548: pinned ibmcloud plugin was malformed and corrected
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Bastide <[email protected]>
  • Loading branch information
prb112 committed Nov 7, 2023
1 parent b7682f4 commit f095e36
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/1_vpc_prepare/files/public_gateway.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ibmcloud login --apikey "${API_KEY}" -r "${REGION}" -g "${RESOURCE_GROUP}"
ibmcloud plugin install -f cloud-internet-services vpc-infrastructure cloud-object-storage is

# Pin the version to 0.4.9 (v1.0.0 may be incompatible)
ibmcloud plugin install -f power-iaas -v 0.4.9
ibmcloud plugin install -v 0.4.9 -f power-iaas

# Download the RHCOS qcow2
TARGET_DIR=".openshift/image-local"
Expand Down
2 changes: 1 addition & 1 deletion modules/1_vpc_prepare/files/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ ibmcloud login --apikey "${API_KEY}" -r "${REGION}" -g "${RESOURCE_GROUP}"
ibmcloud plugin install -f cloud-internet-services vpc-infrastructure cloud-object-storage is dns cis

# Pin the version to 0.4.9 (v1.0.0 may be incompatible)
ibmcloud plugin install -f power-iaas -v 0.4.9
ibmcloud plugin install -v 0.4.9 -f power-iaas
2 changes: 1 addition & 1 deletion modules/5_image/files/upload_rhcos_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ibmcloud login --apikey "${API_KEY}" -r "${REGION}" -g "${RESOURCE_GROUP}"
ibmcloud plugin install -f cloud-internet-services vpc-infrastructure cloud-object-storage is

# Pin the version to 0.4.9 (v1.0.0 may be incompatible)
ibmcloud plugin install -f power-iaas -v 0.4.9
ibmcloud plugin install -v 0.4.9 -f power-iaas

# Download the RHCOS qcow2
TARGET_DIR=".openshift/image-local"
Expand Down
2 changes: 1 addition & 1 deletion scripts/create-pvs-workspace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [[ $(type -t ic) == function ]]
then
IBMCLOUD=ic
else
ibmcloud plugin install power-iaas -f
ibmcloud plugin install -v 0.4.9 -f power-iaas
fi

if [ -z "${WORKSPACE_NAME}" ]
Expand Down
2 changes: 1 addition & 1 deletion scripts/create-var-file.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if [[ $(type -t ic) == function ]]
then
IBMCLOUD=ic
else
${IBMCLOUD} plugin install power-iaas -f
${IBMCLOUD} plugin install -v 0.4.9 -f power-iaas
fi

if [ ! -z "${1}" ]
Expand Down
2 changes: 1 addition & 1 deletion scripts/import-centos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ else
then
IBMCLOUD=ic
else
ibmcloud plugin install power-iaas -f
ibmcloud plugin install -v 0.4.9 -f power-iaas
fi
fi

Expand Down

0 comments on commit f095e36

Please sign in to comment.