File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -152,6 +152,16 @@ rli secret update <name> # Update a secret value (value from std
152152rli secret delete < name> # Delete a secret
153153```
154154
155+ ### Gateway-config Commands (alias: ` gwc ` )
156+
157+ ``` bash
158+ rli gateway-config list # List gateway configurations
159+ rli gateway-config create # Create a new gateway configuration
160+ rli gateway-config get < id> # Get gateway configuration details
161+ rli gateway-config update < id> # Update a gateway configuration
162+ rli gateway-config delete < id> # Delete a gateway configuration
163+ ```
164+
155165### Mcp Commands
156166
157167``` bash
Original file line number Diff line number Diff line change @@ -105,6 +105,13 @@ export const getStatusDisplay = (status: string): StatusDisplay => {
105105 } ;
106106
107107 // === BUILD STATES (for blueprints) ===
108+ case "queued" :
109+ return {
110+ icon : figures . ellipsis ,
111+ color : colors . warning ,
112+ text : "QUEUED " ,
113+ label : "Queued" ,
114+ } ;
108115 case "ready" :
109116 return {
110117 icon : figures . tick ,
Original file line number Diff line number Diff line change @@ -564,7 +564,13 @@ export function BlueprintDetailScreen({
564564 onOperation = { handleOperation }
565565 onBack = { goBack }
566566 buildDetailLines = { buildDetailLines }
567- pollResource = { blueprint . status === "building" ? pollBlueprint : undefined }
567+ pollResource = {
568+ blueprint . status === "queued" ||
569+ blueprint . status === "provisioning" ||
570+ blueprint . status === "building"
571+ ? pollBlueprint
572+ : undefined
573+ }
568574 />
569575 ) ;
570576}
You can’t perform that action at this time.
0 commit comments