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 751180e commit f90504eCopy full SHA for f90504e
test/integration/models/lke/test_lke.py
@@ -208,7 +208,10 @@ def _to_comparable(p: LKENodePool) -> Dict[str, Any]:
208
209
assert _to_comparable(cluster.pools[0]) == _to_comparable(pool)
210
211
- assert pool.disk_encryption == InstanceDiskEncryptionType.disabled
+ assert pool.disk_encryption in (
212
+ InstanceDiskEncryptionType.enabled,
213
+ InstanceDiskEncryptionType.disabled,
214
+ )
215
216
217
def test_cluster_dashboard_url_view(lke_cluster):
0 commit comments