Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/book/src/developers/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ Optional settings are:
| `WINDOWS` | `false` | Run conformance against Windows nodes |
| `CONFORMANCE_NODES` | `1` | Number of parallel ginkgo nodes to run |
| `CONFORMANCE_FLAVOR` | `""` | The flavor of the cluster to run conformance against. If not set, the default flavor will be used. |
| `IP_FAMILY` | `IPv4` | Set to `IPv6` to run conformance against single-stack IPv6, or `dual` for dual-stack. |
| `IP_FAMILY` | `ipv4` | Set to `ipv6` to run conformance against single-stack IPv6, or `dual` for dual-stack. |

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.

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/config/azure-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ variables:
CONFORMANCE_CONTROL_PLANE_MACHINE_COUNT: "${CONFORMANCE_CONTROL_PLANE_MACHINE_COUNT:-1}"
CONFORMANCE_IMAGE: "${CONFORMANCE_IMAGE:-}"
CONFORMANCE_NODES: "${CONFORMANCE_NODES:-1}"
IP_FAMILY: "IPv4"
IP_FAMILY: "ipv4"
CLUSTER_IDENTITY_NAME: "${CLUSTER_IDENTITY_NAME:-cluster-identity-ci}"
ASO_CREDENTIAL_SECRET_NAME: "${ASO_CREDENTIAL_SECRET_NAME:-aso-credentials}"
ASO_CREDENTIAL_SECRET_MODE: "${ASO_CREDENTIAL_SECRET_MODE:-workloadidentity}"
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/conformance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ var _ = Describe("Conformance Tests", func() {
flavor = "conformance-presubmit-artifacts"
}
// use the ipv6 flavor if ipv6 IP family is specified.
if e2eConfig.MustGetVariable(capi_e2e.IPFamily) == "IPv6" {
if e2eConfig.MustGetVariable(capi_e2e.IPFamily) == "ipv6" {
flavor += "-ipv6"
kubetestConfigFilePath = strings.Replace(kubetestConfigFilePath, ".yaml", "-ipv6.yaml", 1)
} else if e2eConfig.MustGetVariable(capi_e2e.IPFamily) == "dual" {
Expand Down
Loading