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
log.Info("Waiting for instance get torn down", "namespace", cluster.Namespace, "cluster", cluster.Name, "instanceID", instanceID, "pod", instances[0].Metadata.Name)
140
+
log.Info("Waiting for instance to get torn down", "namespace", cluster.Namespace, "cluster", cluster.Name, "instanceID", instanceID, "pod", instances[0].Metadata.Name)
138
141
returnfalse, nil
139
142
} elseiflen(instances) >0 {
140
143
returnfalse, fmt.Errorf("Multiple pods found for cluster %s, instance ID %s", cluster.Name, instanceID)
log.Info("Waiting for pod get torn down", "namespace", cluster.Namespace, "cluster", cluster.Name, "instanceID", instanceID, "pod", pods.Items[0].Name)
152
+
log.Info("Waiting for pod to get torn down", "namespace", cluster.Namespace, "cluster", cluster.Name, "instanceID", instanceID, "pod", pods.Items[0].Name)
150
153
returnfalse, nil
151
154
} elseiflen(pods.Items) >0 {
152
155
returnfalse, fmt.Errorf("Multiple pods found for cluster %s, instance ID %s", cluster.Name, instanceID)
log.Info("Waiting for volume claim get torn down", "namespace", cluster.Namespace, "cluster", cluster.Name, "instanceID", instanceID, "pvc", pvcs.Items[0].Name)
164
+
log.Info("Waiting for volume claim to get torn down", "namespace", cluster.Namespace, "cluster", cluster.Name, "instanceID", instanceID, "pvc", pvcs.Items[0].Name)
162
165
returnfalse, nil
163
166
} elseiflen(pvcs.Items) >0 {
164
167
returnfalse, fmt.Errorf("Multiple PVCs found for cluster %s, instance ID %s", cluster.Name, instanceID)
log.Info("Waiting for service get torn down", "namespace", cluster.Namespace, "cluster", cluster.Name, "instanceID", instanceID, "service", services.Items[0].Name)
176
+
log.Info("Waiting for service to get torn down", "namespace", cluster.Namespace, "cluster", cluster.Name, "instanceID", instanceID, "service", services.Items[0].Name)
174
177
returnfalse, nil
175
178
} elseiflen(services.Items) >0 {
176
179
returnfalse, fmt.Errorf("Multiple services found for cluster %s, instance ID %s", cluster.Name, instanceID)
0 commit comments