dudicoco

Results 126 comments of dudicoco

> Did anyone try out the [Argocd Helmfile plugin](https://opensourcelibs.com/lib/argo-cd-helmfile) as an alternative to the proxy chart? It makes more sense to have the chart version next to the inline values...

Isn't multi namespace already supported? I assume this could be done by using a cluster scope installation, but instead of creating a cluster role, create roles in each namespace you...

@TylerHelmuth this is actually an issue in the collector repo as well: https://github.com/open-telemetry/opentelemetry-collector/blob/c368d497a2046011da4a39ee977ceed5f841c266/examples/k8s/otel-config.yaml#L28-L33 I wonder if the percentage parameters even work properly with detecting k8s resource limits? I didn't try...

I've tested `limit_percentage`, `spike_limit_percentage` and the `memory_ballast` `size_in_percentage` parameters with k8s and they are all working as expected.

Sure. Container resources: ```yaml resources: requests: cpu: 100m memory: 128Mi limits: cpu: 1 memory: 2Gi ``` Config file: ```yaml receivers: otlp: protocols: grpc: endpoint: 0.0.0.0:4317 http: endpoint: 0.0.0.0:4318 processors: memory_limiter:...

I've reduced both the container's resources and the `memory_limiter` percentage values and the memory was limited: ```log 2022-05-22T19:56:40.025Z info memorylimiterprocessor/memorylimiter.go:143 Using percentage memory limiter {"kind": "processor", "name": "memory_limiter", "pipeline": "traces",...

Hi, I'm experiencing a similar issue with skip = true in the child terragrunt.hcl files not working due to missing yaml files in the directory. The folloeinh is defined in...

Thanks @brikis98. I've already done something similar in the child terragrunt.hcl file: https://github.com/gruntwork-io/terragrunt/issues/989#issuecomment-569991611 I was also thinking of moving the fileexists conditional to the main terragrunt.hcl file, might give it...

Actually I think I would still need to fileexists conditional in the child terragrunt.hcl for the skip function.