-
Notifications
You must be signed in to change notification settings - Fork 53
Upgrade tests #97
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
Upgrade tests #97
Conversation
Signed-off-by: Nilekh Chaudhari <[email protected]>
CLIENT_SECRET: $(AZURE_CLIENT_SECRET) | ||
|
||
- script: | | ||
. scripts/setup-kind-cluster.sh & |
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.
This can be replaced with make e2e-setup-kind
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.
Done. Though had to move from wait
to sleep
. It seems ADO does not wait for child process and marks task as done after 10s.
imageVersion: $(LATEST_KMS_VERSION) | ||
|
||
- script: | | ||
. scripts/setup-kind-cluster.sh & |
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.
This can be replaced with make e2e-setup-kind
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.
In upgrade we can't use this target since it depends on setup-local-registry
. This generates also generates the manifests. For upgrade test we want to keep setup, manifest and cluster creation separate to make sure we install right version of kms
Reason for Change:
Implements e2e upgrade tests
Issue Fixed:
fixes #88
fixes #90
Notes for Reviewers: