Skip to content

Commit 2cccc8d

Browse files
committed
Use ipv6 template for ipv6 conformance instead of default template
1 parent 5ae25f7 commit 2cccc8d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/book/src/developers/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ Optional settings are:
545545
| `WINDOWS` | `false` | Run conformance against Windows nodes |
546546
| `CONFORMANCE_NODES` | `1` | Number of parallel ginkgo nodes to run |
547547
| `CONFORMANCE_FLAVOR` | `""` | The flavor of the cluster to run conformance against. If not set, the default flavor will be used. |
548-
| `IP_FAMILY` | `IPv4` | Set to `IPv6` to run conformance against single-stack IPv6, or `dual` for dual-stack. |
548+
| `IP_FAMILY` | `ipv4` | Set to `ipv6` to run conformance against single-stack IPv6, or `dual` for dual-stack. |
549549

550550
With the following environment variables defined, you can build a CAPZ cluster from the HEAD of Kubernetes main branch or release branch, and run the Conformance test suite against it.
551551

test/e2e/config/azure-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ variables:
233233
CONFORMANCE_CONTROL_PLANE_MACHINE_COUNT: "${CONFORMANCE_CONTROL_PLANE_MACHINE_COUNT:-1}"
234234
CONFORMANCE_IMAGE: "${CONFORMANCE_IMAGE:-}"
235235
CONFORMANCE_NODES: "${CONFORMANCE_NODES:-1}"
236-
IP_FAMILY: "IPv4"
236+
IP_FAMILY: "ipv4"
237237
CLUSTER_IDENTITY_NAME: "${CLUSTER_IDENTITY_NAME:-cluster-identity-ci}"
238238
ASO_CREDENTIAL_SECRET_NAME: "${ASO_CREDENTIAL_SECRET_NAME:-aso-credentials}"
239239
ASO_CREDENTIAL_SECRET_MODE: "${ASO_CREDENTIAL_SECRET_MODE:-workloadidentity}"

test/e2e/conformance_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ var _ = Describe("Conformance Tests", func() {
107107
flavor = "conformance-presubmit-artifacts"
108108
}
109109
// use the ipv6 flavor if ipv6 IP family is specified.
110-
if e2eConfig.MustGetVariable(capi_e2e.IPFamily) == "IPv6" {
110+
if e2eConfig.MustGetVariable(capi_e2e.IPFamily) == "ipv6" {
111111
flavor += "-ipv6"
112112
kubetestConfigFilePath = strings.Replace(kubetestConfigFilePath, ".yaml", "-ipv6.yaml", 1)
113113
} else if e2eConfig.MustGetVariable(capi_e2e.IPFamily) == "dual" {

0 commit comments

Comments
 (0)