Unverified Commit c0953ed2 authored by k8s-ci-robot's avatar k8s-ci-robot Committed by GitHub

Merge pull request #68487 from msau42/fix-regional-size

Fix size of repd e2e to use Gi
parents 1ae00dbe 13e3da39
...@@ -99,8 +99,8 @@ func testVolumeProvisioning(c clientset.Interface, ns string) { ...@@ -99,8 +99,8 @@ func testVolumeProvisioning(c clientset.Interface, ns string) {
"zones": strings.Join(cloudZones, ","), "zones": strings.Join(cloudZones, ","),
"replication-type": "regional-pd", "replication-type": "regional-pd",
}, },
claimSize: "1.5G", claimSize: "1.5Gi",
expectedSize: "2G", expectedSize: "2Gi",
pvCheck: func(volume *v1.PersistentVolume) error { pvCheck: func(volume *v1.PersistentVolume) error {
err := checkGCEPD(volume, "pd-standard") err := checkGCEPD(volume, "pd-standard")
if err != nil { if err != nil {
...@@ -117,8 +117,8 @@ func testVolumeProvisioning(c clientset.Interface, ns string) { ...@@ -117,8 +117,8 @@ func testVolumeProvisioning(c clientset.Interface, ns string) {
"type": "pd-standard", "type": "pd-standard",
"replication-type": "regional-pd", "replication-type": "regional-pd",
}, },
claimSize: "1.5G", claimSize: "1.5Gi",
expectedSize: "2G", expectedSize: "2Gi",
pvCheck: func(volume *v1.PersistentVolume) error { pvCheck: func(volume *v1.PersistentVolume) error {
err := checkGCEPD(volume, "pd-standard") err := checkGCEPD(volume, "pd-standard")
if err != nil { if err != nil {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment