gitops-engine
gitops-engine copied to clipboard
Democratizing GitOps
Multi
Added a new sync option that allows users to disable deletion for specific objects when the application is cascade-deleted. This will be useful when running patches through Argo CD on...
kindOrder references https://github.com/helm/helm/blob/master/pkg/tiller/kind_sorter.go which is now probably: https://github.com/helm/helm/blob/ab12382ddcd3a27a974b45ed96e47697de221244/pkg/releaseutil/kind_sorter.go#L31 which lists a few more Kind values as are currently listed in: https://github.com/argoproj/gitops-engine/blob/4eb3ca3feefbd6aa3cd800ef6a6ba396b8e70f05/pkg/sync/sync_tasks.go#L22 Looks like Argo needs to update the kindOrder to...
# Summary Argo CD provides a way to customize resources health assessment using the Lua script. The argocd repository contains library of Lua scripts as well as test framework that...
Please consider dropping dependency on `k8s.io/kubernetes` module as it makes the engine really unwieldy to use. Imported: - https://github.com/argoproj/gitops-engine/blob/1723191ddef4cde1f62a7cb5e2d7eb743eb79cf5/pkg/diff/diff.go#L27 fixed in #57. - https://github.com/argoproj/gitops-engine/blob/df17961bbd04e2d98b52bc175cd0f1da96eb9d20/pkg/health/health.go#L17 copy it? - https://github.com/argoproj/gitops-engine/blob/8430dc06d70093793a05279ce002336822594394/pkg/utils/kube/convert.go#L7 a custom...
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...
- [x] Tests successful - [ ] Generation of well-known types - [x] Does this break any API compatibility? probably not. - [x] Does this take care of exposing only...
https://github.com/argoproj/gitops-engine/blob/master/docs/faq.md still refers a lot to the collaboration between Argo and Flux. In #126 I mostly just explained the current situation and how we got there. I didn't change any...
Add redactor feature similar to https://github.com/argoproj/pkg/blob/master/exec/exec.go#L53 to [tracing logging](https://github.com/argoproj/gitops-engine/blob/master/pkg/utils/tracing/logging.go) in order to hide sensitive data.
Closes #230