dudicoco
dudicoco
https://github.com/argoproj/gitops-engine/blob/master/pkg/diff/diff.go states the following: ``` The package provide functions that allows to compare set of Kubernetes resources using the logic equivalent to `kubectl diff`. ``` Why is it necessary to...
Hi, The chart configures the memory parameters for `memory_limiter` automatically as a percentage of the defined resource limits via templating functions: https://github.com/open-telemetry/opentelemetry-helm-charts/blob/ce2098bfb05a269a6b1cc53d9aff29c352f94a91/charts/opentelemetry-collector/templates/_config.tpl#L8-L12 I was wondering why `limit_percentage` and `spike_limit_percentage` were...
Hi, Flagger is a great tool for performing automated canary deployments in k8s: https://github.com/weaveworks/flagger/ Is it possible to support the flagger canary custom resource so that kubedog will output the...
Within the status progress, the pod names are always cut off: ```sh ┌ Status progress │ STATEFULSET REPLICAS READY UP-TO-DATE │ prometheus-server 2/2 1->2 2 │ │ POD READY RESTARTS...
When a replicaset fails to create a pod kubedog does not detect the errors and does not fail the progress. Examples: ``` Conditions: Type Status Reason ---- ------ ------ ReplicaFailure...
When a pod has a volume mount error, kubedog prints the error but does not recognize this as a failure: ``` │ my-deploy 2/1 1 1 │ │ POD READY...
Hi, Currently, kubedog does not know when a pod is failing to become ready due to a failed [pod readiness gate](https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-readiness-gate). Can support for readiness gate failure detection be added?...
Currently, kubedog prints updates on a fixed interval according to `StatusProgressPeriod`, this causes a lot of identical prints for deployments which have not progressed yet, for example: ```shell ┌ Status...
Hi, In https://github.com/kubernetes/kube-state-metrics/pull/858 @MIBc added `readinessProbe` on port `8080` within the example deployment manifest. This was later changed in https://github.com/kubernetes/kube-state-metrics/pull/908 by @brancz to port `8081`. Within the official helm chart...
Hi, I would like to set up a dynamic configuration for Blackbox exporter within k8s. With Prometheus, you can load configuration files from a path on the disk, for example:...