Sergej Zagursky
Sergej Zagursky
What happens? `errorx.Decorate` returns an error with the following properties: * `e.IsOfType(...)` always returns `false` * `e.Type()` returns `synthetic.foreign` I suggest that `errorx.Decorate(nil, "")` should either return nil or panic.
There are a number of `errorx` functions that rely on `Cast` implementation. `Cast` was designed in pre Go 1.13 times and it doesn't respect wrap semantic of Go 1.13. While...
I'm currently setting up a HA vmalert cluster. The relevant part of its definition is: ``` apiVersion: operator.victoriametrics.com/v1beta1 kind: VMAlert metadata: name: vmalert-cluster spec: replicaCount: 2 ``` I have a...
I need to add finalizers without granting access to the entire resource. It certainly is possible in Kubernetes: ```YAML apiVersion: rbac.authorization.k8s.io/v1 kind: Role metadata: name: myrole rules: - apiGroups: -...
## Description I run Terragrunt in a homeless environment. I explicitly specify `TERRAGRUNT_PROVIDER_CACHE_DIR` but Terragrunt unconditionally checks whether `HOME` or `XDG_CACHE_HOME` exists despite that the result isn't used. ## Release...
# Describe the problem Consider the following spec: ```ruby control "Test" do describe command("echo \'#!/bin/sh\necho \{\\\"foo\\\": 42\}\' > /usr/bin/hello.sh && chmod a+x /usr/bin/hello.sh") do its('exit_status') { should eq 0 }...
### Is your feature request related to a problem? Please describe I'm working with Terragrunt. It emits Terraform configuration and launches `terraform` to process it. The problem is that Terragrunt...
# Summary Implements #2186