-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We already do this with Kubernetes clients, where they are attached to the context and propagated to descendant provisioners so the scope magically updates as we traverse the call graph. Do the same for the remote, which a) makes things cleaner and we don't need to manually propagate to child metadata, and b) gives you access to a whole host more information e.g. the Kubernetes endpoint for troublesome provisioners such as Cilium. While we are here, remove the simpliar abomination that this background deletion.
- Loading branch information
Showing
12 changed files
with
90 additions
and
126 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
Copyright 2024 the Unikorn Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package remotecluster | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/unikorn-cloud/core/pkg/provisioners" | ||
) | ||
|
||
type key int | ||
|
||
const ( | ||
// remoteClusterKey sets the remote cluster so it's propagated to all | ||
// descendant provisioners in the call graph. | ||
remoteClusterKey key = iota | ||
|
||
// backgroundDeletionKey is used to propagate background deletion to | ||
// all descendant provisioners in the call graph. | ||
backgroundDeletionKey | ||
) | ||
|
||
func NewContext(ctx context.Context, remote provisioners.RemoteCluster) context.Context { | ||
return context.WithValue(ctx, remoteClusterKey, remote) | ||
} | ||
|
||
func FromContext(ctx context.Context) provisioners.RemoteCluster { | ||
if value := ctx.Value(remoteClusterKey); value != nil { | ||
if remote, ok := value.(provisioners.RemoteCluster); ok { | ||
return remote | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func NewContextWithBackgroundDeletion(ctx context.Context, backgroundDeletion bool) context.Context { | ||
return context.WithValue(ctx, backgroundDeletionKey, backgroundDeletion) | ||
} | ||
|
||
func BackgroundDeletionFromContext(ctx context.Context) bool { | ||
if value := ctx.Value(backgroundDeletionKey); value != nil { | ||
if backgroundDeletion, ok := value.(bool); ok { | ||
return backgroundDeletion | ||
} | ||
} | ||
|
||
return false | ||
} |
This file contains 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 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
Oops, something went wrong.