You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,10 +24,9 @@ Before deploying the stack, ensure you have:
24
24
**Important**:
25
25
- Ensure region is either us-south or eu-de as watsonx can only be deployed in those 2 locations for now.
26
26
- Ensure that the prefix is globally unique. It is used for the container registry namespace (which needs to be globally unique) in this alpha version.
27
-
- The signing key is the base64 key obtained from the `gpg --export-secret-key <Email Address> | base64` command. See https://cloud.ibm.com/docs/devsecops?topic=devsecops-devsecops-image-signing#cd-devsecops-gpg-export for details.
28
27
- If specifying `existing_secrets_manager_crn`, the ibmcloud_api_key that is passed as an input must have the documented read and write access to the instance
29
28
- If specifying `existing_secrets_manager_crn`, ensure that the default security group does not contain secrets named `signing-key` and `ibmcloud-api-key` . The RAG DA currently always attempt to create secret with those names (temporary issue - to be fixed).
Copy file name to clipboardExpand all lines: deploy-many.sh
+39-11Lines changed: 39 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ function validate_config() {
63
63
64
64
STATE=$(get_validation_state)
65
65
66
-
if [[ "$STATE"!="validated"&&"$STATE"!="deployed"&&"$STATE"!="deploying_failed"&&"$STATE"!="approved" ]];then
66
+
if [[ "$STATE"!="validated"&&"$STATE"!="deployed"&&"$STATE"!="deploying_failed"&&"$STATE"!="approved"&&"$STATE"!="deleting"&&"$STATE"!="deleting_failed"]];then
@@ -74,7 +74,7 @@ function wait_for_validation() {
74
74
75
75
STATE=$(get_validation_state)
76
76
77
-
if [[ "$STATE"=="validated"||"$STATE"=="deployed"||"$STATE"=="deploying_failed"||"$STATE"=="approved"||"$STATE"=="deploying" ]];then
77
+
if [[ "$STATE"=="validated"||"$STATE"=="deployed"||"$STATE"=="deploying_failed"||"$STATE"=="approved"||"$STATE"=="deploying"||"$STATE"=="deleting"||"$STATE"=="deleting_failed"]];then
78
78
break
79
79
fi
80
80
@@ -98,7 +98,7 @@ function deploy_config() {
98
98
99
99
STATE=$(get_deployment_state)
100
100
101
-
if [[ "$STATE"!="deployed" ]];then
101
+
if [[ "$STATE"!="deployed"&&"$STATE"!="deleting"&&"$STATE"!="deleting_failed"]];then
0 commit comments