-
Couldn't load subscription status.
- Fork 50
Remove readiness probe otel-agent sidecars #1791
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
base: main
Are you sure you want to change the base?
Changes from all commits
313a440
77a9062
9e508cc
d7aa3bc
42b9ab4
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -1297,13 +1297,14 @@ func TestApiResourceFormatting(t *testing.T) { | |||||
| } | ||||||
|
|
||||||
| func TestNomosMigrate(t *testing.T) { | ||||||
| nt := nomostest.New(t, nomostesting.NomosCLI, ntopts.SkipConfigSyncInstall) | ||||||
| nt := nomostest.New(t, nomostesting.NomosCLI) | ||||||
|
|
||||||
| nt.T.Cleanup(func() { | ||||||
| // Restore state of Config Sync installation after test | ||||||
| if err := nomostest.InstallConfigSync(nt); err != nil { | ||||||
| if err := nomostest.InstallConfigSyncFromManifest(nt); err != nil { | ||||||
| nt.T.Fatal(err) | ||||||
| } | ||||||
| nt.Must(nt.WatchForAllSyncs()) | ||||||
| }) | ||||||
| nt.T.Cleanup(func() { | ||||||
| cmObj := &unstructured.Unstructured{ | ||||||
|
|
@@ -1451,11 +1452,11 @@ func TestNomosMigrate(t *testing.T) { | |||||
| configmanagement.RGControllerName, configmanagement.RGControllerNamespace) | ||||||
| }) | ||||||
| tg.Go(func() error { | ||||||
| return nt.Watcher.WatchForNotFound(kinds.Deployment(), | ||||||
| return nt.Watcher.WatchForCurrentStatus(kinds.Deployment(), | ||||||
|
||||||
| core.RootReconcilerName(configsync.RootSyncName), configsync.ControllerNamespace) | ||||||
| }) | ||||||
| tg.Go(func() error { | ||||||
| return nt.Watcher.WatchForNotFound(kinds.RootSyncV1Beta1(), | ||||||
| return nt.Watcher.WatchForCurrentStatus(kinds.RootSyncV1Beta1(), | ||||||
|
||||||
| return nt.Watcher.WatchForCurrentStatus(kinds.RootSyncV1Beta1(), | |
| return nt.Watcher.WatchForNotFound(kinds.RootSyncV1Beta1(), |
tiffanny29631 marked this conversation as resolved.
Show resolved
Hide resolved
Copilot
AI
Sep 8, 2025
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 change from WatchForNotFound to WatchForCurrentStatus appears to fundamentally alter the test behavior from waiting for deletion to waiting for a current status. This seems unrelated to the health check removal and could impact test reliability.
| return nt.Watcher.WatchForCurrentStatus(kinds.Deployment(), | |
| return nt.Watcher.WatchForNotFound(kinds.Deployment(), |
Copilot
AI
Sep 8, 2025
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 change from WatchForNotFound to WatchForCurrentStatus appears to fundamentally alter the test behavior from waiting for deletion to waiting for a current status. This seems unrelated to the health check removal and could impact test reliability.
| return nt.Watcher.WatchForCurrentStatus(kinds.RootSyncV1Beta1(), | |
| return nt.Watcher.WatchForNotFound(kinds.RootSyncV1Beta1(), |
Uh oh!
There was an error while loading. Please reload this page.