-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ArgoCD provider: remove ArgoCD/Kubernetes dependency
The ArgoCD client dependencies are heavy and are a mess to upgrade. This commit use a simple HTTP client instead of the official ArgoCD client to fetch ArgoCD applications. All dependencies are also updated. Signed-off-by: Mathieu Corbin <[email protected]>
- Loading branch information
Showing
6 changed files
with
171 additions
and
1,432 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,193 +1,60 @@ | ||
module github.com/qonto/standards-insights | ||
|
||
go 1.21 | ||
go 1.22.0 | ||
|
||
replace ( | ||
k8s.io/api => k8s.io/api v0.24.2 | ||
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.24.2 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.24.2 | ||
k8s.io/apiserver => k8s.io/apiserver v0.24.2 | ||
k8s.io/cli-runtime => k8s.io/cli-runtime v0.24.2 | ||
k8s.io/client-go => k8s.io/client-go v0.24.2 | ||
k8s.io/cloud-provider => k8s.io/cloud-provider v0.24.2 | ||
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.24.2 | ||
k8s.io/code-generator => k8s.io/code-generator v0.24.2 | ||
k8s.io/component-base => k8s.io/component-base v0.24.2 | ||
k8s.io/component-helpers => k8s.io/component-helpers v0.24.2 | ||
k8s.io/controller-manager => k8s.io/controller-manager v0.24.2 | ||
k8s.io/cri-api => k8s.io/cri-api v0.24.2 | ||
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.24.2 | ||
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.24.2 | ||
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.24.2 | ||
k8s.io/kube-proxy => k8s.io/kube-proxy v0.24.2 | ||
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.24.2 | ||
k8s.io/kubectl => k8s.io/kubectl v0.24.2 | ||
k8s.io/kubelet => k8s.io/kubelet v0.24.2 | ||
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.24.2 | ||
k8s.io/metrics => k8s.io/metrics v0.24.2 | ||
k8s.io/mount-utils => k8s.io/mount-utils v0.24.2 | ||
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.24.2 | ||
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.24.2 | ||
) | ||
toolchain go1.22.3 | ||
|
||
require ( | ||
github.com/argoproj/argo-cd/v2 v2.9.10 | ||
github.com/go-chi/chi/v5 v5.0.10 | ||
github.com/go-git/go-git/v5 v5.11.0 | ||
github.com/go-playground/validator/v10 v10.16.0 | ||
github.com/prometheus/client_golang v1.16.0 | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/xanzy/go-gitlab v0.96.0 | ||
github.com/go-chi/chi/v5 v5.1.0 | ||
github.com/go-git/go-git/v5 v5.12.0 | ||
github.com/go-playground/validator/v10 v10.22.0 | ||
github.com/prometheus/client_golang v1.19.1 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/xanzy/go-gitlab v0.106.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.20.1 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
dario.cat/mergo v1.0.0 // indirect | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd // indirect | ||
github.com/Masterminds/semver/v3 v3.2.1 // indirect | ||
github.com/Microsoft/go-winio v0.6.1 // indirect | ||
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect | ||
github.com/argoproj/gitops-engine v0.7.1-0.20230906152414-b0fffe419a0f // indirect | ||
github.com/argoproj/pkg v0.13.7-0.20230626144333-d56162821bd1 // indirect | ||
github.com/Microsoft/go-winio v0.6.2 // indirect | ||
github.com/ProtonMail/go-crypto v1.0.0 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/bmatcuk/doublestar/v4 v4.6.0 // indirect | ||
github.com/bombsimon/logrusr/v2 v2.0.1 // indirect | ||
github.com/bradleyfalzon/ghinstallation/v2 v2.6.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/chai2010/gettext-go v0.0.0-20170215093142-bf70f2a70fb1 // indirect | ||
github.com/cloudflare/circl v1.3.3 // indirect | ||
github.com/coreos/go-oidc/v3 v3.6.0 // indirect | ||
github.com/cyphar/filepath-securejoin v0.2.4 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/docker/distribution v2.8.2+incompatible // indirect | ||
github.com/emicklei/go-restful/v3 v3.8.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/cloudflare/circl v1.3.9 // indirect | ||
github.com/cyphar/filepath-securejoin v0.2.5 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/emirpasic/gods v1.18.1 // indirect | ||
github.com/evanphx/json-patch v5.6.0+incompatible // indirect | ||
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect | ||
github.com/fatih/camelcase v1.0.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.3 // indirect | ||
github.com/fvbommel/sortorder v1.0.1 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.2 // indirect | ||
github.com/go-errors/errors v1.4.2 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.4 // indirect | ||
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect | ||
github.com/go-git/go-billy/v5 v5.5.0 // indirect | ||
github.com/go-jose/go-jose/v3 v3.0.1 // indirect | ||
github.com/go-logr/logr v1.2.4 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.20.0 // indirect | ||
github.com/go-openapi/swag v0.22.3 // indirect | ||
github.com/go-playground/locales v0.14.1 // indirect | ||
github.com/go-playground/universal-translator v0.18.1 // indirect | ||
github.com/go-redis/cache/v9 v9.0.0 // indirect | ||
github.com/gobwas/glob v0.2.3 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/btree v1.1.2 // indirect | ||
github.com/google/gnostic v0.6.9 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/go-github/v53 v53.2.0 // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.5 // indirect | ||
github.com/imdario/mergo v0.3.16 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect | ||
github.com/jonboulle/clockwork v0.2.2 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect | ||
github.com/kevinburke/ssh_config v1.2.0 // indirect | ||
github.com/klauspost/compress v1.16.5 // indirect | ||
github.com/leodido/go-urn v1.2.4 // indirect | ||
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.0 // indirect | ||
github.com/moby/spdystream v0.2.0 // indirect | ||
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect | ||
github.com/leodido/go-urn v1.4.0 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.1.0-rc4 // indirect | ||
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/onsi/gomega v1.33.1 // indirect | ||
github.com/pjbgf/sha1cd v0.3.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/common v0.42.0 // indirect | ||
github.com/prometheus/procfs v0.10.1 // indirect | ||
github.com/r3labs/diff v1.1.0 // indirect | ||
github.com/redis/go-redis/v9 v9.0.5 // indirect | ||
github.com/robfig/cron/v3 v3.0.1 // indirect | ||
github.com/russross/blackfriday v1.6.0 // indirect | ||
github.com/sergi/go-diff v1.1.0 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/skeema/knownhosts v1.2.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.55.0 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect | ||
github.com/skeema/knownhosts v1.2.2 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/vmihailenco/go-tinylfu v0.2.2 // indirect | ||
github.com/vmihailenco/msgpack/v5 v5.3.4 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
github.com/xanzy/ssh-agent v0.3.3 // indirect | ||
github.com/xlab/treeprint v1.1.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.42.0 // indirect | ||
go.opentelemetry.io/otel v1.16.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.16.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.16.0 // indirect | ||
go.starlark.net v0.0.0-20220328144851-d1966c6b9fcd // indirect | ||
golang.org/x/crypto v0.18.0 // indirect | ||
golang.org/x/mod v0.12.0 // indirect | ||
golang.org/x/net v0.20.0 // indirect | ||
golang.org/x/oauth2 v0.16.0 // indirect | ||
golang.org/x/sync v0.3.0 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/term v0.16.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/crypto v0.25.0 // indirect | ||
golang.org/x/net v0.27.0 // indirect | ||
golang.org/x/oauth2 v0.21.0 // indirect | ||
golang.org/x/sys v0.22.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
golang.org/x/time v0.5.0 // indirect | ||
golang.org/x/tools v0.13.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect | ||
google.golang.org/grpc v1.56.2 // indirect | ||
google.golang.org/protobuf v1.32.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
gopkg.in/warnings.v0 v0.1.2 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
k8s.io/api v0.24.17 // indirect | ||
k8s.io/apiextensions-apiserver v0.24.2 // indirect | ||
k8s.io/apimachinery v0.24.17 // indirect | ||
k8s.io/apiserver v0.24.17 // indirect | ||
k8s.io/cli-runtime v0.24.17 // indirect | ||
k8s.io/client-go v0.24.17 // indirect | ||
k8s.io/component-base v0.24.17 // indirect | ||
k8s.io/component-helpers v0.24.17 // indirect | ||
k8s.io/klog/v2 v2.70.1 // indirect | ||
k8s.io/kube-aggregator v0.24.2 // indirect | ||
k8s.io/kube-openapi v0.0.0-20220627174259-011e075b9cb8 // indirect | ||
k8s.io/kubectl v0.24.2 // indirect | ||
k8s.io/kubernetes v1.24.17 // indirect | ||
k8s.io/utils v0.0.0-20220706174534-f6158b442e7c // indirect | ||
oras.land/oras-go/v2 v2.3.0 // indirect | ||
sigs.k8s.io/json v0.0.0-20220525155127-227cbc7cc124 // indirect | ||
sigs.k8s.io/kustomize/api v0.11.5 // indirect | ||
sigs.k8s.io/kustomize/kyaml v0.13.7 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.3.0 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
) |
Oops, something went wrong.