Skip to content

Instantly share code, notes, and snippets.

View leonsteinhaeuser's full-sized avatar
🏠
Working from home

Leon Steinhäuser leonsteinhaeuser

🏠
Working from home
View GitHub Profile
@leonsteinhaeuser
leonsteinhaeuser / main.go
Last active September 13, 2021 07:46
Watch k8s (kubernetes) pod restarts
package main
import (
"context"
"fmt"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/watch"
@leonsteinhaeuser
leonsteinhaeuser / main.go
Created May 26, 2021 21:37
k8s watch custom resource
package main
import (
"context"
"fmt"
v1 "github.com/programmfabrik/k8s-fylr-operator/api/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"