KubeOps.Operator.Web 9.0.0

dotnet add package KubeOps.Operator.Web --version 9.0.0
NuGet\Install-Package KubeOps.Operator.Web -Version 9.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="KubeOps.Operator.Web" Version="9.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add KubeOps.Operator.Web --version 9.0.0
#r "nuget: KubeOps.Operator.Web, 9.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install KubeOps.Operator.Web as a Cake Addin
#addin nuget:?package=KubeOps.Operator.Web&version=9.0.0

// Install KubeOps.Operator.Web as a Cake Tool
#tool nuget:?package=KubeOps.Operator.Web&version=9.0.0

KubeOps Operator Web

The KubeOps Operator Web package provides a webserver to enable webhooks for your Kubernetes operator.

Usage

To enable webhooks and external access to your operator, you need to use ASP.net. The project file needs to reference Microsoft.NET.Sdk.Web instead of Microsoft.NET.Sdk and the Program.cs needs to be changed.

To allow webhooks, the MVC controllers need to be registered and mapped.

The basic Program.cs setup looks like this:

using KubeOps.Operator;

var builder = WebApplication.CreateBuilder(args);
builder.Services
    .AddKubernetesOperator()
    .RegisterComponents();

builder.Services
    .AddControllers();

var app = builder.Build();

app.UseRouting();
app.MapControllers();

await app.RunAsync();

Note the .AddControllers and .MapControllers call. Without them, your webhooks will not be reachable.

Validation Hooks

To create a validation webhook, first create a new class that implements the ValidationWebhook<T> base class. Then decorate the webhook with the ValidationWebhookAttribute to set the route correctly.

After that setup, you may overwrite any of the following methods:

  • Create
  • CreateAsync
  • Update
  • UpdateAsync
  • Delete
  • DeleteAsync

The async methods take precedence over the sync methods.

An example of such a validation webhook looks like:

[ValidationWebhook(typeof(V1TestEntity))]
public class TestValidationWebhook : ValidationWebhook<V1TestEntity>
{
    public override ValidationResult Create(V1TestEntity entity, bool dryRun)
    {
        if (entity.Spec.Username == "forbidden")
        {
            return Fail("name may not be 'forbidden'.", 422);
        }

        return Success();
    }

    public override ValidationResult Update(V1TestEntity oldEntity, V1TestEntity newEntity, bool dryRun)
    {
        if (newEntity.Spec.Username == "forbidden")
        {
            return Fail("name may not be 'forbidden'.");
        }

        return Success();
    }
}

To create the validation results, use the protected methods (Success and Fail) like "normal" IActionResult creation methods.

Mutation Hooks

To create a mutation webhook, first create a new class that implements the MutationWebhook<T> base class. Then decorate the webhook with the MutationWebhookAttribute to set the route correctly.

After that setup, you may overwrite any of the following methods:

  • Create
  • CreateAsync
  • Update
  • UpdateAsync
  • Delete
  • DeleteAsync

The async methods take precedence over the sync methods.

An example of such a mutation webhook looks like:

[MutationWebhook(typeof(V1TestEntity))]
public class TestMutationWebhook : MutationWebhook<V1TestEntity>
{
    public override MutationResult<V1TestEntity> Create(V1TestEntity entity, bool dryRun)
    {
        if (entity.Spec.Username == "overwrite")
        {
            entity.Spec.Username = "random overwritten";
            return Modified(entity);
        }

        return NoChanges();
    }
}

To create the mutation results, use the protected methods (NoChanges, Modified, and Fail) like "normal" IActionResult creation methods.

Conversion Hooks

[!CAUTION] Conversion webhooks are not stable yet. The API may change in the future without a new major version. All code related to conversion webhooks are attributed with the RequiresPreviewFeatures attribute. To use the features, you need to enable the preview features in your project file with the <EnablePreviewFeatures>true</EnablePreviewFeatures> property.

A conversion webhook is a special kind of webhook that allows you to convert Kubernetes resources between versions. The webhooks are installed in CRDs and are called for all objects that need conversion (i.e. to achieve the stored version state).

