Skip to content

deckhouse/module-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Module SDK

SDK to easy compile your hooks as a binary and integrate with addon operator

Usage

One file example

This file must be in 'hooks/' folder to build binary (see examples for correct layout)

package main

import (
  "context"
  "log/slog"

  "github.com/deckhouse/module-sdk/pkg"
  "github.com/deckhouse/module-sdk/pkg/app"
  objectpatch "github.com/deckhouse/module-sdk/pkg/object-patch"
  "github.com/deckhouse/module-sdk/pkg/registry"
  v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

var _ = registry.RegisterFunc(config, handlerHook)

var config = &pkg.HookConfig{
  Kubernetes: []pkg.KubernetesConfig{
    {
      Name:       "apiservers",
      APIVersion: "v1",
      Kind:       "Pod",
      NamespaceSelector: &pkg.NamespaceSelector{
        NameSelector: &pkg.NameSelector{
          MatchNames: []string{"kube-system"},
        },
      },
      LabelSelector: &v1.LabelSelector{
        MatchLabels: map[string]string{"component": "kube-apiserver"},
      },
      JqFilter: ".metadata.name",
    },
  },
}

func handlerHook(_ context.Context, input *pkg.HookInput) error {
  podNames, err := objectpatch.UnmarshalToStruct[string](input.Snapshots, "apiservers")
  if err != nil {
    return err
  }

  input.Logger.Info("found apiserver pods", slog.Any("podNames", podNames))

  input.Values.Set("test.internal.apiServers", podNames)

  return nil
}

func main() {
  app.Run()
}

More examples you can find here

Testing

If you want to test your JQ filter, you can use JQ helper like in example here

For deckhouse developers

Environment variables

Parameter Required Default value Description
BINDING_CONTEXT_PATH in/binding_context.json Path to binding context file
VALUES_PATH in/values_path.json Path to values file
CONFIG_VALUES_PATH in/config_values_path.json Path to config values file
METRICS_PATH out/metrics.json Path to metrics file
KUBERNETES_PATCH_PATH out/kubernetes.json Path to kubernetes patch file
VALUES_JSON_PATCH_PATH out/values.json Path to values patch file
CONFIG_VALUES_JSON_PATCH_PATH out/config_values.json Path to config values patch file
HOOK_CONFIG_PATH out/hook_config.json Path to dump hook configurations in file
CREATE_FILES false Allow hook to create files by himself (by default, waiting for addon operator to create)
LOG_LEVEL FATAL Log level (suppressed by default)

Work sequence

Deckhouse register process

  1. To register your hooks, add them to import section in main package like in examples
  2. Compile your binary and deliver to "hooks" folder in Deckhouse
  3. Addon operator finds it automatically and register all your hooks in binary, corresponding with your HookConfigs
  4. When addon operator has a reason, it calls hook in your binary
  5. After executing hook, addon operator process hook output

Calling hook

  1. Addon operator create temporary files for input and output data (see ENV for examples)
  2. Addon operator execute hook with corresponding ID and ENV variables pointed to files
  3. Hook reads all files and pass incoming data in HookInput
  4. Hook executes and write all resulting data from collectors contained in HookInput
  5. Addon operator reads info from temporary output files

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages