Skip to content

Commit 7545041

Browse files
committed
add RECONCILING in valid status options after deploy
1 parent 1e64597 commit 7545041

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/integration/gke_standard_cluster/gke_standard_cluster_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ func TestGKEStandardCluster(t *testing.T) {
4444
golden.WithSanitizer(golden.StringSanitizer(clusterName, "CLUSTER_NAME")),
4545
)
4646
validateJSONPaths := []string{
47-
"status",
4847
"location",
4948
"privateClusterConfig.enablePrivateEndpoint",
5049
"privateClusterConfig.enablePrivateNodes",
@@ -63,6 +62,7 @@ func TestGKEStandardCluster(t *testing.T) {
6362
for _, pth := range validateJSONPaths {
6463
g.JSONEq(assert, op, pth)
6564
}
65+
assert.Contains([]string{"RUNNING", "RECONCILING"}, op.Get("status").String())
6666

6767
})
6868

test/integration/simple_regional_cluster_autoscaling/simple_regional_cluster_autoscaling_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ func TestSimpleRegionalClusterAutoscaling(t *testing.T) {
4242
golden.WithSanitizer(golden.StringSanitizer(clusterName, "CLUSTER_NAME")),
4343
)
4444
validateJSONPaths := []string{
45-
"status",
4645
"location",
4746
"privateClusterConfig.enablePrivateEndpoint",
4847
"privateClusterConfig.enablePrivateNodes",
@@ -58,6 +57,7 @@ func TestSimpleRegionalClusterAutoscaling(t *testing.T) {
5857
for _, pth := range validateJSONPaths {
5958
g.JSONEq(assert, op, pth)
6059
}
60+
assert.Contains([]string{"RUNNING", "RECONCILING"}, op.Get("status").String())
6161

6262
})
6363

0 commit comments

Comments
 (0)