-
Notifications
You must be signed in to change notification settings - Fork 567
OCPBUGS-98983: improve guest cluster state management reliability #9198
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,11 +15,9 @@ limitations under the License. | |
| */ | ||
|
|
||
| // dump-guests collects diagnostic artifacts from all v2 e2e | ||
| // HostedClusters in parallel. It shells out to the hypershift CLI | ||
| // for each cluster and always exits 0 so that dump failures never | ||
| // block teardown. | ||
| // Platform selection is controlled by the HYPERSHIFT_PLATFORM | ||
| // environment variable (default: "azure"). | ||
| // HostedClusters in parallel. Cluster identities are read from | ||
| // the cluster manifest written by create-guests to SHARED_DIR. | ||
| // It always exits 0 so that dump failures never block teardown. | ||
| package main | ||
|
|
||
| import ( | ||
|
|
@@ -37,36 +35,28 @@ func main() { | |
| hypershiftBinary := flag.String("hypershift-binary", "hypershift", "Path to the hypershift CLI binary") | ||
| flag.Parse() | ||
|
|
||
| prowJobID := os.Getenv("PROW_JOB_ID") | ||
| if prowJobID == "" { | ||
| log.Fatal("PROW_JOB_ID environment variable is required") | ||
| sharedDir := os.Getenv("SHARED_DIR") | ||
| if sharedDir == "" { | ||
| log.Fatal("SHARED_DIR environment variable is required") | ||
| } | ||
| artifactDir := os.Getenv("ARTIFACT_DIR") | ||
| if artifactDir == "" { | ||
| log.Fatal("ARTIFACT_DIR environment variable is required") | ||
| } | ||
|
|
||
| sharedDir := os.Getenv("SHARED_DIR") | ||
| platform, err := lifecycle.NewPlatformConfig(os.Getenv("HYPERSHIFT_PLATFORM"), sharedDir) | ||
| manifest, err := lifecycle.ReadManifest(sharedDir) | ||
| if err != nil { | ||
| log.Fatalf("Failed to initialize platform config: %v", err) | ||
| } | ||
|
|
||
| namespace := os.Getenv("HYPERSHIFT_NAMESPACE") | ||
| if namespace == "" { | ||
| namespace = "clusters" | ||
| log.Fatalf("Failed to read cluster manifest: %v", err) | ||
|
Contributor
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. Same as with destroy guests. If you can't read the manifest, just log the error and exit. |
||
| } | ||
|
|
||
| specs := platform.ClusterSpecs("", "") | ||
| log.Printf("Dumping %d clusters derived from PROW_JOB_ID=%s", len(specs), prowJobID) | ||
| log.Printf("Dumping %d clusters from manifest", len(manifest.Clusters)) | ||
|
|
||
| var wg sync.WaitGroup | ||
| for _, spec := range specs { | ||
| clusterName := lifecycle.DeriveClusterName(prowJobID, spec.Variant) | ||
| for _, entry := range manifest.Clusters { | ||
| wg.Add(1) | ||
| go func() { | ||
| defer wg.Done() | ||
| dumpCluster(*hypershiftBinary, artifactDir, clusterName, namespace) | ||
| dumpCluster(*hypershiftBinary, artifactDir, entry.Name, entry.Namespace) | ||
| }() | ||
| } | ||
| wg.Wait() | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Consider logging an error and just exiting here. If for some reason the step to create the manifest failed, this shouldn't result in further failures.
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.
log.Fatalfexits after logging