Sambhav Kothari

Results 162 comments of Sambhav Kothari

I was imagining that the updaters could have proper structured fields in the configuration file, that mimics the updater structs instead of the string parsing that currently happens. This would...

Not a complete fix, but with the new kyverno CLI you can now easily reproduce such JMESPath issues -> ```bash $ echo "{}" | kyverno jp "divide(`20`, `25`)" 0.8 $...

@chipzoller it is obvious for some cases but not for others. Let's take for eg - ``` divide('20Mi', '2Mi') -> output should be 10 (an integer) divide('20Ki', '1024') -> output...

I believe kyverno might be able to support this already through ggcr's use of ecr cred helpers. Have you tried configuring your image pull secrets like so - https://github.com/awslabs/amazon-ecr-credential-helper#docker See...

I don't think modulo is even defined as an operation on units. It should ideally be integers only.

An idea on how to filter on CVSS fields - treat each field with a subset of glob matching rules - by default all fields that are not specified are...

@nolar could we please merge this and cut a release? This is a significant bug in the patching logic and is causing some issues. I am not sure why the...

@nolar I would be happy to help add this to the docs, but I don't quite understand which parts kopf handles when deployed as a k8s native app. - Does...

At the end - this is what I created for a minimal webhook config. ```python import os from typing import Any, AsyncIterator, Dict import kopf class ServiceTunnel: async def __call__(...

Would others find that Tunnel I wrote useful as a default inside kopf?