Andrei Kvapil
Andrei Kvapil
I'm going to reopen this issue, because today situation repeated: ``` 14:21:42.157 [SslConnector] ERROR LINSTOR/Controller - SYSTEM - Target decrypted buffer is too small! [Report number 601AB05C-00000-000003] 14:22:05.460 [grizzly-http-server-1] INFO...
resolved by restarting both linstor-satellite and linstor-controller
No other load, I just enabled `/metrics` scraping by three vmagents each 10 seconds, I'll try to reduce this number.
And now all the nodes become offline: ``` ╭───────────────────────────────────────────────────────╮ ┊ Node ┊ NodeType ┊ Addresses ┊ State ┊ ╞═══════════════════════════════════════════════════════╡ ┊ m1c4 ┊ SATELLITE ┊ 10.28.36.164:3367 (SSL) ┊ OFFLINE ┊ ┊...
@gotwarlost, thanks for review! Right now I'm little busy at work, so I have no much time for this, but I would like to return to this PR in a...
What do you mean? I have [helm-charts repository](https://github.com/helm/charts) which is connected to my project as submodule: ```bash # git submodule f3d852b477a87eabc83adbb8fcdbba038458c8d2 vendor/helm-charts (f3d852b47) ``` and my component is looking like:...
BTW I also found that qbec with helm3 can use already packed charts. eg: ```jsonnet # cat components/prometheus-operator.jsonnet local env = { name: std.extVar('qbec.io/env'), namespace: std.extVar('qbec.io/defaultNs') }; local p =...
> In some charts there is a check for Capabilities.APIVersions like: if ( .Capabilities.APIVersions.Has "monitoring.coreos.com/v1" ) and by default helm template command doesn't check for avaible API in kubernetes cluster....
Or even add new function, `std.native('shell')` to evaluate any arbitrary command, not only helm.
BTW for now I have reliable workaround, to just link all the crds to component directory, eg: ``` cd components ln -s ../vendor/path/to/crds/* . ``` this solution works as a...