diff --git a/.markdownlinkcheck.json b/.markdownlinkcheck.json index 0d47508f3ee7..fa5f3f879352 100644 --- a/.markdownlinkcheck.json +++ b/.markdownlinkcheck.json @@ -4,7 +4,7 @@ "pattern": "^http://localhost" } ], - "timeout": "5s", + "timeout": "10s", "retryOn429": true, "retryCount": 5, "fallbackRetryDelay": "30s", diff --git a/docs/book/src/user/quick-start.md b/docs/book/src/user/quick-start.md index 934902542ea2..af9d9c81dd7c 100644 --- a/docs/book/src/user/quick-start.md +++ b/docs/book/src/user/quick-start.md @@ -552,13 +552,28 @@ See the [GCP provider] for more information. {{#tab IBM Cloud}} ```bash +# Required environment variables for VPC +# VPC region +export IBMVPC_REGION=us-south +# VPC zone within the region +export IBMVPC_ZONE=us-south-1 +# ID of the resource group in which the VPC will be created +export IBMVPC_RESOURCEGROUP= +# Name of the VPC +export IBMVPC_NAME=ibm-vpc-0 +export IBMVPC_IMAGE_ID= +# Profile for the virtual server instances +export IBMVPC_PROFILE=bx2-4x16 +export IBMVPC_SSHKEY_ID= + +# Required environment variables for PowerVS export IBMPOWERVS_SSHKEY_NAME= # Internal and external IP of the network export IBMPOWERVS_VIP= export IBMPOWERVS_VIP_EXTERNAL= export IBMPOWERVS_VIP_CIDR=29 export IBMPOWERVS_IMAGE_NAME= -# ID of the service instance in the cloud account +# ID of the PowerVS service instance export IBMPOWERVS_SERVICE_INSTANCE_ID= export IBMPOWERVS_NETWORK_NAME= ```