Results 28 comments of Erik Brakkee

A stack trace of the error is as follows: ```Browse[1]> where where 1: eval(substitute(browser(skipCalls = pos), list(pos = (length(sys.frames()) - frame) + 2)), envir = sys.frame(frame)) where 2: eval(substitute(browser(skipCalls =...

It is most likely line 404 of utils.R

The same applies to the memory request. Shortly after fixing the issue with the cpu I got OOMkilled status of the pod. What do you mean by creating a PR?...

Is kfctl needed to install kubeflow 1.3 or is the version numbering of kfctl independent of that of kubeflow?

Just found out about this tool and it is the first one of those tools that has a very useful feature to graphically visualize the dependencies between the resources. That...

The problem even occurs when I remove all code. So I now have ``` @kopf.on.create('wamblee.org', 'v1', 'simplevolumes') def create_fn(body, spec, **kwargs): kopf.event(body, type="Normal", reason="Created", message="hello") ``` Above, I am using...

This is the CRD. It is a cluster CRD. ``` apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: name: simplevolumes.wamblee.org spec: scope: Cluster group: wamblee.org versions: - name: v1 served: true storage: true...

When I modify the CRD to scope 'Namespaced' then kopf.event() works. However, still cannot get any output using the logging framework. Is this a known limitation that generating events for...

I found out what the second problem is. Apparently, one has to use the logger argument to the event handler to log events. This is a bit unfortunate since I...

It seems that for cluster scoped events, the default namespace should be used. See [here](https://github.com/crossplane/crossplane/issues/2234). I can try tomorrow to see if I can create an event for a cluster...