kopf icon indicating copy to clipboard operation
kopf copied to clipboard

A Python framework to write Kubernetes operators in just few lines of code.

Results 71 kopf issues
Sort by recently updated
recently updated
newest added

## Question I would like to embed kopf in an application to perform some extra cluster functions as a response to events. I can always use a global variable. Actually,...

question

## Expected Behavior I guess this is more like a feature request. Now I can run the operator with `--namespace` argument like this ``` kopf run my_operator.py --namespace=default ``` correct...

enhancement

## Long story short helm 3 updates trigger `@kopf.on.create` rather than `@kopf.on.update`. ## Description After a resource has been created using helm3 (haven't tested with helm2), and the definition changes,...

question

Hi all, I'm currently working on porting some code from [metacontroller](https://github.com/GoogleCloudPlatform/metacontroller) into Kopf. Metacontroller, gives you the option to receive callbacks when the monitored object changes, or any of its...

question

## Long story short If you use kopf.timer ans kopf create/update on the same resource, "kubectl delete" hangs. ## Description kubectl delete logconfigs xxx ^-- this command hangs. Logs say...

bug

In scenario where OIDC is enabled on API and each user making requests is presenting their own Bearer token, kube api does its verification and so on, how would I...

question

## Long story short Trying to run sample operator from the docs, unable to run it. We're using OIDC for k8s cluster authorization. ## Description Using example from https://github.com/zalando-incubator/kopf/tree/master/examples/01-minimal The...

bug

Normally this is not an issue. Everything defaults to ./kube/config and works fine. But what if your configfile is under a different filename? You would set KUBECONFIG environment variable to...

bug

First of all, excellent work on the operator, we're moving away from kubebuilder and adopting it here: https://opendev.org/vexxhost/openstack-operator Slowly but surely, the codebase is shaping up. :) ## Problem It's...

enhancement

## Expected Behavior An important part of kubernetes is the idea of eventual consistency. If a document is applied to the cluster, the state it describes may not take effect...

enhancement