Skip to content

Commit 329c08f

Browse files
authored
chore(CI): add CURRENT_STATE_DECRYPTED (#1974)
1 parent 29113e4 commit 329c08f

File tree

15 files changed

+15
-2
lines changed

15 files changed

+15
-2
lines changed

test/integration/disable_client_cert/testdata/TestDisableClientCert.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"currentNodeCount": 3,
2828
"currentNodeVersion": "1.24.7-gke.900",
2929
"databaseEncryption": {
30+
"currentState": "CURRENT_STATE_DECRYPTED",
3031
"state": "DECRYPTED"
3132
},
3233
"defaultMaxPodsConstraint": {

test/integration/private_zonal_with_networking/testdata/TestPrivateZonalWithNetworking.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"currentNodeCount": 1,
2828
"currentNodeVersion": "1.24.7-gke.900",
2929
"databaseEncryption": {
30+
"currentState": "CURRENT_STATE_DECRYPTED",
3031
"state": "DECRYPTED"
3132
},
3233
"defaultMaxPodsConstraint": {

test/integration/safer_cluster/testdata/TestSaferCluster.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"currentNodeCount": 3,
3030
"currentNodeVersion": "1.23.14-gke.401",
3131
"databaseEncryption": {
32+
"currentState": "CURRENT_STATE_DECRYPTED",
3233
"state": "DECRYPTED"
3334
},
3435
"defaultMaxPodsConstraint": {

test/integration/sandbox_enabled/testdata/TestSandboxEnabled.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"currentNodeCount": 3,
2626
"currentNodeVersion": "1.24.7-gke.900",
2727
"databaseEncryption": {
28+
"currentState": "CURRENT_STATE_DECRYPTED",
2829
"state": "DECRYPTED"
2930
},
3031
"defaultMaxPodsConstraint": {

test/integration/simple_autopilot_private/testdata/TestSimpleAutopilotPrivate.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
"currentNodeCount": 2,
7171
"currentNodeVersion": "1.24.7-gke.900",
7272
"databaseEncryption": {
73+
"currentState": "CURRENT_STATE_DECRYPTED",
7374
"state": "DECRYPTED"
7475
},
7576
"defaultMaxPodsConstraint": {

test/integration/simple_autopilot_public/testdata/TestSimpleAutopilotPublic.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
"currentNodeCount": 2,
7171
"currentNodeVersion": "1.24.7-gke.900",
7272
"databaseEncryption": {
73+
"currentState": "CURRENT_STATE_DECRYPTED",
7374
"state": "DECRYPTED"
7475
},
7576
"defaultMaxPodsConstraint": {

test/integration/simple_regional/testdata/TestSimpleRegional.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"currentNodeCount": 3,
3939
"currentNodeVersion": "1.27.3-gke.100",
4040
"databaseEncryption": {
41+
"currentState": "CURRENT_STATE_DECRYPTED",
4142
"state": "DECRYPTED"
4243
},
4344
"defaultMaxPodsConstraint": {

test/integration/simple_regional_private/testdata/TestSimpleRegionalPrivate.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"currentNodeCount": 3,
2626
"currentNodeVersion": "1.25.4-gke.2100",
2727
"databaseEncryption": {
28+
"currentState": "CURRENT_STATE_DECRYPTED",
2829
"state": "DECRYPTED"
2930
},
3031
"defaultMaxPodsConstraint": {

test/integration/simple_regional_with_gateway_api/controls/gcloud.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
end
6767

6868
it "has the expected databaseEncryption config" do
69-
expect(data['databaseEncryption']).to eq({
69+
expect(data['databaseEncryption']).to include({
7070
"state" => 'DECRYPTED',
7171
})
7272
end

test/integration/simple_regional_with_ipv6/controls/gcloud.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
end
6565

6666
it "has the expected databaseEncryption config" do
67-
expect(data['databaseEncryption']).to eq({
67+
expect(data['databaseEncryption']).to include({
6868
"state" => 'DECRYPTED',
6969
})
7070
end

test/integration/simple_regional_with_kubeconfig/testdata/TestSimpleRegionalWithKubeConfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"currentNodeCount": 3,
2626
"currentNodeVersion": "1.25.5-gke.1500",
2727
"databaseEncryption": {
28+
"currentState": "CURRENT_STATE_DECRYPTED",
2829
"state": "DECRYPTED"
2930
},
3031
"defaultMaxPodsConstraint": {

test/integration/simple_regional_with_networking/testdata/TestSimpleRegionalWithNetworking.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"currentNodeCount": 3,
2626
"currentNodeVersion": "1.25.5-gke.1500",
2727
"databaseEncryption": {
28+
"currentState": "CURRENT_STATE_DECRYPTED",
2829
"state": "DECRYPTED"
2930
},
3031
"defaultMaxPodsConstraint": {

test/integration/simple_windows_node_pool/testdata/TestSimpleWindowsNodePool.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"currentNodeCount": 2,
3636
"currentNodeVersion": "1.24.7-gke.900",
3737
"databaseEncryption": {
38+
"currentState": "CURRENT_STATE_DECRYPTED",
3839
"state": "DECRYPTED"
3940
},
4041
"defaultMaxPodsConstraint": {

test/integration/simple_zonal/testdata/TestSimpleZonal.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"currentNodeCount": 4,
2727
"currentNodeVersion": "1.25.6-gke.1000",
2828
"databaseEncryption": {
29+
"currentState": "CURRENT_STATE_DECRYPTED",
2930
"state": "DECRYPTED"
3031
},
3132
"defaultMaxPodsConstraint": {

test/integration/simple_zonal_private/testdata/TestSimpleZonalPrivate.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"currentNodeCount": 1,
2626
"currentNodeVersion": "1.25.5-gke.1500",
2727
"databaseEncryption": {
28+
"currentState": "CURRENT_STATE_DECRYPTED",
2829
"state": "DECRYPTED"
2930
},
3031
"defaultMaxPodsConstraint": {

0 commit comments

Comments
 (0)