-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Add an AKS migration e2e run #11521
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an AKS migration e2e run #11521
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -47,6 +47,13 @@ if [[ -n "$OPERATOR_MIGRATE" ]]; then | |||||
| ${HOME}/${SEMAPHORE_GIT_DIR}/.semaphore/end-to-end/scripts/test_scripts/operator_migrate.sh | ||||||
| fi | ||||||
|
|
||||||
| # Perform the AKS migration following the instructions here: | ||||||
| # https://docs.tigera.io/calico/latest/getting-started/kubernetes/managed-public-cloud/aks-migrate | ||||||
| if [[ -n "$DESIRED_POLICY" ]]; then | ||||||
|
||||||
| if [[ -n "$DESIRED_POLICY" ]]; then | |
| if [[ -n "$AKS_MIGRATE" ]]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
INSTALLERenvironment variable is set to "operator" at the job level (line 171-172) but is also defined as "helmerator" at the task level (line 185-186). While the job-level value will take precedence, this duplication could cause confusion. Consider removing the job-level definition if the task-level default is incorrect, or document why both are needed.