Aljosha Friemann

Results 12 comments of Aljosha Friemann

the main reason why I would want to filter those is that it's arm based instances and I don't feel comfortable just switching over without extensive testing - so essentially...

my two cents: * the exporter should always respond but set the `up` metric to `0` * the health check should always report okay when the exporter is functioning (this...

> I still think it should time out or close the connection if something is wrong because Prometheus should not record values that might be wrong.. I totally agree that...

This seems to still be an issue, @deivid-rodriguez is there any way for us to get your fix reviewed/merged?

unfortunately the same issue with a few crds ```terraform data "http" "crds" { url = "https://raw.githubusercontent.com/external-secrets/external-secrets/helm-chart-0.9.11/deploy/crds/bundle.yaml" } data "kubectl_file_documents" "crds" { content = data.http.crds.response_body } resource "kubernetes_manifest" "crds" { for_each...

with computed_fields specified to the individual field names: ```terraform computed_fields = [ "metadata.annotations", "metadata.finalizers", "metadata.labels", "spec.conversion.webhook.clientConfig.caBundle", "spec.conversion.webhook.clientConfig.service.name", "spec.conversion.webhook.clientConfig.service.namespace", "spec.conversion.webhook.clientConfig.service.path", "spec.conversion.webhook.clientConfig.service.port", "spec.conversion.webhook.clientConfig.url", ] ``` the plan looks like this ```terraform ~...

> The possible solution to import that existing release to terraform state `$ terraform import helm_release.example default/example-name`. https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release#import we've actually been stuck trying this - import the resource, terraform is...

hey @mldev94 - I took a quick look at your PR and don't think this integrates too well.. The right approach, I think, would be to introduce a new secret...

Hey @bergundy, Me neither actually. I'd leave it up to you. I usually just resort to a json/yaml parser and a dict. Would definitely add a note that it's more...

possible solution via jinja2schema https://stackoverflow.com/questions/42589514/how-to-get-nested-undeclared-variables-in-python-jinja2 Stack Overflowhow to get nested undeclared variables in python jinja2I have an xml template and I'm loadind data into it using jinja2 template engine. I'm...