-
-
Notifications
You must be signed in to change notification settings - Fork 78
Add some utility extensions to assist creating Kubernetes objects #41
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,4 @@ bld/ | |
# Testing results | ||
coverage.json | ||
coverage.info | ||
.vs |
68 changes: 68 additions & 0 deletions
68
src/KubeOps/Operator/Entities/Extensions/KubernetesObjectExtensions.cs
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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
using k8s; | ||
using k8s.Models; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
|
||
namespace KubeOps.Operator.Entities.Extensions | ||
{ | ||
public static class KubernetesObjectExtensions | ||
{ | ||
public static TResource WithOwnerReference<TResource>(this TResource resource, IKubernetesObject<V1ObjectMeta> owner) | ||
where TResource : IKubernetesObject<V1ObjectMeta> | ||
{ | ||
resource.Metadata.EnsureOwnerReferences().Add(owner.MakeOwnerReference()); | ||
return resource; | ||
} | ||
|
||
public static IList<V1OwnerReference> EnsureOwnerReferences(this V1ObjectMeta meta) | ||
{ | ||
if (meta.OwnerReferences == null) | ||
{ | ||
meta.OwnerReferences = new List<V1OwnerReference>(); | ||
} | ||
|
||
return meta.OwnerReferences; | ||
} | ||
|
||
public static V1OwnerReference MakeOwnerReference(this IKubernetesObject<V1ObjectMeta> kubernetesObject) | ||
=> new V1OwnerReference(kubernetesObject.ApiVersion, kubernetesObject.Kind, kubernetesObject.Metadata.Name, kubernetesObject.Metadata.Uid); | ||
|
||
public static V1ObjectReference MakeObjectReference(this IKubernetesObject<V1ObjectMeta> kubernetesObject) | ||
=> new V1ObjectReference() | ||
{ | ||
ApiVersion = kubernetesObject.ApiVersion, | ||
Kind = kubernetesObject.Kind, | ||
Name = kubernetesObject.Metadata.Name, | ||
NamespaceProperty = kubernetesObject.Metadata.NamespaceProperty, | ||
ResourceVersion = kubernetesObject.Metadata.ResourceVersion, | ||
Uid = kubernetesObject.Metadata.Uid | ||
}; | ||
|
||
/* commented pending fleshing this out and improving after confirming event best practices | ||
/// <summary> | ||
/// Create an event for a kubernetesObject that can be applied to the cluster using the Create on <see cref="Client.IKubernetesClient" /> | ||
/// </summary> | ||
/// <param name="kubernetesObject">The object to create an event for</param> | ||
/// <param name="reason">A short reason tag, like Created, Updated, Reconciled</param> | ||
/// <param name="message">A human readable message to go with the event</param> | ||
/// <param name="type">A string corresponding to the event type, Normal or Warning</param> | ||
/// <param name="component">The component generating the event, it should be the name of the operator</param> | ||
/// <returns></returns> | ||
public static V1Event Event(this IKubernetesObject<V1ObjectMeta> kubernetesObject, string reason, string message, string type = "Normal", string? component = null) => | ||
buehler marked this conversation as resolved.
Show resolved
Hide resolved
buehler marked this conversation as resolved.
Show resolved
Hide resolved
|
||
new V1Event | ||
{ | ||
Metadata = new V1ObjectMeta { Name = $"{kubernetesObject.Name()}.{DateTimeOffset.UtcNow.ToFileTime()}", NamespaceProperty = kubernetesObject.Namespace() }, | ||
InvolvedObject = kubernetesObject.MakeObjectReference(), | ||
Reason = reason, | ||
Source = new V1EventSource { Component = component }, | ||
Count = 1, | ||
Message = message, | ||
FirstTimestamp = DateTime.UtcNow, | ||
LastTimestamp = DateTime.UtcNow, | ||
Type = type | ||
}; | ||
*/ | ||
} | ||
} |
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.
Uh oh!
There was an error while loading. Please reload this page.