-
Notifications
You must be signed in to change notification settings - Fork 343
Update to latest commit of argo-rollouts-manager '4619e3168941619f554e3f987ad440589838c7a3' #994
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
Changes from all commits
5ade24f
57df8e2
9d65e90
a8dd2bf
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 |
|---|---|---|
|
|
@@ -634,6 +634,11 @@ func WaitForAllDeploymentsInTheNamespaceToBeReady(ns string, k8sClient client.Cl | |
|
|
||
| }, "3m", "1s").Should(BeTrue()) | ||
|
|
||
| // The above logic will successfully wait for Deployments to be ready. However, this does not mean that the operator's controller logic has completed it's initial cluster reconciliation logic (starting a watch then reconciling existing resources) | ||
| // - I'm not aware of a way to detect when this has completed, so instead I am inserting a 15 second pause. | ||
| // - If anyone has a better way of doing this, let us know. | ||
| // time.Sleep(15 * time.Second) | ||
| // TODO: Uncomment this once the sequential test suite timeout has increased. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I will uncomment this on another PR when we increase the sequential test timeout |
||
| } | ||
|
|
||
| func WaitForAllStatefulSetsInTheNamespaceToBeReady(ns string, k8sClient client.Client) { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| package sequential | ||
| package parallel | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I moved some tests from sequential to parallel, in order to reduce the amount of time it takes the sequential E2E tests to run. I have verified that all of these tests are 'safe' to run in parallel |
||
|
|
||
| import ( | ||
| . "github.com/onsi/ginkgo/v2" | ||
|
|
@@ -11,12 +11,12 @@ import ( | |
| "k8s.io/utils/ptr" | ||
| ) | ||
|
|
||
| var _ = Describe("GitOps Operator Sequential E2E Tests", func() { | ||
| var _ = Describe("GitOps Operator Parallel E2E Tests", func() { | ||
|
|
||
| Context("1-005_validate_metrics_test", func() { | ||
|
|
||
| BeforeEach(func() { | ||
| fixture.EnsureSequentialCleanSlate() | ||
| fixture.EnsureParallelCleanSlate() | ||
| }) | ||
|
|
||
| It("verifies that default ServiceMonitors exist in openshift-gitops and PrometheusRule ArgoCDSyncAlert exists", func() { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
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.
Extra spaces will be automatically removed next time
upgrade-rollouts-managerruns