@@ -32,7 +32,9 @@ def lke_cluster(test_linode_client):
3232 node_type = test_linode_client .linode .types ()[1 ] # g6-standard-1
3333 version = test_linode_client .lke .versions ()[0 ]
3434
35- region = get_region (test_linode_client , {"Kubernetes" , "Disk Encryption" })
35+ region = get_region (
36+ test_linode_client , {"Kubernetes" , "LA Disk Encryption" }
37+ )
3638
3739 node_pools = test_linode_client .lke .node_pool (node_type , 3 )
3840 label = get_test_label () + "_cluster"
@@ -115,7 +117,9 @@ def lke_cluster_with_labels_and_taints(test_linode_client):
115117def lke_cluster_with_apl (test_linode_client ):
116118 version = test_linode_client .lke .versions ()[0 ]
117119
118- region = get_region (test_linode_client , {"Kubernetes" , "Disk Encryption" })
120+ region = get_region (
121+ test_linode_client , {"Kubernetes" , "LA Disk Encryption" }
122+ )
119123
120124 # NOTE: g6-dedicated-4 is the minimum APL-compatible Linode type
121125 node_pools = test_linode_client .lke .node_pool ("g6-dedicated-4" , 3 )
@@ -145,7 +149,7 @@ def lke_cluster_enterprise(test_linode_client):
145149 )[0 ]
146150
147151 region = get_region (
148- test_linode_client , {"Kubernetes Enterprise" , "Disk Encryption" }
152+ test_linode_client , {"Kubernetes Enterprise" , "LA Disk Encryption" }
149153 )
150154
151155 node_pools = test_linode_client .lke .node_pool (
@@ -204,7 +208,7 @@ def _to_comparable(p: LKENodePool) -> Dict[str, Any]:
204208
205209 assert _to_comparable (cluster .pools [0 ]) == _to_comparable (pool )
206210
207- assert pool .disk_encryption == InstanceDiskEncryptionType .enabled
211+ assert pool .disk_encryption == InstanceDiskEncryptionType .disabled
208212
209213
210214def test_cluster_dashboard_url_view (lke_cluster ):
0 commit comments