Is it possible to ignore the logs that comes from the phase kubernetes operator?
because logging every read event from the operator is kinda pointless and it will generate too many logs which is I think it's unnecessary.
Also i want to address another issue related with operator polling, I don't think that the field pollingInterval is working when set. looking at the code and it looks like it's being hard coded to 60s if i'm not mistaken. With the current implementation, I don't know if we can make it works or not. @nimish-ks
Will add a variable in values.yaml that will control logging verbosity that a user can control in the next release
The polling interval is currently hard-coded and is a bit tricky to work with because of the way kopf initializes the operator. the current default 60 second is a sweet spot that is less likely breach rate limits while syncing secrets and triggering re-deployments reasonably quickly in most setups. will look into this when i have some time.
Is it possible to ignore the logs that comes from the phase kubernetes operator? because logging every read event from the operator is kinda pointless and it will generate too many logs which is I think it's unnecessary. Also i want to address another issue related with operator polling, I don't think that the field
pollingInterval
is working when set. looking at the code and it looks like it's being hard coded to 60s if i'm not mistaken. With the current implementation, I don't know if we can make it works or not. @nimish-ks