A conversion webhook is separated to the webhook itself (the MVC controller that registers its route within ASP.NET) and the conversion logic.

The following example has two versions of the "TestEntity" (v1 and v2) and implements a conversion webhook to convert from v1 to v2 and vice versa.

// The Kubernetes resources
[KubernetesEntity(Group = "webhook.dev", ApiVersion = "v1", Kind = "TestEntity")]
public partial class V1TestEntity : CustomKubernetesEntity<V1TestEntity.EntitySpec>
{
    public override string ToString() => $"Test Entity v1 ({Metadata.Name}): {Spec.Name}";

    public class EntitySpec
    {
        public string Name { get; set; } = string.Empty;
    }
}

[KubernetesEntity(Group = "webhook.dev", ApiVersion = "v2", Kind = "TestEntity")]
public partial class V2TestEntity : CustomKubernetesEntity<V2TestEntity.EntitySpec>
{
    public override string ToString() => $"Test Entity v2 ({Metadata.Name}): {Spec.Firstname} {Spec.Lastname}";

    public class EntitySpec
    {
        public string Firstname { get; set; } = string.Empty;

        public string Lastname { get; set; } = string.Empty;
    }
}

The v1 of the resource has first and lastname in the same field, while the v2 has them separated.

public class V1ToV2 : IEntityConverter<V1TestEntity, V2TestEntity>
{
    public V2TestEntity Convert(V1TestEntity from)
    {
        var nameSplit = from.Spec.Name.Split(' ');
        var result = new V2TestEntity { Metadata = from.Metadata };
        result.Spec.Firstname = nameSplit[0];
        result.Spec.Lastname = string.Join(' ', nameSplit[1..]);
        return result;
    }

    public V1TestEntity Revert(V2TestEntity to)
    {
        var result = new V1TestEntity { Metadata = to.Metadata };
        result.Spec.Name = $"{to.Spec.Firstname} {to.Spec.Lastname}";
        return result;
    }
}

The conversion logic is implemented in the IEntityConverter interface. Each converter has a "convert" (from → to) and a "revert" (to → from) method.

[ConversionWebhook(typeof(V2TestEntity))]
public class TestConversionWebhook : ConversionWebhook<V2TestEntity>
{
    protected override IEnumerable<IEntityConverter<V2TestEntity>> Converters => new IEntityConverter<V2TestEntity>[]
    {
        new V1ToV2(), // other versions...
    };
}

The webhook the registers the list of possible converters and calls the converter upon request.

[!NOTE] There needs to be a conversion between ALL versions to the stored version (newest version). If there is no conversion, the webhook will fail and the resource is not stored. So if there exist a v1, v2, and v3, there needs to be a converter for v1 → v3 and v2 → v3 (when v3 is the stored version).

Installing In The Cluster

When creating an operator with webhooks, certain special resources must be provided to run in the cluster. When this package is referenced and KubeOps.Cli is installed, these resources should be generated automatically. Basically, instead of generating a dockerfile with dotnet:runtime as final image, you'll need dotnet:aspnet and the operator needs a service and the certificates for the HTTPS connection since webhooks only operate over HTTPS.

With the KubeOps.Cli package you can generate the required resources or let the customized Build targets do it for you.

The targets create a CA certificate and a server certificate (with respective keys), a service, and the webhook registrations required for you.

