Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,18 @@ tests:
test:
- ref: windows-e2e-operator-test
workflow: ipi-azure-ovn-hybrid
- always_run: false
as: azure-e2e-operator-2machine

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ranjithrajaram instead of creating a new job, configure the existing azure-e2e-operator with 2 machine instances

skip_if_only_changed: ^(?:ote|docs|\.github|\.tekton)/|\.md$|^(?:\.gitignore|renovate\.json|OWNERS|PROJECT|LICENSE|Containerfile|Containerfile.bundle)$
steps:
cluster_profile: openshift-org-azure
env:
COMPUTE_NODE_REPLICAS: "1"
CONTROL_PLANE_REPLICAS: "1"
MACHINE_NODE_COUNT: "2"
test:
- ref: windows-e2e-operator-test
workflow: ipi-azure-ovn-hybrid
- always_run: false
as: gcp-e2e-operator
skip_if_only_changed: ^(?:ote|docs|\.github|\.tekton)/|\.md$|^(?:\.gitignore|renovate\.json|OWNERS|PROJECT|LICENSE|Containerfile|Containerfile.bundle)$
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ if [ -f $MIRROR_REGISTRY_FILE ]; then
echo "Using mirror registry: $MIRROR_REGISTRY_HOST"
fi

make run-ci-e2e-test
hack/run-ci-e2e-test.sh -m "${MACHINE_NODE_COUNT}"
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ ref:
- name: FIPS_ENABLED
default: "false"
documentation: Whether FIPS is enabled on the cluster or not.
- name: MACHINE_NODE_COUNT

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- name: MACHINE_NODE_COUNT
- name: WINDOWS_MACHINE_REPLICAS

Lets prefix with Windows so is clear only affect windows instances.
also use replicas to align with release repo config patterns.

default: "1"
documentation: Number of Windows Machine instances to create and configure using the Machine controller.
- name: VM_TEMPLATE
default: ""
documentation: An optional parameter to specify a custom VM template in vSphere.
Expand Down