Incorrect Implementation of Authentication Algorithm
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Vulnerable module: golang.org/x/crypto/ssh
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 and golang.org/x/crypto/ssh@0.19.0
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › golang.org/x/crypto/ssh/knownhosts@0.19.0 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/go-git/go-git/v5/plumbing/transport/ssh@5.11.0 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/go-git/go-git/v5/plumbing/transport/ssh@5.11.0 › github.com/skeema/knownhosts@1.2.2 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/go-git/go-git/v5/plumbing/transport/client@5.11.0 › github.com/go-git/go-git/v5/plumbing/transport/ssh@5.11.0 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/go-git/go-git/v5/plumbing/transport/ssh@5.11.0 › github.com/skeema/knownhosts@1.2.2 › golang.org/x/crypto/ssh/knownhosts@0.19.0 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/go-git/go-git/v5/plumbing/transport/client@5.11.0 › github.com/go-git/go-git/v5/plumbing/transport/ssh@5.11.0 › github.com/skeema/knownhosts@1.2.2 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/go-git/go-git/v5/plumbing/transport/ssh@5.11.0 › github.com/xanzy/ssh-agent@0.3.3 › golang.org/x/crypto/ssh/agent@0.19.0 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/go-git/go-git/v5@5.11.0 › github.com/go-git/go-git/v5/plumbing/transport/client@5.11.0 › github.com/go-git/go-git/v5/plumbing/transport/ssh@5.11.0 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/go-git/go-git/v5/plumbing/transport/client@5.11.0 › github.com/go-git/go-git/v5/plumbing/transport/ssh@5.11.0 › github.com/skeema/knownhosts@1.2.2 › golang.org/x/crypto/ssh/knownhosts@0.19.0 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/go-git/go-git/v5@5.11.0 › github.com/go-git/go-git/v5/plumbing/transport/client@5.11.0 › github.com/go-git/go-git/v5/plumbing/transport/ssh@5.11.0 › github.com/skeema/knownhosts@1.2.2 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/go-git/go-git/v5/plumbing/transport/client@5.11.0 › github.com/go-git/go-git/v5/plumbing/transport/ssh@5.11.0 › github.com/xanzy/ssh-agent@0.3.3 › golang.org/x/crypto/ssh/agent@0.19.0 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/go-git/go-git/v5@5.11.0 › github.com/go-git/go-git/v5/plumbing/transport/client@5.11.0 › github.com/go-git/go-git/v5/plumbing/transport/ssh@5.11.0 › github.com/skeema/knownhosts@1.2.2 › golang.org/x/crypto/ssh/knownhosts@0.19.0 › golang.org/x/crypto/ssh@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/go-git/go-git/v5@5.11.0 › github.com/go-git/go-git/v5/plumbing/transport/client@5.11.0 › github.com/go-git/go-git/v5/plumbing/transport/ssh@5.11.0 › github.com/xanzy/ssh-agent@0.3.3 › golang.org/x/crypto/ssh/agent@0.19.0 › golang.org/x/crypto/ssh@0.19.0
Overview
golang.org/x/crypto/ssh is a SSH client and server
Affected versions of this package are vulnerable to Incorrect Implementation of Authentication Algorithm when the key passed in the last call before a connection is established is assumed to be the key used for authentication. It is not necessarily the authentication key in use, and this allows attackers who can control the key cache by making their own carefully-timed connections to bypass authorization with subsequent legitimate ServerConfig.PublicKeyCallback
callbacks.
Note: The assumed caching behavior of this callback is not documented and is therefore considered human error, but the project maintainers have observed reliance on it for authorization decisions in production. In fact, the assumption is negated in the documentation, which states "A call to this function does not guarantee that the key offered is in fact used to authenticate." The behavior after upgrading still allows the possibility of an attacker forcing their own key to be the one in the cache when the callback is invoked if the client is using a different authentication method such as PasswordCallback
, KeyboardInteractiveCallback
, or NoClientAuth
. It is therefore recommended to rely on the return values of the connection itself, found in ServerConn.Permissions
for further authorization steps.
Remediation
Upgrade golang.org/x/crypto/ssh
to version 0.31.0 or higher.
References
Denial of Service (DoS)
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Vulnerable module: k8s.io/apimachinery/pkg/util/runtime
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 and k8s.io/apimachinery/pkg/util/runtime@0.26.11
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/portforward@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/pkg/apis/clientauthentication/v1beta1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/api/rbac/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/api/equality@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/api/errors@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admission/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admissionregistration/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/apps/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authentication/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authorization/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/autoscaling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/batch/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/certificates/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/coordination/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/core/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/discovery/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/events/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/extensions/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/flowcontrol/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/imagepolicy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/networking/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/node/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/policy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/rbac/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/scheduling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery/fake@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/httpstream/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/internal/controller@0.14.7 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/pkg/apis/clientauthentication/v1beta1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/api/rbac/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/api/errors@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/util/retry@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/testing@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/managedfields@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/strategicpatch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/Azure/kubelogin/pkg/token@0.0.20 › k8s.io/client-go/pkg/apis/clientauthentication/v1beta1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/testing@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/strategicpatch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/scheme@0.14.7 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/resource@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1@0.26.11 › k8s.io/apimachinery/pkg/api/equality@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/util/retry@0.26.11 › k8s.io/apimachinery/pkg/api/errors@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/api/validation@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/validation@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/managedfields@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/portforward@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/portforward@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/testing@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/managedfields@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/strategicpatch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/util/retry@0.26.11 › k8s.io/apimachinery/pkg/api/errors@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/pkg/apis/clientauthentication/v1beta1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/api/rbac/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/api/errors@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/apimachinery/pkg/util/managedfields@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/apimachinery/pkg/util/strategicpatch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery/fake@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admission/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admission/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admissionregistration/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admissionregistration/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/apps/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/apps/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authentication/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authentication/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authorization/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authorization/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/autoscaling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/autoscaling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/batch/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/batch/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/certificates/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/certificates/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/coordination/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/coordination/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/core/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/core/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/discovery/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/discovery/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/events/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/events/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/extensions/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/extensions/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/flowcontrol/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/flowcontrol/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/imagepolicy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/imagepolicy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/networking/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/networking/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/node/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/node/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/policy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/policy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/rbac/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/rbac/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/scheduling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/scheduling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/scale@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/scale@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/scale@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/httpstream/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/pkg/kubeclientmetrics@#d56162821bd1 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/azure@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/gcp@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/oidc@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/internal/controller@0.14.7 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/config@0.14.7 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/config@0.14.7 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/config@0.14.7 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/metadata@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/Azure/kubelogin/pkg/token@0.0.20 › k8s.io/client-go/pkg/apis/clientauthentication/v1beta1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd/api/v1@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/scheme@0.14.7 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/resource@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/api/equality@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/apimachinery/pkg/util/strategicpatch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/apimachinery/pkg/util/strategicpatch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/client-go/tools/reference@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/pkg/kubeclientmetrics@#d56162821bd1 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/azure@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/gcp@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/oidc@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/apimachinery/pkg/util/strategicpatch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/pkg/kubeclientmetrics@#d56162821bd1 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/azure@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/gcp@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/oidc@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/api/equality@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/Azure/kubelogin/pkg/token@0.0.20 › k8s.io/client-go/pkg/apis/clientauthentication/v1beta1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/testing@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/strategicpatch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/scheme@0.14.7 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/resource@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/util/retry@0.26.11 › k8s.io/apimachinery/pkg/api/errors@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/managedfields@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/portforward@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/pkg/kubeclientmetrics@#d56162821bd1 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/azure@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/gcp@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/oidc@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1/fake@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admission/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admission/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admission/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admission/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admissionregistration/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admissionregistration/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admissionregistration/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admissionregistration/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/apps/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/apps/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/apps/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/apps/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authentication/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authentication/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authentication/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authentication/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authorization/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authorization/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authorization/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authorization/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/autoscaling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/autoscaling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/autoscaling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/autoscaling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/batch/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/batch/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/batch/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/batch/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/certificates/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/certificates/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/certificates/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/certificates/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/coordination/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/coordination/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/coordination/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/coordination/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/core/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/core/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/core/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/core/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/discovery/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/discovery/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/discovery/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/discovery/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/events/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/events/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/events/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/events/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/extensions/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/extensions/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/extensions/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/extensions/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/flowcontrol/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/flowcontrol/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/flowcontrol/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/flowcontrol/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/imagepolicy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/imagepolicy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/imagepolicy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/imagepolicy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/networking/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/networking/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/networking/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/networking/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/node/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/node/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/node/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/node/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/policy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/policy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/policy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/policy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/rbac/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/rbac/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/rbac/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/rbac/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/scheduling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/scheduling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/scheduling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/scheduling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/pkg/kubeclientmetrics@#d56162821bd1 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/azure@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/gcp@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/oidc@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/scale@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/scale@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/scale@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/config@0.14.7 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/internal/testing/controlplane@0.14.7 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/httpstream/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/pkg/kubeclientmetrics@#d56162821bd1 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/azure@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/gcp@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/oidc@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset@0.26.11 › k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1@0.26.11 › k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset@0.26.11 › k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1@0.26.11 › k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/recorder@0.14.7 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/recorder@0.14.7 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/recorder@0.14.7 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/internal/controller@0.14.7 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/metadata@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/metadata@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/metadata@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/metadata@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/conversion@0.14.7 › sigs.k8s.io/controller-runtime/pkg/conversion@0.14.7 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/conversion@0.14.7 › sigs.k8s.io/controller-runtime/pkg/conversion@0.14.7 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/api/validation@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/validation@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/client-go/tools/reference@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1@0.26.11 › k8s.io/apimachinery/pkg/api/equality@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/pkg/kubeclientmetrics@#d56162821bd1 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/azure@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/gcp@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/oidc@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1@0.26.11 › k8s.io/apimachinery/pkg/api/equality@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/api/validation@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/validation@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/apimachinery/pkg/util/strategicpatch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/client-go/tools/reference@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/conversion@0.14.7 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/conversion@0.14.7 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apiserver/pkg/features@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/cli-runtime/pkg/genericclioptions@0.26.11 › k8s.io/client-go/discovery/cached/disk@0.26.11 › k8s.io/client-go/discovery/cached/memory@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/cli-runtime/pkg/genericclioptions@0.26.11 › k8s.io/client-go/discovery/cached/disk@0.26.11 › k8s.io/client-go/discovery/cached/memory@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/cli-runtime/pkg/genericclioptions@0.26.11 › k8s.io/client-go/discovery/cached/disk@0.26.11 › k8s.io/client-go/discovery/cached/memory@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/metadata@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/metadata@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/client-go/tools/clientcmd/api/v1@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/conversion@0.14.7 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/conversion@0.14.7 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1alpha1@1.26.11 › k8s.io/api/storage/v1alpha1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/rest/watch@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/pkg/kubeclientmetrics@#d56162821bd1 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/azure@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/gcp@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/oidc@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admission/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admission/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admissionregistration/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admissionregistration/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/apps/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/apps/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authentication/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authentication/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authorization/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authorization/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/autoscaling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/autoscaling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/batch/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/batch/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/certificates/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/certificates/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/coordination/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/coordination/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/core/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/core/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/discovery/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/discovery/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/events/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/events/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/extensions/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/extensions/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/flowcontrol/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/flowcontrol/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/imagepolicy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/imagepolicy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/networking/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/networking/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/node/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/node/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/policy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/policy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/rbac/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/rbac/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/scheduling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/scheduling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apiserver/pkg/features@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apiserver/pkg/features@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/validation@0.26.11 › k8s.io/cli-runtime/pkg/resource@0.26.11 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1/fake@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/cli-runtime/pkg/genericclioptions@0.26.11 › k8s.io/client-go/discovery/cached/disk@0.26.11 › k8s.io/client-go/discovery/cached/memory@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/cli-runtime/pkg/genericclioptions@0.26.11 › k8s.io/client-go/discovery/cached/disk@0.26.11 › k8s.io/client-go/discovery/cached/memory@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/cli-runtime/pkg/genericclioptions@0.26.11 › k8s.io/client-go/discovery/cached/disk@0.26.11 › k8s.io/client-go/discovery/cached/memory@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/scale@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/scale@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/internal/testing/controlplane@0.14.7 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/metadata@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/client-go/tools/clientcmd/api/v1@0.26.11 › k8s.io/client-go/tools/clientcmd/api@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1alpha1@1.26.11 › k8s.io/api/storage/v1alpha1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/conversion@0.14.7 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/conversion@0.14.7 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1alpha1@1.26.11 › k8s.io/api/storage/v1alpha1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/validation@0.26.11 › k8s.io/cli-runtime/pkg/resource@0.26.11 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admission/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/admissionregistration/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/apps/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authentication/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/authorization/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/autoscaling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/batch/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/certificates/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/coordination/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/core/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/discovery/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/events/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/extensions/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/flowcontrol/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/imagepolicy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/networking/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/node/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/policy/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/rbac/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/scheduling/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apiserver/pkg/features@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apiserver/pkg/features@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apiserver/pkg/features@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apiserver/pkg/features@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/internal/testing/controlplane@0.14.7 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/kubernetes/typed/core/v1@0.26.11 › k8s.io/client-go/applyconfigurations/core/v1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/scale@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/httpstream/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/httpstream/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/httpstream/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/internal/testing/controlplane@0.14.7 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/internal/testing/controlplane@0.14.7 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/metadata@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/kubernetes/typed/core/v1@0.26.11 › k8s.io/client-go/applyconfigurations/core/v1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/cli-runtime/pkg/genericclioptions@0.26.11 › k8s.io/client-go/discovery/cached/disk@0.26.11 › k8s.io/client-go/discovery/cached/memory@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/cli-runtime/pkg/genericclioptions@0.26.11 › k8s.io/client-go/discovery/cached/disk@0.26.11 › k8s.io/client-go/discovery/cached/memory@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/httpstream/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/httpstream/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/httpstream/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/validation@0.26.11 › k8s.io/cli-runtime/pkg/resource@0.26.11 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/metadata@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/metadata@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/runtime@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apiserver/pkg/features@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apiserver/pkg/features@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/validation@0.26.11 › k8s.io/cli-runtime/pkg/resource@0.26.11 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/cli-runtime/pkg/genericclioptions@0.26.11 › k8s.io/client-go/discovery/cached/disk@0.26.11 › k8s.io/client-go/discovery/cached/memory@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/validation@0.26.11 › k8s.io/cli-runtime/pkg/resource@0.26.11 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/validation@0.26.11 › k8s.io/cli-runtime/pkg/resource@0.26.11 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1beta1@1.26.11 › k8s.io/kubernetes/pkg/features@1.26.11 › k8s.io/apiserver/pkg/features@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/wait@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/kubernetes/typed/core/v1@0.26.11 › k8s.io/client-go/applyconfigurations/core/v1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/httpstream/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/httpstream/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/client-go/pkg/apis/clientauthentication/install@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/client-go/util/workqueue@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/kubernetes/typed/core/v1@0.26.11 › k8s.io/client-go/applyconfigurations/core/v1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/kubernetes/typed/core/v1@0.26.11 › k8s.io/client-go/applyconfigurations/core/v1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/util/templates@0.26.11 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/httpstream/spdy@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/plugin/pkg/client/auth/exec@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/kubernetes/typed/core/v1@0.26.11 › k8s.io/client-go/applyconfigurations/core/v1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/replace@0.26.11 › k8s.io/kubectl/pkg/cmd/delete@0.26.11 › k8s.io/kubectl/pkg/util/completion@0.26.11 › k8s.io/kubectl/pkg/polymorphichelpers@0.26.11 › k8s.io/kubectl/pkg/describe@0.26.11 › k8s.io/client-go/util/certificate/csr@0.26.11 › k8s.io/client-go/tools/watch@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/util/runtime@0.26.11
Overview
Affected versions of this package are vulnerable to Denial of Service (DoS) in the implementation of the HTTP/2 protocol. An attacker can cause a denial of service (including via DDoS) by rapidly resetting many streams through request cancellation.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
ws
package
Remediation
Upgrade k8s.io/apimachinery/pkg/util/runtime
to version 0.29.0-alpha.3, 1.29.0-alpha.3 or higher.
References
- Github Commit
- Github Commit
- GitHub Commit
- GitHub Commit
- GitHub Commit
- GitHub Commit
- GitHub Commit
- GitHub Commit
- GitHub Commit
- GitHub Commit
- GitHub Commit
- GitHub Commit
- Snyk Blog
- Vulnerability Discovery
- Vulnerability Explanation
- CISA - Known Exploited Vulnerabilities
Allocation of Resources Without Limits or Throttling
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Vulnerable module: golang.org/x/net/http2
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0, k8s.io/apimachinery/pkg/util/net@0.26.11 and others
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/soheilhy/cmux@0.1.5 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/improbable-eng/grpc-web/go/grpcweb@0.15.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/pkg/kubeclientmetrics@#d56162821bd1 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/azure@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/gcp@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/oidc@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/grpc-ecosystem/go-grpc-middleware@1.4.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/grpc-ecosystem/go-grpc-middleware/auth@1.4.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/grpc-ecosystem/go-grpc-middleware/retry@1.4.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/grpc-ecosystem/go-grpc-prometheus@1.2.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc@1.21.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus@1.4.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc@0.46.1 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › google.golang.org/grpc/health/grpc_health_v1@1.59.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › google.golang.org/api/chat/v1@0.132.0 › google.golang.org/api/transport/http@0.132.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/pkg/apis/clientauthentication/v1beta1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/api/rbac/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/api/errors@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/api/equality@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/pkg/kubeclientmetrics@#d56162821bd1 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/azure@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/gcp@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/plugin/pkg/client/auth/oidc@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/improbable-eng/grpc-web/go/grpcweb@0.15.0 › google.golang.org/grpc/health/grpc_health_v1@1.59.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › google.golang.org/grpc/reflection@1.59.0 › google.golang.org/grpc/reflection/grpc_reflection_v1alpha@1.59.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › google.golang.org/grpc/health@1.59.0 › google.golang.org/grpc/health/grpc_health_v1@1.59.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › google.golang.org/api/chat/v1@0.132.0 › google.golang.org/api/transport/http@0.132.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › google.golang.org/api/chat/v1@0.132.0 › google.golang.org/api/transport/http@0.132.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/Azure/kubelogin/pkg/token@0.0.20 › k8s.io/client-go/pkg/apis/clientauthentication/v1beta1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/testing@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/strategicpatch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/scheme@0.14.7 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/resource@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/util/retry@0.26.11 › k8s.io/apimachinery/pkg/api/errors@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/util/managedfields@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/portforward@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1@0.26.11 › k8s.io/apimachinery/pkg/api/equality@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/api/validation@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/validation@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/fake@0.26.11 › k8s.io/client-go/testing@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/health@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/internal/testing/controlplane@0.14.7 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/auth@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › google.golang.org/api/chat/v1@0.132.0 › google.golang.org/api/transport/http@0.132.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › google.golang.org/api/chat/v1@0.132.0 › google.golang.org/api/transport/http@0.132.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/apimachinery/pkg/util/strategicpatch@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/core/v1@0.26.11 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/record@0.26.11 › k8s.io/client-go/tools/reference@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers/apps/v1@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/informers@0.26.11 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/term@0.26.11 › k8s.io/client-go/tools/remotecommand@0.26.11 › k8s.io/client-go/transport/spdy@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › k8s.io/client-go/transport@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › google.golang.org/api/chat/v1@0.132.0 › google.golang.org/api/transport/http@0.132.0 › google.golang.org/api/option@0.132.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/grpc-ecosystem/go-grpc-middleware/tags/logrus@1.4.0 › github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus/ctxlogrus@1.4.0 › github.com/grpc-ecosystem/go-grpc-middleware/tags@1.4.0 › github.com/grpc-ecosystem/go-grpc-middleware@1.4.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › k8s.io/client-go/listers/core/v1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/storage/v1beta1@0.26.11 › k8s.io/client-go/applyconfigurations/meta/v1@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/event@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/cache@0.14.7 › sigs.k8s.io/controller-runtime/pkg/cache/internal@0.14.7 › k8s.io/client-go/tools/cache@0.26.11 › k8s.io/client-go/tools/pager@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › google.golang.org/api/chat/v1@0.132.0 › google.golang.org/api/transport/http@0.132.0 › google.golang.org/api/option@0.132.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/diff@#18ba62e1f1fb › k8s.io/kubectl/pkg/cmd/util@0.26.11 › k8s.io/kubectl/pkg/validation@0.26.11 › k8s.io/cli-runtime/pkg/resource@0.26.11 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/syncwaves@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/admission@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › google.golang.org/api/chat/v1@0.132.0 › google.golang.org/api/transport/http@0.132.0 › google.golang.org/api/option@0.132.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/builder@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/conversion@0.14.7 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/envtest@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/conversion@0.14.7 › k8s.io/apimachinery/pkg/runtime/serializer@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › k8s.io/client-go/tools/clientcmd@0.26.11 › k8s.io/client-go/tools/clientcmd/api/latest@0.26.11 › k8s.io/apimachinery/pkg/runtime/serializer/versioning@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › k8s.io/client-go/kubernetes@0.26.11 › k8s.io/client-go/kubernetes/typed/storage/v1beta1@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube/scheme@#18ba62e1f1fb › k8s.io/kubernetes/pkg/apis/storage/install@1.26.11 › k8s.io/kubernetes/pkg/apis/storage/v1alpha1@1.26.11 › k8s.io/api/storage/v1alpha1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/handler@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › google.golang.org/api/chat/v1@0.132.0 › google.golang.org/api/transport/http@0.132.0 › google.golang.org/api/option@0.132.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync/ignore@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/hook/helm@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/sync/common@#18ba62e1f1fb › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime@0.14.7 › sigs.k8s.io/controller-runtime/pkg/manager@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook@0.14.7 › sigs.k8s.io/controller-runtime/pkg/webhook/internal/metrics@0.14.7 › sigs.k8s.io/controller-runtime/pkg/metrics@0.14.7 › k8s.io/client-go/tools/leaderelection@0.26.11 › k8s.io/client-go/tools/leaderelection/resourcelock@0.26.11 › k8s.io/client-go/rest@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › google.golang.org/api/chat/v1@0.132.0 › google.golang.org/api/transport/http@0.132.0 › google.golang.org/api/option@0.132.0 › google.golang.org/grpc@1.59.0 › google.golang.org/grpc/internal/transport@1.59.0 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/cache@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/sync@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/gitops-engine/pkg/utils/kube@#18ba62e1f1fb › k8s.io/kubectl/pkg/util/openapi@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller/controllerutil@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client/apiutil@0.14.7 › k8s.io/client-go/restmapper@0.26.11 › k8s.io/client-go/discovery@0.26.11 › k8s.io/client-go/kubernetes/scheme@0.26.11 › k8s.io/api/storage/v1beta1@0.26.11 › k8s.io/api/core/v1@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › sigs.k8s.io/controller-runtime/pkg/controller@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source@0.14.7 › sigs.k8s.io/controller-runtime/pkg/source/internal@0.14.7 › sigs.k8s.io/controller-runtime/pkg/predicate@0.14.7 › sigs.k8s.io/controller-runtime/pkg/runtime/inject@0.14.7 › sigs.k8s.io/controller-runtime/pkg/client@0.14.7 › k8s.io/client-go/dynamic@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1/unstructured@0.26.11 › k8s.io/apimachinery/pkg/apis/meta/v1@0.26.11 › k8s.io/apimachinery/pkg/watch@0.26.11 › k8s.io/apimachinery/pkg/util/net@0.26.11 › golang.org/x/net/http2@0.19.0
Overview
golang.org/x/net/http2 is a work-in-progress HTTP/2 implementation for Go.
Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling when reading header data from CONTINUATION
frames. As part of the HPACK flow, all incoming HEADERS
and CONTINUATION
frames are read even if their payloads exceed MaxHeaderBytes
and will be discarded. An attacker can send excessive data over a connection to render it unresponsive.
Remediation
Upgrade golang.org/x/net/http2
to version 0.23.0 or higher.
References
LGPL-3.0 license
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Module: gopkg.in/retry.v1
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0, github.com/Azure/kubelogin/pkg/token@0.0.20 and others
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/Azure/kubelogin/pkg/token@0.0.20 › gopkg.in/retry.v1@1.0.3
LGPL-3.0 license
Denial of Service (DoS)
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Vulnerable module: github.com/rs/cors
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0, github.com/improbable-eng/grpc-web/go/grpcweb@0.15.0 and others
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/improbable-eng/grpc-web/go/grpcweb@0.15.0 › github.com/rs/cors@1.9.0
Overview
Affected versions of this package are vulnerable to Denial of Service (DoS) through the processing of malicious preflight requests that include a Access-Control-Request-Headers
header with excessive commas. An attacker can induce excessive memory consumption and potentially crash the server by sending specially crafted requests.
PoC
func BenchmarkPreflightAdversarialACRH(b *testing.B) {
resps := makeFakeResponses(b.N)
req, _ := http.NewRequest(http.MethodOptions, dummyEndpoint, nil)
req.Header.Add(headerOrigin, dummyOrigin)
req.Header.Add(headerACRM, http.MethodGet)
req.Header[headerACRH] = adversarialACRH
handler := Default().Handler(testHandler)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
handler.ServeHTTP(resps[i], req)
}
}
var adversarialACRH []string
func init() { // populates adversarialACRH
n := int(math.Floor(math.Sqrt(http.DefaultMaxHeaderBytes)))
commas := strings.Repeat(",", n)
res := make([]string, n)
for i := range res {
res[i] = commas
}
adversarialACRH = res
}
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
ws
package
Remediation
Upgrade github.com/rs/cors
to version 1.11.0 or higher.
References
MPL-2.0 license
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Module: github.com/r3labs/diff
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 and github.com/r3labs/diff@1.1.0
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/r3labs/diff@1.1.0
MPL-2.0 license
MPL-2.0 license
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Module: github.com/hashicorp/go-version
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0, code.gitea.io/sdk/gitea@0.15.1 and others
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › code.gitea.io/sdk/gitea@0.15.1 › github.com/hashicorp/go-version@1.2.1
MPL-2.0 license
Insertion of Sensitive Information into Log File
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Vulnerable module: github.com/hashicorp/go-retryablehttp
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 and github.com/hashicorp/go-retryablehttp@0.7.4
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/xanzy/go-gitlab@0.91.1 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4
Overview
Affected versions of this package are vulnerable to Insertion of Sensitive Information into Log File due to not sanitizing urls when writing them to the log file. This could lead to an attacker writing sensitive HTTP basic auth credentials to the log file.
Remediation
Upgrade github.com/hashicorp/go-retryablehttp
to version 0.7.7 or higher.
References
MPL-2.0 license
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Module: github.com/hashicorp/go-retryablehttp
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 and github.com/hashicorp/go-retryablehttp@0.7.4
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/xanzy/go-gitlab@0.91.1 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4
MPL-2.0 license
MPL-2.0 license
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Module: github.com/hashicorp/go-cleanhttp
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0, github.com/hashicorp/go-retryablehttp@0.7.4 and others
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/hashicorp/go-retryablehttp@0.7.4 › github.com/hashicorp/go-cleanhttp@0.5.2
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/xanzy/go-gitlab@0.91.1 › github.com/hashicorp/go-cleanhttp@0.5.2
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/xanzy/go-gitlab@0.91.1 › github.com/hashicorp/go-retryablehttp@0.7.4 › github.com/hashicorp/go-cleanhttp@0.5.2
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4 › github.com/hashicorp/go-cleanhttp@0.5.2
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4 › github.com/hashicorp/go-cleanhttp@0.5.2
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4 › github.com/hashicorp/go-cleanhttp@0.5.2
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4 › github.com/hashicorp/go-cleanhttp@0.5.2
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/opsgenie/opsgenie-go-sdk-v2/client@1.0.5 › github.com/hashicorp/go-retryablehttp@0.7.4 › github.com/hashicorp/go-cleanhttp@0.5.2
MPL-2.0 license
MPL-2.0 license
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Module: github.com/gosimple/slug
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 and github.com/gosimple/slug@1.13.1
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/gosimple/slug@1.13.1
MPL-2.0 license
Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Vulnerable module: github.com/Azure/azure-sdk-for-go/sdk/azidentity
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0, github.com/Azure/kubelogin/pkg/token@0.0.20 and others
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/Azure/kubelogin/pkg/token@0.0.20 › github.com/Azure/azure-sdk-for-go/sdk/azidentity@1.1.0
Overview
github.com/Azure/azure-sdk-for-go/sdk/azidentity is a module that provides Microsoft Entra ID (formerly Azure Active Directory) token authentication support across the Azure SDK. It includes a set of TokenCredential implementations, which can be used with Azure SDK clients supporting token authentication.
Affected versions of this package are vulnerable to Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition') in the authentication process. An attacker can elevate privileges by exploiting race conditions during the token validation steps. This is only exploitable if the application is configured to use multiple threads or processes for handling authentication requests.
Notes:
An attacker who successfully exploited the vulnerability could elevate privileges and read any file on the file system with SYSTEM access permissions;
An attacker who successfully exploits this vulnerability can only obtain read access to the system files by exploiting this vulnerability. The attacker cannot perform write or delete operations on the files;
The vulnerability exists in the following credential types:
DefaultAzureCredential
andManagedIdentityCredential
;The vulnerability exists in the following credential types:
ManagedIdentityApplication
(.NET)
ManagedIdentityApplication
(Java)
ManagedIdentityApplication
(Node.js)
Remediation
Upgrade github.com/Azure/azure-sdk-for-go/sdk/azidentity
to version 1.6.0 or higher.
References
- GitHub Commit
- GitHub Commit
- GitHub Commit
- GitHub Commit
- GitHub Commit
- GitHub Commit
- GitHub Commit
- Microsoft Advisory
Regular Expression Denial of Service (ReDoS)
- Manifest file: /argo-cd › ui/yarn.lock
- Package Manager: npm
- Vulnerable module: foundation-sites
- Introduced through: argo-cd-ui@1.0.0 and foundation-sites@6.7.5
Detailed paths
- Introduced through: argo-cd-ui@1.0.0 › foundation-sites@6.7.5
- Introduced through: argo-cd-ui@1.0.0 › argo-ui@1.0.0 › foundation-sites@6.7.5
Overview
foundation-sites is a responsive front-end framework
Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) due to inefficient backtracking in the regular expressions used in URL forms.
PoC
https://www.''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.
The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.
Let’s take the following regular expression as an example:
regex = /A(B|C+)+D/
This regular expression accomplishes the following:
A
The string must start with the letter 'A'(B|C+)+
The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the+
matches one or more times). The+
at the end of this section states that we can look for one or more matches of this section.D
Finally, we ensure this section of the string ends with a 'D'
The expression would match inputs such as ABBD
, ABCCCCD
, ABCBCCCD
and ACCCCCD
It most cases, it doesn't take very long for a regex engine to find a match:
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total
The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.
Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.
Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:
- CCC
- CC+C
- C+CC
- C+C+C.
The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.
From there, the number of steps the engine must use to validate a string just continues to grow.
String | Number of C's | Number of steps |
---|---|---|
ACCCX | 3 | 38 |
ACCCCX | 4 | 71 |
ACCCCCX | 5 | 136 |
ACCCCCCCCCCCCCCX | 14 | 65,553 |
By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.
Remediation
There is no fixed version for foundation-sites
.
References
Insufficient Documentation of Error Handling Techniques
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Vulnerable module: github.com/golang-jwt/jwt/v4
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 and github.com/golang-jwt/jwt/v4@4.5.0
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/golang-jwt/jwt/v4@4.5.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/bradleyfalzon/ghinstallation/v2@2.6.0 › github.com/golang-jwt/jwt/v4@4.5.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/bradleyfalzon/ghinstallation/v2@2.6.0 › github.com/golang-jwt/jwt/v4@4.5.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/bradleyfalzon/ghinstallation/v2@2.6.0 › github.com/golang-jwt/jwt/v4@4.5.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/cmd@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/bradleyfalzon/ghinstallation/v2@2.6.0 › github.com/golang-jwt/jwt/v4@4.5.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/Azure/kubelogin/pkg/token@0.0.20 › github.com/Azure/go-autorest/autorest/azure@0.11.27 › github.com/Azure/go-autorest/autorest@0.11.27 › github.com/Azure/go-autorest/autorest/adal@0.9.20 › github.com/golang-jwt/jwt/v4@4.5.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/api@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/bradleyfalzon/ghinstallation/v2@2.6.0 › github.com/golang-jwt/jwt/v4@4.5.0
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/argoproj/notifications-engine/pkg/controller@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/subscriptions@#f48567108f01 › github.com/argoproj/notifications-engine/pkg/services@#f48567108f01 › github.com/bradleyfalzon/ghinstallation/v2@2.6.0 › github.com/golang-jwt/jwt/v4@4.5.0
Overview
Affected versions of this package are vulnerable to Insufficient Documentation of Error Handling Techniques in the ParseWithClaims
function. An attacker can exploit this to accept invalid tokens by only checking for specific errors and ignoring others.
Workaround
Users who are not able to upgrade to the fixed version should make sure that they are properly checking for all errors, see example_test.go
Remediation
Upgrade github.com/golang-jwt/jwt/v4
to version 4.5.1 or higher.
References
Insufficient Documentation of Error Handling Techniques
- Manifest file: /argo-cd/argoproj/argo-cd/v2 › go.mod
- Package Manager: golang
- Vulnerable module: github.com/golang-jwt/jwt
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0, github.com/Azure/kubelogin/pkg/token@0.0.20 and others
Detailed paths
- Introduced through: github.com/argoproj/argo-cd/v2@0.0.0 › github.com/Azure/kubelogin/pkg/token@0.0.20 › github.com/AzureAD/microsoft-authentication-library-for-go/apps/confidential@0.5.2 › github.com/AzureAD/microsoft-authentication-library-for-go/apps/internal/oauth/ops/accesstokens@0.5.2 › github.com/golang-jwt/jwt@3.2.2
Overview
Affected versions of this package are vulnerable to Insufficient Documentation of Error Handling Techniques in the ParseWithClaims
function. An attacker can exploit this to accept invalid tokens by only checking for specific errors and ignoring others.
Workaround
Users who are not able to upgrade to the fixed version should make sure that they are properly checking for all errors, see example_test.go
Remediation
A fix was pushed into the master
branch but not yet published.