[!WARNING] The generated certificate has a validity of 5 years. After that time, the certificate needs to be renewed. For now, there is no automatic renewal process.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.0.0 660 3/13/2024
9.0.0-pre.4 37 4/19/2024
9.0.0-pre.3 43 3/21/2024
9.0.0-pre.2 43 3/13/2024
9.0.0-pre.1 62 3/7/2024
8.0.2-pre.2 53 2/21/2024
8.0.2-pre.1 40 2/19/2024
8.0.1 1,965 2/13/2024
8.0.1-pre.7 54 2/12/2024
8.0.1-pre.6 53 2/7/2024
8.0.1-pre.5 60 2/5/2024
8.0.1-pre.4 50 1/31/2024
8.0.1-pre.3 51 1/26/2024
8.0.1-pre.2 46 1/25/2024
8.0.1-pre.1 52 1/18/2024
8.0.0 347 1/17/2024
8.0.0-pre.45 47 1/17/2024
8.0.0-pre.44 57 1/16/2024
8.0.0-pre.43 49 1/16/2024
8.0.0-pre.42 185 1/10/2024
8.0.0-pre.41 132 1/2/2024
8.0.0-pre.40 110 12/27/2023
8.0.0-pre.39 60 12/21/2023
8.0.0-pre.38 138 12/6/2023
8.0.0-pre.37 53 12/6/2023
8.0.0-pre.36 53 12/3/2023
8.0.0-pre.35 60 11/28/2023
8.0.0-pre.34 78 11/24/2023
8.0.0-pre.33 52 11/24/2023
8.0.0-pre.32 48 11/23/2023
8.0.0-pre.31 56 11/23/2023
8.0.0-pre.30 54 11/23/2023
8.0.0-pre.29 134 11/11/2023
8.0.0-pre.28 56 11/8/2023
8.0.0-pre.27 149 10/23/2023
8.0.0-pre.26 60 10/19/2023
8.0.0-pre.25 55 10/18/2023
8.0.0-pre.24 70 10/13/2023
8.0.0-pre.23 61 10/13/2023
8.0.0-pre.22 61 10/13/2023
8.0.0-pre.21 57 10/12/2023
8.0.0-pre.20 63 10/11/2023
8.0.0-pre.19 58 10/9/2023
8.0.0-pre.18 55 10/9/2023
8.0.0-pre.17 57 10/7/2023
8.0.0-pre.16 56 10/6/2023
8.0.0-pre.15 56 10/6/2023
8.0.0-pre.14 56 10/5/2023
8.0.0-pre.13 50 10/5/2023
8.0.0-pre.12 53 10/4/2023
8.0.0-pre.11 55 10/3/2023
8.0.0-pre.10 57 10/3/2023
8.0.0-pre.9 58 10/3/2023
8.0.0-pre.8 54 10/2/2023
8.0.0-pre.7 59 10/2/2023
8.0.0-pre.6 60 9/29/2023
8.0.0-pre.5 54 9/28/2023
8.0.0-pre.4 52 9/28/2023
8.0.0-pre.3 56 9/27/2023
8.0.0-pre.2 40 9/26/2023
8.0.0-pre.1 53 9/22/2023

'# [9.0.0](https://github.com/buehler/dotnet-operator-sdk/compare/v8.0.1...v9.0.0) (2024-03-13)


### Bug Fixes

* **deps:** update dependency roslynator.analyzers to v4.11.0 ([#721](https://github.com/buehler/dotnet-operator-sdk/issues/721)) ([fc70466](https://github.com/buehler/dotnet-operator-sdk/commit/fc70466190187d2f328f1f3be6f99f100ecaaa33))
* **deps:** update dependency sonaranalyzer.csharp to v9.20.0.85982 ([#723](https://github.com/buehler/dotnet-operator-sdk/issues/723)) ([8a6cfe1](https://github.com/buehler/dotnet-operator-sdk/commit/8a6cfe1b1313b75c8a880949fdd0037c4445663b))
* Watching resource with old version should restart ([#735](https://github.com/buehler/dotnet-operator-sdk/issues/735)) ([183c381](https://github.com/buehler/dotnet-operator-sdk/commit/183c3815164e9ba12f507067cf9f286d80a26c7e)), closes [#724](https://github.com/buehler/dotnet-operator-sdk/issues/724)


### Features

* `CancellationToken` support and a lot of async improvements ([#725](https://github.com/buehler/dotnet-operator-sdk/issues/725)) ([2d17bff](https://github.com/buehler/dotnet-operator-sdk/commit/2d17bfff14a142070eb5fd898efefdf266b59724))


### BREAKING CHANGES

* Some methods do now feature the cancellation
token which changed the method signature.



'