We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 119bda1 commit 7673510Copy full SHA for 7673510
src/features/clusters/upsert/index.tsx
@@ -75,12 +75,14 @@ export function UpsertCluster() {
75
}
76
if (!regionPlans.length && cluster.instances) {
77
for (const instance of cluster.instances) {
78
- isSelfManaged = true;
79
- instances.push({
80
- fqdn: instance.instanceFqdn,
81
- port: instance.operationsApiPort,
82
- secure: instance.operationsApiSecure ? 'true' : 'false',
83
- });
+ if (instance.status !== 'REMOVED') {
+ isSelfManaged = true;
+ instances.push({
+ fqdn: instance.instanceFqdn,
+ port: instance.operationsApiPort,
+ secure: instance.operationsApiSecure ? 'true' : 'false',
84
+ });
85
+ }
86
87
88
} else if (defaults) {
0 commit comments