├── .bingo ├── .gitignore ├── README.md ├── Variables.mk ├── bingo.mod ├── bingo.sum ├── go.mod ├── golangci-lint.mod ├── golangci-lint.sum ├── helm.mod ├── helm.sum ├── kind.mod ├── kind.sum ├── setup-envtest.mod ├── setup-envtest.sum ├── variables.env ├── yq.mod └── yq.sum ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ └── support-question.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── e2e-tests.yml │ ├── go-verdiff.yaml │ ├── goreleaser.yaml │ ├── quickstart.yml │ ├── sanity.yaml │ ├── stale.yml │ └── unit.yml ├── .gitignore ├── .golangci.yaml ├── .goreleaser.yml ├── AGENTS.md ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── Dockerfile ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── boilerplate.go.txt ├── cmd ├── catalog │ ├── main.go │ ├── main_test.go │ └── start.go ├── copy-content │ └── main.go ├── olm │ ├── main.go │ ├── main_test.go │ └── manager.go └── package-server │ ├── main.go │ └── main_test.go ├── code-of-conduct.md ├── deploy ├── chart │ ├── .helmignore │ ├── Chart.yaml │ ├── crds │ │ ├── 0000_50_olm_00-catalogsources.crd.yaml │ │ ├── 0000_50_olm_00-clusterserviceversions.crd.yaml │ │ ├── 0000_50_olm_00-installplans.crd.yaml │ │ ├── 0000_50_olm_00-olmconfigs.crd.yaml │ │ ├── 0000_50_olm_00-operatorconditions.crd.yaml │ │ ├── 0000_50_olm_00-operatorgroups.crd.yaml │ │ ├── 0000_50_olm_00-operators.crd.yaml │ │ └── 0000_50_olm_00-subscriptions.crd.yaml │ ├── templates │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_01-networkpolicies.yaml │ │ ├── 0000_50_olm_02-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_03-olmconfig.yaml │ │ ├── 0000_50_olm_03-services.yaml │ │ ├── 0000_50_olm_04-cert-manager.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_15-packageserver.clusterserviceversion.yaml │ │ ├── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ │ ├── 0000_50_olm_99-operatorstatus.yaml │ │ ├── 0000_90_olm_00-service-monitor.yaml │ │ ├── 0000_90_olm_01-prometheus-rule.yaml │ │ ├── _helpers.tpl │ │ ├── _packageserver.clusterserviceversion.yaml │ │ ├── _packageserver.deployment-spec.yaml │ │ └── _packageserver.package.yaml │ └── values.yaml └── upstream │ ├── manifests │ ├── 0.10.0 │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_03-clusterserviceversion.crd.yaml │ │ ├── 0000_50_olm_04-installplan.crd.yaml │ │ ├── 0000_50_olm_05-subscription.crd.yaml │ │ ├── 0000_50_olm_06-catalogsource.crd.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_10-operatorgroup.crd.yaml │ │ ├── 0000_50_olm_11-olm-operators.configmap.yaml │ │ ├── 0000_50_olm_12-olm-operators.catalogsource.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_14-packageserver.subscription.yaml │ │ └── 0000_50_olm_18-upstream-operators.catalogsource.yaml │ ├── 0.10.1 │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_03-clusterserviceversion.crd.yaml │ │ ├── 0000_50_olm_04-installplan.crd.yaml │ │ ├── 0000_50_olm_05-subscription.crd.yaml │ │ ├── 0000_50_olm_06-catalogsource.crd.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_10-operatorgroup.crd.yaml │ │ ├── 0000_50_olm_11-olm-operators.configmap.yaml │ │ ├── 0000_50_olm_12-olm-operators.catalogsource.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_14-packageserver.subscription.yaml │ │ └── 0000_50_olm_18-upstream-operators.catalogsource.yaml │ ├── 0.11.0 │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_03-clusterserviceversion.crd.yaml │ │ ├── 0000_50_olm_04-installplan.crd.yaml │ │ ├── 0000_50_olm_05-subscription.crd.yaml │ │ ├── 0000_50_olm_06-catalogsource.crd.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_10-operatorgroup.crd.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_15-packageserver.clusterserviceversion.yaml │ │ └── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ ├── 0.12.0 │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_03-clusterserviceversion.crd.yaml │ │ ├── 0000_50_olm_04-installplan.crd.yaml │ │ ├── 0000_50_olm_05-subscription.crd.yaml │ │ ├── 0000_50_olm_06-catalogsource.crd.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_10-operatorgroup.crd.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_15-packageserver.clusterserviceversion.yaml │ │ └── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ ├── 0.13.0 │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_03-clusterserviceversion.crd.yaml │ │ ├── 0000_50_olm_04-installplan.crd.yaml │ │ ├── 0000_50_olm_05-subscription.crd.yaml │ │ ├── 0000_50_olm_06-catalogsource.crd.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_10-operatorgroup.crd.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_15-packageserver.clusterserviceversion.yaml │ │ └── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ ├── 0.14.1 │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_03-clusterserviceversion.crd.yaml │ │ ├── 0000_50_olm_04-installplan.crd.yaml │ │ ├── 0000_50_olm_05-subscription.crd.yaml │ │ ├── 0000_50_olm_06-catalogsource.crd.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_10-operatorgroup.crd.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_15-packageserver.clusterserviceversion.yaml │ │ └── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ ├── 0.15.0 │ │ ├── 0000_50_olm_00-catalogsources.yaml │ │ ├── 0000_50_olm_00-clusterserviceversions.yaml │ │ ├── 0000_50_olm_00-installplans.yaml │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_00-operatorgroups.yaml │ │ ├── 0000_50_olm_00-subscriptions.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_15-packageserver.clusterserviceversion.yaml │ │ └── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ ├── 0.15.1 │ │ ├── 0000_50_olm_00-catalogsources.crd.yaml │ │ ├── 0000_50_olm_00-clusterserviceversions.crd.yaml │ │ ├── 0000_50_olm_00-installplans.crd.yaml │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_00-operatorgroups.crd.yaml │ │ ├── 0000_50_olm_00-subscriptions.crd.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_15-packageserver.clusterserviceversion.yaml │ │ └── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ ├── 0.16.1 │ │ ├── 0000_50_olm_00-catalogsources.crd.yaml │ │ ├── 0000_50_olm_00-clusterserviceversions.crd.yaml │ │ ├── 0000_50_olm_00-installplans.crd.yaml │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_00-operatorgroups.crd.yaml │ │ ├── 0000_50_olm_00-operators.crd.yaml │ │ ├── 0000_50_olm_00-subscriptions.crd.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_15-packageserver.clusterserviceversion.yaml │ │ └── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ ├── 0.17.0 │ │ ├── 0000_50_olm_00-catalogsources.crd.yaml │ │ ├── 0000_50_olm_00-clusterserviceversions.crd.yaml │ │ ├── 0000_50_olm_00-installplans.crd.yaml │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_00-operatorgroups.crd.yaml │ │ ├── 0000_50_olm_00-operators.crd.yaml │ │ ├── 0000_50_olm_00-subscriptions.crd.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_15-packageserver.clusterserviceversion.yaml │ │ └── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ ├── 0.18.0 │ │ ├── 0000_50_olm_00-catalogsources.crd.yaml │ │ ├── 0000_50_olm_00-clusterserviceversions.crd.yaml │ │ ├── 0000_50_olm_00-installplans.crd.yaml │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_00-operatorconditions.crd.yaml │ │ ├── 0000_50_olm_00-operatorgroups.crd.yaml │ │ ├── 0000_50_olm_00-operators.crd.yaml │ │ ├── 0000_50_olm_00-subscriptions.crd.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_15-packageserver.clusterserviceversion.yaml │ │ └── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ ├── 0.18.1 │ │ ├── 0000_50_olm_00-catalogsources.crd.yaml │ │ ├── 0000_50_olm_00-clusterserviceversions.crd.yaml │ │ ├── 0000_50_olm_00-installplans.crd.yaml │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_00-operatorconditions.crd.yaml │ │ ├── 0000_50_olm_00-operatorgroups.crd.yaml │ │ ├── 0000_50_olm_00-operators.crd.yaml │ │ ├── 0000_50_olm_00-subscriptions.crd.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_15-packageserver.clusterserviceversion.yaml │ │ └── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ ├── 0.18.3 │ │ ├── 0000_50_olm_00-catalogsources.crd.yaml │ │ ├── 0000_50_olm_00-clusterserviceversions.crd.yaml │ │ ├── 0000_50_olm_00-installplans.crd.yaml │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_00-operatorconditions.crd.yaml │ │ ├── 0000_50_olm_00-operatorgroups.crd.yaml │ │ ├── 0000_50_olm_00-operators.crd.yaml │ │ ├── 0000_50_olm_00-subscriptions.crd.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_15-packageserver.clusterserviceversion.yaml │ │ └── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ ├── 0.4.0 │ │ ├── 01-alm-operator.serviceaccount.yaml │ │ ├── 02-alm-operator.rolebinding.yaml │ │ ├── 03-clusterserviceversion.crd.yaml │ │ ├── 05-catalogsource.crd.yaml │ │ ├── 06-installplan.crd.yaml │ │ ├── 07-subscription.crd.yaml │ │ ├── 08-tectonicocs.configmap.yaml │ │ ├── 09-tectoniccomponents.configmap.yaml │ │ ├── 10-tectonicocs.catalogsource.yaml │ │ ├── 11-tectoniccomponents.catalogsource.yaml │ │ ├── 12-alm-operator.deployment.yaml │ │ ├── 13-catalog-operator.deployment.yaml │ │ ├── 18-upstreamcomponents.configmap.yaml │ │ └── 19-upstreamcomponents.catalogsource.yaml │ ├── 0.5.0 │ │ ├── 01-alm-operator.serviceaccount.yaml │ │ ├── 02-alm-operator.rolebinding.yaml │ │ ├── 03-clusterserviceversion.crd.yaml │ │ ├── 05-catalogsource.crd.yaml │ │ ├── 06-installplan.crd.yaml │ │ ├── 07-subscription.crd.yaml │ │ ├── 08-tectonicocs.configmap.yaml │ │ ├── 09-tectoniccomponents.configmap.yaml │ │ ├── 10-tectonicocs.catalogsource.yaml │ │ ├── 11-tectoniccomponents.catalogsource.yaml │ │ ├── 12-alm-operator.deployment.yaml │ │ ├── 13-catalog-operator.deployment.yaml │ │ ├── 18-upstreamcomponents.configmap.yaml │ │ └── 19-upstreamcomponents.catalogsource.yaml │ ├── 0.6.0 │ │ ├── 01-alm-operator.serviceaccount.yaml │ │ ├── 02-alm-operator.rolebinding.yaml │ │ ├── 03-clusterserviceversion.crd.yaml │ │ ├── 05-catalogsource.crd.yaml │ │ ├── 06-installplan.crd.yaml │ │ ├── 07-subscription.crd.yaml │ │ ├── 08-ocs.configmap.yaml │ │ ├── 10-ocs.catalogsource.yaml │ │ ├── 12-alm-operator.deployment.yaml │ │ ├── 13-catalog-operator.deployment.yaml │ │ ├── 20-aggregated-edit.clusterrole.yaml │ │ └── 21-aggregated-view.clusterrole.yaml │ ├── 0.7.0 │ │ ├── 00-olm-operator.clusterrole.yaml │ │ ├── 01-olm-operator.serviceaccount.yaml │ │ ├── 02-olm-operator.rolebinding.yaml │ │ ├── 03-clusterserviceversion.crd.yaml │ │ ├── 05-catalogsource.crd.yaml │ │ ├── 06-installplan.crd.yaml │ │ ├── 07-subscription.crd.yaml │ │ ├── 08-rh-operators.configmap.yaml │ │ ├── 10-rh-operators.catalogsource.yaml │ │ ├── 12-olm-operator.deployment.yaml │ │ ├── 13-catalog-operator.deployment.yaml │ │ ├── 20-aggregated-edit.clusterrole.yaml │ │ ├── 21-aggregated-view.clusterrole.yaml │ │ └── 22-packageserver.yaml │ ├── 0.7.1 │ │ ├── 0000_30_00-namespace.yaml │ │ ├── 0000_30_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_30_02-clusterserviceversion.crd.yaml │ │ ├── 0000_30_03-installplan.crd.yaml │ │ ├── 0000_30_04-subscription.crd.yaml │ │ ├── 0000_30_05-catalogsource.crd.yaml │ │ ├── 0000_30_06-rh-operators.configmap.yaml │ │ ├── 0000_30_09-rh-operators.catalogsource.yaml │ │ ├── 0000_30_10-olm-operator.deployment.yaml │ │ ├── 0000_30_11-catalog-operator.deployment.yaml │ │ ├── 0000_30_12-aggregated.clusterrole.yaml │ │ └── 0000_30_13-packageserver.yaml │ ├── 0.7.2 │ │ ├── 0000_30_00-namespace.yaml │ │ ├── 0000_30_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_30_02-clusterserviceversion.crd.yaml │ │ ├── 0000_30_03-installplan.crd.yaml │ │ ├── 0000_30_04-subscription.crd.yaml │ │ ├── 0000_30_05-catalogsource.crd.yaml │ │ ├── 0000_30_06-rh-operators.configmap.yaml │ │ ├── 0000_30_09-rh-operators.catalogsource.yaml │ │ ├── 0000_30_10-olm-operator.deployment.yaml │ │ ├── 0000_30_11-catalog-operator.deployment.yaml │ │ ├── 0000_30_12-aggregated.clusterrole.yaml │ │ └── 0000_30_13-packageserver.yaml │ ├── 0.7.4 │ │ ├── 0000_30_00-namespace.yaml │ │ ├── 0000_30_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_30_02-clusterserviceversion.crd.yaml │ │ ├── 0000_30_03-installplan.crd.yaml │ │ ├── 0000_30_04-subscription.crd.yaml │ │ ├── 0000_30_05-catalogsource.crd.yaml │ │ ├── 0000_30_06-rh-operators.configmap.yaml │ │ ├── 0000_30_09-rh-operators.catalogsource.yaml │ │ ├── 0000_30_10-olm-operator.deployment.yaml │ │ ├── 0000_30_11-catalog-operator.deployment.yaml │ │ ├── 0000_30_12-aggregated.clusterrole.yaml │ │ └── 0000_30_13-packageserver.yaml │ ├── 0.8.0 │ │ ├── 0000_30_00-namespace.yaml │ │ ├── 0000_30_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_30_02-clusterserviceversion.crd.yaml │ │ ├── 0000_30_03-installplan.crd.yaml │ │ ├── 0000_30_04-subscription.crd.yaml │ │ ├── 0000_30_05-catalogsource.crd.yaml │ │ ├── 0000_30_06-rh-operators.configmap.yaml │ │ ├── 0000_30_09-rh-operators.catalogsource.yaml │ │ ├── 0000_30_10-olm-operator.deployment.yaml │ │ ├── 0000_30_11-catalog-operator.deployment.yaml │ │ ├── 0000_30_12-aggregated.clusterrole.yaml │ │ ├── 0000_30_13-operatorgroup.crd.yaml │ │ ├── 0000_30_14-olm-operators.configmap.yaml │ │ ├── 0000_30_15-olm-operators.catalogsource.yaml │ │ ├── 0000_30_16-operatorgroup-default.yaml │ │ └── 0000_30_17-packageserver.subscription.yaml │ ├── 0.8.1 │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_02-clusterserviceversion.crd.yaml │ │ ├── 0000_50_olm_03-installplan.crd.yaml │ │ ├── 0000_50_olm_04-subscription.crd.yaml │ │ ├── 0000_50_olm_05-catalogsource.crd.yaml │ │ ├── 0000_50_olm_06-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_07-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_08-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_09-operatorgroup.crd.yaml │ │ ├── 0000_50_olm_10-olm-operators.configmap.yaml │ │ ├── 0000_50_olm_11-olm-operators.catalogsource.yaml │ │ ├── 0000_50_olm_12-operatorgroup-default.yaml │ │ ├── 0000_50_olm_13-packageserver.subscription.yaml │ │ └── 0000_50_olm_17-upstream-operators.catalogsource.yaml │ ├── 0.9.0 │ │ ├── 0000_50_olm_00-namespace.yaml │ │ ├── 0000_50_olm_01-olm-operator.serviceaccount.yaml │ │ ├── 0000_50_olm_03-clusterserviceversion.crd.yaml │ │ ├── 0000_50_olm_04-installplan.crd.yaml │ │ ├── 0000_50_olm_05-subscription.crd.yaml │ │ ├── 0000_50_olm_06-catalogsource.crd.yaml │ │ ├── 0000_50_olm_07-olm-operator.deployment.yaml │ │ ├── 0000_50_olm_08-catalog-operator.deployment.yaml │ │ ├── 0000_50_olm_09-aggregated.clusterrole.yaml │ │ ├── 0000_50_olm_10-operatorgroup.crd.yaml │ │ ├── 0000_50_olm_11-olm-operators.configmap.yaml │ │ ├── 0000_50_olm_12-olm-operators.catalogsource.yaml │ │ ├── 0000_50_olm_13-operatorgroup-default.yaml │ │ ├── 0000_50_olm_14-packageserver.subscription.yaml │ │ └── 0000_50_olm_18-upstream-operators.catalogsource.yaml │ └── latest │ ├── quickstart │ ├── crds.yaml │ ├── install.sh │ └── olm.yaml │ └── values.yaml ├── doc ├── contributors │ └── design-proposals │ │ ├── csv-status.md │ │ ├── internal-objects.md │ │ ├── operator-config.md │ │ ├── operator-logos.md │ │ ├── operator-validation-library.md │ │ ├── pull-bundle-on-a-cluster.md │ │ ├── related-images.md │ │ ├── subscription-status.md │ │ ├── user-defined-service-account.md │ │ └── webhooks.md ├── design │ ├── access-control.md │ ├── adding-pod-disruption-budgets.md │ ├── adding-priority-classes.md │ ├── adding-vertical-pod-autoscaler.md │ ├── architecture.md │ ├── building-your-csv.md │ ├── catalog-polling.md │ ├── debugging.md │ ├── default-polling.md │ ├── dependency-resolution.md │ ├── design-goals.md │ ├── developing.md │ ├── how-to-update-operators.md │ ├── images │ │ ├── catalogsource.png │ │ ├── channels.png │ │ ├── replaces.png │ │ ├── skipping-updates.png │ │ └── z-stream.png │ ├── operatorgroups.md │ ├── philosophy.md │ ├── profiling.md │ ├── release.md │ ├── resolving-bundle-images.md │ ├── scoped-operator-install.md │ └── subscription-config.md ├── dev │ ├── reporting_bugs.md │ └── reporting_flakes.md └── install │ ├── install.md │ └── local-values.yaml ├── go.mod ├── go.sum ├── hack ├── overlays │ └── goimports_vendorlesspath.go ├── scripts │ └── run-counterfeiter.sh └── tools │ ├── check-go-version.sh │ └── validate_kindest_node.sh ├── logo ├── README.md ├── logo-dark-mode.svg ├── logo.png └── logo.svg ├── pkg ├── api │ ├── client │ │ ├── client.go │ │ ├── clientset │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── decorator.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── operators │ │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_olmconfig.go │ │ │ │ │ ├── fake_operator.go │ │ │ │ │ ├── fake_operatorcondition.go │ │ │ │ │ ├── fake_operatorgroup.go │ │ │ │ │ └── fake_operators_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── olmconfig.go │ │ │ │ ├── operator.go │ │ │ │ ├── operatorcondition.go │ │ │ │ ├── operatorgroup.go │ │ │ │ └── operators_client.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── catalogsource.go │ │ │ │ ├── clusterserviceversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_catalogsource.go │ │ │ │ │ ├── fake_clusterserviceversion.go │ │ │ │ │ ├── fake_installplan.go │ │ │ │ │ ├── fake_operators_client.go │ │ │ │ │ └── fake_subscription.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── installplan.go │ │ │ │ ├── operators_client.go │ │ │ │ └── subscription.go │ │ │ │ ├── v1alpha2 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_operatorgroup.go │ │ │ │ │ └── fake_operators_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── operatorgroup.go │ │ │ │ └── operators_client.go │ │ │ │ └── v2 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_operatorcondition.go │ │ │ │ └── fake_operators_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── operatorcondition.go │ │ │ │ └── operators_client.go │ │ ├── informers │ │ │ └── externalversions │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ ├── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ │ │ └── operators │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ ├── olmconfig.go │ │ │ │ ├── operator.go │ │ │ │ ├── operatorcondition.go │ │ │ │ └── operatorgroup.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── catalogsource.go │ │ │ │ ├── clusterserviceversion.go │ │ │ │ ├── installplan.go │ │ │ │ ├── interface.go │ │ │ │ └── subscription.go │ │ │ │ ├── v1alpha2 │ │ │ │ ├── interface.go │ │ │ │ └── operatorgroup.go │ │ │ │ └── v2 │ │ │ │ ├── interface.go │ │ │ │ └── operatorcondition.go │ │ ├── listers │ │ │ └── operators │ │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── olmconfig.go │ │ │ │ ├── operator.go │ │ │ │ ├── operatorcondition.go │ │ │ │ └── operatorgroup.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── catalogsource.go │ │ │ │ ├── clusterserviceversion.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── installplan.go │ │ │ │ └── subscription.go │ │ │ │ ├── v1alpha2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── operatorgroup.go │ │ │ │ └── v2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── operatorcondition.go │ │ └── util.go │ └── wrappers │ │ ├── deployment_install_client.go │ │ ├── deployment_install_client_test.go │ │ └── wrappersfakes │ │ └── fake_install_strategy_deployment_interface.go ├── controller │ ├── bundle │ │ ├── bundle_unpacker.go │ │ ├── bundle_unpacker_test.go │ │ └── bundlefakes │ │ │ └── fake_unpacker.go │ ├── certs │ │ └── certs.go │ ├── errors │ │ ├── errors.go │ │ └── errors_test.go │ ├── install │ │ ├── apiservice.go │ │ ├── attributes_util.go │ │ ├── attributes_util_test.go │ │ ├── certresources.go │ │ ├── certresources_test.go │ │ ├── deployment.go │ │ ├── deployment_test.go │ │ ├── errors.go │ │ ├── resolver.go │ │ ├── rule_checker.go │ │ ├── rule_checker_test.go │ │ ├── status_viewer.go │ │ ├── status_viewer_test.go │ │ └── webhook.go │ ├── operators │ │ ├── adoption_controller.go │ │ ├── adoption_controller_test.go │ │ ├── catalog │ │ │ ├── client_factory_stub_test.go │ │ │ ├── fakes │ │ │ │ ├── fake_registry_client.go │ │ │ │ └── fake_registry_interface.go │ │ │ ├── installplan_sync.go │ │ │ ├── manifests.go │ │ │ ├── not_found.go │ │ │ ├── operator.go │ │ │ ├── operator_test.go │ │ │ ├── ownerrefs_test.go │ │ │ ├── step.go │ │ │ ├── step_ensurer.go │ │ │ ├── step_ensurer_test.go │ │ │ ├── step_test.go │ │ │ ├── subscription │ │ │ │ ├── config.go │ │ │ │ ├── reconciler.go │ │ │ │ ├── reconciler_test.go │ │ │ │ ├── state.go │ │ │ │ ├── state_test.go │ │ │ │ ├── syncer.go │ │ │ │ └── syncer_test.go │ │ │ ├── subscriptions_test.go │ │ │ ├── supportedresources.go │ │ │ ├── supportedresourcesoveride.go │ │ │ └── testdata │ │ │ │ ├── apiextensionsv1 │ │ │ │ ├── crontabs.cr.fail.v2.yaml │ │ │ │ ├── crontabs.cr.valid.v1.yaml │ │ │ │ ├── crontabs.cr.valid.v2.yaml │ │ │ │ ├── crontabs.crd.old.unserved.yaml │ │ │ │ ├── crontabs.crd.old.yaml │ │ │ │ ├── crontabs.crd.unserved.yaml │ │ │ │ ├── crontabs.crd.yaml │ │ │ │ ├── single-version-cr.yaml │ │ │ │ ├── single-version-crd.old.yaml │ │ │ │ └── single-version-crd.yaml │ │ │ │ ├── apiextensionsv1beta1 │ │ │ │ ├── cr.v2.yaml │ │ │ │ ├── cr.yaml │ │ │ │ ├── crd.no-versions-list.old.yaml │ │ │ │ ├── crd.no-versions-list.yaml │ │ │ │ ├── crd.old.yaml │ │ │ │ ├── crd.unserved.yaml │ │ │ │ └── crd.yaml │ │ │ │ ├── hivebug │ │ │ │ ├── cr.yaml │ │ │ │ ├── crd.yaml │ │ │ │ └── fail.yaml │ │ │ │ ├── postgrestolerations │ │ │ │ ├── crd.yaml │ │ │ │ └── pgadmin.cr.yaml │ │ │ │ ├── prometheusrule.cr.yaml │ │ │ │ ├── prometheusrule.crd.yaml │ │ │ │ └── unsupportedkind.cr.yaml │ │ ├── catalogtemplate │ │ │ └── operator.go │ │ ├── components.go │ │ ├── decorators │ │ │ ├── operator.go │ │ │ └── operator_test.go │ │ ├── internal │ │ │ ├── alongside │ │ │ │ ├── alongside.go │ │ │ │ └── alongside_test.go │ │ │ └── listerwatcher │ │ │ │ └── listerwatcher.go │ │ ├── labeller │ │ │ ├── filters.go │ │ │ ├── labels.go │ │ │ └── rbac.go │ │ ├── olm │ │ │ ├── apiservices.go │ │ │ ├── apiservices_pod_disruption_test.go │ │ │ ├── client_factory_stub_test.go │ │ │ ├── config.go │ │ │ ├── groups.go │ │ │ ├── groups_test.go │ │ │ ├── labeler.go │ │ │ ├── labeler_test.go │ │ │ ├── operator.go │ │ │ ├── operator_test.go │ │ │ ├── operatorconditions.go │ │ │ ├── operatorgroup.go │ │ │ ├── operatorgroup_test.go │ │ │ ├── overrides │ │ │ │ ├── config.go │ │ │ │ ├── initializer.go │ │ │ │ └── inject │ │ │ │ │ ├── inject.go │ │ │ │ │ └── inject_test.go │ │ │ ├── plugins │ │ │ │ └── operator_plugin.go │ │ │ ├── requirements.go │ │ │ └── requirements_test.go │ │ ├── openshift │ │ │ ├── clusteroperator.go │ │ │ ├── clusteroperator_controller.go │ │ │ ├── clusteroperator_controller_test.go │ │ │ ├── helpers.go │ │ │ ├── helpers_test.go │ │ │ ├── options.go │ │ │ ├── suite_test.go │ │ │ ├── synctracker.go │ │ │ ├── synctracker_test.go │ │ │ └── testdata │ │ │ │ └── crds │ │ │ │ ├── README.md │ │ │ │ ├── clusteroperators.config.openshift.io.yaml │ │ │ │ └── clusterversions.config.openshift.io.yaml │ │ ├── operator_controller.go │ │ ├── operator_controller_test.go │ │ ├── operatorcondition_controller.go │ │ ├── operatorcondition_controller_test.go │ │ ├── operatorconditiongenerator_controller.go │ │ ├── operatorconditiongenerator_controller_test.go │ │ ├── suite_test.go │ │ ├── testdata │ │ │ └── fixtures │ │ │ │ ├── apiservice.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── crb.yaml │ │ │ │ ├── crd.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── installplan.yaml │ │ │ │ ├── ns.yaml │ │ │ │ ├── pod.yaml │ │ │ │ ├── rb.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── sa.yaml │ │ │ │ ├── secret.yaml │ │ │ │ └── service.yaml │ │ └── validatingroundtripper │ │ │ └── validating_round_tripper.go │ └── registry │ │ ├── grpc │ │ ├── source.go │ │ └── source_test.go │ │ ├── reconciler │ │ ├── configmap.go │ │ ├── configmap_test.go │ │ ├── grpc.go │ │ ├── grpc_address.go │ │ ├── grpc_polling.go │ │ ├── grpc_polling_test.go │ │ ├── grpc_test.go │ │ ├── helpers.go │ │ ├── reconciler.go │ │ └── reconciler_test.go │ │ ├── registry_client.go │ │ ├── resolver │ │ ├── cache │ │ │ ├── cache.go │ │ │ ├── cache_test.go │ │ │ ├── operators.go │ │ │ ├── operators_test.go │ │ │ ├── predicates.go │ │ │ └── predicates_test.go │ │ ├── fail_forward.go │ │ ├── hooks.go │ │ ├── instrumented_resolver.go │ │ ├── instrumented_resolver_test.go │ │ ├── projection │ │ │ ├── properties.go │ │ │ └── properties_test.go │ │ ├── rbac.go │ │ ├── rbac_test.go │ │ ├── resolver.go │ │ ├── resolver_test.go │ │ ├── solver │ │ │ ├── bench_test.go │ │ │ ├── constraints.go │ │ │ ├── constraints_test.go │ │ │ ├── doc.go │ │ │ ├── lit_mapping.go │ │ │ ├── search.go │ │ │ ├── search_test.go │ │ │ ├── solve.go │ │ │ ├── solve_test.go │ │ │ ├── tracer.go │ │ │ ├── variable.go │ │ │ └── zz_search_test.go │ │ ├── source_csvs.go │ │ ├── source_csvs_test.go │ │ ├── source_registry.go │ │ ├── source_registry_test.go │ │ ├── step_resolver.go │ │ ├── step_resolver_test.go │ │ ├── steps.go │ │ ├── util_test.go │ │ └── variable_types.go │ │ └── types.go ├── fakes │ ├── client-go │ │ └── listers │ │ │ ├── fake_rbac_v1_clusterrolebinding_lister.go │ │ │ ├── fake_rbac_v1_role_lister.go │ │ │ ├── fake_rbac_v1_role_namespace_lister.go │ │ │ ├── fake_rbac_v1_rolebinding_lister.go │ │ │ ├── fake_rbac_v1_rolebinding_namespace_lister.go │ │ │ ├── fake_v1_secret_lister.go │ │ │ ├── fake_v1_secret_namespace_lister.go │ │ │ ├── fake_v1_service_account_lister.go │ │ │ ├── fake_v1_service_account_namespace_lister.go │ │ │ ├── fake_v1_service_lister.go │ │ │ └── fake_v1_service_namespace_lister.go │ ├── fake_reconciler.go │ ├── fake_reconciler_factory.go │ ├── fake_registry_store.go │ ├── fake_resolver.go │ ├── fake_strategy.go │ ├── fake_strategy_installer.go │ └── fake_strategy_resolver.go ├── feature │ └── feature.go ├── lib │ ├── catalogsource │ │ ├── catalogsource_update.go │ │ ├── image_template.go │ │ └── image_template_test.go │ ├── clientfake │ │ ├── client_options.go │ │ ├── decorator.go │ │ └── meta.go │ ├── clients │ │ ├── factory.go │ │ └── transformers.go │ ├── codec │ │ ├── mapstructure.go │ │ └── mapstructure_test.go │ ├── comparison │ │ ├── equal.go │ │ └── equal_test.go │ ├── controller-runtime │ │ └── client │ │ │ ├── fake_ssa.go │ │ │ ├── ssa.go │ │ │ └── ssa_test.go │ ├── crd │ │ ├── storage.go │ │ ├── storage_test.go │ │ ├── unmarshal.go │ │ └── version.go │ ├── csv │ │ ├── csvset.go │ │ ├── notification.go │ │ └── replace_finder.go │ ├── doc.go │ ├── event │ │ └── event.go │ ├── filemonitor │ │ ├── cabundle_updater.go │ │ ├── cert_updater.go │ │ ├── cert_updater_test.go │ │ ├── testdata │ │ │ ├── ca.crt │ │ │ ├── cert-config │ │ │ │ ├── Makefile │ │ │ │ ├── csr-new.conf │ │ │ │ ├── csr-old.conf │ │ │ │ └── gen-certs.sh │ │ │ ├── server-new.crt │ │ │ ├── server-new.key │ │ │ ├── server-old.crt │ │ │ └── server-old.key │ │ └── watcher.go │ ├── image │ │ ├── image.go │ │ └── image_test.go │ ├── index │ │ ├── catalog.go │ │ └── label.go │ ├── kubernetes │ │ ├── LICENSE │ │ ├── pkg │ │ │ ├── apis │ │ │ │ └── rbac │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── evaluation_helpers.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── printers │ │ │ │ ├── .import-restrictions │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── interface.go │ │ │ │ ├── storage │ │ │ │ │ ├── BUILD │ │ │ │ │ └── storage.go │ │ │ │ └── tablegenerator.go │ │ │ ├── registry │ │ │ │ └── rbac │ │ │ │ │ └── validation │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── internal_version_adapter.go │ │ │ │ │ ├── policy_compact.go │ │ │ │ │ ├── policy_comparator.go │ │ │ │ │ └── rule.go │ │ │ └── util │ │ │ │ ├── hash │ │ │ │ ├── BUILD │ │ │ │ └── hash.go │ │ │ │ └── labels │ │ │ │ ├── .readonly │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── labels.go │ │ └── plugin │ │ │ └── pkg │ │ │ └── auth │ │ │ └── authorizer │ │ │ └── rbac │ │ │ ├── BUILD │ │ │ ├── rbac.go │ │ │ └── subject_locator.go │ ├── kubestate │ │ └── kubestate.go │ ├── labeler │ │ └── labeler.go │ ├── operatorclient │ │ ├── apiservice.go │ │ ├── client.go │ │ ├── clusterrole.go │ │ ├── clusterrolebinding.go │ │ ├── configmap.go │ │ ├── customresources.go │ │ ├── deployment.go │ │ ├── networkpolicy.go │ │ ├── operatorclientmocks │ │ │ └── mock_client.go │ │ ├── patch.go │ │ ├── role.go │ │ ├── rolebinding.go │ │ ├── secret.go │ │ ├── service.go │ │ ├── service_test.go │ │ └── serviceaccount.go │ ├── operatorlister │ │ ├── apiservice.go │ │ ├── catalogsources.go │ │ ├── clusterrole.go │ │ ├── clusterrolebinding.go │ │ ├── clusterserviceversion.go │ │ ├── configmap.go │ │ ├── customresourcedefinition.go │ │ ├── deployment.go │ │ ├── installplan.go │ │ ├── lister.go │ │ ├── namespace.go │ │ ├── networkpolicy.go │ │ ├── operatorcondition.go │ │ ├── operatorgroup.go │ │ ├── operatorlisterfakes │ │ │ ├── fake_apiextensions_v1lister.go │ │ │ ├── fake_apiregistration_v1lister.go │ │ │ ├── fake_apps_v1lister.go │ │ │ ├── fake_clusterserviceversion_v1alpha1_lister.go │ │ │ ├── fake_clusterserviceversion_v1alpha1_namespace_lister.go │ │ │ ├── fake_core_v1lister.go │ │ │ ├── fake_operator_lister.go │ │ │ ├── fake_operators_v1alpha1lister.go │ │ │ ├── fake_operators_v1lister.go │ │ │ ├── fake_operators_v2lister.go │ │ │ └── fake_rbac_v1lister.go │ │ ├── pod.go │ │ ├── role.go │ │ ├── rolebinding.go │ │ ├── secret.go │ │ ├── service.go │ │ ├── serviceaccount.go │ │ └── subscription.go │ ├── operatorstatus │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── clusteroperatorwriter.go │ │ ├── csv_handler.go │ │ ├── csv_reporter.go │ │ ├── csv_reporter_test.go │ │ ├── monitor.go │ │ ├── monitor_test.go │ │ └── status.go │ ├── ownerutil │ │ ├── util.go │ │ └── util_test.go │ ├── profile │ │ └── profile.go │ ├── proxy │ │ ├── available.go │ │ ├── envvar.go │ │ ├── envvar_test.go │ │ ├── overridden.go │ │ ├── overridden_test.go │ │ ├── querier.go │ │ └── syncer.go │ ├── queueinformer │ │ ├── config.go │ │ ├── jitter.go │ │ ├── jitter_test.go │ │ ├── loop_id.go │ │ ├── queueinformer.go │ │ ├── queueinformer_operator.go │ │ ├── queueinformer_operator_test.go │ │ └── resourcequeue.go │ ├── scoped │ │ ├── attenuator.go │ │ ├── error.go │ │ ├── querier.go │ │ ├── querier_test.go │ │ ├── syncer.go │ │ ├── token_retriever.go │ │ ├── token_retriever_test.go │ │ └── util.go │ ├── scopedclient │ │ └── clientfactory.go │ ├── server │ │ ├── server.go │ │ └── server_test.go │ ├── signals │ │ └── signals.go │ ├── testobj │ │ ├── fixture.go │ │ └── runtime.go │ └── time │ │ ├── shared.go │ │ └── shared_test.go ├── metrics │ ├── experimental_declarations.go │ ├── experimental_register.go │ ├── metrics.go │ └── metrics_test.go ├── package-server │ ├── apis │ │ ├── doc.go │ │ └── operators │ │ │ ├── doc.go │ │ │ ├── install │ │ │ └── install.go │ │ │ ├── packagemanifest.go │ │ │ ├── packagemanifest_types.go │ │ │ ├── register.go │ │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── packagemanifest.go │ │ │ ├── packagemanifest_types.go │ │ │ ├── register.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ ├── apiserver │ │ ├── config.go │ │ └── generic │ │ │ └── storage.go │ ├── client │ │ ├── client.go │ │ ├── clientset │ │ │ ├── internalversion │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ │ └── operators │ │ │ │ │ └── internalversion │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_operators_client.go │ │ │ │ │ └── fake_packagemanifest.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── operators_client.go │ │ │ │ │ └── packagemanifest.go │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── operators │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_operators_client.go │ │ │ │ └── fake_packagemanifest.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── operators_client.go │ │ │ │ └── packagemanifest.go │ │ ├── fakes │ │ │ ├── fake_list_bundles_client.go │ │ │ ├── fake_list_packages_client.go │ │ │ └── fake_registry_client.go │ │ ├── informers │ │ │ ├── externalversions │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ └── operators │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1 │ │ │ │ │ ├── interface.go │ │ │ │ │ └── packagemanifest.go │ │ │ └── internalversion │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ ├── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ │ │ └── operators │ │ │ │ ├── interface.go │ │ │ │ └── internalversion │ │ │ │ ├── interface.go │ │ │ │ └── packagemanifest.go │ │ ├── listers │ │ │ └── operators │ │ │ │ ├── internalversion │ │ │ │ ├── expansion_generated.go │ │ │ │ └── packagemanifest.go │ │ │ │ └── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── packagemanifest.go │ │ ├── openapi │ │ │ └── zz_generated.openapi.go │ │ └── util.go │ ├── provider │ │ ├── interfaces.go │ │ ├── labels.go │ │ ├── labels_test.go │ │ ├── registry.go │ │ ├── registry_test.go │ │ └── testdata │ │ │ └── manifests │ │ │ ├── etcd │ │ │ ├── 0.6.0 │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ └── etcdoperator.clusterserviceversion.yaml │ │ │ ├── 0.6.1 │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ └── etcdoperator.clusterserviceversion.yaml │ │ │ ├── 0.9.0 │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ ├── etcdoperator.v0.9.0.clusterserviceversion.yaml │ │ │ │ └── etcdrestore.crd.yaml │ │ │ ├── 0.9.2 │ │ │ │ ├── etcdbackup.crd.yaml │ │ │ │ ├── etcdcluster.crd.yaml │ │ │ │ ├── etcdoperator.v0.9.2.clusterserviceversion.yaml │ │ │ │ └── etcdrestore.crd.yaml │ │ │ └── etcd.package.yaml │ │ │ └── prometheus │ │ │ ├── 0.14.0 │ │ │ ├── alertmanager.crd.yaml │ │ │ ├── prometheus.crd.yaml │ │ │ ├── prometheusoperator.0.14.0.clusterserviceversion.yaml │ │ │ ├── prometheusrule.crd.yaml │ │ │ └── servicemonitor.crd.yaml │ │ │ ├── 0.15.0 │ │ │ ├── alertmanager.crd.yaml │ │ │ ├── prometheus.crd.yaml │ │ │ ├── prometheusoperator.0.15.0.clusterserviceversion.yaml │ │ │ ├── prometheusrule.crd.yaml │ │ │ └── servicemonitor.crd.yaml │ │ │ ├── 0.22.2 │ │ │ ├── alertmanager.crd.yaml │ │ │ ├── prometheus.crd.yaml │ │ │ ├── prometheusoperator.0.22.2.clusterserviceversion.yaml │ │ │ ├── prometheusrule.crd.yaml │ │ │ └── servicemonitor.crd.yaml │ │ │ └── prometheus.package.yaml │ ├── server │ │ └── server.go │ ├── storage │ │ ├── printer.go │ │ ├── reststorage.go │ │ ├── subresources.go │ │ └── subresources_test.go │ └── version │ │ ├── doc.go │ │ └── version.go └── version │ └── version.go ├── scripts ├── build_e2e_test_images.sh ├── codegen_violation_exceptions.list ├── copy_crds.sh ├── generate_openshift_crds.sh ├── install.sh ├── package_quickstart.sh ├── package_release.sh └── update_codegen.sh ├── test ├── e2e │ ├── README.md │ ├── bundle_e2e_test.go │ ├── catalog_e2e_test.go │ ├── catalog_exclusion_test.go │ ├── catsrc_pod_config_e2e_test.go │ ├── collect-ci-artifacts.sh │ ├── crd_e2e_test.go │ ├── csv_e2e_test.go │ ├── ctx │ │ ├── ctx.go │ │ ├── doc.go │ │ ├── installer_none.go │ │ ├── must.go │ │ └── provisioner_kubeconfig.go │ ├── data │ │ ├── catalog.new.yaml │ │ ├── catalog.old.yaml │ │ ├── kiali-image-bundle │ │ │ ├── Dockerfile │ │ │ ├── manifests │ │ │ │ ├── kiali.crd.yaml │ │ │ │ ├── kiali.monitoringdashboards.crd.yaml │ │ │ │ ├── kiali.package.yaml │ │ │ │ └── kiali.v1.4.2.clusterserviceversion.yaml │ │ │ └── metadata │ │ │ │ └── annotations.yaml │ │ ├── kiali-image-registry │ │ │ ├── Dockerfile │ │ │ └── create-bundles-db.go │ │ └── kiali-manifests │ │ │ ├── 0.18.1 │ │ │ ├── kiali.crd.yaml │ │ │ └── kiali.v0.18.1.clusterserviceversion.yaml │ │ │ ├── 1.1.0 │ │ │ ├── kiali.crd.yaml │ │ │ ├── kiali.monitoringdashboards.crd.yaml │ │ │ └── kiali.v1.1.0.clusterserviceversion.yaml │ │ │ ├── 1.3.1 │ │ │ ├── kiali.crd.yaml │ │ │ ├── kiali.monitoringdashboards.crd.yaml │ │ │ └── kiali.v1.3.1.clusterserviceversion.yaml │ │ │ ├── 1.4.2 │ │ │ ├── kiali.crd.yaml │ │ │ ├── kiali.monitoringdashboards.crd.yaml │ │ │ └── kiali.v1.4.2.clusterserviceversion.yaml │ │ │ └── kiali.package.yaml │ ├── deprecated_e2e_test.go │ ├── disabling_copied_csv_e2e_test.go │ ├── dsl │ │ └── dsl.go │ ├── dynamic_resource_e2e_test.go │ ├── e2e_test.go │ ├── fail_forward_e2e_test.go │ ├── fbc_provider.go │ ├── gc_e2e_test.go │ ├── installplan_e2e_test.go │ ├── like_metric_matcher_test.go │ ├── magic_catalog.go │ ├── magic_catalog_test.go │ ├── metrics_e2e_test.go │ ├── operator_condition_e2e_test.go │ ├── operator_groups_e2e_test.go │ ├── operator_test.go │ ├── packagemanifest_e2e_test.go │ ├── registry.go │ ├── resource_manager_test.go │ ├── scoped_client_test.go │ ├── skopeo.Dockerfile │ ├── skopeo.go │ ├── split │ │ ├── integration_test.sh │ │ ├── main.go │ │ ├── main_test.go │ │ └── testdata │ │ │ ├── some_other_test.go │ │ │ └── some_test.go │ ├── subscription_e2e_test.go │ ├── testdata │ │ ├── bad-csv │ │ │ └── bad-csv.yaml │ │ ├── deprecated-crd │ │ │ ├── deprecated.cr.yaml │ │ │ └── deprecated.crd.yaml │ │ ├── fail-forward │ │ │ ├── v0.1.0 │ │ │ │ ├── clusterserviceversion.yaml │ │ │ │ └── packagemanifest.yaml │ │ │ ├── v0.2.0-invalid-csv │ │ │ │ ├── clusterserviceversion.yaml │ │ │ │ └── packagemanifest.yaml │ │ │ ├── v0.2.0-invalid-deployment │ │ │ │ ├── clusterserviceversion.yaml │ │ │ │ └── packagemanifest.yaml │ │ │ ├── v0.2.1-invalid-csv │ │ │ │ ├── clusterserviceversion.yaml │ │ │ │ └── packagemanifest.yaml │ │ │ ├── v0.3.0-replaces-invalid-csv │ │ │ │ ├── clusterserviceversion.yaml │ │ │ │ └── packagemanifest.yaml │ │ │ ├── v0.3.0-replaces-invalid-deployment │ │ │ │ ├── clusterserviceversion.yaml │ │ │ │ └── packagemanifest.yaml │ │ │ ├── v0.3.0-skip-range │ │ │ │ ├── clusterserviceversion.yaml │ │ │ │ └── packagemanifest.yaml │ │ │ └── v0.3.0-skips │ │ │ │ ├── clusterserviceversion.yaml │ │ │ │ └── packagemanifest.yaml │ │ ├── magiccatalog │ │ │ ├── fbc_catalog.json │ │ │ ├── fbc_initial.yaml │ │ │ └── fbc_updated.yaml │ │ ├── subscription │ │ │ ├── example-operator.v0.1.0.yaml │ │ │ ├── example-operator.v0.2.0-deprecations.yaml │ │ │ ├── example-operator.v0.2.0-invalid-csv.yaml │ │ │ ├── example-operator.v0.2.0-non-existent-tag.yaml │ │ │ ├── example-operator.v0.2.0.yaml │ │ │ ├── example-operator.v0.3.0-deprecations.yaml │ │ │ └── example-operator.v0.3.0.yaml │ │ └── vpa │ │ │ └── crd.yaml │ ├── user_defined_sa_test.go │ ├── util.go │ ├── util │ │ ├── decode.go │ │ ├── e2e_client.go │ │ ├── e2e_determined_client.go │ │ ├── gomega │ │ │ ├── assertions.go │ │ │ ├── catalogsource_matchers.go │ │ │ └── subscription_matchers.go │ │ ├── resource_queue.go │ │ └── test_logging.go │ └── webhook_e2e_test.go ├── images │ ├── busybox-index │ │ ├── busybox-dependency │ │ │ ├── 1.0.0 │ │ │ │ ├── dockerfile │ │ │ │ ├── manifests │ │ │ │ │ ├── csv.yaml │ │ │ │ │ └── foo.crd.yaml │ │ │ │ └── metadata │ │ │ │ │ └── annotations.yaml │ │ │ └── 2.0.0 │ │ │ │ ├── dockerfile │ │ │ │ ├── manifests │ │ │ │ ├── csv.yaml │ │ │ │ └── foo.crd.yaml │ │ │ │ └── metadata │ │ │ │ └── annotations.yaml │ │ └── busybox │ │ │ ├── 1.0.0 │ │ │ ├── dockerfile │ │ │ ├── manifests │ │ │ │ └── csv.yaml │ │ │ └── metadata │ │ │ │ └── annotations.yaml │ │ │ └── 2.0.0 │ │ │ ├── dockerfile │ │ │ ├── manifests │ │ │ └── csv.yaml │ │ │ └── metadata │ │ │ └── annotations.yaml │ └── single-bundle-image │ │ ├── Containerfile │ │ ├── manifests │ │ ├── csv.yaml │ │ ├── networkpolicy.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── priorityclass.yaml │ │ └── verticalpodautoscaler.yaml │ │ └── metadata │ │ └── annotations.yaml └── log │ └── .gitkeep ├── tools.go ├── util ├── cpb │ ├── main.go │ └── main_test.go └── image-canonical-ref │ └── main.go └── vendor ├── cel.dev └── expr │ ├── .bazelversion │ ├── .gitattributes │ ├── .gitignore │ ├── BUILD.bazel │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── MODULE.bazel │ ├── README.md │ ├── WORKSPACE │ ├── WORKSPACE.bzlmod │ ├── checked.pb.go │ ├── cloudbuild.yaml │ ├── eval.pb.go │ ├── explain.pb.go │ ├── regen_go_proto.sh │ ├── regen_go_proto_canonical_protos.sh │ ├── syntax.pb.go │ └── value.pb.go ├── github.com ├── AdaLogics │ └── go-fuzz-headers │ │ ├── LICENSE │ │ ├── README.md │ │ ├── consumer.go │ │ ├── funcs.go │ │ └── sql.go ├── BurntSushi │ └── toml │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── README.md │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── internal │ │ └── tz.go │ │ ├── lex.go │ │ ├── meta.go │ │ ├── parse.go │ │ ├── type_fields.go │ │ └── type_toml.go ├── Masterminds │ └── semver │ │ └── v3 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── collection.go │ │ ├── constraints.go │ │ ├── doc.go │ │ └── version.go ├── Microsoft │ ├── go-winio │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── backup.go │ │ ├── backuptar │ │ │ ├── doc.go │ │ │ ├── strconv.go │ │ │ └── tar.go │ │ ├── doc.go │ │ ├── ea.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── hvsock.go │ │ ├── internal │ │ │ ├── fs │ │ │ │ ├── doc.go │ │ │ │ ├── fs.go │ │ │ │ ├── security.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── socket │ │ │ │ ├── rawaddr.go │ │ │ │ ├── socket.go │ │ │ │ └── zsyscall_windows.go │ │ │ └── stringbuffer │ │ │ │ └── wstring.go │ │ ├── pipe.go │ │ ├── pkg │ │ │ ├── bindfilter │ │ │ │ ├── bind_filter.go │ │ │ │ └── zsyscall_windows.go │ │ │ └── guid │ │ │ │ ├── guid.go │ │ │ │ ├── guid_nonwindows.go │ │ │ │ ├── guid_windows.go │ │ │ │ └── variant_string.go │ │ ├── privilege.go │ │ ├── reparse.go │ │ ├── sd.go │ │ ├── syscall.go │ │ ├── vhd │ │ │ ├── vhd.go │ │ │ └── zvhd_windows.go │ │ └── zsyscall_windows.go │ └── hcsshim │ │ ├── .clang-format │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.bootfiles │ │ ├── Protobuild.toml │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── computestorage │ │ ├── attach.go │ │ ├── destroy.go │ │ ├── detach.go │ │ ├── export.go │ │ ├── format.go │ │ ├── helpers.go │ │ ├── import.go │ │ ├── initialize.go │ │ ├── mount.go │ │ ├── setup.go │ │ ├── storage.go │ │ └── zsyscall_windows.go │ │ ├── container.go │ │ ├── errors.go │ │ ├── hcsshim.go │ │ ├── hnsaccelnet.go │ │ ├── hnsendpoint.go │ │ ├── hnsglobals.go │ │ ├── hnsnetwork.go │ │ ├── hnspolicy.go │ │ ├── hnspolicylist.go │ │ ├── hnssupport.go │ │ ├── interface.go │ │ ├── internal │ │ ├── cow │ │ │ └── cow.go │ │ ├── hcs │ │ │ ├── callback.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── process.go │ │ │ ├── schema1 │ │ │ │ └── schema1.go │ │ │ ├── schema2 │ │ │ │ ├── attachment.go │ │ │ │ ├── battery.go │ │ │ │ ├── cache_query_stats_response.go │ │ │ │ ├── chipset.go │ │ │ │ ├── cimfs.go │ │ │ │ ├── close_handle.go │ │ │ │ ├── com_port.go │ │ │ │ ├── compute_system.go │ │ │ │ ├── configuration.go │ │ │ │ ├── console_size.go │ │ │ │ ├── container.go │ │ │ │ ├── container_credential_guard_add_instance_request.go │ │ │ │ ├── container_credential_guard_hv_socket_service_config.go │ │ │ │ ├── container_credential_guard_instance.go │ │ │ │ ├── container_credential_guard_modify_operation.go │ │ │ │ ├── container_credential_guard_operation_request.go │ │ │ │ ├── container_credential_guard_remove_instance_request.go │ │ │ │ ├── container_credential_guard_state.go │ │ │ │ ├── container_credential_guard_system_info.go │ │ │ │ ├── container_memory_information.go │ │ │ │ ├── cpu_group.go │ │ │ │ ├── cpu_group_affinity.go │ │ │ │ ├── cpu_group_config.go │ │ │ │ ├── cpu_group_configurations.go │ │ │ │ ├── cpu_group_operations.go │ │ │ │ ├── cpu_group_property.go │ │ │ │ ├── create_group_operation.go │ │ │ │ ├── debug_options.go │ │ │ │ ├── delete_group_operation.go │ │ │ │ ├── device.go │ │ │ │ ├── devices.go │ │ │ │ ├── enhanced_mode_video.go │ │ │ │ ├── firmware.go │ │ │ │ ├── flexible_io_device.go │ │ │ │ ├── guest_connection.go │ │ │ │ ├── guest_connection_info.go │ │ │ │ ├── guest_crash_reporting.go │ │ │ │ ├── guest_os.go │ │ │ │ ├── guest_state.go │ │ │ │ ├── host_processor_modify_request.go │ │ │ │ ├── hosted_system.go │ │ │ │ ├── hv_socket.go │ │ │ │ ├── hv_socket_2.go │ │ │ │ ├── hv_socket_address.go │ │ │ │ ├── hv_socket_service_config.go │ │ │ │ ├── hv_socket_system_config.go │ │ │ │ ├── interrupt_moderation_mode.go │ │ │ │ ├── iov_settings.go │ │ │ │ ├── isolation_settings.go │ │ │ │ ├── keyboard.go │ │ │ │ ├── layer.go │ │ │ │ ├── linux_kernel_direct.go │ │ │ │ ├── logical_processor.go │ │ │ │ ├── mapped_directory.go │ │ │ │ ├── mapped_pipe.go │ │ │ │ ├── memory.go │ │ │ │ ├── memory_backing_type.go │ │ │ │ ├── memory_information_for_vm.go │ │ │ │ ├── memory_stats.go │ │ │ │ ├── model_container_definition_device.go │ │ │ │ ├── model_device_category.go │ │ │ │ ├── model_device_extension.go │ │ │ │ ├── model_device_instance.go │ │ │ │ ├── model_device_namespace.go │ │ │ │ ├── model_interface_class.go │ │ │ │ ├── model_namespace.go │ │ │ │ ├── model_object_directory.go │ │ │ │ ├── model_object_namespace.go │ │ │ │ ├── model_object_symlink.go │ │ │ │ ├── modification_request.go │ │ │ │ ├── modify_setting_request.go │ │ │ │ ├── mouse.go │ │ │ │ ├── network_adapter.go │ │ │ │ ├── networking.go │ │ │ │ ├── numa.go │ │ │ │ ├── numa_node.go │ │ │ │ ├── numa_node_memory.go │ │ │ │ ├── numa_node_processor.go │ │ │ │ ├── numa_processors.go │ │ │ │ ├── numa_setting.go │ │ │ │ ├── pause_notification.go │ │ │ │ ├── pause_options.go │ │ │ │ ├── plan9.go │ │ │ │ ├── plan9_share.go │ │ │ │ ├── process_details.go │ │ │ │ ├── process_modify_request.go │ │ │ │ ├── process_parameters.go │ │ │ │ ├── process_status.go │ │ │ │ ├── processor.go │ │ │ │ ├── processor_stats.go │ │ │ │ ├── processor_topology.go │ │ │ │ ├── properties.go │ │ │ │ ├── property_query.go │ │ │ │ ├── property_type.go │ │ │ │ ├── rdp_connection_options.go │ │ │ │ ├── registry_changes.go │ │ │ │ ├── registry_hive.go │ │ │ │ ├── registry_key.go │ │ │ │ ├── registry_value.go │ │ │ │ ├── registry_value_type.go │ │ │ │ ├── restore_state.go │ │ │ │ ├── save_options.go │ │ │ │ ├── scsi.go │ │ │ │ ├── security_settings.go │ │ │ │ ├── service_properties.go │ │ │ │ ├── shared_memory_configuration.go │ │ │ │ ├── shared_memory_region.go │ │ │ │ ├── shared_memory_region_info.go │ │ │ │ ├── silo_properties.go │ │ │ │ ├── statistics.go │ │ │ │ ├── storage.go │ │ │ │ ├── storage_qo_s.go │ │ │ │ ├── storage_stats.go │ │ │ │ ├── system_time.go │ │ │ │ ├── time_zone_information.go │ │ │ │ ├── topology.go │ │ │ │ ├── uefi.go │ │ │ │ ├── uefi_boot_entry.go │ │ │ │ ├── version.go │ │ │ │ ├── video_monitor.go │ │ │ │ ├── virtual_machine.go │ │ │ │ ├── virtual_machine_memory.go │ │ │ │ ├── virtual_machine_processor.go │ │ │ │ ├── virtual_node_info.go │ │ │ │ ├── virtual_p_mem_controller.go │ │ │ │ ├── virtual_p_mem_device.go │ │ │ │ ├── virtual_p_mem_mapping.go │ │ │ │ ├── virtual_pci_device.go │ │ │ │ ├── virtual_pci_function.go │ │ │ │ ├── virtual_slit_type.go │ │ │ │ ├── virtual_smb.go │ │ │ │ ├── virtual_smb_share.go │ │ │ │ ├── virtual_smb_share_options.go │ │ │ │ ├── vm_memory.go │ │ │ │ ├── vm_processor_limits.go │ │ │ │ └── windows_crash_reporting.go │ │ │ ├── service.go │ │ │ ├── system.go │ │ │ ├── utils.go │ │ │ └── waithelper.go │ │ ├── hcserror │ │ │ ├── doc.go │ │ │ └── hcserror.go │ │ ├── hns │ │ │ ├── doc.go │ │ │ ├── hns.go │ │ │ ├── hnsaccelnet.go │ │ │ ├── hnsendpoint.go │ │ │ ├── hnsfuncs.go │ │ │ ├── hnsglobals.go │ │ │ ├── hnsnetwork.go │ │ │ ├── hnspolicy.go │ │ │ ├── hnspolicylist.go │ │ │ ├── hnssupport.go │ │ │ ├── namespace.go │ │ │ └── zsyscall_windows.go │ │ ├── interop │ │ │ ├── doc.go │ │ │ ├── interop.go │ │ │ └── zsyscall_windows.go │ │ ├── jobobject │ │ │ ├── doc.go │ │ │ ├── iocp.go │ │ │ ├── jobobject.go │ │ │ └── limits.go │ │ ├── log │ │ │ ├── context.go │ │ │ ├── format.go │ │ │ ├── hook.go │ │ │ ├── nopformatter.go │ │ │ └── scrub.go │ │ ├── logfields │ │ │ └── fields.go │ │ ├── longpath │ │ │ └── longpath.go │ │ ├── memory │ │ │ ├── pool.go │ │ │ └── types.go │ │ ├── mergemaps │ │ │ └── merge.go │ │ ├── oc │ │ │ ├── errors.go │ │ │ ├── exporter.go │ │ │ └── span.go │ │ ├── protocol │ │ │ └── guestrequest │ │ │ │ └── types.go │ │ ├── queue │ │ │ └── mq.go │ │ ├── safefile │ │ │ ├── do.go │ │ │ └── safeopen.go │ │ ├── security │ │ │ ├── grantvmgroupaccess.go │ │ │ ├── syscall_windows.go │ │ │ └── zsyscall_windows.go │ │ ├── timeout │ │ │ └── timeout.go │ │ ├── vmcompute │ │ │ ├── doc.go │ │ │ ├── vmcompute.go │ │ │ └── zsyscall_windows.go │ │ ├── wclayer │ │ │ ├── activatelayer.go │ │ │ ├── baselayerreader.go │ │ │ ├── baselayerwriter.go │ │ │ ├── converttobaselayer.go │ │ │ ├── createlayer.go │ │ │ ├── createscratchlayer.go │ │ │ ├── deactivatelayer.go │ │ │ ├── destroylayer.go │ │ │ ├── doc.go │ │ │ ├── expandscratchsize.go │ │ │ ├── exportlayer.go │ │ │ ├── getlayermountpath.go │ │ │ ├── getsharedbaseimages.go │ │ │ ├── grantvmaccess.go │ │ │ ├── importlayer.go │ │ │ ├── layerexists.go │ │ │ ├── layerid.go │ │ │ ├── layerutils.go │ │ │ ├── legacy.go │ │ │ ├── nametoguid.go │ │ │ ├── preparelayer.go │ │ │ ├── processimage.go │ │ │ ├── unpreparelayer.go │ │ │ ├── wclayer.go │ │ │ └── zsyscall_windows.go │ │ └── winapi │ │ │ ├── bindflt.go │ │ │ ├── cimfs.go │ │ │ ├── console.go │ │ │ ├── devices.go │ │ │ ├── doc.go │ │ │ ├── elevation.go │ │ │ ├── errors.go │ │ │ ├── filesystem.go │ │ │ ├── jobobject.go │ │ │ ├── logon.go │ │ │ ├── memory.go │ │ │ ├── net.go │ │ │ ├── offlinereg.go │ │ │ ├── path.go │ │ │ ├── process.go │ │ │ ├── processor.go │ │ │ ├── system.go │ │ │ ├── thread.go │ │ │ ├── user.go │ │ │ ├── utils.go │ │ │ ├── winapi.go │ │ │ └── zsyscall_windows.go │ │ ├── layer.go │ │ ├── osversion │ │ ├── osversion_windows.go │ │ ├── platform_compat_windows.go │ │ └── windowsbuilds.go │ │ ├── pkg │ │ └── ociwclayer │ │ │ ├── doc.go │ │ │ ├── export.go │ │ │ └── import.go │ │ ├── process.go │ │ └── zsyscall_windows.go ├── NYTimes │ └── gziphandler │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── gzip.go │ │ └── gzip_go18.go ├── antlr4-go │ └── antlr │ │ └── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── antlrdoc.go │ │ ├── atn.go │ │ ├── atn_config.go │ │ ├── atn_config_set.go │ │ ├── atn_deserialization_options.go │ │ ├── atn_deserializer.go │ │ ├── atn_simulator.go │ │ ├── atn_state.go │ │ ├── atn_type.go │ │ ├── char_stream.go │ │ ├── common_token_factory.go │ │ ├── common_token_stream.go │ │ ├── comparators.go │ │ ├── configuration.go │ │ ├── dfa.go │ │ ├── dfa_serializer.go │ │ ├── dfa_state.go │ │ ├── diagnostic_error_listener.go │ │ ├── error_listener.go │ │ ├── error_strategy.go │ │ ├── errors.go │ │ ├── file_stream.go │ │ ├── input_stream.go │ │ ├── int_stream.go │ │ ├── interval_set.go │ │ ├── jcollect.go │ │ ├── lexer.go │ │ ├── lexer_action.go │ │ ├── lexer_action_executor.go │ │ ├── lexer_atn_simulator.go │ │ ├── ll1_analyzer.go │ │ ├── mutex.go │ │ ├── mutex_nomutex.go │ │ ├── nostatistics.go │ │ ├── parser.go │ │ ├── parser_atn_simulator.go │ │ ├── parser_rule_context.go │ │ ├── prediction_context.go │ │ ├── prediction_context_cache.go │ │ ├── prediction_mode.go │ │ ├── recognizer.go │ │ ├── rule_context.go │ │ ├── semantic_context.go │ │ ├── statistics.go │ │ ├── stats_data.go │ │ ├── token.go │ │ ├── token_source.go │ │ ├── token_stream.go │ │ ├── tokenstream_rewriter.go │ │ ├── trace_listener.go │ │ ├── transition.go │ │ ├── tree.go │ │ ├── trees.go │ │ └── utils.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── blang │ └── semver │ │ └── v4 │ │ ├── LICENSE │ │ ├── json.go │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ └── sql.go ├── cenkalti │ └── backoff │ │ └── v5 │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── error.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ └── timer.go ├── cespare │ └── xxhash │ │ └── v2 │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── testall.sh │ │ ├── xxhash.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_arm64.s │ │ ├── xxhash_asm.go │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go ├── containerd │ ├── cgroups │ │ └── v3 │ │ │ ├── LICENSE │ │ │ └── cgroup1 │ │ │ └── stats │ │ │ ├── doc.go │ │ │ ├── metrics.pb.go │ │ │ ├── metrics.pb.txt │ │ │ └── metrics.proto │ ├── containerd │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── api │ │ │ ├── LICENSE │ │ │ ├── events │ │ │ │ ├── container.pb.go │ │ │ │ ├── container.proto │ │ │ │ ├── container_fieldpath.pb.go │ │ │ │ ├── content.pb.go │ │ │ │ ├── content.proto │ │ │ │ ├── content_fieldpath.pb.go │ │ │ │ ├── doc.go │ │ │ │ ├── image.pb.go │ │ │ │ ├── image.proto │ │ │ │ ├── image_fieldpath.pb.go │ │ │ │ ├── namespace.pb.go │ │ │ │ ├── namespace.proto │ │ │ │ ├── namespace_fieldpath.pb.go │ │ │ │ ├── sandbox.pb.go │ │ │ │ ├── sandbox.proto │ │ │ │ ├── sandbox_fieldpath.pb.go │ │ │ │ ├── snapshot.pb.go │ │ │ │ ├── snapshot.proto │ │ │ │ ├── snapshot_fieldpath.pb.go │ │ │ │ ├── task.pb.go │ │ │ │ ├── task.proto │ │ │ │ └── task_fieldpath.pb.go │ │ │ ├── runtime │ │ │ │ └── sandbox │ │ │ │ │ └── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── sandbox.pb.go │ │ │ │ │ ├── sandbox.proto │ │ │ │ │ ├── sandbox_grpc.pb.go │ │ │ │ │ └── sandbox_ttrpc.pb.go │ │ │ └── types │ │ │ │ ├── descriptor.pb.go │ │ │ │ ├── descriptor.proto │ │ │ │ ├── doc.go │ │ │ │ ├── event.pb.go │ │ │ │ ├── event.proto │ │ │ │ ├── fieldpath.pb.go │ │ │ │ ├── fieldpath.proto │ │ │ │ ├── introspection.pb.go │ │ │ │ ├── introspection.proto │ │ │ │ ├── metrics.pb.go │ │ │ │ ├── metrics.proto │ │ │ │ ├── mount.pb.go │ │ │ │ ├── mount.proto │ │ │ │ ├── platform.pb.go │ │ │ │ ├── platform.proto │ │ │ │ ├── platform_helpers.go │ │ │ │ ├── sandbox.pb.go │ │ │ │ └── sandbox.proto │ │ ├── archive │ │ │ ├── compression │ │ │ │ ├── compression.go │ │ │ │ └── compression_fuzzer.go │ │ │ ├── link_default.go │ │ │ ├── link_freebsd.go │ │ │ ├── tar.go │ │ │ ├── tar_freebsd.go │ │ │ ├── tar_mostunix.go │ │ │ ├── tar_opts.go │ │ │ ├── tar_opts_linux.go │ │ │ ├── tar_opts_windows.go │ │ │ ├── tar_unix.go │ │ │ ├── tar_windows.go │ │ │ ├── tarheader │ │ │ │ ├── tarheader.go │ │ │ │ └── tarheader_unix.go │ │ │ ├── time.go │ │ │ ├── time_unix.go │ │ │ └── time_windows.go │ │ ├── containers │ │ │ └── containers.go │ │ ├── content │ │ │ ├── adaptor.go │ │ │ ├── content.go │ │ │ ├── helpers.go │ │ │ └── local │ │ │ │ ├── content_local_fuzzer.go │ │ │ │ ├── locks.go │ │ │ │ ├── readerat.go │ │ │ │ ├── store.go │ │ │ │ ├── store_bsd.go │ │ │ │ ├── store_openbsd.go │ │ │ │ ├── store_unix.go │ │ │ │ ├── store_windows.go │ │ │ │ ├── test_helper.go │ │ │ │ └── writer.go │ │ ├── contrib │ │ │ └── seccomp │ │ │ │ └── kernelversion │ │ │ │ └── kernel_linux.go │ │ ├── errdefs │ │ │ ├── errors.go │ │ │ └── grpc.go │ │ ├── events │ │ │ └── events.go │ │ ├── filters │ │ │ ├── adaptor.go │ │ │ ├── filter.go │ │ │ ├── parser.go │ │ │ ├── quote.go │ │ │ └── scanner.go │ │ ├── gc │ │ │ └── gc.go │ │ ├── identifiers │ │ │ └── validate.go │ │ ├── images │ │ │ ├── annotations.go │ │ │ ├── diffid.go │ │ │ ├── handlers.go │ │ │ ├── image.go │ │ │ ├── importexport.go │ │ │ ├── labels.go │ │ │ └── mediatypes.go │ │ ├── labels │ │ │ ├── labels.go │ │ │ └── validate.go │ │ ├── leases │ │ │ ├── context.go │ │ │ ├── grpc.go │ │ │ ├── id.go │ │ │ └── lease.go │ │ ├── metadata │ │ │ ├── adaptors.go │ │ │ ├── bolt.go │ │ │ ├── boltutil │ │ │ │ └── helpers.go │ │ │ ├── buckets.go │ │ │ ├── containers.go │ │ │ ├── content.go │ │ │ ├── db.go │ │ │ ├── gc.go │ │ │ ├── images.go │ │ │ ├── leases.go │ │ │ ├── migrations.go │ │ │ ├── namespaces.go │ │ │ ├── sandbox.go │ │ │ └── snapshot.go │ │ ├── mount │ │ │ ├── lookup_unix.go │ │ │ ├── lookup_unsupported.go │ │ │ ├── losetup_linux.go │ │ │ ├── mount.go │ │ │ ├── mount_freebsd.go │ │ │ ├── mount_linux.go │ │ │ ├── mount_unix.go │ │ │ ├── mount_unsupported.go │ │ │ ├── mount_windows.go │ │ │ ├── mountinfo.go │ │ │ ├── temp.go │ │ │ ├── temp_unix.go │ │ │ └── temp_unsupported.go │ │ ├── namespaces │ │ │ ├── context.go │ │ │ ├── grpc.go │ │ │ ├── store.go │ │ │ └── ttrpc.go │ │ ├── pkg │ │ │ ├── cleanup │ │ │ │ └── context.go │ │ │ ├── epoch │ │ │ │ ├── context.go │ │ │ │ └── epoch.go │ │ │ └── randutil │ │ │ │ └── randutil.go │ │ ├── platforms │ │ │ ├── platforms_deprecated.go │ │ │ ├── platforms_deprecated_other.go │ │ │ └── platforms_deprecated_windows.go │ │ ├── protobuf │ │ │ ├── any.go │ │ │ ├── compare.go │ │ │ ├── proto │ │ │ │ └── proto.go │ │ │ ├── timestamp.go │ │ │ └── types │ │ │ │ └── types.go │ │ ├── reference │ │ │ └── reference.go │ │ ├── remotes │ │ │ ├── docker │ │ │ │ ├── auth │ │ │ │ │ ├── fetch.go │ │ │ │ │ └── parse.go │ │ │ │ ├── authorizer.go │ │ │ │ ├── converter.go │ │ │ │ ├── converter_fuzz.go │ │ │ │ ├── errcode.go │ │ │ │ ├── errdesc.go │ │ │ │ ├── fetcher.go │ │ │ │ ├── fetcher_fuzz.go │ │ │ │ ├── handler.go │ │ │ │ ├── httpreadseeker.go │ │ │ │ ├── pusher.go │ │ │ │ ├── registry.go │ │ │ │ ├── resolver.go │ │ │ │ ├── resolver_unix.go │ │ │ │ ├── resolver_windows.go │ │ │ │ ├── schema1 │ │ │ │ │ └── converter.go │ │ │ │ ├── scope.go │ │ │ │ └── status.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── handlers.go │ │ │ └── resolver.go │ │ ├── sandbox │ │ │ ├── bridge.go │ │ │ ├── controller.go │ │ │ ├── helpers.go │ │ │ └── store.go │ │ ├── snapshots │ │ │ └── snapshotter.go │ │ ├── tracing │ │ │ ├── helpers.go │ │ │ ├── log.go │ │ │ └── tracing.go │ │ └── version │ │ │ └── version.go │ ├── continuity │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── devices │ │ │ ├── devices.go │ │ │ ├── devices_unix.go │ │ │ ├── devices_windows.go │ │ │ ├── mknod_freebsd.go │ │ │ └── mknod_unix.go │ │ ├── fs │ │ │ ├── copy.go │ │ │ ├── copy_darwin.go │ │ │ ├── copy_irregular_freebsd.go │ │ │ ├── copy_irregular_unix.go │ │ │ ├── copy_linux.go │ │ │ ├── copy_nondarwin.go │ │ │ ├── copy_unix.go │ │ │ ├── copy_windows.go │ │ │ ├── diff.go │ │ │ ├── diff_linux.go │ │ │ ├── diff_nonlinux.go │ │ │ ├── diff_unix.go │ │ │ ├── diff_windows.go │ │ │ ├── dir.go │ │ │ ├── dtype_linux.go │ │ │ ├── du.go │ │ │ ├── du_unix.go │ │ │ ├── du_windows.go │ │ │ ├── hardlink.go │ │ │ ├── hardlink_unix.go │ │ │ ├── hardlink_windows.go │ │ │ ├── magic_linux.go │ │ │ ├── path.go │ │ │ ├── stat_darwinbsd.go │ │ │ ├── stat_unix.go │ │ │ ├── stat_windows.go │ │ │ ├── time.go │ │ │ └── utimesnanoat.go │ │ └── sysx │ │ │ ├── README.md │ │ │ ├── nodata_linux.go │ │ │ ├── nodata_solaris.go │ │ │ ├── nodata_unix.go │ │ │ ├── xattr.go │ │ │ └── xattr_unsupported.go │ ├── errdefs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── pkg │ │ │ ├── LICENSE │ │ │ ├── errgrpc │ │ │ │ └── grpc.go │ │ │ └── internal │ │ │ │ ├── cause │ │ │ │ └── cause.go │ │ │ │ └── types │ │ │ │ └── collapsible.go │ │ └── resolve.go │ ├── log │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── context.go │ ├── platforms │ │ ├── .gitattributes │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compare.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_linux.go │ │ ├── cpuinfo_other.go │ │ ├── database.go │ │ ├── defaults.go │ │ ├── defaults_darwin.go │ │ ├── defaults_freebsd.go │ │ ├── defaults_unix.go │ │ ├── defaults_windows.go │ │ ├── errors.go │ │ ├── platform_compat_windows.go │ │ ├── platforms.go │ │ ├── platforms_other.go │ │ └── platforms_windows.go │ ├── ttrpc │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── PROTOCOL.md │ │ ├── Protobuild.toml │ │ ├── README.md │ │ ├── channel.go │ │ ├── client.go │ │ ├── codec.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── handshake.go │ │ ├── interceptor.go │ │ ├── metadata.go │ │ ├── request.pb.go │ │ ├── request.proto │ │ ├── server.go │ │ ├── services.go │ │ ├── stream.go │ │ ├── stream_server.go │ │ ├── test.proto │ │ └── unixcreds_linux.go │ └── typeurl │ │ └── v2 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── types.go │ │ └── types_gogo.go ├── containers │ ├── libtrust │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── certificates.go │ │ ├── doc.go │ │ ├── ec_key.go │ │ ├── ec_key_no_openssl.go │ │ ├── ec_key_openssl.go │ │ ├── filter.go │ │ ├── hash.go │ │ ├── jsonsign.go │ │ ├── key.go │ │ ├── key_files.go │ │ ├── key_manager.go │ │ ├── rsa_key.go │ │ └── util.go │ └── ocicrypt │ │ ├── LICENSE │ │ └── spec │ │ └── spec.go ├── coreos │ ├── go-semver │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── semver │ │ │ ├── semver.go │ │ │ └── sort.go │ └── go-systemd │ │ └── v22 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── daemon │ │ ├── sdnotify.go │ │ └── watchdog.go │ │ └── journal │ │ ├── journal.go │ │ ├── journal_unix.go │ │ └── journal_windows.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── distribution │ └── reference │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── distribution-logo.svg │ │ ├── helpers.go │ │ ├── normalize.go │ │ ├── reference.go │ │ ├── regexp.go │ │ └── sort.go ├── docker │ ├── cli │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── cli │ │ │ └── config │ │ │ ├── config.go │ │ │ ├── configfile │ │ │ ├── file.go │ │ │ ├── file_unix.go │ │ │ └── file_windows.go │ │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── default_store.go │ │ │ ├── default_store_darwin.go │ │ │ ├── default_store_linux.go │ │ │ ├── default_store_unsupported.go │ │ │ ├── default_store_windows.go │ │ │ ├── file_store.go │ │ │ └── native_store.go │ │ │ ├── memorystore │ │ │ └── store.go │ │ │ └── types │ │ │ └── authconfig.go │ ├── distribution │ │ ├── LICENSE │ │ └── registry │ │ │ └── api │ │ │ ├── errcode │ │ │ ├── errors.go │ │ │ ├── handler.go │ │ │ └── register.go │ │ │ └── v2 │ │ │ ├── descriptors.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── headerparser.go │ │ │ ├── routes.go │ │ │ └── urls.go │ ├── docker-credential-helpers │ │ ├── LICENSE │ │ ├── client │ │ │ ├── client.go │ │ │ └── command.go │ │ └── credentials │ │ │ ├── credentials.go │ │ │ ├── error.go │ │ │ ├── helper.go │ │ │ └── version.go │ ├── docker │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── api │ │ │ └── types │ │ │ └── versions │ │ │ └── compare.go │ ├── go-connections │ │ ├── LICENSE │ │ └── tlsconfig │ │ │ ├── certpool.go │ │ │ └── config.go │ └── go-units │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── circle.yml │ │ ├── duration.go │ │ ├── size.go │ │ └── ulimit.go ├── emicklei │ └── go-restful │ │ └── v3 │ │ ├── .gitignore │ │ ├── .goconvey │ │ ├── .travis.yml │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── Srcfile │ │ ├── bench_test.sh │ │ ├── compress.go │ │ ├── compressor_cache.go │ │ ├── compressor_pools.go │ │ ├── compressors.go │ │ ├── constants.go │ │ ├── container.go │ │ ├── cors_filter.go │ │ ├── coverage.sh │ │ ├── curly.go │ │ ├── curly_route.go │ │ ├── custom_verb.go │ │ ├── doc.go │ │ ├── entity_accessors.go │ │ ├── extensions.go │ │ ├── filter.go │ │ ├── filter_adapter.go │ │ ├── jsr311.go │ │ ├── log │ │ └── log.go │ │ ├── logger.go │ │ ├── mime.go │ │ ├── options_filter.go │ │ ├── parameter.go │ │ ├── path_expression.go │ │ ├── path_processor.go │ │ ├── request.go │ │ ├── response.go │ │ ├── route.go │ │ ├── route_builder.go │ │ ├── route_reader.go │ │ ├── router.go │ │ ├── service_error.go │ │ ├── web_service.go │ │ └── web_service_container.go ├── evanphx │ └── json-patch │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ ├── patch.go │ │ └── v5 │ │ ├── LICENSE │ │ ├── errors.go │ │ ├── internal │ │ └── json │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── fold.go │ │ │ ├── fuzz.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── merge.go │ │ └── patch.go ├── fatih │ └── color │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ ├── color_windows.go │ │ └── doc.go ├── felixge │ └── httpsnoop │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go ├── fsnotify │ └── fsnotify │ │ ├── .cirrus.yml │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── internal │ │ ├── darwin.go │ │ ├── debug_darwin.go │ │ ├── debug_dragonfly.go │ │ ├── debug_freebsd.go │ │ ├── debug_kqueue.go │ │ ├── debug_linux.go │ │ ├── debug_netbsd.go │ │ ├── debug_openbsd.go │ │ ├── debug_solaris.go │ │ ├── debug_windows.go │ │ ├── freebsd.go │ │ ├── internal.go │ │ ├── unix.go │ │ ├── unix2.go │ │ └── windows.go │ │ ├── shared.go │ │ ├── staticcheck.conf │ │ ├── system_bsd.go │ │ └── system_darwin.go ├── fxamacker │ └── cbor │ │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── bytestring.go │ │ ├── cache.go │ │ ├── common.go │ │ ├── decode.go │ │ ├── diagnose.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_map.go │ │ ├── omitzero_go124.go │ │ ├── omitzero_pre_go124.go │ │ ├── simplevalue.go │ │ ├── stream.go │ │ ├── structfields.go │ │ ├── tag.go │ │ └── valid.go ├── ghodss │ └── yaml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fields.go │ │ └── yaml.go ├── go-air │ └── gini │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dimacs │ │ ├── cfilt.go │ │ ├── cnf.go │ │ ├── doc.go │ │ ├── icnf.go │ │ ├── int.go │ │ ├── lit.go │ │ ├── solve.go │ │ └── vis.go │ │ ├── doc.go │ │ ├── gini.go │ │ ├── inter │ │ ├── doc.go │ │ ├── s.go │ │ └── solve.go │ │ ├── internal │ │ └── xo │ │ │ ├── active.go │ │ │ ├── cdat.go │ │ │ ├── cdb.go │ │ │ ├── cgc.go │ │ │ ├── chd.go │ │ │ ├── cloc.go │ │ │ ├── ctl.go │ │ │ ├── derive.go │ │ │ ├── dimacs.go │ │ │ ├── doc.go │ │ │ ├── guess.go │ │ │ ├── luby.go │ │ │ ├── phases.go │ │ │ ├── s.go │ │ │ ├── stats.go │ │ │ ├── tracer.go │ │ │ ├── trail.go │ │ │ ├── vars.go │ │ │ └── watch.go │ │ ├── logic │ │ ├── c.go │ │ ├── card.go │ │ ├── doc.go │ │ ├── roll.go │ │ └── s.go │ │ ├── s.go │ │ ├── sv.go │ │ └── z │ │ ├── c.go │ │ ├── doc.go │ │ ├── dv.go │ │ ├── lit.go │ │ └── var.go ├── go-logr │ ├── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── context.go │ │ ├── context_noslog.go │ │ ├── context_slog.go │ │ ├── discard.go │ │ ├── funcr │ │ │ ├── funcr.go │ │ │ └── slogsink.go │ │ ├── logr.go │ │ ├── sloghandler.go │ │ ├── slogr.go │ │ ├── slogr │ │ │ └── slogr.go │ │ └── slogsink.go │ ├── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go │ └── zapr │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── slogzapr.go │ │ ├── zapr.go │ │ ├── zapr_noslog.go │ │ └── zapr_slog.go ├── go-openapi │ ├── jsonpointer │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ └── pointer.go │ ├── jsonreference │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ │ └── normalize_url.go │ │ └── reference.go │ └── swag │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── BENCHMARK.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── convert.go │ │ ├── convert_types.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── file.go │ │ ├── initialism_index.go │ │ ├── json.go │ │ ├── loading.go │ │ ├── name_lexem.go │ │ ├── net.go │ │ ├── path.go │ │ ├── split.go │ │ ├── string_bytes.go │ │ ├── util.go │ │ └── yaml.go ├── go-task │ └── slim-sprig │ │ └── v3 │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Taskfile.yml │ │ ├── crypto.go │ │ ├── date.go │ │ ├── defaults.go │ │ ├── dict.go │ │ ├── doc.go │ │ ├── functions.go │ │ ├── list.go │ │ ├── network.go │ │ ├── numeric.go │ │ ├── reflect.go │ │ ├── regex.go │ │ ├── strings.go │ │ └── url.go ├── gobuffalo │ └── flect │ │ ├── .gitignore │ │ ├── .gometalinter.json │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SHOULDERS.md │ │ ├── acronyms.go │ │ ├── camelize.go │ │ ├── capitalize.go │ │ ├── custom_data.go │ │ ├── dasherize.go │ │ ├── flect.go │ │ ├── humanize.go │ │ ├── ident.go │ │ ├── lower_upper.go │ │ ├── ordinalize.go │ │ ├── pascalize.go │ │ ├── plural_rules.go │ │ ├── pluralize.go │ │ ├── rule.go │ │ ├── singular_rules.go │ │ ├── singularize.go │ │ ├── titleize.go │ │ ├── underscore.go │ │ └── version.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── gogoproto │ │ ├── Makefile │ │ ├── doc.go │ │ ├── gogo.pb.go │ │ ├── gogo.pb.golden │ │ ├── gogo.proto │ │ └── helper.go │ │ ├── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go │ │ ├── protoc-gen-gogo │ │ └── descriptor │ │ │ ├── Makefile │ │ │ ├── descriptor.go │ │ │ ├── descriptor.pb.go │ │ │ ├── descriptor_gostring.gen.go │ │ │ └── helper.go │ │ └── sortkeys │ │ └── sortkeys.go ├── golang-migrate │ └── migrate │ │ └── v4 │ │ ├── LICENSE │ │ └── source │ │ ├── driver.go │ │ ├── errors.go │ │ ├── file │ │ ├── README.md │ │ └── file.go │ │ ├── iofs │ │ ├── README.md │ │ ├── doc.go │ │ └── iofs.go │ │ ├── migration.go │ │ └── parse.go ├── golang │ ├── groupcache │ │ ├── LICENSE │ │ └── lru │ │ │ └── lru.go │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ ├── buffer.go │ │ ├── defaults.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── extensions.go │ │ ├── properties.go │ │ ├── proto.go │ │ ├── registry.go │ │ ├── text_decode.go │ │ ├── text_encode.go │ │ ├── wire.go │ │ └── wrappers.go ├── google │ ├── btree │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ └── btree_generic.go │ ├── cel-go │ │ ├── LICENSE │ │ ├── cel │ │ │ ├── BUILD.bazel │ │ │ ├── cel.go │ │ │ ├── decls.go │ │ │ ├── env.go │ │ │ ├── folding.go │ │ │ ├── inlining.go │ │ │ ├── io.go │ │ │ ├── library.go │ │ │ ├── macro.go │ │ │ ├── optimizer.go │ │ │ ├── options.go │ │ │ ├── program.go │ │ │ ├── prompt.go │ │ │ ├── templates │ │ │ │ └── authoring.tmpl │ │ │ └── validator.go │ │ ├── checker │ │ │ ├── BUILD.bazel │ │ │ ├── checker.go │ │ │ ├── cost.go │ │ │ ├── decls │ │ │ │ ├── BUILD.bazel │ │ │ │ └── decls.go │ │ │ ├── env.go │ │ │ ├── errors.go │ │ │ ├── format.go │ │ │ ├── mapping.go │ │ │ ├── options.go │ │ │ ├── printer.go │ │ │ ├── scopes.go │ │ │ └── types.go │ │ ├── common │ │ │ ├── BUILD.bazel │ │ │ ├── ast │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── ast.go │ │ │ │ ├── conversion.go │ │ │ │ ├── expr.go │ │ │ │ ├── factory.go │ │ │ │ └── navigable.go │ │ │ ├── containers │ │ │ │ ├── BUILD.bazel │ │ │ │ └── container.go │ │ │ ├── cost.go │ │ │ ├── debug │ │ │ │ ├── BUILD.bazel │ │ │ │ └── debug.go │ │ │ ├── decls │ │ │ │ ├── BUILD.bazel │ │ │ │ └── decls.go │ │ │ ├── doc.go │ │ │ ├── env │ │ │ │ ├── BUILD.bazel │ │ │ │ └── env.go │ │ │ ├── error.go │ │ │ ├── errors.go │ │ │ ├── functions │ │ │ │ ├── BUILD.bazel │ │ │ │ └── functions.go │ │ │ ├── location.go │ │ │ ├── operators │ │ │ │ ├── BUILD.bazel │ │ │ │ └── operators.go │ │ │ ├── overloads │ │ │ │ ├── BUILD.bazel │ │ │ │ └── overloads.go │ │ │ ├── runes │ │ │ │ ├── BUILD.bazel │ │ │ │ └── buffer.go │ │ │ ├── source.go │ │ │ ├── stdlib │ │ │ │ ├── BUILD.bazel │ │ │ │ └── standard.go │ │ │ └── types │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── any_value.go │ │ │ │ ├── bool.go │ │ │ │ ├── bytes.go │ │ │ │ ├── compare.go │ │ │ │ ├── doc.go │ │ │ │ ├── double.go │ │ │ │ ├── duration.go │ │ │ │ ├── err.go │ │ │ │ ├── format.go │ │ │ │ ├── int.go │ │ │ │ ├── iterator.go │ │ │ │ ├── json_value.go │ │ │ │ ├── list.go │ │ │ │ ├── map.go │ │ │ │ ├── null.go │ │ │ │ ├── object.go │ │ │ │ ├── optional.go │ │ │ │ ├── overflow.go │ │ │ │ ├── pb │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── checked.go │ │ │ │ ├── enum.go │ │ │ │ ├── equal.go │ │ │ │ ├── file.go │ │ │ │ ├── pb.go │ │ │ │ └── type.go │ │ │ │ ├── provider.go │ │ │ │ ├── ref │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── provider.go │ │ │ │ └── reference.go │ │ │ │ ├── string.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── traits │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── comparer.go │ │ │ │ ├── container.go │ │ │ │ ├── field_tester.go │ │ │ │ ├── indexer.go │ │ │ │ ├── iterator.go │ │ │ │ ├── lister.go │ │ │ │ ├── mapper.go │ │ │ │ ├── matcher.go │ │ │ │ ├── math.go │ │ │ │ ├── receiver.go │ │ │ │ ├── sizer.go │ │ │ │ ├── traits.go │ │ │ │ └── zeroer.go │ │ │ │ ├── types.go │ │ │ │ ├── uint.go │ │ │ │ ├── unknown.go │ │ │ │ └── util.go │ │ ├── ext │ │ │ ├── BUILD.bazel │ │ │ ├── README.md │ │ │ ├── bindings.go │ │ │ ├── comprehensions.go │ │ │ ├── encoders.go │ │ │ ├── extension_option_factory.go │ │ │ ├── formatting.go │ │ │ ├── formatting_v2.go │ │ │ ├── guards.go │ │ │ ├── lists.go │ │ │ ├── math.go │ │ │ ├── native.go │ │ │ ├── protos.go │ │ │ ├── regex.go │ │ │ ├── sets.go │ │ │ └── strings.go │ │ ├── interpreter │ │ │ ├── BUILD.bazel │ │ │ ├── activation.go │ │ │ ├── attribute_patterns.go │ │ │ ├── attributes.go │ │ │ ├── decorators.go │ │ │ ├── dispatcher.go │ │ │ ├── evalstate.go │ │ │ ├── functions │ │ │ │ ├── BUILD.bazel │ │ │ │ └── functions.go │ │ │ ├── interpretable.go │ │ │ ├── interpreter.go │ │ │ ├── optimizations.go │ │ │ ├── planner.go │ │ │ ├── prune.go │ │ │ └── runtimecost.go │ │ └── parser │ │ │ ├── BUILD.bazel │ │ │ ├── errors.go │ │ │ ├── gen │ │ │ ├── BUILD.bazel │ │ │ ├── CEL.g4 │ │ │ ├── CEL.interp │ │ │ ├── CEL.tokens │ │ │ ├── CELLexer.interp │ │ │ ├── CELLexer.tokens │ │ │ ├── cel_base_listener.go │ │ │ ├── cel_base_visitor.go │ │ │ ├── cel_lexer.go │ │ │ ├── cel_listener.go │ │ │ ├── cel_parser.go │ │ │ ├── cel_visitor.go │ │ │ ├── doc.go │ │ │ └── generate.sh │ │ │ ├── helper.go │ │ │ ├── input.go │ │ │ ├── macro.go │ │ │ ├── options.go │ │ │ ├── parser.go │ │ │ ├── unescape.go │ │ │ └── unparser.go │ ├── gnostic-models │ │ ├── LICENSE │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extensions.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ ├── extensions │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ └── extensions.go │ │ ├── jsonschema │ │ │ ├── README.md │ │ │ ├── base.go │ │ │ ├── display.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── reader.go │ │ │ ├── schema.json │ │ │ └── writer.go │ │ ├── openapiv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ ├── document.go │ │ │ └── openapi-2.0.json │ │ └── openapiv3 │ │ │ ├── OpenAPIv3.go │ │ │ ├── OpenAPIv3.pb.go │ │ │ ├── OpenAPIv3.proto │ │ │ ├── README.md │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ └── document.go │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ ├── pprof │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── profile │ │ │ ├── encode.go │ │ │ ├── filter.go │ │ │ ├── index.go │ │ │ ├── legacy_java_profile.go │ │ │ ├── legacy_profile.go │ │ │ ├── merge.go │ │ │ ├── profile.go │ │ │ ├── proto.go │ │ │ └── prune.go │ └── uuid │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go ├── gorilla │ └── mux │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── middleware.go │ │ ├── mux.go │ │ ├── regexp.go │ │ ├── route.go │ │ └── test_helpers.go ├── grpc-ecosystem │ ├── go-grpc-prometheus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_metrics.go │ │ ├── client_reporter.go │ │ ├── makefile │ │ ├── metric_options.go │ │ ├── server.go │ │ ├── server_metrics.go │ │ ├── server_reporter.go │ │ └── util.go │ └── grpc-gateway │ │ └── v2 │ │ ├── LICENSE │ │ ├── internal │ │ └── httprule │ │ │ ├── BUILD.bazel │ │ │ ├── compile.go │ │ │ ├── fuzz.go │ │ │ ├── parse.go │ │ │ └── types.go │ │ ├── protoc-gen-openapiv2 │ │ └── options │ │ │ ├── BUILD.bazel │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ ├── annotations_protoopaque.pb.go │ │ │ ├── buf.gen.yaml │ │ │ ├── openapiv2.pb.go │ │ │ ├── openapiv2.proto │ │ │ └── openapiv2_protoopaque.pb.go │ │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── context.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fieldmask.go │ │ ├── handler.go │ │ ├── marshal_httpbodyproto.go │ │ ├── marshal_json.go │ │ ├── marshal_jsonpb.go │ │ ├── marshal_proto.go │ │ ├── marshaler.go │ │ ├── marshaler_registry.go │ │ ├── mux.go │ │ ├── pattern.go │ │ ├── proto2_convert.go │ │ └── query.go │ │ └── utilities │ │ ├── BUILD.bazel │ │ ├── doc.go │ │ ├── pattern.go │ │ ├── readerfactory.go │ │ ├── string_array_flag.go │ │ └── trie.go ├── h2non │ ├── filetype │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── filetype.go │ │ ├── kind.go │ │ ├── match.go │ │ ├── matchers │ │ │ ├── application.go │ │ │ ├── archive.go │ │ │ ├── audio.go │ │ │ ├── document.go │ │ │ ├── font.go │ │ │ ├── image.go │ │ │ ├── isobmff │ │ │ │ └── isobmff.go │ │ │ ├── matchers.go │ │ │ └── video.go │ │ ├── types │ │ │ ├── defaults.go │ │ │ ├── mime.go │ │ │ ├── split.go │ │ │ ├── type.go │ │ │ └── types.go │ │ └── version.go │ └── go-is-svg │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── svg.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go ├── itchyny │ ├── gojq │ │ ├── .dockerignore │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── _gojq │ │ ├── builtin.go │ │ ├── builtin.jq │ │ ├── code.go │ │ ├── compare.go │ │ ├── compiler.go │ │ ├── debug.go │ │ ├── encoder.go │ │ ├── env.go │ │ ├── error.go │ │ ├── execute.go │ │ ├── func.go │ │ ├── go.dev.mod │ │ ├── go.dev.sum │ │ ├── gojq.go │ │ ├── iter.go │ │ ├── lexer.go │ │ ├── module_loader.go │ │ ├── normalize.go │ │ ├── operator.go │ │ ├── option.go │ │ ├── parser.go │ │ ├── parser.go.y │ │ ├── preview.go │ │ ├── query.go │ │ ├── release.go │ │ ├── scope_stack.go │ │ ├── stack.go │ │ ├── term_type.go │ │ └── type.go │ └── timefmt-go │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── format.go │ │ ├── parse.go │ │ └── timefmt.go ├── josharian │ └── intern │ │ ├── README.md │ │ ├── intern.go │ │ └── license.md ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── klauspost │ └── compress │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── compressible.go │ │ ├── fse │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── bytereader.go │ │ ├── compress.go │ │ ├── decompress.go │ │ └── fse.go │ │ ├── gen.sh │ │ ├── huff0 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── compress.go │ │ ├── decompress.go │ │ ├── decompress_amd64.go │ │ ├── decompress_amd64.s │ │ ├── decompress_generic.go │ │ └── huff0.go │ │ ├── internal │ │ ├── cpuinfo │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_amd64.go │ │ │ └── cpuinfo_amd64.s │ │ ├── le │ │ │ ├── le.go │ │ │ ├── unsafe_disabled.go │ │ │ └── unsafe_enabled.go │ │ └── snapref │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ │ ├── s2sx.mod │ │ ├── s2sx.sum │ │ └── zstd │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── blockdec.go │ │ ├── blockenc.go │ │ ├── blocktype_string.go │ │ ├── bytebuf.go │ │ ├── bytereader.go │ │ ├── decodeheader.go │ │ ├── decoder.go │ │ ├── decoder_options.go │ │ ├── dict.go │ │ ├── enc_base.go │ │ ├── enc_best.go │ │ ├── enc_better.go │ │ ├── enc_dfast.go │ │ ├── enc_fast.go │ │ ├── encoder.go │ │ ├── encoder_options.go │ │ ├── framedec.go │ │ ├── frameenc.go │ │ ├── fse_decoder.go │ │ ├── fse_decoder_amd64.go │ │ ├── fse_decoder_amd64.s │ │ ├── fse_decoder_generic.go │ │ ├── fse_encoder.go │ │ ├── fse_predefined.go │ │ ├── hash.go │ │ ├── history.go │ │ ├── internal │ │ └── xxhash │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_arm64.s │ │ │ ├── xxhash_asm.go │ │ │ ├── xxhash_other.go │ │ │ └── xxhash_safe.go │ │ ├── matchlen_amd64.go │ │ ├── matchlen_amd64.s │ │ ├── matchlen_generic.go │ │ ├── seqdec.go │ │ ├── seqdec_amd64.go │ │ ├── seqdec_amd64.s │ │ ├── seqdec_generic.go │ │ ├── seqenc.go │ │ ├── snappy.go │ │ ├── zip.go │ │ └── zstd.go ├── kylelemons │ └── godebug │ │ ├── LICENSE │ │ └── diff │ │ └── diff.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.go ├── mattn │ ├── go-colorable │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_appengine.go │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ ├── go.test.sh │ │ └── noncolorable.go │ ├── go-isatty │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── go.test.sh │ │ ├── isatty_bsd.go │ │ ├── isatty_others.go │ │ ├── isatty_plan9.go │ │ ├── isatty_solaris.go │ │ ├── isatty_tcgets.go │ │ └── isatty_windows.go │ └── go-sqlite3 │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backup.go │ │ ├── callback.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── sqlite3-binding.c │ │ ├── sqlite3-binding.h │ │ ├── sqlite3.go │ │ ├── sqlite3_context.go │ │ ├── sqlite3_func_crypt.go │ │ ├── sqlite3_go18.go │ │ ├── sqlite3_libsqlite3.go │ │ ├── sqlite3_load_extension.go │ │ ├── sqlite3_load_extension_omit.go │ │ ├── sqlite3_opt_allow_uri_authority.go │ │ ├── sqlite3_opt_app_armor.go │ │ ├── sqlite3_opt_column_metadata.go │ │ ├── sqlite3_opt_foreign_keys.go │ │ ├── sqlite3_opt_fts5.go │ │ ├── sqlite3_opt_icu.go │ │ ├── sqlite3_opt_introspect.go │ │ ├── sqlite3_opt_math_functions.go │ │ ├── sqlite3_opt_os_trace.go │ │ ├── sqlite3_opt_preupdate.go │ │ ├── sqlite3_opt_preupdate_hook.go │ │ ├── sqlite3_opt_preupdate_omit.go │ │ ├── sqlite3_opt_secure_delete.go │ │ ├── sqlite3_opt_secure_delete_fast.go │ │ ├── sqlite3_opt_serialize.go │ │ ├── sqlite3_opt_serialize_omit.go │ │ ├── sqlite3_opt_stat4.go │ │ ├── sqlite3_opt_unlock_notify.c │ │ ├── sqlite3_opt_unlock_notify.go │ │ ├── sqlite3_opt_userauth.go │ │ ├── sqlite3_opt_userauth_omit.go │ │ ├── sqlite3_opt_vacuum_full.go │ │ ├── sqlite3_opt_vacuum_incr.go │ │ ├── sqlite3_opt_vtable.go │ │ ├── sqlite3_other.go │ │ ├── sqlite3_solaris.go │ │ ├── sqlite3_trace.go │ │ ├── sqlite3_type.go │ │ ├── sqlite3_usleep_windows.go │ │ ├── sqlite3_windows.go │ │ ├── sqlite3ext.h │ │ └── static_mock.go ├── maxbrunsfeld │ └── counterfeiter │ │ └── v6 │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arguments │ │ ├── files.go │ │ ├── parser.go │ │ └── usage.go │ │ ├── command │ │ └── runner.go │ │ ├── generator │ │ ├── cache.go │ │ ├── ctx.go │ │ ├── ctx_old.go │ │ ├── fake.go │ │ ├── file_reader.go │ │ ├── function_loader.go │ │ ├── function_template.go │ │ ├── import.go │ │ ├── interface_loader.go │ │ ├── interface_template.go │ │ ├── loader.go │ │ ├── package_loader.go │ │ ├── package_template.go │ │ ├── param.go │ │ └── return.go │ │ └── main.go ├── mitchellh │ ├── hashstructure │ │ ├── LICENSE │ │ ├── README.md │ │ ├── hashstructure.go │ │ └── include.go │ └── mapstructure │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ └── mapstructure.go ├── moby │ ├── locker │ │ ├── LICENSE │ │ ├── README.md │ │ └── locker.go │ └── sys │ │ ├── capability │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── capability.go │ │ ├── capability_linux.go │ │ ├── capability_noop.go │ │ ├── enum.go │ │ ├── enum_gen.go │ │ └── syscall_linux.go │ │ ├── mountinfo │ │ ├── LICENSE │ │ ├── doc.go │ │ ├── mounted_linux.go │ │ ├── mounted_unix.go │ │ ├── mountinfo.go │ │ ├── mountinfo_bsd.go │ │ ├── mountinfo_filters.go │ │ ├── mountinfo_freebsdlike.go │ │ ├── mountinfo_linux.go │ │ ├── mountinfo_openbsd.go │ │ ├── mountinfo_unsupported.go │ │ └── mountinfo_windows.go │ │ ├── sequential │ │ ├── LICENSE │ │ ├── doc.go │ │ ├── sequential_unix.go │ │ └── sequential_windows.go │ │ ├── user │ │ ├── LICENSE │ │ ├── idtools.go │ │ ├── idtools_unix.go │ │ ├── idtools_windows.go │ │ ├── lookup_unix.go │ │ ├── user.go │ │ └── user_fuzzer.go │ │ └── userns │ │ ├── LICENSE │ │ ├── userns.go │ │ ├── userns_linux.go │ │ ├── userns_linux_fuzzer.go │ │ └── userns_unsupported.go ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_118.go │ │ ├── go_above_19.go │ │ ├── go_below_118.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── munnerz │ └── goautoneg │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go ├── onsi │ ├── ginkgo │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RELEASING.md │ │ │ ├── config │ │ │ └── deprecated.go │ │ │ ├── core_dsl.go │ │ │ ├── decorator_dsl.go │ │ │ ├── deprecated_dsl.go │ │ │ ├── formatter │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ └── formatter.go │ │ │ ├── ginkgo │ │ │ ├── automaxprocs.go │ │ │ ├── automaxprocs │ │ │ │ ├── README.md │ │ │ │ ├── automaxprocs.go │ │ │ │ ├── cgroup.go │ │ │ │ ├── cgroups.go │ │ │ │ ├── cgroups2.go │ │ │ │ ├── cpu_quota_linux.go │ │ │ │ ├── cpu_quota_unsupported.go │ │ │ │ ├── errors.go │ │ │ │ ├── mountpoint.go │ │ │ │ ├── runtime.go │ │ │ │ └── subsys.go │ │ │ ├── build │ │ │ │ └── build_command.go │ │ │ ├── command │ │ │ │ ├── abort.go │ │ │ │ ├── command.go │ │ │ │ └── program.go │ │ │ ├── generators │ │ │ │ ├── boostrap_templates.go │ │ │ │ ├── bootstrap_command.go │ │ │ │ ├── generate_command.go │ │ │ │ ├── generate_templates.go │ │ │ │ └── generators_common.go │ │ │ ├── internal │ │ │ │ ├── compile.go │ │ │ │ ├── gocovmerge.go │ │ │ │ ├── profiles_and_reports.go │ │ │ │ ├── run.go │ │ │ │ ├── test_suite.go │ │ │ │ ├── utils.go │ │ │ │ └── verify_version.go │ │ │ ├── labels │ │ │ │ └── labels_command.go │ │ │ ├── main.go │ │ │ ├── outline │ │ │ │ ├── ginkgo.go │ │ │ │ ├── import.go │ │ │ │ ├── outline.go │ │ │ │ └── outline_command.go │ │ │ ├── run │ │ │ │ └── run_command.go │ │ │ ├── unfocus │ │ │ │ └── unfocus_command.go │ │ │ └── watch │ │ │ │ ├── delta.go │ │ │ │ ├── delta_tracker.go │ │ │ │ ├── dependencies.go │ │ │ │ ├── package_hash.go │ │ │ │ ├── package_hashes.go │ │ │ │ ├── suite.go │ │ │ │ └── watch_command.go │ │ │ ├── ginkgo_cli_dependencies.go │ │ │ ├── ginkgo_t_dsl.go │ │ │ ├── internal │ │ │ ├── around_node.go │ │ │ ├── counter.go │ │ │ ├── failer.go │ │ │ ├── focus.go │ │ │ ├── global │ │ │ │ └── init.go │ │ │ ├── group.go │ │ │ ├── interrupt_handler │ │ │ │ ├── interrupt_handler.go │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ └── sigquit_swallower_windows.go │ │ │ ├── node.go │ │ │ ├── ordering.go │ │ │ ├── output_interceptor.go │ │ │ ├── output_interceptor_unix.go │ │ │ ├── output_interceptor_wasm.go │ │ │ ├── output_interceptor_win.go │ │ │ ├── parallel_support │ │ │ │ ├── client_server.go │ │ │ │ ├── http_client.go │ │ │ │ ├── http_server.go │ │ │ │ ├── rpc_client.go │ │ │ │ ├── rpc_server.go │ │ │ │ └── server_handler.go │ │ │ ├── progress_report.go │ │ │ ├── progress_report_bsd.go │ │ │ ├── progress_report_unix.go │ │ │ ├── progress_report_wasm.go │ │ │ ├── progress_report_win.go │ │ │ ├── progress_reporter_manager.go │ │ │ ├── report_entry.go │ │ │ ├── reporters │ │ │ │ ├── gojson.go │ │ │ │ ├── gojson_event_writer.go │ │ │ │ └── gojson_reporter.go │ │ │ ├── spec.go │ │ │ ├── spec_context.go │ │ │ ├── suite.go │ │ │ ├── testingtproxy │ │ │ │ └── testing_t_proxy.go │ │ │ ├── tree.go │ │ │ └── writer.go │ │ │ ├── reporters │ │ │ ├── default_reporter.go │ │ │ ├── deprecated_reporter.go │ │ │ ├── gojson_report.go │ │ │ ├── json_report.go │ │ │ ├── junit_report.go │ │ │ ├── reporter.go │ │ │ └── teamcity_report.go │ │ │ ├── reporting_dsl.go │ │ │ ├── table_dsl.go │ │ │ └── types │ │ │ ├── around_node.go │ │ │ ├── code_location.go │ │ │ ├── config.go │ │ │ ├── deprecated_types.go │ │ │ ├── deprecation_support.go │ │ │ ├── enum_support.go │ │ │ ├── errors.go │ │ │ ├── file_filter.go │ │ │ ├── flags.go │ │ │ ├── label_filter.go │ │ │ ├── report_entry.go │ │ │ ├── semver_filter.go │ │ │ ├── types.go │ │ │ └── version.go │ └── gomega │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── format │ │ └── format.go │ │ ├── gomega_dsl.go │ │ ├── gstruct │ │ ├── elements.go │ │ ├── errors │ │ │ └── nested_types.go │ │ ├── fields.go │ │ ├── ignore.go │ │ ├── keys.go │ │ ├── pointer.go │ │ └── types.go │ │ ├── internal │ │ ├── assertion.go │ │ ├── async_assertion.go │ │ ├── duration_bundle.go │ │ ├── gomega.go │ │ ├── gutil │ │ │ ├── post_ioutil.go │ │ │ └── using_ioutil.go │ │ ├── polling_signal_error.go │ │ └── vetoptdesc.go │ │ ├── matchers.go │ │ ├── matchers │ │ ├── and.go │ │ ├── assignable_to_type_of_matcher.go │ │ ├── attributes_slice.go │ │ ├── be_a_directory.go │ │ ├── be_a_regular_file.go │ │ ├── be_an_existing_file.go │ │ ├── be_closed_matcher.go │ │ ├── be_comparable_to_matcher.go │ │ ├── be_element_of_matcher.go │ │ ├── be_empty_matcher.go │ │ ├── be_equivalent_to_matcher.go │ │ ├── be_false_matcher.go │ │ ├── be_identical_to.go │ │ ├── be_key_of_matcher.go │ │ ├── be_nil_matcher.go │ │ ├── be_numerically_matcher.go │ │ ├── be_sent_matcher.go │ │ ├── be_temporally_matcher.go │ │ ├── be_true_matcher.go │ │ ├── be_zero_matcher.go │ │ ├── consist_of.go │ │ ├── contain_element_matcher.go │ │ ├── contain_elements_matcher.go │ │ ├── contain_substring_matcher.go │ │ ├── equal_matcher.go │ │ ├── have_cap_matcher.go │ │ ├── have_each_matcher.go │ │ ├── have_exact_elements.go │ │ ├── have_existing_field_matcher.go │ │ ├── have_field.go │ │ ├── have_http_body_matcher.go │ │ ├── have_http_header_with_value_matcher.go │ │ ├── have_http_status_matcher.go │ │ ├── have_key_matcher.go │ │ ├── have_key_with_value_matcher.go │ │ ├── have_len_matcher.go │ │ ├── have_occurred_matcher.go │ │ ├── have_prefix_matcher.go │ │ ├── have_suffix_matcher.go │ │ ├── have_value.go │ │ ├── internal │ │ │ └── miter │ │ │ │ ├── type_support_iter.go │ │ │ │ └── type_support_noiter.go │ │ ├── match_error_matcher.go │ │ ├── match_json_matcher.go │ │ ├── match_regexp_matcher.go │ │ ├── match_xml_matcher.go │ │ ├── match_yaml_matcher.go │ │ ├── not.go │ │ ├── or.go │ │ ├── panic_matcher.go │ │ ├── receive_matcher.go │ │ ├── satisfy_matcher.go │ │ ├── semi_structured_data_support.go │ │ ├── succeed_matcher.go │ │ ├── support │ │ │ └── goraph │ │ │ │ ├── bipartitegraph │ │ │ │ ├── bipartitegraph.go │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ │ ├── node │ │ │ │ └── node.go │ │ │ │ └── util │ │ │ │ └── util.go │ │ ├── type_support.go │ │ └── with_transform.go │ │ └── types │ │ └── types.go ├── opencontainers │ ├── go-digest │ │ ├── .mailmap │ │ ├── .pullapprove.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── LICENSE.docs │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── algorithm.go │ │ ├── digest.go │ │ ├── digester.go │ │ ├── doc.go │ │ └── verifiers.go │ ├── image-spec │ │ ├── LICENSE │ │ └── specs-go │ │ │ ├── v1 │ │ │ ├── annotations.go │ │ │ ├── config.go │ │ │ ├── descriptor.go │ │ │ ├── index.go │ │ │ ├── layout.go │ │ │ ├── manifest.go │ │ │ └── mediatype.go │ │ │ ├── version.go │ │ │ └── versioned.go │ └── runtime-spec │ │ ├── LICENSE │ │ └── specs-go │ │ ├── config.go │ │ ├── state.go │ │ └── version.go ├── openshift │ ├── api │ │ ├── LICENSE │ │ └── config │ │ │ ├── v1 │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── stringsource.go │ │ │ ├── types.go │ │ │ ├── types_apiserver.go │ │ │ ├── types_authentication.go │ │ │ ├── types_build.go │ │ │ ├── types_cluster_image_policy.go │ │ │ ├── types_cluster_operator.go │ │ │ ├── types_cluster_version.go │ │ │ ├── types_console.go │ │ │ ├── types_dns.go │ │ │ ├── types_feature.go │ │ │ ├── types_image.go │ │ │ ├── types_image_content_policy.go │ │ │ ├── types_image_digest_mirror_set.go │ │ │ ├── types_image_policy.go │ │ │ ├── types_image_tag_mirror_set.go │ │ │ ├── types_infrastructure.go │ │ │ ├── types_ingress.go │ │ │ ├── types_insights.go │ │ │ ├── types_kmsencryption.go │ │ │ ├── types_network.go │ │ │ ├── types_node.go │ │ │ ├── types_oauth.go │ │ │ ├── types_operatorhub.go │ │ │ ├── types_project.go │ │ │ ├── types_proxy.go │ │ │ ├── types_scheduling.go │ │ │ ├── types_testreporting.go │ │ │ ├── types_tlssecurityprofile.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── v1alpha1 │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types_backup.go │ │ │ ├── types_cluster_image_policy.go │ │ │ ├── types_cluster_monitoring.go │ │ │ ├── types_image_policy.go │ │ │ ├── types_insights.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ └── v1alpha2 │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types_insights.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ └── zz_generated.swagger_doc_generated.go │ └── client-go │ │ ├── LICENSE │ │ └── config │ │ ├── applyconfigurations │ │ ├── config │ │ │ ├── v1 │ │ │ │ ├── alibabacloudplatformstatus.go │ │ │ │ ├── alibabacloudresourcetag.go │ │ │ │ ├── apiserver.go │ │ │ │ ├── apiserverencryption.go │ │ │ │ ├── apiservernamedservingcert.go │ │ │ │ ├── apiserverservingcerts.go │ │ │ │ ├── apiserverspec.go │ │ │ │ ├── audit.go │ │ │ │ ├── auditcustomrule.go │ │ │ │ ├── authentication.go │ │ │ │ ├── authenticationspec.go │ │ │ │ ├── authenticationstatus.go │ │ │ │ ├── awsdnsspec.go │ │ │ │ ├── awsingressspec.go │ │ │ │ ├── awskmsconfig.go │ │ │ │ ├── awsplatformspec.go │ │ │ │ ├── awsplatformstatus.go │ │ │ │ ├── awsresourcetag.go │ │ │ │ ├── awsserviceendpoint.go │ │ │ │ ├── azureplatformstatus.go │ │ │ │ ├── azureresourcetag.go │ │ │ │ ├── baremetalplatformloadbalancer.go │ │ │ │ ├── baremetalplatformspec.go │ │ │ │ ├── baremetalplatformstatus.go │ │ │ │ ├── basicauthidentityprovider.go │ │ │ │ ├── build.go │ │ │ │ ├── builddefaults.go │ │ │ │ ├── buildoverrides.go │ │ │ │ ├── buildspec.go │ │ │ │ ├── cloudcontrollermanagerstatus.go │ │ │ │ ├── cloudloadbalancerconfig.go │ │ │ │ ├── cloudloadbalancerips.go │ │ │ │ ├── clustercondition.go │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ ├── clusterimagepolicyspec.go │ │ │ │ ├── clusterimagepolicystatus.go │ │ │ │ ├── clusternetworkentry.go │ │ │ │ ├── clusteroperator.go │ │ │ │ ├── clusteroperatorstatus.go │ │ │ │ ├── clusteroperatorstatuscondition.go │ │ │ │ ├── clusterversion.go │ │ │ │ ├── clusterversioncapabilitiesspec.go │ │ │ │ ├── clusterversioncapabilitiesstatus.go │ │ │ │ ├── clusterversionspec.go │ │ │ │ ├── clusterversionstatus.go │ │ │ │ ├── componentoverride.go │ │ │ │ ├── componentroutespec.go │ │ │ │ ├── componentroutestatus.go │ │ │ │ ├── conditionalupdate.go │ │ │ │ ├── conditionalupdaterisk.go │ │ │ │ ├── configmapfilereference.go │ │ │ │ ├── configmapnamereference.go │ │ │ │ ├── console.go │ │ │ │ ├── consoleauthentication.go │ │ │ │ ├── consolespec.go │ │ │ │ ├── consolestatus.go │ │ │ │ ├── custom.go │ │ │ │ ├── customfeaturegates.go │ │ │ │ ├── customtlsprofile.go │ │ │ │ ├── deprecatedwebhooktokenauthenticator.go │ │ │ │ ├── dns.go │ │ │ │ ├── dnsplatformspec.go │ │ │ │ ├── dnsspec.go │ │ │ │ ├── dnszone.go │ │ │ │ ├── equinixmetalplatformstatus.go │ │ │ │ ├── externalipconfig.go │ │ │ │ ├── externalippolicy.go │ │ │ │ ├── externalplatformspec.go │ │ │ │ ├── externalplatformstatus.go │ │ │ │ ├── extramapping.go │ │ │ │ ├── featuregate.go │ │ │ │ ├── featuregateattributes.go │ │ │ │ ├── featuregatedetails.go │ │ │ │ ├── featuregateselection.go │ │ │ │ ├── featuregatespec.go │ │ │ │ ├── featuregatestatus.go │ │ │ │ ├── fulciocawithrekor.go │ │ │ │ ├── gatherconfig.go │ │ │ │ ├── gathererconfig.go │ │ │ │ ├── gatherers.go │ │ │ │ ├── gcpplatformstatus.go │ │ │ │ ├── gcpresourcelabel.go │ │ │ │ ├── gcpresourcetag.go │ │ │ │ ├── gcpserviceendpoint.go │ │ │ │ ├── githubidentityprovider.go │ │ │ │ ├── gitlabidentityprovider.go │ │ │ │ ├── googleidentityprovider.go │ │ │ │ ├── htpasswdidentityprovider.go │ │ │ │ ├── hubsource.go │ │ │ │ ├── hubsourcestatus.go │ │ │ │ ├── ibmcloudplatformspec.go │ │ │ │ ├── ibmcloudplatformstatus.go │ │ │ │ ├── ibmcloudserviceendpoint.go │ │ │ │ ├── identityprovider.go │ │ │ │ ├── identityproviderconfig.go │ │ │ │ ├── image.go │ │ │ │ ├── imagecontentpolicy.go │ │ │ │ ├── imagecontentpolicyspec.go │ │ │ │ ├── imagedigestmirrors.go │ │ │ │ ├── imagedigestmirrorset.go │ │ │ │ ├── imagedigestmirrorsetspec.go │ │ │ │ ├── imagelabel.go │ │ │ │ ├── imagepolicy.go │ │ │ │ ├── imagepolicyspec.go │ │ │ │ ├── imagepolicystatus.go │ │ │ │ ├── imagespec.go │ │ │ │ ├── imagestatus.go │ │ │ │ ├── imagetagmirrors.go │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ ├── imagetagmirrorsetspec.go │ │ │ │ ├── infrastructure.go │ │ │ │ ├── infrastructurespec.go │ │ │ │ ├── infrastructurestatus.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressplatformspec.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── insightsdatagather.go │ │ │ │ ├── insightsdatagatherspec.go │ │ │ │ ├── keystoneidentityprovider.go │ │ │ │ ├── kmsconfig.go │ │ │ │ ├── kubevirtplatformstatus.go │ │ │ │ ├── ldapattributemapping.go │ │ │ │ ├── ldapidentityprovider.go │ │ │ │ ├── loadbalancer.go │ │ │ │ ├── maxagepolicy.go │ │ │ │ ├── mtumigration.go │ │ │ │ ├── mtumigrationvalues.go │ │ │ │ ├── network.go │ │ │ │ ├── networkdiagnostics.go │ │ │ │ ├── networkdiagnosticssourceplacement.go │ │ │ │ ├── networkdiagnosticstargetplacement.go │ │ │ │ ├── networkmigration.go │ │ │ │ ├── networkspec.go │ │ │ │ ├── networkstatus.go │ │ │ │ ├── node.go │ │ │ │ ├── nodespec.go │ │ │ │ ├── nodestatus.go │ │ │ │ ├── nutanixfailuredomain.go │ │ │ │ ├── nutanixplatformloadbalancer.go │ │ │ │ ├── nutanixplatformspec.go │ │ │ │ ├── nutanixplatformstatus.go │ │ │ │ ├── nutanixprismelementendpoint.go │ │ │ │ ├── nutanixprismendpoint.go │ │ │ │ ├── nutanixresourceidentifier.go │ │ │ │ ├── oauth.go │ │ │ │ ├── oauthremoteconnectioninfo.go │ │ │ │ ├── oauthspec.go │ │ │ │ ├── oauthtemplates.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── oidcclientconfig.go │ │ │ │ ├── oidcclientreference.go │ │ │ │ ├── oidcclientstatus.go │ │ │ │ ├── oidcprovider.go │ │ │ │ ├── openidclaims.go │ │ │ │ ├── openididentityprovider.go │ │ │ │ ├── openstackplatformloadbalancer.go │ │ │ │ ├── openstackplatformspec.go │ │ │ │ ├── openstackplatformstatus.go │ │ │ │ ├── operandversion.go │ │ │ │ ├── operatorhub.go │ │ │ │ ├── operatorhubspec.go │ │ │ │ ├── operatorhubstatus.go │ │ │ │ ├── ovirtplatformloadbalancer.go │ │ │ │ ├── ovirtplatformstatus.go │ │ │ │ ├── persistentvolumeclaimreference.go │ │ │ │ ├── persistentvolumeconfig.go │ │ │ │ ├── pki.go │ │ │ │ ├── pkicertificatesubject.go │ │ │ │ ├── platformspec.go │ │ │ │ ├── platformstatus.go │ │ │ │ ├── policy.go │ │ │ │ ├── policyfulciosubject.go │ │ │ │ ├── policyidentity.go │ │ │ │ ├── policymatchexactrepository.go │ │ │ │ ├── policymatchremapidentity.go │ │ │ │ ├── policyrootoftrust.go │ │ │ │ ├── powervsplatformspec.go │ │ │ │ ├── powervsplatformstatus.go │ │ │ │ ├── powervsserviceendpoint.go │ │ │ │ ├── prefixedclaimmapping.go │ │ │ │ ├── profilecustomizations.go │ │ │ │ ├── project.go │ │ │ │ ├── projectspec.go │ │ │ │ ├── promqlclustercondition.go │ │ │ │ ├── proxy.go │ │ │ │ ├── proxyspec.go │ │ │ │ ├── proxystatus.go │ │ │ │ ├── publickey.go │ │ │ │ ├── registrylocation.go │ │ │ │ ├── registrysources.go │ │ │ │ ├── release.go │ │ │ │ ├── repositorydigestmirrors.go │ │ │ │ ├── requestheaderidentityprovider.go │ │ │ │ ├── requiredhstspolicy.go │ │ │ │ ├── scheduler.go │ │ │ │ ├── schedulerspec.go │ │ │ │ ├── secretnamereference.go │ │ │ │ ├── signaturestore.go │ │ │ │ ├── storage.go │ │ │ │ ├── templatereference.go │ │ │ │ ├── tlsprofilespec.go │ │ │ │ ├── tlssecurityprofile.go │ │ │ │ ├── tokenclaimmapping.go │ │ │ │ ├── tokenclaimmappings.go │ │ │ │ ├── tokenclaimorexpressionmapping.go │ │ │ │ ├── tokenclaimvalidationrule.go │ │ │ │ ├── tokenconfig.go │ │ │ │ ├── tokenissuer.go │ │ │ │ ├── tokenrequiredclaim.go │ │ │ │ ├── update.go │ │ │ │ ├── updatehistory.go │ │ │ │ ├── usernameclaimmapping.go │ │ │ │ ├── usernameprefix.go │ │ │ │ ├── vspherefailuredomainhostgroup.go │ │ │ │ ├── vspherefailuredomainregionaffinity.go │ │ │ │ ├── vspherefailuredomainzoneaffinity.go │ │ │ │ ├── vsphereplatformfailuredomainspec.go │ │ │ │ ├── vsphereplatformloadbalancer.go │ │ │ │ ├── vsphereplatformnodenetworking.go │ │ │ │ ├── vsphereplatformnodenetworkingspec.go │ │ │ │ ├── vsphereplatformspec.go │ │ │ │ ├── vsphereplatformstatus.go │ │ │ │ ├── vsphereplatformtopology.go │ │ │ │ ├── vsphereplatformvcenterspec.go │ │ │ │ └── webhooktokenauthenticator.go │ │ │ ├── v1alpha1 │ │ │ │ ├── alertmanagerconfig.go │ │ │ │ ├── alertmanagercustomconfig.go │ │ │ │ ├── audit.go │ │ │ │ ├── backup.go │ │ │ │ ├── backupspec.go │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ ├── clusterimagepolicyspec.go │ │ │ │ ├── clusterimagepolicystatus.go │ │ │ │ ├── clustermonitoring.go │ │ │ │ ├── clustermonitoringspec.go │ │ │ │ ├── containerresource.go │ │ │ │ ├── etcdbackupspec.go │ │ │ │ ├── fulciocawithrekor.go │ │ │ │ ├── gatherconfig.go │ │ │ │ ├── imagepolicy.go │ │ │ │ ├── imagepolicyspec.go │ │ │ │ ├── imagepolicystatus.go │ │ │ │ ├── insightsdatagather.go │ │ │ │ ├── insightsdatagatherspec.go │ │ │ │ ├── metricsserverconfig.go │ │ │ │ ├── persistentvolumeclaimreference.go │ │ │ │ ├── persistentvolumeconfig.go │ │ │ │ ├── pki.go │ │ │ │ ├── pkicertificatesubject.go │ │ │ │ ├── policy.go │ │ │ │ ├── policyfulciosubject.go │ │ │ │ ├── policyidentity.go │ │ │ │ ├── policymatchexactrepository.go │ │ │ │ ├── policymatchremapidentity.go │ │ │ │ ├── policyrootoftrust.go │ │ │ │ ├── publickey.go │ │ │ │ ├── retentionnumberconfig.go │ │ │ │ ├── retentionpolicy.go │ │ │ │ ├── retentionsizeconfig.go │ │ │ │ ├── storage.go │ │ │ │ └── userdefinedmonitoring.go │ │ │ └── v1alpha2 │ │ │ │ ├── custom.go │ │ │ │ ├── gatherconfig.go │ │ │ │ ├── gathererconfig.go │ │ │ │ ├── gatherers.go │ │ │ │ ├── insightsdatagather.go │ │ │ │ ├── insightsdatagatherspec.go │ │ │ │ ├── persistentvolumeclaimreference.go │ │ │ │ ├── persistentvolumeconfig.go │ │ │ │ └── storage.go │ │ ├── internal │ │ │ └── internal.go │ │ └── utils.go │ │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── config │ │ │ ├── v1 │ │ │ ├── apiserver.go │ │ │ ├── authentication.go │ │ │ ├── build.go │ │ │ ├── clusterimagepolicy.go │ │ │ ├── clusteroperator.go │ │ │ ├── clusterversion.go │ │ │ ├── config_client.go │ │ │ ├── console.go │ │ │ ├── dns.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apiserver.go │ │ │ │ ├── fake_authentication.go │ │ │ │ ├── fake_build.go │ │ │ │ ├── fake_clusterimagepolicy.go │ │ │ │ ├── fake_clusteroperator.go │ │ │ │ ├── fake_clusterversion.go │ │ │ │ ├── fake_config_client.go │ │ │ │ ├── fake_console.go │ │ │ │ ├── fake_dns.go │ │ │ │ ├── fake_featuregate.go │ │ │ │ ├── fake_image.go │ │ │ │ ├── fake_imagecontentpolicy.go │ │ │ │ ├── fake_imagedigestmirrorset.go │ │ │ │ ├── fake_imagepolicy.go │ │ │ │ ├── fake_imagetagmirrorset.go │ │ │ │ ├── fake_infrastructure.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_insightsdatagather.go │ │ │ │ ├── fake_network.go │ │ │ │ ├── fake_node.go │ │ │ │ ├── fake_oauth.go │ │ │ │ ├── fake_operatorhub.go │ │ │ │ ├── fake_project.go │ │ │ │ ├── fake_proxy.go │ │ │ │ └── fake_scheduler.go │ │ │ ├── featuregate.go │ │ │ ├── generated_expansion.go │ │ │ ├── image.go │ │ │ ├── imagecontentpolicy.go │ │ │ ├── imagedigestmirrorset.go │ │ │ ├── imagepolicy.go │ │ │ ├── imagetagmirrorset.go │ │ │ ├── infrastructure.go │ │ │ ├── ingress.go │ │ │ ├── insightsdatagather.go │ │ │ ├── network.go │ │ │ ├── node.go │ │ │ ├── oauth.go │ │ │ ├── operatorhub.go │ │ │ ├── project.go │ │ │ ├── proxy.go │ │ │ └── scheduler.go │ │ │ ├── v1alpha1 │ │ │ ├── backup.go │ │ │ ├── clusterimagepolicy.go │ │ │ ├── clustermonitoring.go │ │ │ ├── config_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_backup.go │ │ │ │ ├── fake_clusterimagepolicy.go │ │ │ │ ├── fake_clustermonitoring.go │ │ │ │ ├── fake_config_client.go │ │ │ │ ├── fake_imagepolicy.go │ │ │ │ └── fake_insightsdatagather.go │ │ │ ├── generated_expansion.go │ │ │ ├── imagepolicy.go │ │ │ └── insightsdatagather.go │ │ │ └── v1alpha2 │ │ │ ├── config_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_config_client.go │ │ │ └── fake_insightsdatagather.go │ │ │ ├── generated_expansion.go │ │ │ └── insightsdatagather.go │ │ ├── informers │ │ └── externalversions │ │ │ ├── config │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── apiserver.go │ │ │ │ ├── authentication.go │ │ │ │ ├── build.go │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ ├── clusteroperator.go │ │ │ │ ├── clusterversion.go │ │ │ │ ├── console.go │ │ │ │ ├── dns.go │ │ │ │ ├── featuregate.go │ │ │ │ ├── image.go │ │ │ │ ├── imagecontentpolicy.go │ │ │ │ ├── imagedigestmirrorset.go │ │ │ │ ├── imagepolicy.go │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ ├── infrastructure.go │ │ │ │ ├── ingress.go │ │ │ │ ├── insightsdatagather.go │ │ │ │ ├── interface.go │ │ │ │ ├── network.go │ │ │ │ ├── node.go │ │ │ │ ├── oauth.go │ │ │ │ ├── operatorhub.go │ │ │ │ ├── project.go │ │ │ │ ├── proxy.go │ │ │ │ └── scheduler.go │ │ │ ├── v1alpha1 │ │ │ │ ├── backup.go │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ ├── clustermonitoring.go │ │ │ │ ├── imagepolicy.go │ │ │ │ ├── insightsdatagather.go │ │ │ │ └── interface.go │ │ │ └── v1alpha2 │ │ │ │ ├── insightsdatagather.go │ │ │ │ └── interface.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ │ └── listers │ │ └── config │ │ ├── v1 │ │ ├── apiserver.go │ │ ├── authentication.go │ │ ├── build.go │ │ ├── clusterimagepolicy.go │ │ ├── clusteroperator.go │ │ ├── clusterversion.go │ │ ├── console.go │ │ ├── dns.go │ │ ├── expansion_generated.go │ │ ├── featuregate.go │ │ ├── image.go │ │ ├── imagecontentpolicy.go │ │ ├── imagedigestmirrorset.go │ │ ├── imagepolicy.go │ │ ├── imagetagmirrorset.go │ │ ├── infrastructure.go │ │ ├── ingress.go │ │ ├── insightsdatagather.go │ │ ├── network.go │ │ ├── node.go │ │ ├── oauth.go │ │ ├── operatorhub.go │ │ ├── project.go │ │ ├── proxy.go │ │ └── scheduler.go │ │ ├── v1alpha1 │ │ ├── backup.go │ │ ├── clusterimagepolicy.go │ │ ├── clustermonitoring.go │ │ ├── expansion_generated.go │ │ ├── imagepolicy.go │ │ └── insightsdatagather.go │ │ └── v1alpha2 │ │ ├── expansion_generated.go │ │ └── insightsdatagather.go ├── operator-framework │ ├── api │ │ ├── LICENSE │ │ ├── crds │ │ │ ├── defs.go │ │ │ ├── doc.go │ │ │ ├── operators.coreos.com_catalogsources.yaml │ │ │ ├── operators.coreos.com_clusterserviceversions.yaml │ │ │ ├── operators.coreos.com_installplans.yaml │ │ │ ├── operators.coreos.com_olmconfigs.yaml │ │ │ ├── operators.coreos.com_operatorconditions.yaml │ │ │ ├── operators.coreos.com_operatorgroups.yaml │ │ │ ├── operators.coreos.com_operators.yaml │ │ │ ├── operators.coreos.com_subscriptions.yaml │ │ │ └── zz_defs.go │ │ └── pkg │ │ │ ├── constraints │ │ │ ├── cel.go │ │ │ └── constraint.go │ │ │ ├── encoding │ │ │ └── encoding.go │ │ │ ├── lib │ │ │ └── version │ │ │ │ └── version.go │ │ │ ├── manifests │ │ │ ├── bundle.go │ │ │ ├── bundleloader.go │ │ │ ├── bundlemeta.go │ │ │ ├── directory.go │ │ │ ├── packagemanifest.go │ │ │ └── packagemanifestloader.go │ │ │ ├── operators │ │ │ ├── doc.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── reference │ │ │ │ └── reference.go │ │ │ ├── register.go │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── groupversion_info.go │ │ │ │ ├── olmconfig_types.go │ │ │ │ ├── operator_types.go │ │ │ │ ├── operatorcondition_types.go │ │ │ │ ├── operatorgroup_types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── catalogsource_types.go │ │ │ │ ├── clusterserviceversion.go │ │ │ │ ├── clusterserviceversion_types.go │ │ │ │ ├── doc.go │ │ │ │ ├── installplan_types.go │ │ │ │ ├── register.go │ │ │ │ ├── subscription_types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha2 │ │ │ │ ├── doc.go │ │ │ │ ├── groupversion_info.go │ │ │ │ ├── operatorgroup_types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v2 │ │ │ │ ├── doc.go │ │ │ │ ├── groupversion_info.go │ │ │ │ ├── operatorcondition_types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── validation │ │ │ ├── doc.go │ │ │ ├── errors │ │ │ └── error.go │ │ │ ├── interfaces │ │ │ └── validator.go │ │ │ ├── internal │ │ │ ├── annotations.go │ │ │ ├── bundle.go │ │ │ ├── community.go │ │ │ ├── crd.go │ │ │ ├── csv.go │ │ │ ├── good_practices.go │ │ │ ├── multiarch.go │ │ │ ├── object.go │ │ │ ├── operatorgroup.go │ │ │ ├── operatorhub.go │ │ │ ├── operatorhubv2.go │ │ │ ├── package_manifest.go │ │ │ ├── removed_apis.go │ │ │ ├── standardcapabilities.go │ │ │ ├── standardcategories.go │ │ │ ├── test_suite.go │ │ │ └── typecheck.go │ │ │ └── validation.go │ └── operator-registry │ │ ├── LICENSE │ │ ├── alpha │ │ ├── model │ │ │ ├── error.go │ │ │ └── model.go │ │ └── property │ │ │ ├── errors.go │ │ │ ├── property.go │ │ │ └── scheme.go │ │ └── pkg │ │ ├── api │ │ ├── api_to_model.go │ │ ├── model_to_api.go │ │ ├── registry.pb.go │ │ ├── registry.proto │ │ └── registry_grpc.pb.go │ │ ├── client │ │ ├── client.go │ │ ├── errors.go │ │ └── kubeclient.go │ │ ├── configmap │ │ ├── configmap.go │ │ └── configmap_writer.go │ │ ├── containertools │ │ ├── containertool.go │ │ ├── dockerfilegenerator.go │ │ ├── factory.go │ │ ├── factory_docker.go │ │ ├── factory_podman.go │ │ ├── factory_stub.go │ │ ├── getimagedata_options.go │ │ ├── labelreader.go │ │ ├── option_build.go │ │ └── runner.go │ │ ├── image │ │ ├── containerdregistry │ │ │ ├── options.go │ │ │ ├── registry.go │ │ │ ├── resolver.go │ │ │ └── store.go │ │ ├── execregistry │ │ │ └── registry.go │ │ ├── mock.go │ │ ├── reference.go │ │ └── registry.go │ │ ├── lib │ │ ├── bundle │ │ │ ├── build.go │ │ │ ├── chartutil.go │ │ │ ├── errors.go │ │ │ ├── exporter.go │ │ │ ├── generate.go │ │ │ ├── interfaces.go │ │ │ ├── interpreter.go │ │ │ ├── supported_resources.go │ │ │ └── validate.go │ │ ├── encoding │ │ │ └── encoding.go │ │ ├── semver │ │ │ └── semver.go │ │ └── validation │ │ │ ├── bundle.go │ │ │ └── validation.go │ │ ├── prettyunmarshaler │ │ └── prettyunmarshaler.go │ │ ├── registry │ │ ├── bundle.go │ │ ├── bundlegraphloader.go │ │ ├── channelupdateoptions.go │ │ ├── conversion.go │ │ ├── csv.go │ │ ├── decode.go │ │ ├── directoryGraphLoader.go │ │ ├── empty.go │ │ ├── graph.go │ │ ├── imageinput.go │ │ ├── interface.go │ │ ├── parse.go │ │ ├── populator.go │ │ ├── registry_to_model.go │ │ └── types.go │ │ ├── server │ │ ├── health.go │ │ └── server.go │ │ └── sqlite │ │ ├── configmap.go │ │ ├── conversion.go │ │ ├── db.go │ │ ├── db_options.go │ │ ├── deprecate.go │ │ ├── deprecationmessage.go │ │ ├── directory.go │ │ ├── graphloader.go │ │ ├── load.go │ │ ├── loadprocs.go │ │ ├── migrations │ │ ├── 000_init.go │ │ ├── 001_related_images.go │ │ ├── 002_bundle_path.go │ │ ├── 003_required_apis.go │ │ ├── 004_cascade_delete.go │ │ ├── 005_version_skiprange.go │ │ ├── 006_associate_apis_with_bundle.go │ │ ├── 007_replaces_skips.go │ │ ├── 008_dependencies.go │ │ ├── 009_properties.go │ │ ├── 010_set_bundlepath_pkg_property.go │ │ ├── 011_susbtitutes_for.go │ │ ├── 012_deprecated.go │ │ ├── 013_rm_truncated_deprecations.go │ │ └── migrations.go │ │ ├── migrator.go │ │ ├── query.go │ │ ├── remove.go │ │ └── stranded.go ├── otiai10 │ ├── copy │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── copy.go │ │ ├── copy_namedpipes.go │ │ ├── copy_namedpipes_x.go │ │ ├── options.go │ │ ├── permission_control.go │ │ ├── preserve_ltimes.go │ │ ├── preserve_ltimes_x.go │ │ ├── preserve_owner.go │ │ ├── preserve_owner_x.go │ │ ├── preserve_times.go │ │ ├── stat_times.go │ │ ├── stat_times_darwin.go │ │ ├── stat_times_freebsd.go │ │ ├── stat_times_js.go │ │ ├── stat_times_windows.go │ │ ├── stat_times_x.go │ │ └── symlink_test_x.go │ └── mint │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── because.go │ │ ├── comparer.go │ │ ├── exit.go │ │ ├── exit_freebsd.go │ │ ├── log.go │ │ ├── mint.go │ │ ├── mocks.go │ │ ├── mquery │ │ ├── README.md │ │ └── mquery.go │ │ ├── result.go │ │ └── testee.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── internal │ │ │ └── github.com │ │ │ │ └── golang │ │ │ │ └── gddo │ │ │ │ ├── LICENSE │ │ │ │ └── httputil │ │ │ │ ├── header │ │ │ │ └── header.go │ │ │ │ └── negotiate.go │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── collectorfunc.go │ │ │ ├── collectors │ │ │ ├── collectors.go │ │ │ ├── dbstats_collector.go │ │ │ ├── expvar_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ └── process_collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_darwin.go │ │ │ ├── process_collector_mem_cgo_darwin.c │ │ │ ├── process_collector_mem_cgo_darwin.go │ │ │ ├── process_collector_mem_nocgo_darwin.go │ │ │ ├── process_collector_not_supported.go │ │ │ ├── process_collector_procfsenabled.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ ├── internal │ │ │ │ └── compression.go │ │ │ └── option.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── testutil │ │ │ ├── lint.go │ │ │ ├── promlint │ │ │ │ ├── problem.go │ │ │ │ ├── promlint.go │ │ │ │ ├── validation.go │ │ │ │ └── validations │ │ │ │ │ ├── counter_validations.go │ │ │ │ │ ├── duplicate_validations.go │ │ │ │ │ ├── generic_name_validations.go │ │ │ │ │ ├── help_validations.go │ │ │ │ │ ├── histogram_validations.go │ │ │ │ │ └── units.go │ │ │ └── testutil.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ ├── vnext.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── labelset_string.go │ │ │ ├── metadata.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ ├── value.go │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ └── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_statfs_notype.go │ │ ├── fs_statfs_type.go │ │ ├── fscache.go │ │ ├── internal │ │ ├── fs │ │ │ └── fs.go │ │ └── util │ │ │ ├── parse.go │ │ │ ├── readfile.go │ │ │ ├── sysreadfile.go │ │ │ ├── sysreadfile_compat.go │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_dev_snmp6.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_route.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_tls_stat.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_wireless.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── buffer_pool.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── hooks │ │ └── test │ │ │ └── test.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── spf13 │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── active_help.go │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completionsV2.go │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── completions.go │ │ ├── fish_completions.go │ │ ├── flag_groups.go │ │ ├── powershell_completions.go │ │ ├── shell_completions.go │ │ └── zsh_completions.go │ └── pflag │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_func.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── errors.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── func.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── ipnet_slice.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── text.go │ │ ├── time.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go ├── stoewer │ └── go-strcase │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── camel.go │ │ ├── doc.go │ │ ├── helper.go │ │ ├── kebab.go │ │ └── snake.go ├── stretchr │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── http_assertions.go │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go └── x448 │ └── float16 │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ └── float16.go ├── go.etcd.io ├── bbolt │ ├── .gitignore │ ├── .go-version │ ├── LICENSE │ ├── Makefile │ ├── OWNERS │ ├── README.md │ ├── bolt_aix.go │ ├── bolt_android.go │ ├── bolt_linux.go │ ├── bolt_openbsd.go │ ├── bolt_solaris.go │ ├── bolt_unix.go │ ├── bolt_windows.go │ ├── boltsync_unix.go │ ├── bucket.go │ ├── compact.go │ ├── cursor.go │ ├── db.go │ ├── doc.go │ ├── errors.go │ ├── errors │ │ └── errors.go │ ├── internal │ │ ├── common │ │ │ ├── bolt_386.go │ │ │ ├── bolt_amd64.go │ │ │ ├── bolt_arm.go │ │ │ ├── bolt_arm64.go │ │ │ ├── bolt_loong64.go │ │ │ ├── bolt_mips64x.go │ │ │ ├── bolt_mipsx.go │ │ │ ├── bolt_ppc.go │ │ │ ├── bolt_ppc64.go │ │ │ ├── bolt_ppc64le.go │ │ │ ├── bolt_riscv64.go │ │ │ ├── bolt_s390x.go │ │ │ ├── bucket.go │ │ │ ├── inode.go │ │ │ ├── meta.go │ │ │ ├── page.go │ │ │ ├── types.go │ │ │ ├── unsafe.go │ │ │ ├── utils.go │ │ │ └── verify.go │ │ └── freelist │ │ │ ├── array.go │ │ │ ├── freelist.go │ │ │ ├── hashmap.go │ │ │ └── shared.go │ ├── logger.go │ ├── mlock_unix.go │ ├── mlock_windows.go │ ├── node.go │ ├── tx.go │ └── tx_check.go └── etcd │ ├── api │ └── v3 │ │ ├── LICENSE │ │ ├── authpb │ │ ├── auth.pb.go │ │ └── auth.proto │ │ ├── etcdserverpb │ │ ├── etcdserver.pb.go │ │ ├── etcdserver.proto │ │ ├── raft_internal.pb.go │ │ ├── raft_internal.proto │ │ ├── raft_internal_stringer.go │ │ ├── rpc.pb.go │ │ └── rpc.proto │ │ ├── membershippb │ │ ├── membership.pb.go │ │ └── membership.proto │ │ ├── mvccpb │ │ ├── kv.pb.go │ │ └── kv.proto │ │ ├── v3rpc │ │ └── rpctypes │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── md.go │ │ │ └── metadatafields.go │ │ ├── version │ │ └── version.go │ │ └── versionpb │ │ ├── version.pb.go │ │ └── version.proto │ └── client │ ├── pkg │ └── v3 │ │ ├── LICENSE │ │ ├── fileutil │ │ ├── dir_unix.go │ │ ├── dir_windows.go │ │ ├── doc.go │ │ ├── filereader.go │ │ ├── fileutil.go │ │ ├── lock.go │ │ ├── lock_flock.go │ │ ├── lock_linux.go │ │ ├── lock_plan9.go │ │ ├── lock_solaris.go │ │ ├── lock_unix.go │ │ ├── lock_windows.go │ │ ├── preallocate.go │ │ ├── preallocate_darwin.go │ │ ├── preallocate_unix.go │ │ ├── preallocate_unsupported.go │ │ ├── purge.go │ │ ├── read_dir.go │ │ ├── sync.go │ │ ├── sync_darwin.go │ │ └── sync_linux.go │ │ ├── logutil │ │ ├── doc.go │ │ ├── log_format.go │ │ ├── log_level.go │ │ ├── zap.go │ │ └── zap_journal.go │ │ ├── systemd │ │ ├── doc.go │ │ └── journal.go │ │ ├── tlsutil │ │ ├── cipher_suites.go │ │ ├── doc.go │ │ ├── tlsutil.go │ │ └── versions.go │ │ ├── transport │ │ ├── doc.go │ │ ├── keepalive_listener.go │ │ ├── keepalive_listener_openbsd.go │ │ ├── keepalive_listener_unix.go │ │ ├── limit_listen.go │ │ ├── listener.go │ │ ├── listener_opts.go │ │ ├── listener_tls.go │ │ ├── sockopt.go │ │ ├── sockopt_solaris.go │ │ ├── sockopt_unix.go │ │ ├── sockopt_wasm.go │ │ ├── sockopt_windows.go │ │ ├── timeout_conn.go │ │ ├── timeout_dialer.go │ │ ├── timeout_listener.go │ │ ├── timeout_transport.go │ │ ├── tls.go │ │ ├── transport.go │ │ └── unix_listener.go │ │ ├── types │ │ ├── doc.go │ │ ├── id.go │ │ ├── set.go │ │ ├── slice.go │ │ ├── urls.go │ │ └── urlsmap.go │ │ └── verify │ │ └── verify.go │ └── v3 │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── auth.go │ ├── client.go │ ├── cluster.go │ ├── compact_op.go │ ├── compare.go │ ├── config.go │ ├── credentials │ └── credentials.go │ ├── ctx.go │ ├── doc.go │ ├── internal │ ├── endpoint │ │ └── endpoint.go │ └── resolver │ │ └── resolver.go │ ├── kubernetes │ ├── client.go │ └── interface.go │ ├── kv.go │ ├── lease.go │ ├── logger.go │ ├── maintenance.go │ ├── op.go │ ├── options.go │ ├── retry.go │ ├── retry_interceptor.go │ ├── sort.go │ ├── txn.go │ ├── utils.go │ └── watch.go ├── go.opencensus.io ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── internal │ ├── internal.go │ ├── sanitize.go │ └── traceinternals.go ├── opencensus.go └── trace │ ├── basetypes.go │ ├── config.go │ ├── doc.go │ ├── evictedqueue.go │ ├── export.go │ ├── internal │ └── internal.go │ ├── lrumap.go │ ├── sampling.go │ ├── spanbucket.go │ ├── spanstore.go │ ├── status_codes.go │ ├── trace.go │ ├── trace_api.go │ ├── trace_go11.go │ ├── trace_nongo11.go │ └── tracestate │ └── tracestate.go ├── go.opentelemetry.io ├── auto │ └── sdk │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── VERSIONING.md │ │ ├── doc.go │ │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── limit.go │ │ ├── span.go │ │ ├── tracer.go │ │ └── tracer_provider.go ├── contrib │ └── instrumentation │ │ ├── google.golang.org │ │ └── grpc │ │ │ └── otelgrpc │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── interceptor.go │ │ │ ├── interceptorinfo.go │ │ │ ├── internal │ │ │ └── parse.go │ │ │ ├── metadata_supplier.go │ │ │ ├── semconv.go │ │ │ ├── stats_handler.go │ │ │ └── version.go │ │ └── net │ │ └── http │ │ └── otelhttp │ │ ├── LICENSE │ │ ├── client.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ ├── request │ │ │ ├── body_wrapper.go │ │ │ ├── gen.go │ │ │ └── resp_writer_wrapper.go │ │ ├── semconv │ │ │ ├── env.go │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ ├── util.go │ │ │ └── v1.20.0.go │ │ └── semconvutil │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ └── netconv.go │ │ ├── labeler.go │ │ ├── start_time_context.go │ │ ├── transport.go │ │ └── version.go ├── otel │ ├── .clomonitor.yml │ ├── .codespellignore │ ├── .codespellrc │ ├── .gitattributes │ ├── .gitignore │ ├── .golangci.yml │ ├── .lycheeignore │ ├── .markdownlint.yaml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── VERSIONING.md │ ├── attribute │ │ ├── README.md │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── filter.go │ │ ├── internal │ │ │ └── attribute.go │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.go │ │ ├── rawhelpers.go │ │ ├── set.go │ │ ├── type_string.go │ │ └── value.go │ ├── baggage │ │ ├── README.md │ │ ├── baggage.go │ │ ├── context.go │ │ └── doc.go │ ├── codes │ │ ├── README.md │ │ ├── codes.go │ │ └── doc.go │ ├── dependencies.Dockerfile │ ├── doc.go │ ├── error_handler.go │ ├── exporters │ │ └── otlp │ │ │ └── otlptrace │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── clients.go │ │ │ ├── doc.go │ │ │ ├── exporter.go │ │ │ ├── internal │ │ │ └── tracetransform │ │ │ │ ├── attribute.go │ │ │ │ ├── instrumentation.go │ │ │ │ ├── resource.go │ │ │ │ └── span.go │ │ │ ├── otlptracegrpc │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── exporter.go │ │ │ ├── internal │ │ │ │ ├── envconfig │ │ │ │ │ └── envconfig.go │ │ │ │ ├── gen.go │ │ │ │ ├── otlpconfig │ │ │ │ │ ├── envconfig.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ └── tls.go │ │ │ │ ├── partialsuccess.go │ │ │ │ └── retry │ │ │ │ │ └── retry.go │ │ │ └── options.go │ │ │ └── version.go │ ├── handler.go │ ├── internal │ │ ├── baggage │ │ │ ├── baggage.go │ │ │ └── context.go │ │ └── global │ │ │ ├── handler.go │ │ │ ├── instruments.go │ │ │ ├── internal_logging.go │ │ │ ├── meter.go │ │ │ ├── propagator.go │ │ │ ├── state.go │ │ │ └── trace.go │ ├── internal_logging.go │ ├── metric.go │ ├── metric │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asyncfloat64.go │ │ ├── asyncint64.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── instrument.go │ │ ├── meter.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── syncfloat64.go │ │ └── syncint64.go │ ├── propagation.go │ ├── propagation │ │ ├── README.md │ │ ├── baggage.go │ │ ├── doc.go │ │ ├── propagation.go │ │ └── trace_context.go │ ├── renovate.json │ ├── requirements.txt │ ├── sdk │ │ ├── LICENSE │ │ ├── README.md │ │ ├── instrumentation │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── library.go │ │ │ └── scope.go │ │ ├── internal │ │ │ ├── env │ │ │ │ └── env.go │ │ │ └── x │ │ │ │ ├── README.md │ │ │ │ └── x.go │ │ ├── resource │ │ │ ├── README.md │ │ │ ├── auto.go │ │ │ ├── builtin.go │ │ │ ├── config.go │ │ │ ├── container.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── host_id.go │ │ │ ├── host_id_bsd.go │ │ │ ├── host_id_darwin.go │ │ │ ├── host_id_exec.go │ │ │ ├── host_id_linux.go │ │ │ ├── host_id_readfile.go │ │ │ ├── host_id_unsupported.go │ │ │ ├── host_id_windows.go │ │ │ ├── os.go │ │ │ ├── os_release_darwin.go │ │ │ ├── os_release_unix.go │ │ │ ├── os_unix.go │ │ │ ├── os_unsupported.go │ │ │ ├── os_windows.go │ │ │ ├── process.go │ │ │ └── resource.go │ │ ├── trace │ │ │ ├── README.md │ │ │ ├── batch_span_processor.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── evictedqueue.go │ │ │ ├── id_generator.go │ │ │ ├── link.go │ │ │ ├── provider.go │ │ │ ├── sampler_env.go │ │ │ ├── sampling.go │ │ │ ├── simple_span_processor.go │ │ │ ├── snapshot.go │ │ │ ├── span.go │ │ │ ├── span_exporter.go │ │ │ ├── span_limits.go │ │ │ ├── span_processor.go │ │ │ ├── tracer.go │ │ │ └── version.go │ │ └── version.go │ ├── semconv │ │ ├── internal │ │ │ └── http.go │ │ ├── v1.12.0 │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.17.0 │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.20.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.21.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.26.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ ├── metric.go │ │ │ └── schema.go │ │ └── v1.34.0 │ │ │ ├── MIGRATION.md │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ └── schema.go │ ├── trace.go │ ├── trace │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.go │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── internal │ │ │ └── telemetry │ │ │ │ ├── attr.go │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── number.go │ │ │ │ ├── resource.go │ │ │ │ ├── scope.go │ │ │ │ ├── span.go │ │ │ │ ├── status.go │ │ │ │ ├── traces.go │ │ │ │ └── value.go │ │ ├── nonrecording.go │ │ ├── noop.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── provider.go │ │ ├── span.go │ │ ├── trace.go │ │ ├── tracer.go │ │ └── tracestate.go │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml └── proto │ └── otlp │ ├── LICENSE │ ├── collector │ └── trace │ │ └── v1 │ │ ├── trace_service.pb.go │ │ ├── trace_service.pb.gw.go │ │ └── trace_service_grpc.pb.go │ ├── common │ └── v1 │ │ └── common.pb.go │ ├── resource │ └── v1 │ │ └── resource.pb.go │ └── trace │ └── v1 │ └── trace.pb.go ├── go.podman.io ├── common │ ├── LICENSE │ └── pkg │ │ ├── auth │ │ ├── auth.go │ │ └── cli.go │ │ ├── capabilities │ │ └── capabilities.go │ │ ├── completion │ │ └── completion.go │ │ └── password │ │ ├── password_supported.go │ │ └── password_windows.go ├── image │ └── v5 │ │ ├── LICENSE │ │ ├── docker │ │ ├── body_reader.go │ │ ├── cache.go │ │ ├── distribution_error.go │ │ ├── docker_client.go │ │ ├── docker_image.go │ │ ├── docker_image_dest.go │ │ ├── docker_image_src.go │ │ ├── docker_transport.go │ │ ├── errors.go │ │ ├── paths_common.go │ │ ├── paths_freebsd.go │ │ ├── policyconfiguration │ │ │ └── naming.go │ │ ├── reference │ │ │ ├── README.md │ │ │ ├── helpers.go │ │ │ ├── normalize.go │ │ │ ├── reference.go │ │ │ ├── regexp-additions.go │ │ │ └── regexp.go │ │ ├── registries_d.go │ │ └── wwwauthenticate.go │ │ ├── internal │ │ ├── blobinfocache │ │ │ ├── blobinfocache.go │ │ │ └── types.go │ │ ├── image │ │ │ ├── docker_list.go │ │ │ ├── docker_schema1.go │ │ │ ├── docker_schema2.go │ │ │ ├── manifest.go │ │ │ ├── memory.go │ │ │ ├── oci.go │ │ │ ├── oci_index.go │ │ │ ├── sourced.go │ │ │ └── unparsed.go │ │ ├── imagedestination │ │ │ ├── impl │ │ │ │ ├── compat.go │ │ │ │ ├── helpers.go │ │ │ │ └── properties.go │ │ │ └── stubs │ │ │ │ ├── original_oci_config.go │ │ │ │ ├── put_blob_partial.go │ │ │ │ ├── signatures.go │ │ │ │ └── stubs.go │ │ ├── imagesource │ │ │ ├── impl │ │ │ │ ├── compat.go │ │ │ │ ├── layer_infos.go │ │ │ │ ├── properties.go │ │ │ │ └── signatures.go │ │ │ ├── stubs │ │ │ │ ├── get_blob_at.go │ │ │ │ └── stubs.go │ │ │ └── wrapper.go │ │ ├── iolimits │ │ │ └── iolimits.go │ │ ├── manifest │ │ │ ├── common.go │ │ │ ├── docker_schema2.go │ │ │ ├── docker_schema2_list.go │ │ │ ├── errors.go │ │ │ ├── list.go │ │ │ ├── manifest.go │ │ │ └── oci_index.go │ │ ├── multierr │ │ │ └── multierr.go │ │ ├── pkg │ │ │ └── platform │ │ │ │ └── platform_matcher.go │ │ ├── private │ │ │ └── private.go │ │ ├── putblobdigest │ │ │ └── put_blob_digest.go │ │ ├── rootless │ │ │ └── rootless.go │ │ ├── set │ │ │ └── set.go │ │ ├── signature │ │ │ ├── signature.go │ │ │ ├── sigstore.go │ │ │ └── simple.go │ │ ├── streamdigest │ │ │ └── stream_digest.go │ │ ├── tmpdir │ │ │ └── tmpdir.go │ │ ├── uploadreader │ │ │ └── upload_reader.go │ │ └── useragent │ │ │ └── useragent.go │ │ ├── manifest │ │ ├── common.go │ │ ├── docker_schema1.go │ │ ├── docker_schema2.go │ │ ├── docker_schema2_list.go │ │ ├── list.go │ │ ├── manifest.go │ │ ├── oci.go │ │ └── oci_index.go │ │ ├── pkg │ │ ├── blobinfocache │ │ │ └── none │ │ │ │ └── none.go │ │ ├── compression │ │ │ ├── internal │ │ │ │ └── types.go │ │ │ └── types │ │ │ │ └── types.go │ │ ├── docker │ │ │ └── config │ │ │ │ └── config.go │ │ ├── strslice │ │ │ ├── README.md │ │ │ └── strslice.go │ │ ├── sysregistriesv2 │ │ │ ├── paths_common.go │ │ │ ├── paths_freebsd.go │ │ │ ├── shortnames.go │ │ │ └── system_registries_v2.go │ │ └── tlsclientconfig │ │ │ └── tlsclientconfig.go │ │ ├── transports │ │ ├── stub.go │ │ └── transports.go │ │ ├── types │ │ └── types.go │ │ └── version │ │ └── version.go └── storage │ ├── AUTHORS │ ├── LICENSE │ ├── NOTICE │ ├── internal │ └── rawfilelock │ │ ├── rawfilelock.go │ │ ├── rawfilelock_unix.go │ │ └── rawfilelock_windows.go │ └── pkg │ ├── fileutils │ ├── exists_freebsd.go │ ├── exists_unix.go │ ├── exists_windows.go │ ├── fileutils.go │ ├── fileutils_darwin.go │ ├── fileutils_solaris.go │ ├── fileutils_unix.go │ ├── fileutils_windows.go │ ├── reflink_linux.go │ └── reflink_unsupported.go │ ├── homedir │ ├── homedir.go │ ├── homedir_unix.go │ └── homedir_windows.go │ ├── idtools │ ├── idtools.go │ ├── idtools_supported.go │ ├── idtools_unix.go │ ├── idtools_unsupported.go │ ├── idtools_windows.go │ ├── parser.go │ ├── usergroupadd_linux.go │ ├── usergroupadd_unsupported.go │ └── utils_unix.go │ ├── ioutils │ ├── buffer.go │ ├── bytespipe.go │ ├── fswriters.go │ ├── fswriters_linux.go │ ├── fswriters_other.go │ ├── readers.go │ ├── temp_unix.go │ ├── temp_windows.go │ ├── writeflusher.go │ └── writers.go │ ├── lockfile │ ├── lastwrite.go │ ├── lockfile.go │ ├── lockfile_unix.go │ └── lockfile_windows.go │ ├── longpath │ └── longpath.go │ ├── mount │ ├── flags.go │ ├── flags_freebsd.go │ ├── flags_linux.go │ ├── flags_unsupported.go │ ├── mount.go │ ├── mounter_freebsd.go │ ├── mounter_linux.go │ ├── mounter_unsupported.go │ ├── mountinfo.go │ ├── mountinfo_linux.go │ ├── sharedsubtree_linux.go │ ├── unmount_unix.go │ └── unmount_unsupported.go │ ├── reexec │ ├── README.md │ ├── command_freebsd.go │ ├── command_linux.go │ ├── command_unix.go │ ├── command_unsupported.go │ ├── command_windows.go │ └── reexec.go │ ├── regexp │ ├── regexp.go │ ├── regexp_dontprecompile.go │ └── regexp_precompile.go │ ├── system │ ├── chmod.go │ ├── chtimes.go │ ├── chtimes_unix.go │ ├── chtimes_windows.go │ ├── errors.go │ ├── exitcode.go │ ├── extattr_freebsd.go │ ├── extattr_unsupported.go │ ├── init.go │ ├── init_windows.go │ ├── lchflags_bsd.go │ ├── lchown.go │ ├── lcow_unix.go │ ├── lcow_windows.go │ ├── lstat_unix.go │ ├── lstat_windows.go │ ├── meminfo.go │ ├── meminfo_freebsd.go │ ├── meminfo_linux.go │ ├── meminfo_solaris.go │ ├── meminfo_unsupported.go │ ├── meminfo_windows.go │ ├── mknod.go │ ├── mknod_freebsd.go │ ├── mknod_windows.go │ ├── path.go │ ├── path_unix.go │ ├── path_windows.go │ ├── process_unix.go │ ├── rm.go │ ├── rm_common.go │ ├── rm_freebsd.go │ ├── stat_common.go │ ├── stat_darwin.go │ ├── stat_freebsd.go │ ├── stat_linux.go │ ├── stat_netbsd.go │ ├── stat_openbsd.go │ ├── stat_solaris.go │ ├── stat_unix.go │ ├── stat_windows.go │ ├── syscall_unix.go │ ├── syscall_windows.go │ ├── umask.go │ ├── umask_windows.go │ ├── utimes_freebsd.go │ ├── utimes_linux.go │ ├── utimes_unsupported.go │ ├── xattrs_darwin.go │ ├── xattrs_freebsd.go │ ├── xattrs_linux.go │ └── xattrs_unsupported.go │ └── unshare │ ├── getenv_linux_cgo.go │ ├── getenv_linux_nocgo.go │ ├── unshare.c │ ├── unshare.go │ ├── unshare_cgo.go │ ├── unshare_darwin.go │ ├── unshare_freebsd.c │ ├── unshare_freebsd.go │ ├── unshare_gccgo.go │ ├── unshare_linux.go │ ├── unshare_unsupported.go │ └── unshare_unsupported_cgo.go ├── go.uber.org ├── mock │ ├── AUTHORS │ ├── LICENSE │ ├── gomock │ │ ├── call.go │ │ ├── callset.go │ │ ├── controller.go │ │ ├── doc.go │ │ ├── matchers.go │ │ └── string.go │ └── mockgen │ │ ├── archive.go │ │ ├── deprecated.go │ │ ├── generic.go │ │ ├── gob.go │ │ ├── mockgen.go │ │ ├── model │ │ ├── model.go │ │ └── model_gotypes.go │ │ ├── package_mode.go │ │ ├── parse.go │ │ └── version.go ├── multierr │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── error.go │ ├── error_post_go120.go │ └── error_pre_go120.go └── zap │ ├── .codecov.yml │ ├── .gitignore │ ├── .golangci.yml │ ├── .readme.tmpl │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── array.go │ ├── buffer │ ├── buffer.go │ └── pool.go │ ├── checklicense.sh │ ├── config.go │ ├── doc.go │ ├── encoder.go │ ├── error.go │ ├── field.go │ ├── flag.go │ ├── glide.yaml │ ├── global.go │ ├── http_handler.go │ ├── internal │ ├── bufferpool │ │ └── bufferpool.go │ ├── color │ │ └── color.go │ ├── exit │ │ └── exit.go │ ├── level_enabler.go │ ├── pool │ │ └── pool.go │ └── stacktrace │ │ └── stack.go │ ├── level.go │ ├── logger.go │ ├── options.go │ ├── sink.go │ ├── sugar.go │ ├── time.go │ ├── writer.go │ ├── zapcore │ ├── buffered_write_syncer.go │ ├── clock.go │ ├── console_encoder.go │ ├── core.go │ ├── doc.go │ ├── encoder.go │ ├── entry.go │ ├── error.go │ ├── field.go │ ├── hook.go │ ├── increase_level.go │ ├── json_encoder.go │ ├── lazy_with.go │ ├── level.go │ ├── level_strings.go │ ├── marshaler.go │ ├── memory_encoder.go │ ├── reflected_encoder.go │ ├── sampler.go │ ├── tee.go │ └── write_syncer.go │ └── zapgrpc │ └── zapgrpc.go ├── go.yaml.in └── yaml │ ├── v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go │ └── v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── cryptobyte │ │ ├── asn1.go │ │ ├── asn1 │ │ │ └── asn1.go │ │ ├── builder.go │ │ └── string.go │ ├── hkdf │ │ └── hkdf.go │ ├── internal │ │ ├── alias │ │ │ ├── alias.go │ │ │ └── alias_purego.go │ │ └── poly1305 │ │ │ ├── mac_noasm.go │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_asm.go │ │ │ ├── sum_generic.go │ │ │ ├── sum_loong64.s │ │ │ ├── sum_ppc64x.s │ │ │ ├── sum_s390x.go │ │ │ └── sum_s390x.s │ ├── nacl │ │ └── secretbox │ │ │ └── secretbox.go │ └── salsa20 │ │ └── salsa │ │ ├── hsalsa20.go │ │ ├── salsa208.go │ │ ├── salsa20_amd64.go │ │ ├── salsa20_amd64.s │ │ ├── salsa20_noasm.go │ │ └── salsa20_ref.go │ ├── exp │ ├── LICENSE │ ├── PATENTS │ ├── maps │ │ └── maps.go │ └── slices │ │ ├── slices.go │ │ └── sort.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── lazyregexp │ │ │ └── lazyre.go │ ├── modfile │ │ ├── print.go │ │ ├── read.go │ │ ├── rule.go │ │ └── work.go │ ├── module │ │ ├── module.go │ │ └── pseudo.go │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ └── context.go │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ └── table.go │ │ ├── charset │ │ │ └── charset.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── escape.go │ │ ├── foreign.go │ │ ├── iter.go │ │ ├── node.go │ │ ├── parse.go │ │ ├── render.go │ │ └── token.go │ ├── http │ │ ├── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ │ └── httpproxy │ │ │ └── proxy.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go125.go │ │ ├── config_go126.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority_rfc7540.go │ │ ├── writesched_priority_rfc9218.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ ├── socks │ │ │ ├── client.go │ │ │ └── socks.go │ │ └── timeseries │ │ │ └── timeseries.go │ ├── proxy │ │ ├── dial.go │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ ├── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ └── websocket │ │ ├── client.go │ │ ├── dial.go │ │ ├── hybi.go │ │ ├── server.go │ │ └── websocket.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── deviceauth.go │ ├── internal │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── oauth2.go │ ├── pkce.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ ├── errgroup │ │ └── errgroup.go │ ├── semaphore │ │ └── semaphore.go │ └── singleflight │ │ └── singleflight.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── cpu │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_x86_gc.s │ │ ├── byteorder.go │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_darwin_x86.go │ │ ├── cpu_gc_arm64.go │ │ ├── cpu_gc_s390x.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gc_x86.s │ │ ├── cpu_gccgo_arm64.go │ │ ├── cpu_gccgo_s390x.go │ │ ├── cpu_gccgo_x86.c │ │ ├── cpu_gccgo_x86.go │ │ ├── cpu_linux.go │ │ ├── cpu_linux_arm.go │ │ ├── cpu_linux_arm64.go │ │ ├── cpu_linux_loong64.go │ │ ├── cpu_linux_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_riscv64.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_loong64.go │ │ ├── cpu_loong64.s │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_openbsd_arm64.go │ │ ├── cpu_openbsd_arm64.s │ │ ├── cpu_other_arm.go │ │ ├── cpu_other_arm64.go │ │ ├── cpu_other_mips64x.go │ │ ├── cpu_other_ppc64x.go │ │ ├── cpu_other_riscv64.go │ │ ├── cpu_other_x86.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_zos.go │ │ ├── cpu_zos_s390x.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── hwcap_linux.go │ │ ├── parse.go │ │ ├── proc_cpuinfo_linux.go │ │ ├── runtime_auxv.go │ │ ├── runtime_auxv_go121.go │ │ ├── syscall_aix_gccgo.go │ │ ├── syscall_aix_ppc64_gc.go │ │ └── syscall_darwin_x86_gc.go │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── auxv.go │ │ ├── auxv_unsupported.go │ │ ├── bluetooth_linux.go │ │ ├── bpxsvc_zos.go │ │ ├── bpxsvc_zos.s │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── sockcmsg_zos.go │ │ ├── symaddr_zos_s390x.s │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── vgetrandom_linux.go │ │ ├── vgetrandom_unsupported.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsymaddr_zos_s390x.s │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── term.go │ ├── term_plan9.go │ ├── term_unix.go │ ├── term_unix_bsd.go │ ├── term_unix_other.go │ ├── term_unsupported.go │ ├── term_windows.go │ └── terminal.go │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── htmlindex │ │ │ ├── htmlindex.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── identifier │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── euckr.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ └── tables.go │ │ ├── traditionalchinese │ │ │ ├── big5.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ └── unicode.go │ ├── feature │ │ └── plural │ │ │ ├── common.go │ │ │ ├── message.go │ │ │ ├── plural.go │ │ │ └── tables.go │ ├── internal │ │ ├── catmsg │ │ │ ├── catmsg.go │ │ │ ├── codec.go │ │ │ └── varint.go │ │ ├── format │ │ │ ├── format.go │ │ │ └── parser.go │ │ ├── internal.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── match.go │ │ ├── number │ │ │ ├── common.go │ │ │ ├── decimal.go │ │ │ ├── format.go │ │ │ ├── number.go │ │ │ ├── pattern.go │ │ │ ├── roundingmode_string.go │ │ │ └── tables.go │ │ ├── stringset │ │ │ └── set.go │ │ ├── tag │ │ │ └── tag.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── message │ │ ├── catalog.go │ │ ├── catalog │ │ │ ├── catalog.go │ │ │ ├── dict.go │ │ │ ├── go19.go │ │ │ └── gopre19.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── message.go │ │ └── print.go │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ └── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ └── trie.go │ ├── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ │ ├── rate.go │ │ └── sometimes.go │ └── tools │ ├── LICENSE │ ├── PATENTS │ ├── cover │ └── profile.go │ ├── go │ ├── ast │ │ ├── astutil │ │ │ ├── enclosing.go │ │ │ ├── imports.go │ │ │ ├── rewrite.go │ │ │ └── util.go │ │ ├── edge │ │ │ └── edge.go │ │ └── inspector │ │ │ ├── cursor.go │ │ │ ├── inspector.go │ │ │ ├── iter.go │ │ │ ├── typeof.go │ │ │ └── walk.go │ ├── gcexportdata │ │ ├── gcexportdata.go │ │ └── importer.go │ ├── packages │ │ ├── doc.go │ │ ├── external.go │ │ ├── golist.go │ │ ├── golist_overlay.go │ │ ├── loadmode_string.go │ │ ├── packages.go │ │ └── visit.go │ └── types │ │ ├── objectpath │ │ └── objectpath.go │ │ └── typeutil │ │ ├── callee.go │ │ ├── imports.go │ │ ├── map.go │ │ ├── methodsetcache.go │ │ └── ui.go │ ├── imports │ └── forward.go │ └── internal │ ├── aliases │ ├── aliases.go │ └── aliases_go122.go │ ├── event │ ├── core │ │ ├── event.go │ │ ├── export.go │ │ └── fast.go │ ├── doc.go │ ├── event.go │ ├── keys │ │ ├── keys.go │ │ ├── standard.go │ │ └── util.go │ └── label │ │ └── label.go │ ├── gcimporter │ ├── bimport.go │ ├── exportdata.go │ ├── gcimporter.go │ ├── iexport.go │ ├── iimport.go │ ├── predeclared.go │ ├── support.go │ └── ureader_yes.go │ ├── gocommand │ ├── invoke.go │ ├── invoke_notunix.go │ ├── invoke_unix.go │ ├── vendor.go │ └── version.go │ ├── gopathwalk │ └── walk.go │ ├── imports │ ├── fix.go │ ├── imports.go │ ├── mod.go │ ├── mod_cache.go │ ├── sortimports.go │ ├── source.go │ ├── source_env.go │ └── source_modindex.go │ ├── modindex │ ├── directories.go │ ├── index.go │ ├── lookup.go │ ├── modindex.go │ └── symbols.go │ ├── packagesinternal │ └── packages.go │ ├── pkgbits │ ├── codes.go │ ├── decoder.go │ ├── doc.go │ ├── encoder.go │ ├── flags.go │ ├── reloc.go │ ├── support.go │ ├── sync.go │ ├── syncmarker_string.go │ └── version.go │ ├── stdlib │ ├── deps.go │ ├── import.go │ ├── manifest.go │ └── stdlib.go │ ├── typeparams │ ├── common.go │ ├── coretype.go │ ├── free.go │ ├── normalize.go │ ├── termlist.go │ └── typeterm.go │ ├── typesinternal │ ├── classify_call.go │ ├── element.go │ ├── errorcode.go │ ├── errorcode_string.go │ ├── fx.go │ ├── isnamed.go │ ├── qualifier.go │ ├── recv.go │ ├── toonew.go │ ├── types.go │ ├── varkind.go │ └── zerovalue.go │ └── versions │ ├── features.go │ ├── gover.go │ ├── types.go │ └── versions.go ├── gomodules.xyz └── jsonpatch │ └── v2 │ ├── LICENSE │ └── jsonpatch.go ├── google.golang.org ├── genproto │ ├── LICENSE │ ├── googleapis │ │ ├── api │ │ │ ├── LICENSE │ │ │ ├── annotations │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── client.pb.go │ │ │ │ ├── field_behavior.pb.go │ │ │ │ ├── field_info.pb.go │ │ │ │ ├── http.pb.go │ │ │ │ ├── resource.pb.go │ │ │ │ └── routing.pb.go │ │ │ ├── expr │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── checked.pb.go │ │ │ │ │ ├── eval.pb.go │ │ │ │ │ ├── explain.pb.go │ │ │ │ │ ├── syntax.pb.go │ │ │ │ │ └── value.pb.go │ │ │ ├── httpbody │ │ │ │ └── httpbody.pb.go │ │ │ └── launch_stage.pb.go │ │ └── rpc │ │ │ ├── LICENSE │ │ │ ├── errdetails │ │ │ └── error_details.pb.go │ │ │ └── status │ │ │ └── status.pb.go │ └── protobuf │ │ └── field_mask │ │ └── field_mask.go ├── grpc │ ├── AUTHORS │ ├── CODE-OF-CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── Makefile │ ├── NOTICE.txt │ ├── README.md │ ├── SECURITY.md │ ├── attributes │ │ └── attributes.go │ ├── backoff.go │ ├── backoff │ │ └── backoff.go │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ ├── conn_state_evaluator.go │ │ ├── endpointsharding │ │ │ └── endpointsharding.go │ │ ├── grpclb │ │ │ └── state │ │ │ │ └── state.go │ │ ├── pickfirst │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── pickfirst.go │ │ │ └── pickfirstleaf │ │ │ │ └── pickfirstleaf.go │ │ ├── roundrobin │ │ │ └── roundrobin.go │ │ └── subconn.go │ ├── balancer_wrapper.go │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ ├── call.go │ ├── channelz │ │ └── channelz.go │ ├── clientconn.go │ ├── codec.go │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ ├── connectivity │ │ └── connectivity.go │ ├── credentials │ │ ├── credentials.go │ │ ├── insecure │ │ │ └── insecure.go │ │ └── tls.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ │ ├── encoding.go │ │ ├── encoding_v2.go │ │ ├── gzip │ │ │ └── gzip.go │ │ └── proto │ │ │ └── proto.go │ ├── experimental │ │ └── stats │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── internal │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── health │ │ └── grpc_health_v1 │ │ │ ├── health.pb.go │ │ │ └── health_grpc.pb.go │ ├── interceptor.go │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ └── gracefulswitch │ │ │ │ ├── config.go │ │ │ │ └── gracefulswitch.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── channelz │ │ │ ├── channel.go │ │ │ ├── channelmap.go │ │ │ ├── funcs.go │ │ │ ├── logging.go │ │ │ ├── server.go │ │ │ ├── socket.go │ │ │ ├── subchannel.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_nonlinux.go │ │ │ └── trace.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── spiffe.go │ │ │ ├── syscallconn.go │ │ │ └── util.go │ │ ├── envconfig │ │ │ ├── envconfig.go │ │ │ ├── observability.go │ │ │ └── xds.go │ │ ├── experimental.go │ │ ├── grpclog │ │ │ └── prefix_logger.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ └── pubsub.go │ │ ├── grpcutil │ │ │ ├── compressor.go │ │ │ ├── encode_duration.go │ │ │ ├── grpcutil.go │ │ │ ├── metadata.go │ │ │ ├── method.go │ │ │ └── regex.go │ │ ├── idle │ │ │ └── idle.go │ │ ├── internal.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── pretty │ │ │ └── pretty.go │ │ ├── proxyattributes │ │ │ └── proxyattributes.go │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── delegatingresolver │ │ │ │ └── delegatingresolver.go │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.go │ │ ├── serviceconfig │ │ │ ├── duration.go │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── labels.go │ │ │ └── metrics_recorder_list.go │ │ ├── status │ │ │ └── status.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ ├── tcp_keepalive_others.go │ │ ├── tcp_keepalive_unix.go │ │ ├── tcp_keepalive_windows.go │ │ └── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── client_stream.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── logging.go │ │ │ ├── networktype │ │ │ └── networktype.go │ │ │ ├── proxy.go │ │ │ ├── server_stream.go │ │ │ └── transport.go │ ├── keepalive │ │ └── keepalive.go │ ├── mem │ │ ├── buffer_pool.go │ │ ├── buffer_slice.go │ │ └── buffers.go │ ├── metadata │ │ └── metadata.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── preloader.go │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── manual │ │ │ └── manual.go │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── stream_interfaces.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ └── version.go └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── protodelim │ │ └── protodelim.go │ ├── protojson │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── well_known_types.go │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── editionssupport │ │ └── editions.go │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ └── errors.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ ├── placeholder.go │ │ └── presence.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── name.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── api_export_opaque.go │ │ ├── bitmap.go │ │ ├── bitmap_race.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_field_opaque.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_message.go │ │ ├── codec_message_opaque.go │ │ ├── codec_messageset.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── lazy.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_opaque.go │ │ ├── message_opaque_gen.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_field_gen.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_opaque.go │ │ ├── presence.go │ │ └── validate.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── protolazy │ │ ├── bufferreader.go │ │ ├── lazy.go │ │ └── pointer_unsafe.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ └── strings_unsafe.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ ├── wrapperopaque.go │ └── wrappers.go │ ├── protoadapt │ └── convert.go │ ├── reflect │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_union.go │ │ └── value_unsafe.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ ├── dynamicpb │ ├── dynamic.go │ └── types.go │ ├── gofeaturespb │ └── go_features.pb.go │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ ├── emptypb │ └── empty.pb.go │ ├── fieldmaskpb │ └── field_mask.pb.go │ ├── structpb │ └── struct.pb.go │ ├── timestamppb │ └── timestamp.pb.go │ └── wrapperspb │ └── wrappers.pb.go ├── gopkg.in ├── evanphx │ └── json-patch.v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ └── patch.go ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go ├── natefinch │ └── lumberjack.v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chown.go │ │ ├── chown_linux.go │ │ └── lumberjack.go ├── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── k8s.io ├── api │ ├── LICENSE │ ├── admission │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── admissionregistration │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apidiscovery │ │ ├── v2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apiserverinternal │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── apps │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── authentication │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── authorization │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── autoscaling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v2beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── batch │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── certificates │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── coordination │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── core │ │ └── v1 │ │ │ ├── annotation_key_constants.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── lifecycle.go │ │ │ ├── objectreference.go │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── taint.go │ │ │ ├── toleration.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── well_known_taints.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── discovery │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── events │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── extensions │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.prerelease-lifecycle.go │ │ │ └── zz_generated.validations.go │ ├── flowcontrol │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta2 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta3 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── imagepolicy │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── networking │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_annotations.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_annotations.go │ │ │ ├── well_known_labels.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── node │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── policy │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── rbac │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── resource │ │ ├── v1 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha3 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1beta1 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta2 │ │ │ ├── devicetaint.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── scheduling │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── storage │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ └── storagemigration │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.prerelease-lifecycle.go ├── apiextensions-apiserver │ ├── LICENSE │ └── pkg │ │ ├── apihelpers │ │ └── helpers.go │ │ ├── apis │ │ └── apiextensions │ │ │ ├── deepcopy.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── install │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── v1 │ │ │ ├── .import-restrictions │ │ │ ├── conversion.go │ │ │ ├── deepcopy.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── marshal.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta1 │ │ │ ├── .import-restrictions │ │ │ ├── conversion.go │ │ │ ├── deepcopy.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── marshal.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── validation │ │ │ ├── cel_validation.go │ │ │ └── validation.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── apiserver │ │ ├── schema │ │ │ ├── cel │ │ │ │ ├── compilation.go │ │ │ │ ├── maplist.go │ │ │ │ ├── model │ │ │ │ │ ├── adaptor.go │ │ │ │ │ └── schemas.go │ │ │ │ ├── validation.go │ │ │ │ └── values.go │ │ │ ├── complete.go │ │ │ ├── convert.go │ │ │ ├── defaulting │ │ │ │ ├── algorithm.go │ │ │ │ ├── prune.go │ │ │ │ ├── prunenulls.go │ │ │ │ ├── surroundingobject.go │ │ │ │ └── validation.go │ │ │ ├── kubeopenapi.go │ │ │ ├── objectmeta │ │ │ │ ├── algorithm.go │ │ │ │ ├── coerce.go │ │ │ │ └── validation.go │ │ │ ├── options.go │ │ │ ├── pruning │ │ │ │ └── algorithm.go │ │ │ ├── skeleton.go │ │ │ ├── structural.go │ │ │ ├── unfold.go │ │ │ ├── validation.go │ │ │ ├── visitor.go │ │ │ └── zz_generated.deepcopy.go │ │ └── validation │ │ │ ├── formats.go │ │ │ ├── metrics.go │ │ │ ├── ratcheting.go │ │ │ └── validation.go │ │ ├── client │ │ ├── applyconfiguration │ │ │ ├── apiextensions │ │ │ │ ├── v1 │ │ │ │ │ ├── customresourcecolumndefinition.go │ │ │ │ │ ├── customresourceconversion.go │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ ├── customresourcedefinitioncondition.go │ │ │ │ │ ├── customresourcedefinitionnames.go │ │ │ │ │ ├── customresourcedefinitionspec.go │ │ │ │ │ ├── customresourcedefinitionstatus.go │ │ │ │ │ ├── customresourcedefinitionversion.go │ │ │ │ │ ├── customresourcesubresources.go │ │ │ │ │ ├── customresourcesubresourcescale.go │ │ │ │ │ ├── customresourcevalidation.go │ │ │ │ │ ├── externaldocumentation.go │ │ │ │ │ ├── jsonschemaprops.go │ │ │ │ │ ├── selectablefield.go │ │ │ │ │ ├── servicereference.go │ │ │ │ │ ├── validationrule.go │ │ │ │ │ ├── webhookclientconfig.go │ │ │ │ │ └── webhookconversion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── customresourcecolumndefinition.go │ │ │ │ │ ├── customresourceconversion.go │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ ├── customresourcedefinitioncondition.go │ │ │ │ │ ├── customresourcedefinitionnames.go │ │ │ │ │ ├── customresourcedefinitionspec.go │ │ │ │ │ ├── customresourcedefinitionstatus.go │ │ │ │ │ ├── customresourcedefinitionversion.go │ │ │ │ │ ├── customresourcesubresources.go │ │ │ │ │ ├── customresourcesubresourcescale.go │ │ │ │ │ ├── customresourcevalidation.go │ │ │ │ │ ├── externaldocumentation.go │ │ │ │ │ ├── jsonschemaprops.go │ │ │ │ │ ├── selectablefield.go │ │ │ │ │ ├── servicereference.go │ │ │ │ │ ├── validationrule.go │ │ │ │ │ └── webhookclientconfig.go │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ └── utils.go │ │ └── clientset │ │ │ └── clientset │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── apiextensions │ │ │ ├── v1 │ │ │ ├── apiextensions_client.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apiextensions_client.go │ │ │ │ └── fake_customresourcedefinition.go │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ ├── apiextensions_client.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_apiextensions_client.go │ │ │ └── fake_customresourcedefinition.go │ │ │ └── generated_expansion.go │ │ └── features │ │ ├── OWNERS │ │ └── kube_features.go ├── apimachinery │ ├── LICENSE │ ├── pkg │ │ ├── api │ │ │ ├── equality │ │ │ │ └── semantic.go │ │ │ ├── errors │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── meta │ │ │ │ ├── OWNERS │ │ │ │ ├── conditions.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ ├── help.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── lazy.go │ │ │ │ ├── meta.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── priority.go │ │ │ │ ├── restmapper.go │ │ │ │ └── testrestmapper │ │ │ │ │ └── test_restmapper.go │ │ │ ├── operation │ │ │ │ └── operation.go │ │ │ ├── resource │ │ │ │ ├── OWNERS │ │ │ │ ├── amount.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── suffix.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── safe │ │ │ │ └── safe.go │ │ │ ├── validate │ │ │ │ ├── README.md │ │ │ │ ├── common.go │ │ │ │ ├── constraints │ │ │ │ │ └── constraints.go │ │ │ │ ├── content │ │ │ │ │ └── errors.go │ │ │ │ ├── doc.go │ │ │ │ ├── each.go │ │ │ │ ├── enum.go │ │ │ │ ├── equality.go │ │ │ │ ├── immutable.go │ │ │ │ ├── item.go │ │ │ │ ├── limits.go │ │ │ │ ├── required.go │ │ │ │ ├── subfield.go │ │ │ │ ├── testing.go │ │ │ │ ├── union.go │ │ │ │ └── zeroorone.go │ │ │ └── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ ├── objectmeta.go │ │ │ │ └── path │ │ │ │ └── name.go │ │ ├── apis │ │ │ ├── asn1 │ │ │ │ └── oid.go │ │ │ └── meta │ │ │ │ ├── internalversion │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── types.go │ │ │ │ ├── validation │ │ │ │ │ └── validation.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1 │ │ │ │ ├── OWNERS │ │ │ │ ├── controller_ref.go │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ ├── helpers.go │ │ │ │ ├── labels.go │ │ │ │ ├── meta.go │ │ │ │ ├── micro_time.go │ │ │ │ ├── micro_time_fuzz.go │ │ │ │ ├── micro_time_proto.go │ │ │ │ ├── register.go │ │ │ │ ├── time.go │ │ │ │ ├── time_fuzz.go │ │ │ │ ├── time_proto.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── unstructured │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── unstructured.go │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── validation │ │ │ │ │ └── validation.go │ │ │ │ ├── watch.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── v1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── validation │ │ │ │ └── validation.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ ├── conversion │ │ │ ├── converter.go │ │ │ ├── deep_equal.go │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ └── queryparams │ │ │ │ ├── convert.go │ │ │ │ └── doc.go │ │ ├── fields │ │ │ ├── doc.go │ │ │ ├── fields.go │ │ │ ├── requirements.go │ │ │ └── selector.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ ├── labels.go │ │ │ ├── selector.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── runtime │ │ │ ├── allocator.go │ │ │ ├── codec.go │ │ │ ├── codec_check.go │ │ │ ├── conversion.go │ │ │ ├── converter.go │ │ │ ├── doc.go │ │ │ ├── embedded.go │ │ │ ├── error.go │ │ │ ├── extension.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── mapper.go │ │ │ ├── negotiate.go │ │ │ ├── register.go │ │ │ ├── schema │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ └── interfaces.go │ │ │ ├── scheme.go │ │ │ ├── scheme_builder.go │ │ │ ├── serializer │ │ │ │ ├── cbor │ │ │ │ │ ├── cbor.go │ │ │ │ │ ├── direct │ │ │ │ │ │ └── direct.go │ │ │ │ │ ├── framer.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── modes │ │ │ │ │ │ │ ├── buffers.go │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ └── transcoding.go │ │ │ │ │ └── raw.go │ │ │ │ ├── codec_factory.go │ │ │ │ ├── json │ │ │ │ │ ├── collections.go │ │ │ │ │ ├── json.go │ │ │ │ │ └── meta.go │ │ │ │ ├── negotiated_codec.go │ │ │ │ ├── protobuf │ │ │ │ │ ├── collections.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── protobuf.go │ │ │ │ ├── recognizer │ │ │ │ │ └── recognizer.go │ │ │ │ ├── streaming │ │ │ │ │ └── streaming.go │ │ │ │ └── versioning │ │ │ │ │ └── versioning.go │ │ │ ├── splice.go │ │ │ ├── swagger_doc_generator.go │ │ │ ├── types.go │ │ │ ├── types_proto.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── selection │ │ │ └── operator.go │ │ ├── types │ │ │ ├── doc.go │ │ │ ├── namespacedname.go │ │ │ ├── nodename.go │ │ │ ├── patch.go │ │ │ └── uid.go │ │ ├── util │ │ │ ├── cache │ │ │ │ ├── expiring.go │ │ │ │ └── lruexpirecache.go │ │ │ ├── diff │ │ │ │ ├── cmp.go │ │ │ │ ├── diff.go │ │ │ │ └── legacy_diff.go │ │ │ ├── dump │ │ │ │ └── dump.go │ │ │ ├── duration │ │ │ │ └── duration.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── framer │ │ │ │ └── framer.go │ │ │ ├── httpstream │ │ │ │ ├── doc.go │ │ │ │ ├── httpstream.go │ │ │ │ └── wsstream │ │ │ │ │ ├── conn.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── stream.go │ │ │ ├── intstr │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── instr_fuzz.go │ │ │ │ └── intstr.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── managedfields │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── extract.go │ │ │ │ ├── fieldmanager.go │ │ │ │ ├── gvkparser.go │ │ │ │ ├── internal │ │ │ │ │ ├── atmostevery.go │ │ │ │ │ ├── buildmanagerinfo.go │ │ │ │ │ ├── capmanagers.go │ │ │ │ │ ├── conflict.go │ │ │ │ │ ├── fieldmanager.go │ │ │ │ │ ├── fields.go │ │ │ │ │ ├── lastapplied.go │ │ │ │ │ ├── lastappliedmanager.go │ │ │ │ │ ├── lastappliedupdater.go │ │ │ │ │ ├── managedfields.go │ │ │ │ │ ├── managedfieldsupdater.go │ │ │ │ │ ├── manager.go │ │ │ │ │ ├── pathelement.go │ │ │ │ │ ├── runtimetypeconverter.go │ │ │ │ │ ├── skipnonapplied.go │ │ │ │ │ ├── stripmeta.go │ │ │ │ │ ├── structuredmerge.go │ │ │ │ │ ├── typeconverter.go │ │ │ │ │ ├── versioncheck.go │ │ │ │ │ └── versionconverter.go │ │ │ │ ├── node.yaml │ │ │ │ ├── pod.yaml │ │ │ │ ├── scalehandler.go │ │ │ │ └── typeconverter.go │ │ │ ├── mergepatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ └── util.go │ │ │ ├── naming │ │ │ │ └── from_stack.go │ │ │ ├── net │ │ │ │ ├── http.go │ │ │ │ ├── interface.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_split.go │ │ │ │ └── util.go │ │ │ ├── portforward │ │ │ │ └── constants.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── remotecommand │ │ │ │ └── constants.go │ │ │ ├── runtime │ │ │ │ └── runtime.go │ │ │ ├── sets │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ ├── set.go │ │ │ │ └── string.go │ │ │ ├── strategicpatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ ├── meta.go │ │ │ │ ├── patch.go │ │ │ │ └── types.go │ │ │ ├── uuid │ │ │ │ └── uuid.go │ │ │ ├── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── field │ │ │ │ │ ├── error_matcher.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ ├── ip.go │ │ │ │ └── validation.go │ │ │ ├── version │ │ │ │ ├── doc.go │ │ │ │ └── version.go │ │ │ ├── wait │ │ │ │ ├── backoff.go │ │ │ │ ├── delay.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── loop.go │ │ │ │ ├── poll.go │ │ │ │ ├── timer.go │ │ │ │ └── wait.go │ │ │ ├── waitgroup │ │ │ │ ├── doc.go │ │ │ │ ├── ratelimited_waitgroup.go │ │ │ │ └── waitgroup.go │ │ │ └── yaml │ │ │ │ ├── decoder.go │ │ │ │ └── stream_reader.go │ │ ├── version │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ └── types.go │ │ └── watch │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── mux.go │ │ │ ├── streamwatcher.go │ │ │ ├── watch.go │ │ │ └── zz_generated.deepcopy.go │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── json │ │ ├── OWNERS │ │ └── fields.go │ │ └── reflect │ │ └── deep_equal.go ├── apiserver │ ├── LICENSE │ ├── pkg │ │ ├── admission │ │ │ ├── attributes.go │ │ │ ├── audit.go │ │ │ ├── chain.go │ │ │ ├── config.go │ │ │ ├── configuration │ │ │ │ ├── configuration_manager.go │ │ │ │ ├── mutating_webhook_manager.go │ │ │ │ └── validating_webhook_manager.go │ │ │ ├── conversion.go │ │ │ ├── decorator.go │ │ │ ├── errors.go │ │ │ ├── handler.go │ │ │ ├── initializer │ │ │ │ ├── initializer.go │ │ │ │ └── interfaces.go │ │ │ ├── interfaces.go │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ ├── plugin │ │ │ │ ├── authorizer │ │ │ │ │ └── caching_authorizer.go │ │ │ │ ├── cel │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── activation.go │ │ │ │ │ ├── compile.go │ │ │ │ │ ├── composition.go │ │ │ │ │ ├── condition.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── mutation.go │ │ │ │ ├── namespace │ │ │ │ │ └── lifecycle │ │ │ │ │ │ └── admission.go │ │ │ │ ├── policy │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── accessor.go │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ ├── policy_dispatcher.go │ │ │ │ │ │ ├── policy_matcher.go │ │ │ │ │ │ ├── policy_source.go │ │ │ │ │ │ └── policy_test_context.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── generic │ │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── informer.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── lister.go │ │ │ │ │ ├── matching │ │ │ │ │ │ └── matching.go │ │ │ │ │ ├── mutating │ │ │ │ │ │ ├── accessor.go │ │ │ │ │ │ ├── compilation.go │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── metrics │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ └── metrics.go │ │ │ │ │ │ ├── patch │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── json_patch.go │ │ │ │ │ │ │ ├── smd.go │ │ │ │ │ │ │ └── typeconverter.go │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ └── reinvocationcontext.go │ │ │ │ │ └── validating │ │ │ │ │ │ ├── accessor.go │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── initializer.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── message.go │ │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── metrics.go │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ ├── policy_decision.go │ │ │ │ │ │ ├── typechecking.go │ │ │ │ │ │ └── validator.go │ │ │ │ └── webhook │ │ │ │ │ ├── accessors.go │ │ │ │ │ ├── config │ │ │ │ │ ├── apis │ │ │ │ │ │ └── webhookadmission │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ └── kubeconfig.go │ │ │ │ │ ├── errors │ │ │ │ │ ├── doc.go │ │ │ │ │ └── statuserror.go │ │ │ │ │ ├── generic │ │ │ │ │ ├── interfaces.go │ │ │ │ │ └── webhook.go │ │ │ │ │ ├── matchconditions │ │ │ │ │ ├── interface.go │ │ │ │ │ └── matcher.go │ │ │ │ │ ├── mutating │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ └── reinvocationcontext.go │ │ │ │ │ ├── predicates │ │ │ │ │ ├── namespace │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── matcher.go │ │ │ │ │ ├── object │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── matcher.go │ │ │ │ │ └── rules │ │ │ │ │ │ └── rules.go │ │ │ │ │ ├── request │ │ │ │ │ ├── admissionreview.go │ │ │ │ │ └── doc.go │ │ │ │ │ └── validating │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── plugin.go │ │ │ ├── plugins.go │ │ │ ├── reinvocation.go │ │ │ └── util.go │ │ ├── apis │ │ │ ├── apidiscovery │ │ │ │ └── v2 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ ├── apiserver │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_encryption.go │ │ │ │ ├── v1 │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_encryption.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── validation │ │ │ │ │ ├── validation.go │ │ │ │ │ └── validation_encryption.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── audit │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── validation │ │ │ │ │ └── validation.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── cel │ │ │ │ └── config.go │ │ │ └── flowcontrol │ │ │ │ └── bootstrap │ │ │ │ └── default.go │ │ ├── audit │ │ │ ├── OWNERS │ │ │ ├── context.go │ │ │ ├── evaluator.go │ │ │ ├── format.go │ │ │ ├── metrics.go │ │ │ ├── policy │ │ │ │ ├── checker.go │ │ │ │ ├── reader.go │ │ │ │ └── util.go │ │ │ ├── request.go │ │ │ ├── scheme.go │ │ │ ├── types.go │ │ │ └── union.go │ │ ├── authentication │ │ │ ├── authenticator │ │ │ │ ├── audagnostic.go │ │ │ │ ├── audiences.go │ │ │ │ └── interfaces.go │ │ │ ├── authenticatorfactory │ │ │ │ ├── delegating.go │ │ │ │ ├── loopback.go │ │ │ │ ├── metrics.go │ │ │ │ └── requestheader.go │ │ │ ├── cel │ │ │ │ ├── compile.go │ │ │ │ ├── interface.go │ │ │ │ └── mapper.go │ │ │ ├── group │ │ │ │ ├── authenticated_group_adder.go │ │ │ │ ├── group_adder.go │ │ │ │ └── token_group_adder.go │ │ │ ├── request │ │ │ │ ├── anonymous │ │ │ │ │ └── anonymous.go │ │ │ │ ├── bearertoken │ │ │ │ │ └── bearertoken.go │ │ │ │ ├── headerrequest │ │ │ │ │ ├── requestheader.go │ │ │ │ │ └── requestheader_controller.go │ │ │ │ ├── union │ │ │ │ │ └── union.go │ │ │ │ ├── websocket │ │ │ │ │ └── protocol.go │ │ │ │ └── x509 │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── verify_options.go │ │ │ │ │ └── x509.go │ │ │ ├── serviceaccount │ │ │ │ └── util.go │ │ │ ├── token │ │ │ │ ├── cache │ │ │ │ │ ├── cache_simple.go │ │ │ │ │ ├── cache_striped.go │ │ │ │ │ ├── cached_token_authenticator.go │ │ │ │ │ └── stats.go │ │ │ │ └── tokenfile │ │ │ │ │ └── tokenfile.go │ │ │ └── user │ │ │ │ ├── doc.go │ │ │ │ └── user.go │ │ ├── authorization │ │ │ ├── authorizer │ │ │ │ ├── interfaces.go │ │ │ │ └── rule.go │ │ │ ├── authorizerfactory │ │ │ │ ├── builtin.go │ │ │ │ ├── delegating.go │ │ │ │ └── metrics.go │ │ │ ├── cel │ │ │ │ ├── compile.go │ │ │ │ ├── interface.go │ │ │ │ ├── matcher.go │ │ │ │ └── metrics.go │ │ │ ├── path │ │ │ │ ├── doc.go │ │ │ │ └── path.go │ │ │ └── union │ │ │ │ └── union.go │ │ ├── cel │ │ │ ├── OWNERS │ │ │ ├── cidr.go │ │ │ ├── common │ │ │ │ ├── adaptor.go │ │ │ │ ├── equality.go │ │ │ │ ├── maplist.go │ │ │ │ ├── schemas.go │ │ │ │ ├── typeprovider.go │ │ │ │ ├── valuesreflect.go │ │ │ │ └── valuesunstructured.go │ │ │ ├── environment │ │ │ │ ├── base.go │ │ │ │ └── environment.go │ │ │ ├── errors.go │ │ │ ├── escaping.go │ │ │ ├── format.go │ │ │ ├── ip.go │ │ │ ├── lazy │ │ │ │ └── lazy.go │ │ │ ├── library │ │ │ │ ├── authz.go │ │ │ │ ├── cidr.go │ │ │ │ ├── cost.go │ │ │ │ ├── format.go │ │ │ │ ├── ip.go │ │ │ │ ├── jsonpatch.go │ │ │ │ ├── libraries.go │ │ │ │ ├── lists.go │ │ │ │ ├── quantity.go │ │ │ │ ├── regex.go │ │ │ │ ├── semverlib.go │ │ │ │ ├── test.go │ │ │ │ └── urls.go │ │ │ ├── limits.go │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ ├── mutation │ │ │ │ ├── dynamic │ │ │ │ │ └── objects.go │ │ │ │ ├── jsonpatch.go │ │ │ │ └── typeresolver.go │ │ │ ├── openapi │ │ │ │ ├── adaptor.go │ │ │ │ ├── extensions.go │ │ │ │ └── resolver │ │ │ │ │ ├── combined.go │ │ │ │ │ ├── definitions.go │ │ │ │ │ ├── discovery.go │ │ │ │ │ ├── refs.go │ │ │ │ │ └── resolver.go │ │ │ ├── quantity.go │ │ │ ├── semver.go │ │ │ ├── types.go │ │ │ ├── url.go │ │ │ └── value.go │ │ ├── endpoints │ │ │ ├── OWNERS │ │ │ ├── deprecation │ │ │ │ └── deprecation.go │ │ │ ├── discovery │ │ │ │ ├── OWNERS │ │ │ │ ├── addresses.go │ │ │ │ ├── aggregated │ │ │ │ │ ├── etag.go │ │ │ │ │ ├── fake.go │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── negotiation.go │ │ │ │ │ └── wrapper.go │ │ │ │ ├── group.go │ │ │ │ ├── legacy.go │ │ │ │ ├── root.go │ │ │ │ ├── storageversionhash.go │ │ │ │ ├── util.go │ │ │ │ └── version.go │ │ │ ├── doc.go │ │ │ ├── filterlatency │ │ │ │ └── filterlatency.go │ │ │ ├── filters │ │ │ │ ├── OWNERS │ │ │ │ ├── audit.go │ │ │ │ ├── audit_init.go │ │ │ │ ├── authentication.go │ │ │ │ ├── authn_audit.go │ │ │ │ ├── authorization.go │ │ │ │ ├── cachecontrol.go │ │ │ │ ├── doc.go │ │ │ │ ├── impersonation.go │ │ │ │ ├── metrics.go │ │ │ │ ├── mux_discovery_complete.go │ │ │ │ ├── request_deadline.go │ │ │ │ ├── request_received_time.go │ │ │ │ ├── requestinfo.go │ │ │ │ ├── storageversion.go │ │ │ │ ├── traces.go │ │ │ │ ├── warning.go │ │ │ │ └── webhook_duration.go │ │ │ ├── groupversion.go │ │ │ ├── handlers │ │ │ │ ├── create.go │ │ │ │ ├── delete.go │ │ │ │ ├── doc.go │ │ │ │ ├── fieldmanager │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── admission.go │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── equality.go │ │ │ │ │ ├── node.yaml │ │ │ │ │ └── pod.yaml │ │ │ │ ├── finisher │ │ │ │ │ └── finisher.go │ │ │ │ ├── get.go │ │ │ │ ├── helpers.go │ │ │ │ ├── metrics │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── metrics.go │ │ │ │ ├── namer.go │ │ │ │ ├── negotiation │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── negotiate.go │ │ │ │ ├── patch.go │ │ │ │ ├── response.go │ │ │ │ ├── responsewriters │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── status.go │ │ │ │ │ └── writers.go │ │ │ │ ├── rest.go │ │ │ │ ├── trace_util.go │ │ │ │ ├── update.go │ │ │ │ └── watch.go │ │ │ ├── installer.go │ │ │ ├── metrics │ │ │ │ ├── OWNERS │ │ │ │ └── metrics.go │ │ │ ├── openapi │ │ │ │ └── openapi.go │ │ │ ├── request │ │ │ │ ├── OWNERS │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── methods.go │ │ │ │ ├── received_time.go │ │ │ │ ├── requestinfo.go │ │ │ │ ├── server_shutdown_signal.go │ │ │ │ └── webhook_duration.go │ │ │ ├── responsewriter │ │ │ │ ├── fake.go │ │ │ │ └── wrapper.go │ │ │ └── warning │ │ │ │ └── warning.go │ │ ├── features │ │ │ ├── OWNERS │ │ │ └── kube_features.go │ │ ├── quota │ │ │ └── v1 │ │ │ │ ├── OWNERS │ │ │ │ ├── interfaces.go │ │ │ │ └── resources.go │ │ ├── registry │ │ │ ├── generic │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── matcher.go │ │ │ │ ├── options.go │ │ │ │ ├── registry │ │ │ │ │ ├── corrupt_obj_deleter.go │ │ │ │ │ ├── decorated_watcher.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── dryrun.go │ │ │ │ │ ├── storage_factory.go │ │ │ │ │ └── store.go │ │ │ │ └── storage_decorator.go │ │ │ └── rest │ │ │ │ ├── OWNERS │ │ │ │ ├── create.go │ │ │ │ ├── create_update.go │ │ │ │ ├── delete.go │ │ │ │ ├── doc.go │ │ │ │ ├── meta.go │ │ │ │ ├── rest.go │ │ │ │ ├── table.go │ │ │ │ ├── update.go │ │ │ │ └── validate.go │ │ ├── server │ │ │ ├── config.go │ │ │ ├── config_selfclient.go │ │ │ ├── deleted_kinds.go │ │ │ ├── deprecated_insecure_serving.go │ │ │ ├── doc.go │ │ │ ├── dynamiccertificates │ │ │ │ ├── cert_key.go │ │ │ │ ├── client_ca.go │ │ │ │ ├── configmap_cafile_content.go │ │ │ │ ├── dynamic_cafile_content.go │ │ │ │ ├── dynamic_serving_content.go │ │ │ │ ├── dynamic_sni_content.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── named_certificates.go │ │ │ │ ├── static_content.go │ │ │ │ ├── tlsconfig.go │ │ │ │ ├── union_content.go │ │ │ │ └── util.go │ │ │ ├── egressselector │ │ │ │ ├── config.go │ │ │ │ ├── egress_selector.go │ │ │ │ └── metrics │ │ │ │ │ └── metrics.go │ │ │ ├── filters │ │ │ │ ├── OWNERS │ │ │ │ ├── content_type.go │ │ │ │ ├── cors.go │ │ │ │ ├── doc.go │ │ │ │ ├── goaway.go │ │ │ │ ├── hsts.go │ │ │ │ ├── longrunning.go │ │ │ │ ├── maxinflight.go │ │ │ │ ├── priority-and-fairness.go │ │ │ │ ├── timeout.go │ │ │ │ ├── waitgroup.go │ │ │ │ ├── watch_termination.go │ │ │ │ ├── with_retry_after.go │ │ │ │ └── wrap.go │ │ │ ├── genericapiserver.go │ │ │ ├── handler.go │ │ │ ├── healthz.go │ │ │ ├── healthz │ │ │ │ ├── doc.go │ │ │ │ └── healthz.go │ │ │ ├── hooks.go │ │ │ ├── httplog │ │ │ │ ├── doc.go │ │ │ │ └── httplog.go │ │ │ ├── lifecycle_signals.go │ │ │ ├── mux │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ └── pathrecorder.go │ │ │ ├── options │ │ │ │ ├── OWNERS │ │ │ │ ├── admission.go │ │ │ │ ├── api_enablement.go │ │ │ │ ├── audit.go │ │ │ │ ├── authentication.go │ │ │ │ ├── authentication_dynamic_request_header.go │ │ │ │ ├── authorization.go │ │ │ │ ├── coreapi.go │ │ │ │ ├── doc.go │ │ │ │ ├── egress_selector.go │ │ │ │ ├── encryptionconfig │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── config.go │ │ │ │ │ ├── controller │ │ │ │ │ │ └── controller.go │ │ │ │ │ └── metrics │ │ │ │ │ │ └── metrics.go │ │ │ │ ├── etcd.go │ │ │ │ ├── feature.go │ │ │ │ ├── recommended.go │ │ │ │ ├── server_run_options.go │ │ │ │ ├── serving.go │ │ │ │ ├── serving_unix.go │ │ │ │ ├── serving_windows.go │ │ │ │ ├── serving_with_loopback.go │ │ │ │ └── tracing.go │ │ │ ├── plugins.go │ │ │ ├── resourceconfig │ │ │ │ ├── doc.go │ │ │ │ └── helpers.go │ │ │ ├── routes │ │ │ │ ├── OWNERS │ │ │ │ ├── debugsocket.go │ │ │ │ ├── doc.go │ │ │ │ ├── flags.go │ │ │ │ ├── index.go │ │ │ │ ├── metrics.go │ │ │ │ ├── openapi.go │ │ │ │ ├── profiling.go │ │ │ │ └── version.go │ │ │ ├── routine │ │ │ │ └── routine.go │ │ │ ├── secure_serving.go │ │ │ ├── signal.go │ │ │ ├── signal_posix.go │ │ │ ├── signal_windows.go │ │ │ ├── storage │ │ │ │ ├── doc.go │ │ │ │ ├── resource_config.go │ │ │ │ ├── resource_encoding_config.go │ │ │ │ ├── storage_codec.go │ │ │ │ └── storage_factory.go │ │ │ └── storage_readiness_hook.go │ │ ├── storage │ │ │ ├── OWNERS │ │ │ ├── api_object_versioner.go │ │ │ ├── cacher │ │ │ │ ├── cache_watcher.go │ │ │ │ ├── cacher.go │ │ │ │ ├── caching_object.go │ │ │ │ ├── compactor.go │ │ │ │ ├── delegator.go │ │ │ │ ├── delegator │ │ │ │ │ └── interface.go │ │ │ │ ├── lister_watcher.go │ │ │ │ ├── metrics │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── metrics.go │ │ │ │ ├── progress │ │ │ │ │ └── watch_progress.go │ │ │ │ ├── ready.go │ │ │ │ ├── store.go │ │ │ │ ├── store_btree.go │ │ │ │ ├── time_budget.go │ │ │ │ ├── util.go │ │ │ │ ├── watch_cache.go │ │ │ │ └── watch_cache_interval.go │ │ │ ├── continue.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── storage.go │ │ │ ├── etcd3 │ │ │ │ ├── OWNERS │ │ │ │ ├── compact.go │ │ │ │ ├── corrupt_obj_deleter.go │ │ │ │ ├── decoder.go │ │ │ │ ├── errors.go │ │ │ │ ├── event.go │ │ │ │ ├── healthcheck.go │ │ │ │ ├── latency_tracker.go │ │ │ │ ├── lease_manager.go │ │ │ │ ├── logger.go │ │ │ │ ├── metrics │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── metrics.go │ │ │ │ ├── stats.go │ │ │ │ ├── store.go │ │ │ │ └── watcher.go │ │ │ ├── feature │ │ │ │ └── feature_support_checker.go │ │ │ ├── interfaces.go │ │ │ ├── names │ │ │ │ └── generate.go │ │ │ ├── selection_predicate.go │ │ │ ├── storagebackend │ │ │ │ ├── OWNERS │ │ │ │ ├── config.go │ │ │ │ └── factory │ │ │ │ │ ├── etcd3.go │ │ │ │ │ └── factory.go │ │ │ ├── util.go │ │ │ └── value │ │ │ │ ├── OWNERS │ │ │ │ ├── encrypt │ │ │ │ ├── aes │ │ │ │ │ ├── aes.go │ │ │ │ │ ├── aes_extended_nonce.go │ │ │ │ │ └── cache.go │ │ │ │ ├── envelope │ │ │ │ │ ├── envelope.go │ │ │ │ │ ├── grpc_service.go │ │ │ │ │ ├── kmsv2 │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── envelope.go │ │ │ │ │ │ ├── grpc_service.go │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ ├── api.pb.go │ │ │ │ │ │ │ ├── api.proto │ │ │ │ │ │ │ └── v2.go │ │ │ │ │ └── metrics │ │ │ │ │ │ └── metrics.go │ │ │ │ ├── identity │ │ │ │ │ └── identity.go │ │ │ │ └── secretbox │ │ │ │ │ └── secretbox.go │ │ │ │ ├── metrics.go │ │ │ │ └── transformer.go │ │ ├── storageversion │ │ │ ├── OWNERS │ │ │ ├── manager.go │ │ │ └── updater.go │ │ ├── util │ │ │ ├── apihelpers │ │ │ │ └── helpers.go │ │ │ ├── compatibility │ │ │ │ ├── registry.go │ │ │ │ └── version.go │ │ │ ├── configmetrics │ │ │ │ └── info_collector.go │ │ │ ├── dryrun │ │ │ │ └── dryrun.go │ │ │ ├── feature │ │ │ │ └── feature_gate.go │ │ │ ├── flowcontrol │ │ │ │ ├── OWNERS │ │ │ │ ├── apf_context.go │ │ │ │ ├── apf_controller.go │ │ │ │ ├── apf_controller_debug.go │ │ │ │ ├── apf_filter.go │ │ │ │ ├── conc_alloc.go │ │ │ │ ├── debug │ │ │ │ │ └── dump.go │ │ │ │ ├── dropped_requests_tracker.go │ │ │ │ ├── fairqueuing │ │ │ │ │ ├── eventclock │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── real.go │ │ │ │ │ ├── integrator.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── promise │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── promise.go │ │ │ │ │ └── queueset │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fifo_list.go │ │ │ │ │ │ ├── queueset.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── format │ │ │ │ │ └── formatting.go │ │ │ │ ├── formatting.go │ │ │ │ ├── max_seats.go │ │ │ │ ├── metrics │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── timing_ratio_histogram.go │ │ │ │ │ ├── union_gauge.go │ │ │ │ │ └── vec_element_pair.go │ │ │ │ ├── request │ │ │ │ │ ├── config.go │ │ │ │ │ ├── list_work_estimator.go │ │ │ │ │ ├── mutating_work_estimator.go │ │ │ │ │ ├── object_count_tracker.go │ │ │ │ │ ├── seat_seconds.go │ │ │ │ │ └── width.go │ │ │ │ ├── rule.go │ │ │ │ └── watch_tracker.go │ │ │ ├── flushwriter │ │ │ │ ├── doc.go │ │ │ │ └── writer.go │ │ │ ├── peerproxy │ │ │ │ └── metrics │ │ │ │ │ └── metrics.go │ │ │ ├── shufflesharding │ │ │ │ └── shufflesharding.go │ │ │ ├── webhook │ │ │ │ ├── authentication.go │ │ │ │ ├── client.go │ │ │ │ ├── error.go │ │ │ │ ├── gencerts.sh │ │ │ │ ├── metrics.go │ │ │ │ ├── serviceresolver.go │ │ │ │ ├── validation.go │ │ │ │ └── webhook.go │ │ │ └── x509metrics │ │ │ │ └── server_cert_deprecations.go │ │ ├── validation │ │ │ └── metrics.go │ │ └── warning │ │ │ └── context.go │ └── plugin │ │ └── pkg │ │ ├── audit │ │ ├── buffered │ │ │ ├── buffered.go │ │ │ └── doc.go │ │ ├── log │ │ │ └── backend.go │ │ ├── truncate │ │ │ ├── doc.go │ │ │ └── truncate.go │ │ └── webhook │ │ │ └── webhook.go │ │ ├── authenticator │ │ └── token │ │ │ └── webhook │ │ │ ├── metrics.go │ │ │ └── webhook.go │ │ └── authorizer │ │ └── webhook │ │ ├── gencerts.sh │ │ ├── metrics │ │ └── metrics.go │ │ └── webhook.go ├── client-go │ ├── LICENSE │ ├── applyconfigurations │ │ ├── OWNERS │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── rule.go │ │ │ │ ├── rulewithoperations.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validatingwebhook.go │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ ├── validation.go │ │ │ │ ├── variable.go │ │ │ │ └── webhookclientconfig.go │ │ │ ├── v1alpha1 │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── jsonpatch.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingadmissionpolicybindingspec.go │ │ │ │ ├── mutatingadmissionpolicyspec.go │ │ │ │ ├── mutation.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validation.go │ │ │ │ └── variable.go │ │ │ └── v1beta1 │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── jsonpatch.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingadmissionpolicybindingspec.go │ │ │ │ ├── mutatingadmissionpolicyspec.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── mutation.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── typechecking.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ ├── validatingadmissionpolicystatus.go │ │ │ │ ├── validatingwebhook.go │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ ├── validation.go │ │ │ │ ├── variable.go │ │ │ │ └── webhookclientconfig.go │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── serverstorageversion.go │ │ │ │ ├── storageversion.go │ │ │ │ ├── storageversioncondition.go │ │ │ │ └── storageversionstatus.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ ├── v1beta1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── rollbackconfig.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ └── v1beta2 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── scale.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── scale.go │ │ │ │ ├── scalespec.go │ │ │ │ └── scalestatus.go │ │ │ ├── v2 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ ├── hpascalingrules.go │ │ │ │ ├── metricidentifier.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── metrictarget.go │ │ │ │ ├── metricvaluestatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ │ ├── v2beta1 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ │ └── v2beta2 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ ├── hpascalingrules.go │ │ │ │ ├── metricidentifier.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── metrictarget.go │ │ │ │ ├── metricvaluestatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── cronjobspec.go │ │ │ │ ├── cronjobstatus.go │ │ │ │ ├── job.go │ │ │ │ ├── jobcondition.go │ │ │ │ ├── jobspec.go │ │ │ │ ├── jobstatus.go │ │ │ │ ├── jobtemplatespec.go │ │ │ │ ├── podfailurepolicy.go │ │ │ │ ├── podfailurepolicyonexitcodesrequirement.go │ │ │ │ ├── podfailurepolicyonpodconditionspattern.go │ │ │ │ ├── podfailurepolicyrule.go │ │ │ │ ├── successpolicy.go │ │ │ │ ├── successpolicyrule.go │ │ │ │ └── uncountedterminatedpods.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── cronjobspec.go │ │ │ │ ├── cronjobstatus.go │ │ │ │ └── jobtemplatespec.go │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── clustertrustbundlespec.go │ │ │ │ ├── podcertificaterequest.go │ │ │ │ ├── podcertificaterequestspec.go │ │ │ │ └── podcertificaterequeststatus.go │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ ├── certificatesigningrequeststatus.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── clustertrustbundlespec.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── lease.go │ │ │ │ └── leasespec.go │ │ │ ├── v1alpha2 │ │ │ │ ├── leasecandidate.go │ │ │ │ └── leasecandidatespec.go │ │ │ └── v1beta1 │ │ │ │ ├── lease.go │ │ │ │ ├── leasecandidate.go │ │ │ │ ├── leasecandidatespec.go │ │ │ │ └── leasespec.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── affinity.go │ │ │ │ ├── apparmorprofile.go │ │ │ │ ├── attachedvolume.go │ │ │ │ ├── awselasticblockstorevolumesource.go │ │ │ │ ├── azurediskvolumesource.go │ │ │ │ ├── azurefilepersistentvolumesource.go │ │ │ │ ├── azurefilevolumesource.go │ │ │ │ ├── capabilities.go │ │ │ │ ├── cephfspersistentvolumesource.go │ │ │ │ ├── cephfsvolumesource.go │ │ │ │ ├── cinderpersistentvolumesource.go │ │ │ │ ├── cindervolumesource.go │ │ │ │ ├── clientipconfig.go │ │ │ │ ├── clustertrustbundleprojection.go │ │ │ │ ├── componentcondition.go │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── configmapenvsource.go │ │ │ │ ├── configmapkeyselector.go │ │ │ │ ├── configmapnodeconfigsource.go │ │ │ │ ├── configmapprojection.go │ │ │ │ ├── configmapvolumesource.go │ │ │ │ ├── container.go │ │ │ │ ├── containerextendedresourcerequest.go │ │ │ │ ├── containerimage.go │ │ │ │ ├── containerport.go │ │ │ │ ├── containerresizepolicy.go │ │ │ │ ├── containerrestartrule.go │ │ │ │ ├── containerrestartruleonexitcodes.go │ │ │ │ ├── containerstate.go │ │ │ │ ├── containerstaterunning.go │ │ │ │ ├── containerstateterminated.go │ │ │ │ ├── containerstatewaiting.go │ │ │ │ ├── containerstatus.go │ │ │ │ ├── containeruser.go │ │ │ │ ├── csipersistentvolumesource.go │ │ │ │ ├── csivolumesource.go │ │ │ │ ├── daemonendpoint.go │ │ │ │ ├── downwardapiprojection.go │ │ │ │ ├── downwardapivolumefile.go │ │ │ │ ├── downwardapivolumesource.go │ │ │ │ ├── emptydirvolumesource.go │ │ │ │ ├── endpointaddress.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── endpointsubset.go │ │ │ │ ├── envfromsource.go │ │ │ │ ├── envvar.go │ │ │ │ ├── envvarsource.go │ │ │ │ ├── ephemeralcontainer.go │ │ │ │ ├── ephemeralcontainercommon.go │ │ │ │ ├── ephemeralvolumesource.go │ │ │ │ ├── event.go │ │ │ │ ├── eventseries.go │ │ │ │ ├── eventsource.go │ │ │ │ ├── execaction.go │ │ │ │ ├── fcvolumesource.go │ │ │ │ ├── filekeyselector.go │ │ │ │ ├── flexpersistentvolumesource.go │ │ │ │ ├── flexvolumesource.go │ │ │ │ ├── flockervolumesource.go │ │ │ │ ├── gcepersistentdiskvolumesource.go │ │ │ │ ├── gitrepovolumesource.go │ │ │ │ ├── glusterfspersistentvolumesource.go │ │ │ │ ├── glusterfsvolumesource.go │ │ │ │ ├── grpcaction.go │ │ │ │ ├── hostalias.go │ │ │ │ ├── hostip.go │ │ │ │ ├── hostpathvolumesource.go │ │ │ │ ├── httpgetaction.go │ │ │ │ ├── httpheader.go │ │ │ │ ├── imagevolumesource.go │ │ │ │ ├── iscsipersistentvolumesource.go │ │ │ │ ├── iscsivolumesource.go │ │ │ │ ├── keytopath.go │ │ │ │ ├── lifecycle.go │ │ │ │ ├── lifecyclehandler.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── limitrangeitem.go │ │ │ │ ├── limitrangespec.go │ │ │ │ ├── linuxcontaineruser.go │ │ │ │ ├── loadbalanceringress.go │ │ │ │ ├── loadbalancerstatus.go │ │ │ │ ├── localobjectreference.go │ │ │ │ ├── localvolumesource.go │ │ │ │ ├── modifyvolumestatus.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespacecondition.go │ │ │ │ ├── namespacespec.go │ │ │ │ ├── namespacestatus.go │ │ │ │ ├── nfsvolumesource.go │ │ │ │ ├── node.go │ │ │ │ ├── nodeaddress.go │ │ │ │ ├── nodeaffinity.go │ │ │ │ ├── nodecondition.go │ │ │ │ ├── nodeconfigsource.go │ │ │ │ ├── nodeconfigstatus.go │ │ │ │ ├── nodedaemonendpoints.go │ │ │ │ ├── nodefeatures.go │ │ │ │ ├── noderuntimehandler.go │ │ │ │ ├── noderuntimehandlerfeatures.go │ │ │ │ ├── nodeselector.go │ │ │ │ ├── nodeselectorrequirement.go │ │ │ │ ├── nodeselectorterm.go │ │ │ │ ├── nodespec.go │ │ │ │ ├── nodestatus.go │ │ │ │ ├── nodeswapstatus.go │ │ │ │ ├── nodesysteminfo.go │ │ │ │ ├── objectfieldselector.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── persistentvolumeclaimcondition.go │ │ │ │ ├── persistentvolumeclaimspec.go │ │ │ │ ├── persistentvolumeclaimstatus.go │ │ │ │ ├── persistentvolumeclaimtemplate.go │ │ │ │ ├── persistentvolumeclaimvolumesource.go │ │ │ │ ├── persistentvolumesource.go │ │ │ │ ├── persistentvolumespec.go │ │ │ │ ├── persistentvolumestatus.go │ │ │ │ ├── photonpersistentdiskvolumesource.go │ │ │ │ ├── pod.go │ │ │ │ ├── podaffinity.go │ │ │ │ ├── podaffinityterm.go │ │ │ │ ├── podantiaffinity.go │ │ │ │ ├── podcertificateprojection.go │ │ │ │ ├── podcondition.go │ │ │ │ ├── poddnsconfig.go │ │ │ │ ├── poddnsconfigoption.go │ │ │ │ ├── podextendedresourceclaimstatus.go │ │ │ │ ├── podip.go │ │ │ │ ├── podos.go │ │ │ │ ├── podreadinessgate.go │ │ │ │ ├── podresourceclaim.go │ │ │ │ ├── podresourceclaimstatus.go │ │ │ │ ├── podschedulinggate.go │ │ │ │ ├── podsecuritycontext.go │ │ │ │ ├── podspec.go │ │ │ │ ├── podstatus.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── podtemplatespec.go │ │ │ │ ├── portstatus.go │ │ │ │ ├── portworxvolumesource.go │ │ │ │ ├── preferredschedulingterm.go │ │ │ │ ├── probe.go │ │ │ │ ├── probehandler.go │ │ │ │ ├── projectedvolumesource.go │ │ │ │ ├── quobytevolumesource.go │ │ │ │ ├── rbdpersistentvolumesource.go │ │ │ │ ├── rbdvolumesource.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontrollercondition.go │ │ │ │ ├── replicationcontrollerspec.go │ │ │ │ ├── replicationcontrollerstatus.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourcefieldselector.go │ │ │ │ ├── resourcehealth.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── resourcequotaspec.go │ │ │ │ ├── resourcequotastatus.go │ │ │ │ ├── resourcerequirements.go │ │ │ │ ├── resourcestatus.go │ │ │ │ ├── scaleiopersistentvolumesource.go │ │ │ │ ├── scaleiovolumesource.go │ │ │ │ ├── scopedresourceselectorrequirement.go │ │ │ │ ├── scopeselector.go │ │ │ │ ├── seccompprofile.go │ │ │ │ ├── secret.go │ │ │ │ ├── secretenvsource.go │ │ │ │ ├── secretkeyselector.go │ │ │ │ ├── secretprojection.go │ │ │ │ ├── secretreference.go │ │ │ │ ├── secretvolumesource.go │ │ │ │ ├── securitycontext.go │ │ │ │ ├── selinuxoptions.go │ │ │ │ ├── service.go │ │ │ │ ├── serviceaccount.go │ │ │ │ ├── serviceaccounttokenprojection.go │ │ │ │ ├── serviceport.go │ │ │ │ ├── servicespec.go │ │ │ │ ├── servicestatus.go │ │ │ │ ├── sessionaffinityconfig.go │ │ │ │ ├── sleepaction.go │ │ │ │ ├── storageospersistentvolumesource.go │ │ │ │ ├── storageosvolumesource.go │ │ │ │ ├── sysctl.go │ │ │ │ ├── taint.go │ │ │ │ ├── tcpsocketaction.go │ │ │ │ ├── toleration.go │ │ │ │ ├── topologyselectorlabelrequirement.go │ │ │ │ ├── topologyselectorterm.go │ │ │ │ ├── topologyspreadconstraint.go │ │ │ │ ├── typedlocalobjectreference.go │ │ │ │ ├── typedobjectreference.go │ │ │ │ ├── volume.go │ │ │ │ ├── volumedevice.go │ │ │ │ ├── volumemount.go │ │ │ │ ├── volumemountstatus.go │ │ │ │ ├── volumenodeaffinity.go │ │ │ │ ├── volumeprojection.go │ │ │ │ ├── volumeresourcerequirements.go │ │ │ │ ├── volumesource.go │ │ │ │ ├── vspherevirtualdiskvolumesource.go │ │ │ │ ├── weightedpodaffinityterm.go │ │ │ │ └── windowssecuritycontextoptions.go │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fornode.go │ │ │ │ └── forzone.go │ │ │ └── v1beta1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fornode.go │ │ │ │ └── forzone.go │ │ ├── doc.go │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── eventseries.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── eventseries.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollbackconfig.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ └── scale.go │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ ├── v1beta1 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ ├── v1beta2 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ └── v1beta3 │ │ │ │ ├── exemptprioritylevelconfiguration.go │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ ├── imagepolicy │ │ │ └── v1alpha1 │ │ │ │ ├── imagereview.go │ │ │ │ ├── imagereviewcontainerspec.go │ │ │ │ ├── imagereviewspec.go │ │ │ │ └── imagereviewstatus.go │ │ ├── internal │ │ │ └── internal.go │ │ ├── meta │ │ │ └── v1 │ │ │ │ ├── condition.go │ │ │ │ ├── deleteoptions.go │ │ │ │ ├── labelselector.go │ │ │ │ ├── labelselectorrequirement.go │ │ │ │ ├── managedfieldsentry.go │ │ │ │ ├── objectmeta.go │ │ │ │ ├── ownerreference.go │ │ │ │ ├── preconditions.go │ │ │ │ ├── typemeta.go │ │ │ │ └── unstructured.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ ├── ingressclassspec.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressservicebackend.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── ipaddressspec.go │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ ├── parentreference.go │ │ │ │ ├── servicebackendport.go │ │ │ │ ├── servicecidr.go │ │ │ │ ├── servicecidrspec.go │ │ │ │ └── servicecidrstatus.go │ │ │ └── v1beta1 │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ ├── ingressclassspec.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── ipaddressspec.go │ │ │ │ ├── parentreference.go │ │ │ │ ├── servicecidr.go │ │ │ │ ├── servicecidrspec.go │ │ │ │ └── servicecidrstatus.go │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ └── scheduling.go │ │ │ ├── v1alpha1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ ├── runtimeclassspec.go │ │ │ │ └── scheduling.go │ │ │ └── v1beta1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ └── scheduling.go │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── eviction.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ └── poddisruptionbudgetstatus.go │ │ │ └── v1beta1 │ │ │ │ ├── eviction.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ └── poddisruptionbudgetstatus.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ │ ├── v1alpha1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ │ └── v1beta1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ ├── resource │ │ │ ├── v1 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── capacityrequestpolicy.go │ │ │ │ ├── capacityrequestpolicyrange.go │ │ │ │ ├── capacityrequirements.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── exactdevicerequest.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ │ ├── v1alpha3 │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── devicetaintrulespec.go │ │ │ │ └── devicetaintselector.go │ │ │ ├── v1beta1 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── basicdevice.go │ │ │ │ ├── capacityrequestpolicy.go │ │ │ │ ├── capacityrequestpolicyrange.go │ │ │ │ ├── capacityrequirements.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ │ └── v1beta2 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── capacityrequestpolicy.go │ │ │ │ ├── capacityrequestpolicyrange.go │ │ │ │ ├── capacityrequirements.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counterset.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── devicecapacity.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicecounterconsumption.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── devicesubrequest.go │ │ │ │ ├── devicetaint.go │ │ │ │ ├── devicetoleration.go │ │ │ │ ├── exactdevicerequest.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ └── priorityclass.go │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ └── volumeerror.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeattributesclass.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ ├── storagemigration │ │ │ └── v1alpha1 │ │ │ │ ├── groupversionresource.go │ │ │ │ ├── migrationcondition.go │ │ │ │ ├── storageversionmigration.go │ │ │ │ ├── storageversionmigrationspec.go │ │ │ │ └── storageversionmigrationstatus.go │ │ └── utils.go │ ├── discovery │ │ ├── aggregated_discovery.go │ │ ├── cached │ │ │ └── memory │ │ │ │ └── memcache.go │ │ ├── discovery_client.go │ │ ├── doc.go │ │ ├── fake │ │ │ └── discovery.go │ │ └── helper.go │ ├── dynamic │ │ ├── dynamicinformer │ │ │ ├── informer.go │ │ │ └── interface.go │ │ ├── dynamiclister │ │ │ ├── interface.go │ │ │ ├── lister.go │ │ │ └── shim.go │ │ ├── fake │ │ │ └── simple.go │ │ ├── interface.go │ │ ├── scheme.go │ │ └── simple.go │ ├── features │ │ ├── envvar.go │ │ ├── features.go │ │ └── known_features.go │ ├── gentype │ │ ├── fake.go │ │ └── type.go │ ├── informers │ │ ├── admissionregistration │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apiserverinternal │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── storageversion.go │ │ ├── apps │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── v1beta1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ ├── autoscaling │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ ├── v2 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ ├── v2beta1 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ └── v2beta2 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ ├── batch │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── interface.go │ │ │ │ └── job.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ └── interface.go │ │ ├── certificates │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── interface.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── interface.go │ │ │ │ └── podcertificaterequest.go │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── interface.go │ │ ├── coordination │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── interface.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ ├── core │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── interface.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ └── serviceaccount.go │ │ ├── discovery │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── interface.go │ │ ├── doc.go │ │ ├── events │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── interface.go │ │ ├── extensions │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── ingress.go │ │ │ │ ├── interface.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── replicaset.go │ │ ├── factory.go │ │ ├── flowcontrol │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ ├── generic.go │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ ├── networking │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.go │ │ │ │ └── servicecidr.go │ │ ├── node │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── runtimeclass.go │ │ ├── policy │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── poddisruptionbudget.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── poddisruptionbudget.go │ │ ├── rbac │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ ├── resource │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── v1alpha3 │ │ │ │ ├── devicetaintrule.go │ │ │ │ └── interface.go │ │ │ ├── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta2 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ ├── scheduling │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ ├── storage │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ └── storagemigration │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ ├── interface.go │ │ │ └── storageversionmigration.go │ ├── kubernetes │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ ├── import.go │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed │ │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingadmissionpolicy.go │ │ │ │ │ ├── fake_mutatingadmissionpolicybinding.go │ │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ │ └── fake_validatingadmissionpolicybinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ ├── fake_mutatingadmissionpolicy.go │ │ │ │ ├── fake_mutatingadmissionpolicybinding.go │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apiserverinternal_client.go │ │ │ │ └── fake_storageversion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── storageversion.go │ │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── v1beta1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apps_client.go │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ ├── fake_daemonset.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_replicaset.go │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ ├── fake_selfsubjectreview.go │ │ │ │ │ └── fake_tokenreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── v1alpha1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ └── fake_selfsubjectreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── selfsubjectreview.go │ │ │ └── v1beta1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authentication_client.go │ │ │ │ ├── fake_selfsubjectreview.go │ │ │ │ └── fake_tokenreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ └── v1beta1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authorization_client.go │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2beta1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ ├── fake_cronjob.go │ │ │ │ │ └── fake_job.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ └── v1beta1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_batch_client.go │ │ │ │ └── fake_cronjob.go │ │ │ │ └── generated_expansion.go │ │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ └── fake_certificatesigningrequest.go │ │ │ │ └── generated_expansion.go │ │ │ ├── v1alpha1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ ├── fake_clustertrustbundle.go │ │ │ │ │ └── fake_podcertificaterequest.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── podcertificaterequest.go │ │ │ └── v1beta1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_certificates_client.go │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ ├── fake_certificatesigningrequest_expansion.go │ │ │ │ └── fake_clustertrustbundle.go │ │ │ │ └── generated_expansion.go │ │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ └── fake_lease.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ └── fake_leasecandidate.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_coordination_client.go │ │ │ │ ├── fake_lease.go │ │ │ │ └── fake_leasecandidate.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── core_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_componentstatus.go │ │ │ │ ├── fake_configmap.go │ │ │ │ ├── fake_core_client.go │ │ │ │ ├── fake_endpoints.go │ │ │ │ ├── fake_event.go │ │ │ │ ├── fake_event_expansion.go │ │ │ │ ├── fake_limitrange.go │ │ │ │ ├── fake_namespace.go │ │ │ │ ├── fake_namespace_expansion.go │ │ │ │ ├── fake_node.go │ │ │ │ ├── fake_node_expansion.go │ │ │ │ ├── fake_persistentvolume.go │ │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ │ ├── fake_pod.go │ │ │ │ ├── fake_pod_expansion.go │ │ │ │ ├── fake_podtemplate.go │ │ │ │ ├── fake_replicationcontroller.go │ │ │ │ ├── fake_resourcequota.go │ │ │ │ ├── fake_secret.go │ │ │ │ ├── fake_service.go │ │ │ │ ├── fake_service_expansion.go │ │ │ │ └── fake_serviceaccount.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespace_expansion.go │ │ │ │ ├── node.go │ │ │ │ ├── node_expansion.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── pod_expansion.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_expansion.go │ │ │ │ └── serviceaccount.go │ │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── discovery_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_discovery_client.go │ │ │ │ │ └── fake_endpointslice.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── discovery_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpointslice.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_discovery_client.go │ │ │ │ └── fake_endpointslice.go │ │ │ │ └── generated_expansion.go │ │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── events_client.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ └── fake_events_client.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── events_client.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_event.go │ │ │ │ ├── fake_event_expansion.go │ │ │ │ └── fake_events_client.go │ │ │ │ └── generated_expansion.go │ │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_daemonset.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ ├── fake_extensions_client.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_networkpolicy.go │ │ │ │ └── fake_replicaset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── replicaset.go │ │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ ├── fake_flowschema.go │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_ingressclass.go │ │ │ │ │ ├── fake_ipaddress.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ ├── fake_networkpolicy.go │ │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_ingressclass.go │ │ │ │ ├── fake_ipaddress.go │ │ │ │ ├── fake_networking_client.go │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ └── servicecidr.go │ │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_node_client.go │ │ │ │ └── fake_runtimeclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_eviction.go │ │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ └── fake_policy_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_eviction.go │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ └── fake_policy_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_clusterrole.go │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ ├── fake_rbac_client.go │ │ │ │ ├── fake_role.go │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── resource │ │ │ ├── v1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ ├── fake_resource_client.go │ │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── v1alpha3 │ │ │ │ ├── devicetaintrule.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_devicetaintrule.go │ │ │ │ │ └── fake_resource_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── resource_client.go │ │ │ ├── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_deviceclass.go │ │ │ │ │ ├── fake_resource_client.go │ │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta2 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_deviceclass.go │ │ │ │ ├── fake_resource_client.go │ │ │ │ ├── fake_resourceclaim.go │ │ │ │ ├── fake_resourceclaimtemplate.go │ │ │ │ └── fake_resourceslice.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_priorityclass.go │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csidriver.go │ │ │ │ │ ├── fake_csinode.go │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ ├── fake_storageclass.go │ │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_csidriver.go │ │ │ │ ├── fake_csinode.go │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ ├── fake_storageclass.go │ │ │ │ ├── fake_volumeattachment.go │ │ │ │ └── fake_volumeattributesclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── storagemigration │ │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_storagemigration_client.go │ │ │ └── fake_storageversionmigration.go │ │ │ ├── generated_expansion.go │ │ │ ├── storagemigration_client.go │ │ │ └── storageversionmigration.go │ ├── listers │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── storageversion.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ ├── v1beta1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ └── v1beta2 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── job.go │ │ │ │ └── job_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ └── expansion_generated.go │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── expansion_generated.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── expansion_generated.go │ │ │ │ └── podcertificaterequest.go │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ └── expansion_generated.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── lease.go │ │ │ │ └── leasecandidate.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontroller_expansion.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ └── serviceaccount.go │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── endpointslice.go │ │ │ │ └── expansion_generated.go │ │ ├── doc.go │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── expansion_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── expansion_generated.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ └── replicaset_expansion.go │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ ├── generic_helpers.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ └── servicecidr.go │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── runtimeclass.go │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── eviction.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── poddisruptionbudget_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── eviction.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── poddisruptionbudget_expansion.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ ├── resource │ │ │ ├── v1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── v1alpha3 │ │ │ │ ├── devicetaintrule.go │ │ │ │ └── expansion_generated.go │ │ │ ├── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta2 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ └── storagemigration │ │ │ └── v1alpha1 │ │ │ ├── expansion_generated.go │ │ │ └── storageversionmigration.go │ ├── metadata │ │ ├── fake │ │ │ └── simple.go │ │ ├── interface.go │ │ ├── metadata.go │ │ ├── metadatainformer │ │ │ ├── informer.go │ │ │ └── interface.go │ │ └── metadatalister │ │ │ ├── interface.go │ │ │ ├── lister.go │ │ │ └── shim.go │ ├── openapi │ │ ├── OWNERS │ │ ├── cached │ │ │ ├── client.go │ │ │ └── groupversion.go │ │ ├── client.go │ │ ├── groupversion.go │ │ └── typeconverter.go │ ├── pkg │ │ ├── apis │ │ │ └── clientauthentication │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── version │ │ │ ├── base.go │ │ │ ├── doc.go │ │ │ └── version.go │ ├── plugin │ │ └── pkg │ │ │ └── client │ │ │ └── auth │ │ │ ├── exec │ │ │ ├── exec.go │ │ │ └── metrics.go │ │ │ └── oidc │ │ │ └── oidc.go │ ├── rest │ │ ├── .mockery.yaml │ │ ├── OWNERS │ │ ├── client.go │ │ ├── config.go │ │ ├── exec.go │ │ ├── fake │ │ │ └── fake.go │ │ ├── plugin.go │ │ ├── request.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── urlbackoff.go │ │ ├── warnings.go │ │ ├── watch │ │ │ ├── decoder.go │ │ │ └── encoder.go │ │ ├── with_retry.go │ │ └── zz_generated.deepcopy.go │ ├── restmapper │ │ ├── category_expansion.go │ │ ├── discovery.go │ │ └── shortcut.go │ ├── testing │ │ ├── actions.go │ │ ├── fake.go │ │ ├── fixture.go │ │ └── interface.go │ ├── tools │ │ ├── auth │ │ │ ├── OWNERS │ │ │ └── clientauth.go │ │ ├── cache │ │ │ ├── OWNERS │ │ │ ├── controller.go │ │ │ ├── delta_fifo.go │ │ │ ├── doc.go │ │ │ ├── expiration_cache.go │ │ │ ├── expiration_cache_fakes.go │ │ │ ├── fake_custom_store.go │ │ │ ├── fifo.go │ │ │ ├── heap.go │ │ │ ├── index.go │ │ │ ├── listers.go │ │ │ ├── listwatch.go │ │ │ ├── mutation_cache.go │ │ │ ├── mutation_detector.go │ │ │ ├── object-names.go │ │ │ ├── reflector.go │ │ │ ├── reflector_data_consistency_detector.go │ │ │ ├── reflector_metrics.go │ │ │ ├── retry_with_deadline.go │ │ │ ├── shared_informer.go │ │ │ ├── store.go │ │ │ ├── synctrack │ │ │ │ ├── lazy.go │ │ │ │ └── synctrack.go │ │ │ ├── the_real_fifo.go │ │ │ ├── thread_safe_store.go │ │ │ └── undelta_store.go │ │ ├── clientcmd │ │ │ ├── api │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── latest │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── auth_loaders.go │ │ │ ├── client_config.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── flag.go │ │ │ ├── helpers.go │ │ │ ├── loader.go │ │ │ ├── merge.go │ │ │ ├── merged_client_builder.go │ │ │ ├── overrides.go │ │ │ └── validation.go │ │ ├── events │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event_broadcaster.go │ │ │ ├── event_recorder.go │ │ │ ├── fake.go │ │ │ ├── helper.go │ │ │ └── interfaces.go │ │ ├── internal │ │ │ └── events │ │ │ │ └── interfaces.go │ │ ├── leaderelection │ │ │ ├── OWNERS │ │ │ ├── healthzadaptor.go │ │ │ ├── leaderelection.go │ │ │ ├── leasecandidate.go │ │ │ ├── metrics.go │ │ │ └── resourcelock │ │ │ │ ├── interface.go │ │ │ │ ├── leaselock.go │ │ │ │ └── multilock.go │ │ ├── metrics │ │ │ ├── OWNERS │ │ │ └── metrics.go │ │ ├── pager │ │ │ └── pager.go │ │ ├── record │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_cache.go │ │ │ ├── fake.go │ │ │ └── util │ │ │ │ └── util.go │ │ └── reference │ │ │ └── ref.go │ ├── transport │ │ ├── OWNERS │ │ ├── cache.go │ │ ├── cache_go118.go │ │ ├── cert_rotation.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ ├── token_source.go │ │ └── transport.go │ └── util │ │ ├── apply │ │ └── apply.go │ │ ├── cert │ │ ├── OWNERS │ │ ├── cert.go │ │ ├── csr.go │ │ ├── io.go │ │ ├── pem.go │ │ └── server_inspection.go │ │ ├── connrotation │ │ └── connrotation.go │ │ ├── consistencydetector │ │ └── data_consistency_detector.go │ │ ├── flowcontrol │ │ ├── backoff.go │ │ └── throttle.go │ │ ├── homedir │ │ └── homedir.go │ │ ├── keyutil │ │ ├── OWNERS │ │ └── key.go │ │ ├── retry │ │ ├── OWNERS │ │ └── util.go │ │ └── workqueue │ │ ├── default_rate_limiters.go │ │ ├── delaying_queue.go │ │ ├── doc.go │ │ ├── metrics.go │ │ ├── parallelizer.go │ │ ├── queue.go │ │ └── rate_limiting_queue.go ├── code-generator │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── SECURITY_CONTACTS │ ├── cmd │ │ ├── applyconfiguration-gen │ │ │ ├── args │ │ │ │ ├── args.go │ │ │ │ └── externaltypes.go │ │ │ ├── generators │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── internal.go │ │ │ │ ├── jsontagutil.go │ │ │ │ ├── openapi.go │ │ │ │ ├── refgraph.go │ │ │ │ ├── targets.go │ │ │ │ ├── types.go │ │ │ │ └── util.go │ │ │ └── main.go │ │ ├── client-gen │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── args │ │ │ │ ├── args.go │ │ │ │ ├── gvpackages.go │ │ │ │ └── gvtype.go │ │ │ ├── generators │ │ │ │ ├── client_generator.go │ │ │ │ ├── fake │ │ │ │ │ ├── fake_client_generator.go │ │ │ │ │ ├── generator_fake_for_clientset.go │ │ │ │ │ ├── generator_fake_for_group.go │ │ │ │ │ └── generator_fake_for_type.go │ │ │ │ ├── generator_for_clientset.go │ │ │ │ ├── generator_for_expansion.go │ │ │ │ ├── generator_for_group.go │ │ │ │ ├── generator_for_type.go │ │ │ │ ├── scheme │ │ │ │ │ └── generator_for_scheme.go │ │ │ │ └── util │ │ │ │ │ ├── gvpackages.go │ │ │ │ │ └── tags.go │ │ │ ├── main.go │ │ │ └── types │ │ │ │ ├── helpers.go │ │ │ │ └── types.go │ │ ├── conversion-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── conversion.go │ │ │ └── main.go │ │ ├── deepcopy-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── deepcopy.go │ │ │ └── main.go │ │ ├── defaulter-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── defaulter.go │ │ │ └── main.go │ │ ├── go-to-protobuf │ │ │ ├── .gitignore │ │ │ ├── OWNERS │ │ │ ├── main.go │ │ │ └── protobuf │ │ │ │ ├── cmd.go │ │ │ │ ├── generator.go │ │ │ │ ├── import_tracker.go │ │ │ │ ├── namer.go │ │ │ │ ├── package.go │ │ │ │ ├── parser.go │ │ │ │ └── tags.go │ │ ├── informer-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ ├── factory.go │ │ │ │ ├── factoryinterface.go │ │ │ │ ├── generic.go │ │ │ │ ├── groupinterface.go │ │ │ │ ├── informer.go │ │ │ │ ├── targets.go │ │ │ │ ├── types.go │ │ │ │ └── versioninterface.go │ │ │ └── main.go │ │ ├── lister-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ ├── expansion.go │ │ │ │ └── lister.go │ │ │ └── main.go │ │ └── register-gen │ │ │ ├── args │ │ │ └── args.go │ │ │ ├── generators │ │ │ ├── register_external.go │ │ │ └── targets.go │ │ │ └── main.go │ ├── code-of-conduct.md │ ├── doc.go │ ├── generate-groups.sh │ ├── generate-internal-groups.sh │ ├── kube_codegen.sh │ ├── pkg │ │ ├── namer │ │ │ └── tag-override.go │ │ └── util │ │ │ ├── comments.go │ │ │ └── plural_exceptions.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── reflect │ │ │ └── type.go │ └── tools.go ├── component-base │ ├── LICENSE │ ├── cli │ │ └── flag │ │ │ ├── ciphersuites_flag.go │ │ │ ├── colon_separated_multimap_string_string.go │ │ │ ├── configuration_map.go │ │ │ ├── flags.go │ │ │ ├── langle_separated_map_string_string.go │ │ │ ├── map_string_bool.go │ │ │ ├── map_string_string.go │ │ │ ├── namedcertkey_flag.go │ │ │ ├── noop.go │ │ │ ├── omitempty.go │ │ │ ├── sectioned.go │ │ │ ├── string_flag.go │ │ │ ├── string_slice_flag.go │ │ │ ├── tracker_flag.go │ │ │ └── tristate.go │ ├── compatibility │ │ ├── OWNERS │ │ ├── registry.go │ │ └── version.go │ ├── featuregate │ │ ├── OWNERS │ │ └── feature_gate.go │ ├── logs │ │ ├── OWNERS │ │ ├── api │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── kube_features.go │ │ │ │ ├── options.go │ │ │ │ ├── options_no_slog.go │ │ │ │ ├── options_slog.go │ │ │ │ ├── pflags.go │ │ │ │ ├── registry.go │ │ │ │ ├── text.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── internal │ │ │ └── setverbositylevel │ │ │ │ └── setverbositylevel.go │ │ ├── klogflags │ │ │ └── klogflags.go │ │ └── logs.go │ ├── metrics │ │ ├── OWNERS │ │ ├── buckets.go │ │ ├── collector.go │ │ ├── counter.go │ │ ├── desc.go │ │ ├── features │ │ │ └── kube_features.go │ │ ├── gauge.go │ │ ├── histogram.go │ │ ├── http.go │ │ ├── labels.go │ │ ├── legacyregistry │ │ │ └── registry.go │ │ ├── metric.go │ │ ├── options.go │ │ ├── opts.go │ │ ├── processstarttime.go │ │ ├── processstarttime_others.go │ │ ├── processstarttime_windows.go │ │ ├── prometheus │ │ │ ├── compatversion │ │ │ │ └── metrics.go │ │ │ ├── feature │ │ │ │ └── metrics.go │ │ │ ├── slis │ │ │ │ ├── metrics.go │ │ │ │ ├── registry.go │ │ │ │ └── routes.go │ │ │ └── workqueue │ │ │ │ └── metrics.go │ │ ├── prometheusextension │ │ │ ├── timing_histogram.go │ │ │ ├── timing_histogram_vec.go │ │ │ ├── weighted_histogram.go │ │ │ └── weighted_histogram_vec.go │ │ ├── registry.go │ │ ├── summary.go │ │ ├── testutil │ │ │ ├── metrics.go │ │ │ ├── promlint.go │ │ │ └── testutil.go │ │ ├── timing_histogram.go │ │ ├── value.go │ │ ├── version.go │ │ ├── version_parser.go │ │ └── wrappers.go │ ├── tracing │ │ ├── OWNERS │ │ ├── api │ │ │ └── v1 │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── tracing.go │ │ └── utils.go │ ├── version │ │ ├── OWNERS │ │ ├── base.go │ │ ├── dynamic.go │ │ └── version.go │ └── zpages │ │ ├── features │ │ ├── doc.go │ │ └── kube_features.go │ │ ├── flagz │ │ ├── flagreader.go │ │ └── flagz.go │ │ ├── httputil │ │ └── httputil.go │ │ └── statusz │ │ ├── registry.go │ │ └── statusz.go ├── gengo │ └── v2 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── codetags │ │ ├── extractor.go │ │ ├── parser.go │ │ ├── scanner.go │ │ └── types.go │ │ ├── comments.go │ │ ├── execute.go │ │ ├── generator │ │ ├── doc.go │ │ ├── error_tracker.go │ │ ├── execute.go │ │ ├── generator.go │ │ ├── go_generator.go │ │ ├── import_tracker.go │ │ ├── simple_target.go │ │ └── snippet_writer.go │ │ ├── namer │ │ ├── doc.go │ │ ├── import_tracker.go │ │ ├── namer.go │ │ ├── order.go │ │ └── plural_namer.go │ │ ├── parser │ │ ├── doc.go │ │ ├── parse.go │ │ ├── parse_122.go │ │ └── parse_pre_122.go │ │ └── types │ │ ├── doc.go │ │ └── types.go ├── klog │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── klog.go │ ├── klog_file.go │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── SECURITY.md │ │ ├── SECURITY_CONTACTS │ │ ├── code-of-conduct.md │ │ ├── contextual.go │ │ ├── contextual_slog.go │ │ ├── exit.go │ │ ├── format.go │ │ ├── imports.go │ │ ├── internal │ │ ├── buffer │ │ │ └── buffer.go │ │ ├── clock │ │ │ ├── README.md │ │ │ └── clock.go │ │ ├── dbg │ │ │ └── dbg.go │ │ ├── serialize │ │ │ ├── keyvalues.go │ │ │ ├── keyvalues_no_slog.go │ │ │ └── keyvalues_slog.go │ │ ├── severity │ │ │ └── severity.go │ │ ├── sloghandler │ │ │ └── sloghandler_slog.go │ │ └── verbosity │ │ │ └── verbosity.go │ │ ├── k8s_references.go │ │ ├── k8s_references_slog.go │ │ ├── klog.go │ │ ├── klog_file.go │ │ ├── klog_file_others.go │ │ ├── klog_file_windows.go │ │ ├── klogr.go │ │ ├── klogr_slog.go │ │ ├── safeptr.go │ │ └── textlogger │ │ ├── options.go │ │ ├── textlogger.go │ │ └── textlogger_slog.go ├── kms │ ├── LICENSE │ ├── apis │ │ ├── v1beta1 │ │ │ ├── api.pb.go │ │ │ ├── api.proto │ │ │ ├── api_grpc.pb.go │ │ │ └── v1beta1.go │ │ └── v2 │ │ │ ├── api.pb.go │ │ │ ├── api.proto │ │ │ ├── api_grpc.pb.go │ │ │ └── v2.go │ └── pkg │ │ ├── service │ │ ├── grpc_service.go │ │ └── interface.go │ │ └── util │ │ └── util.go ├── kube-aggregator │ ├── LICENSE │ └── pkg │ │ ├── apis │ │ └── apiregistration │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── v1beta1 │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ ├── zz_generated.defaults.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── zz_generated.deepcopy.go │ │ └── client │ │ ├── clientset_generated │ │ └── clientset │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── apiregistration │ │ │ ├── v1 │ │ │ ├── apiregistration_client.go │ │ │ ├── apiservice.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apiregistration_client.go │ │ │ │ └── fake_apiservice.go │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ ├── apiregistration_client.go │ │ │ ├── apiservice.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_apiregistration_client.go │ │ │ └── fake_apiservice.go │ │ │ └── generated_expansion.go │ │ ├── informers │ │ └── externalversions │ │ │ ├── apiregistration │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── apiservice.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── apiservice.go │ │ │ │ └── interface.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ │ └── listers │ │ └── apiregistration │ │ ├── v1 │ │ ├── apiservice.go │ │ └── expansion_generated.go │ │ └── v1beta1 │ │ ├── apiservice.go │ │ └── expansion_generated.go ├── kube-openapi │ ├── LICENSE │ ├── cmd │ │ └── openapi-gen │ │ │ ├── args │ │ │ └── args.go │ │ │ └── openapi-gen.go │ └── pkg │ │ ├── builder │ │ ├── doc.go │ │ ├── openapi.go │ │ ├── parameters.go │ │ └── util.go │ │ ├── builder3 │ │ ├── openapi.go │ │ ├── util.go │ │ └── util │ │ │ └── util.go │ │ ├── cached │ │ └── cache.go │ │ ├── common │ │ ├── common.go │ │ ├── doc.go │ │ ├── interfaces.go │ │ └── restfuladapter │ │ │ ├── adapter.go │ │ │ ├── param_adapter.go │ │ │ ├── response_error_adapter.go │ │ │ ├── route_adapter.go │ │ │ └── webservice_adapter.go │ │ ├── generators │ │ ├── README.md │ │ ├── api_linter.go │ │ ├── config.go │ │ ├── enum.go │ │ ├── extension.go │ │ ├── markers.go │ │ ├── model_names.go │ │ ├── openapi.go │ │ ├── rules │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── idl_tag.go │ │ │ ├── list_type_streaming_tags.go │ │ │ ├── names_match.go │ │ │ └── omitempty_match_case.go │ │ └── union.go │ │ ├── handler │ │ ├── default_pruning.go │ │ └── handler.go │ │ ├── handler3 │ │ └── handler.go │ │ ├── internal │ │ ├── flags.go │ │ ├── serialization.go │ │ └── third_party │ │ │ ├── go-json-experiment │ │ │ └── json │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── arshal.go │ │ │ │ ├── arshal_any.go │ │ │ │ ├── arshal_default.go │ │ │ │ ├── arshal_funcs.go │ │ │ │ ├── arshal_inlined.go │ │ │ │ ├── arshal_methods.go │ │ │ │ ├── arshal_time.go │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode.go │ │ │ │ ├── errors.go │ │ │ │ ├── fields.go │ │ │ │ ├── fold.go │ │ │ │ ├── intern.go │ │ │ │ ├── pools.go │ │ │ │ ├── state.go │ │ │ │ ├── token.go │ │ │ │ └── value.go │ │ │ └── govalidator │ │ │ ├── LICENSE │ │ │ ├── patterns.go │ │ │ └── validator.go │ │ ├── schemaconv │ │ ├── openapi.go │ │ ├── proto_models.go │ │ └── smd.go │ │ ├── schemamutation │ │ └── walker.go │ │ ├── spec3 │ │ ├── component.go │ │ ├── encoding.go │ │ ├── example.go │ │ ├── external_documentation.go │ │ ├── fuzz.go │ │ ├── header.go │ │ ├── media_type.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path.go │ │ ├── request_body.go │ │ ├── response.go │ │ ├── security_scheme.go │ │ ├── server.go │ │ └── spec.go │ │ ├── util │ │ ├── proto │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ ├── document_v3.go │ │ │ └── openapi.go │ │ ├── sets │ │ │ ├── empty.go │ │ │ └── string.go │ │ ├── trie.go │ │ └── util.go │ │ └── validation │ │ ├── errors │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── api.go │ │ ├── doc.go │ │ ├── headers.go │ │ └── schema.go │ │ ├── spec │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── contact_info.go │ │ ├── external_docs.go │ │ ├── gnostic.go │ │ ├── header.go │ │ ├── info.go │ │ ├── items.go │ │ ├── license.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path_item.go │ │ ├── paths.go │ │ ├── ref.go │ │ ├── response.go │ │ ├── responses.go │ │ ├── schema.go │ │ ├── security_scheme.go │ │ ├── swagger.go │ │ └── tag.go │ │ ├── strfmt │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── bson.go │ │ ├── bson │ │ │ └── objectid.go │ │ ├── date.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── format.go │ │ ├── kubernetes-extensions.go │ │ └── time.go │ │ └── validate │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── debug.go │ │ ├── doc.go │ │ ├── formats.go │ │ ├── helpers.go │ │ ├── object_validator.go │ │ ├── options.go │ │ ├── result.go │ │ ├── rexp.go │ │ ├── schema.go │ │ ├── schema_messages.go │ │ ├── schema_option.go │ │ ├── schema_props.go │ │ ├── slice_validator.go │ │ ├── type.go │ │ ├── validator.go │ │ └── values.go └── utils │ ├── LICENSE │ ├── buffer │ └── ring_growing.go │ ├── clock │ ├── README.md │ ├── clock.go │ └── testing │ │ ├── fake_clock.go │ │ └── simple_interval_clock.go │ ├── internal │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── golang-lru │ │ └── lru.go │ │ └── net │ │ ├── ip.go │ │ └── parse.go │ ├── lru │ └── lru.go │ ├── net │ ├── ipfamily.go │ ├── ipnet.go │ ├── multi_listen.go │ ├── net.go │ ├── parse.go │ └── port.go │ ├── path │ └── file.go │ ├── ptr │ ├── OWNERS │ ├── README.md │ └── ptr.go │ └── trace │ ├── README.md │ └── trace.go ├── modules.txt └── sigs.k8s.io ├── apiserver-network-proxy └── konnectivity-client │ ├── LICENSE │ ├── pkg │ ├── client │ │ ├── client.go │ │ ├── conn.go │ │ └── metrics │ │ │ └── metrics.go │ └── common │ │ └── metrics │ │ └── metrics.go │ └── proto │ └── client │ ├── client.pb.go │ ├── client.proto │ └── client_grpc.pb.go ├── controller-runtime ├── .gitignore ├── .golangci.yml ├── .gomodcheck.yaml ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── Makefile ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── TMP-LOGGING.md ├── VERSIONING.md ├── alias.go ├── code-of-conduct.md ├── doc.go └── pkg │ ├── builder │ ├── controller.go │ ├── doc.go │ ├── options.go │ └── webhook.go │ ├── cache │ ├── cache.go │ ├── delegating_by_gvk_cache.go │ ├── doc.go │ ├── informer_cache.go │ ├── internal │ │ ├── cache_reader.go │ │ ├── informers.go │ │ └── selector.go │ └── multi_namespace_cache.go │ ├── certwatcher │ ├── certwatcher.go │ ├── doc.go │ └── metrics │ │ └── metrics.go │ ├── client │ ├── apiutil │ │ ├── apimachinery.go │ │ ├── errors.go │ │ └── restmapper.go │ ├── applyconfigurations.go │ ├── client.go │ ├── client_rest_resources.go │ ├── codec.go │ ├── config │ │ ├── config.go │ │ └── doc.go │ ├── doc.go │ ├── dryrun.go │ ├── fake │ │ ├── client.go │ │ ├── doc.go │ │ └── typeconverter.go │ ├── fieldowner.go │ ├── fieldvalidation.go │ ├── interceptor │ │ └── intercept.go │ ├── interfaces.go │ ├── metadata_client.go │ ├── namespaced_client.go │ ├── object.go │ ├── options.go │ ├── patch.go │ ├── typed_client.go │ ├── unstructured_client.go │ └── watch.go │ ├── cluster │ ├── cluster.go │ └── internal.go │ ├── config │ └── controller.go │ ├── controller │ ├── controller.go │ ├── controllerutil │ │ ├── controllerutil.go │ │ └── doc.go │ ├── doc.go │ ├── name.go │ └── priorityqueue │ │ ├── metrics.go │ │ └── priorityqueue.go │ ├── conversion │ └── conversion.go │ ├── envtest │ ├── binaries.go │ ├── crd.go │ ├── doc.go │ ├── helper.go │ ├── server.go │ └── webhook.go │ ├── event │ ├── doc.go │ └── event.go │ ├── handler │ ├── doc.go │ ├── enqueue.go │ ├── enqueue_mapped.go │ ├── enqueue_owner.go │ └── eventhandler.go │ ├── healthz │ ├── doc.go │ └── healthz.go │ ├── internal │ ├── controller │ │ ├── controller.go │ │ └── metrics │ │ │ └── metrics.go │ ├── field │ │ └── selector │ │ │ └── utils.go │ ├── flock │ │ ├── doc.go │ │ ├── errors.go │ │ ├── flock_other.go │ │ └── flock_unix.go │ ├── httpserver │ │ └── server.go │ ├── log │ │ └── log.go │ ├── metrics │ │ └── workqueue.go │ ├── objectutil │ │ └── objectutil.go │ ├── recorder │ │ └── recorder.go │ ├── source │ │ ├── event_handler.go │ │ └── kind.go │ ├── syncs │ │ └── syncs.go │ └── testing │ │ ├── addr │ │ └── manager.go │ │ ├── certs │ │ └── tinyca.go │ │ ├── controlplane │ │ ├── apiserver.go │ │ ├── auth.go │ │ ├── etcd.go │ │ ├── kubectl.go │ │ └── plane.go │ │ └── process │ │ ├── arguments.go │ │ ├── bin_path_finder.go │ │ ├── procattr_other.go │ │ ├── procattr_unix.go │ │ └── process.go │ ├── leaderelection │ ├── doc.go │ └── leader_election.go │ ├── log │ ├── deleg.go │ ├── log.go │ ├── null.go │ ├── warning_handler.go │ └── zap │ │ ├── flags.go │ │ ├── kube_helpers.go │ │ └── zap.go │ ├── manager │ ├── doc.go │ ├── internal.go │ ├── manager.go │ ├── runnable_group.go │ ├── server.go │ └── signals │ │ ├── doc.go │ │ ├── signal.go │ │ ├── signal_posix.go │ │ └── signal_windows.go │ ├── metrics │ ├── client_go_adapter.go │ ├── doc.go │ ├── filters │ │ └── filters.go │ ├── leaderelection.go │ ├── registry.go │ ├── server │ │ ├── doc.go │ │ └── server.go │ └── workqueue.go │ ├── predicate │ ├── doc.go │ └── predicate.go │ ├── reconcile │ ├── doc.go │ └── reconcile.go │ ├── recorder │ └── recorder.go │ ├── scheme │ └── scheme.go │ ├── source │ ├── doc.go │ └── source.go │ └── webhook │ ├── admission │ ├── decode.go │ ├── defaulter_custom.go │ ├── doc.go │ ├── http.go │ ├── metrics │ │ └── metrics.go │ ├── multi.go │ ├── response.go │ ├── validator_custom.go │ └── webhook.go │ ├── alias.go │ ├── conversion │ ├── conversion.go │ ├── decoder.go │ └── metrics │ │ └── metrics.go │ ├── doc.go │ ├── internal │ └── metrics │ │ └── metrics.go │ └── server.go ├── controller-tools ├── LICENSE ├── cmd │ └── controller-gen │ │ └── main.go └── pkg │ ├── applyconfiguration │ ├── doc.go │ ├── gen.go │ └── zz_generated.markerhelp.go │ ├── crd │ ├── conv.go │ ├── desc_visitor.go │ ├── doc.go │ ├── flatten.go │ ├── gen.go │ ├── known_types.go │ ├── markers │ │ ├── crd.go │ │ ├── doc.go │ │ ├── package.go │ │ ├── priority.go │ │ ├── register.go │ │ ├── topology.go │ │ ├── validation.go │ │ └── zz_generated.markerhelp.go │ ├── parser.go │ ├── schema.go │ ├── schema_visitor.go │ ├── spec.go │ └── zz_generated.markerhelp.go │ ├── deepcopy │ ├── doc.go │ ├── gen.go │ ├── traverse.go │ └── zz_generated.markerhelp.go │ ├── genall │ ├── doc.go │ ├── genall.go │ ├── help │ │ ├── doc.go │ │ ├── pretty │ │ │ ├── doc.go │ │ │ ├── help.go │ │ │ ├── print.go │ │ │ └── table.go │ │ ├── sort.go │ │ └── types.go │ ├── input.go │ ├── options.go │ ├── output.go │ └── zz_generated.markerhelp.go │ ├── internal │ └── crd │ │ └── crd.go │ ├── loader │ ├── doc.go │ ├── errors.go │ ├── loader.go │ ├── paths.go │ ├── refs.go │ └── visit.go │ ├── markers │ ├── collect.go │ ├── doc.go │ ├── help.go │ ├── parse.go │ ├── reg.go │ ├── regutil.go │ └── zip.go │ ├── rbac │ ├── parser.go │ └── zz_generated.markerhelp.go │ ├── schemapatcher │ ├── gen.go │ ├── internal │ │ └── yaml │ │ │ ├── convert.go │ │ │ ├── nested.go │ │ │ └── set.go │ └── zz_generated.markerhelp.go │ ├── version │ └── version.go │ └── webhook │ ├── parser.go │ └── zz_generated.markerhelp.go ├── json ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── SECURITY.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── doc.go ├── internal │ └── golang │ │ └── encoding │ │ └── json │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fold.go │ │ ├── fuzz.go │ │ ├── indent.go │ │ ├── kubernetes_patch.go │ │ ├── scanner.go │ │ ├── stream.go │ │ ├── tables.go │ │ └── tags.go └── json.go ├── randfill ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── SECURITY_CONTACTS ├── bytesource │ └── bytesource.go ├── code-of-conduct.md └── randfill.go ├── structured-merge-diff └── v6 │ ├── LICENSE │ ├── fieldpath │ ├── doc.go │ ├── element.go │ ├── fromvalue.go │ ├── managers.go │ ├── path.go │ ├── pathelementmap.go │ ├── serialize-pe.go │ ├── serialize.go │ └── set.go │ ├── merge │ ├── conflict.go │ └── update.go │ ├── schema │ ├── doc.go │ ├── elements.go │ ├── equals.go │ └── schemaschema.go │ ├── typed │ ├── compare.go │ ├── doc.go │ ├── helpers.go │ ├── merge.go │ ├── parser.go │ ├── reconcile_schema.go │ ├── remove.go │ ├── tofieldset.go │ ├── typed.go │ └── validate.go │ └── value │ ├── allocator.go │ ├── doc.go │ ├── fields.go │ ├── jsontagutil.go │ ├── list.go │ ├── listreflect.go │ ├── listunstructured.go │ ├── map.go │ ├── mapreflect.go │ ├── mapunstructured.go │ ├── reflectcache.go │ ├── scalar.go │ ├── structreflect.go │ ├── value.go │ ├── valuereflect.go │ └── valueunstructured.go └── yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── fields.go └── yaml.go /.bingo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/.gitignore -------------------------------------------------------------------------------- /.bingo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/README.md -------------------------------------------------------------------------------- /.bingo/Variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/Variables.mk -------------------------------------------------------------------------------- /.bingo/bingo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/bingo.mod -------------------------------------------------------------------------------- /.bingo/bingo.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/bingo.sum -------------------------------------------------------------------------------- /.bingo/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/go.mod -------------------------------------------------------------------------------- /.bingo/golangci-lint.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/golangci-lint.mod -------------------------------------------------------------------------------- /.bingo/golangci-lint.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/golangci-lint.sum -------------------------------------------------------------------------------- /.bingo/helm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/helm.mod -------------------------------------------------------------------------------- /.bingo/helm.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/helm.sum -------------------------------------------------------------------------------- /.bingo/kind.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/kind.mod -------------------------------------------------------------------------------- /.bingo/kind.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/kind.sum -------------------------------------------------------------------------------- /.bingo/setup-envtest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/setup-envtest.mod -------------------------------------------------------------------------------- /.bingo/setup-envtest.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/setup-envtest.sum -------------------------------------------------------------------------------- /.bingo/variables.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/variables.env -------------------------------------------------------------------------------- /.bingo/yq.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/yq.mod -------------------------------------------------------------------------------- /.bingo/yq.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.bingo/yq.sum -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git/objects 2 | ./bin/* 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.github/workflows/e2e-tests.yml -------------------------------------------------------------------------------- /.github/workflows/go-verdiff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.github/workflows/go-verdiff.yaml -------------------------------------------------------------------------------- /.github/workflows/goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.github/workflows/goreleaser.yaml -------------------------------------------------------------------------------- /.github/workflows/quickstart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.github/workflows/quickstart.yml -------------------------------------------------------------------------------- /.github/workflows/sanity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.github/workflows/sanity.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.github/workflows/unit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/README.md -------------------------------------------------------------------------------- /boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/boilerplate.go.txt -------------------------------------------------------------------------------- /cmd/catalog/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/cmd/catalog/main.go -------------------------------------------------------------------------------- /cmd/catalog/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/cmd/catalog/main_test.go -------------------------------------------------------------------------------- /cmd/catalog/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/cmd/catalog/start.go -------------------------------------------------------------------------------- /cmd/copy-content/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/cmd/copy-content/main.go -------------------------------------------------------------------------------- /cmd/olm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/cmd/olm/main.go -------------------------------------------------------------------------------- /cmd/olm/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/cmd/olm/main_test.go -------------------------------------------------------------------------------- /cmd/olm/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/cmd/olm/manager.go -------------------------------------------------------------------------------- /cmd/package-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/cmd/package-server/main.go -------------------------------------------------------------------------------- /cmd/package-server/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/cmd/package-server/main_test.go -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /deploy/chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/deploy/chart/.helmignore -------------------------------------------------------------------------------- /deploy/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/deploy/chart/Chart.yaml -------------------------------------------------------------------------------- /deploy/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/deploy/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/deploy/chart/values.yaml -------------------------------------------------------------------------------- /deploy/upstream/manifests/latest: -------------------------------------------------------------------------------- 1 | ./0.18.3 -------------------------------------------------------------------------------- /deploy/upstream/quickstart/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/deploy/upstream/quickstart/crds.yaml -------------------------------------------------------------------------------- /deploy/upstream/quickstart/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/deploy/upstream/quickstart/install.sh -------------------------------------------------------------------------------- /deploy/upstream/quickstart/olm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/deploy/upstream/quickstart/olm.yaml -------------------------------------------------------------------------------- /deploy/upstream/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/deploy/upstream/values.yaml -------------------------------------------------------------------------------- /doc/design/access-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/access-control.md -------------------------------------------------------------------------------- /doc/design/adding-priority-classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/adding-priority-classes.md -------------------------------------------------------------------------------- /doc/design/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/architecture.md -------------------------------------------------------------------------------- /doc/design/building-your-csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/building-your-csv.md -------------------------------------------------------------------------------- /doc/design/catalog-polling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/catalog-polling.md -------------------------------------------------------------------------------- /doc/design/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/debugging.md -------------------------------------------------------------------------------- /doc/design/default-polling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/default-polling.md -------------------------------------------------------------------------------- /doc/design/dependency-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/dependency-resolution.md -------------------------------------------------------------------------------- /doc/design/design-goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/design-goals.md -------------------------------------------------------------------------------- /doc/design/developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/developing.md -------------------------------------------------------------------------------- /doc/design/how-to-update-operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/how-to-update-operators.md -------------------------------------------------------------------------------- /doc/design/images/catalogsource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/images/catalogsource.png -------------------------------------------------------------------------------- /doc/design/images/channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/images/channels.png -------------------------------------------------------------------------------- /doc/design/images/replaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/images/replaces.png -------------------------------------------------------------------------------- /doc/design/images/skipping-updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/images/skipping-updates.png -------------------------------------------------------------------------------- /doc/design/images/z-stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/images/z-stream.png -------------------------------------------------------------------------------- /doc/design/operatorgroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/operatorgroups.md -------------------------------------------------------------------------------- /doc/design/philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/philosophy.md -------------------------------------------------------------------------------- /doc/design/profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/profiling.md -------------------------------------------------------------------------------- /doc/design/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/release.md -------------------------------------------------------------------------------- /doc/design/resolving-bundle-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/resolving-bundle-images.md -------------------------------------------------------------------------------- /doc/design/scoped-operator-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/scoped-operator-install.md -------------------------------------------------------------------------------- /doc/design/subscription-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/design/subscription-config.md -------------------------------------------------------------------------------- /doc/dev/reporting_bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/dev/reporting_bugs.md -------------------------------------------------------------------------------- /doc/dev/reporting_flakes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/dev/reporting_flakes.md -------------------------------------------------------------------------------- /doc/install/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/install/install.md -------------------------------------------------------------------------------- /doc/install/local-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/doc/install/local-values.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/go.sum -------------------------------------------------------------------------------- /hack/scripts/run-counterfeiter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/hack/scripts/run-counterfeiter.sh -------------------------------------------------------------------------------- /hack/tools/check-go-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/hack/tools/check-go-version.sh -------------------------------------------------------------------------------- /hack/tools/validate_kindest_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/hack/tools/validate_kindest_node.sh -------------------------------------------------------------------------------- /logo/README.md: -------------------------------------------------------------------------------- 1 | # Logo 2 | 3 | Home for the OLM related logos. 4 | -------------------------------------------------------------------------------- /logo/logo-dark-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/logo/logo-dark-mode.svg -------------------------------------------------------------------------------- /logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/logo/logo.png -------------------------------------------------------------------------------- /logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/logo/logo.svg -------------------------------------------------------------------------------- /pkg/api/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/api/client/client.go -------------------------------------------------------------------------------- /pkg/api/client/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/api/client/util.go -------------------------------------------------------------------------------- /pkg/controller/certs/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/certs/certs.go -------------------------------------------------------------------------------- /pkg/controller/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/errors/errors.go -------------------------------------------------------------------------------- /pkg/controller/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/errors/errors_test.go -------------------------------------------------------------------------------- /pkg/controller/install/apiservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/install/apiservice.go -------------------------------------------------------------------------------- /pkg/controller/install/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/install/deployment.go -------------------------------------------------------------------------------- /pkg/controller/install/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/install/errors.go -------------------------------------------------------------------------------- /pkg/controller/install/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/install/resolver.go -------------------------------------------------------------------------------- /pkg/controller/install/rule_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/install/rule_checker.go -------------------------------------------------------------------------------- /pkg/controller/install/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/install/webhook.go -------------------------------------------------------------------------------- /pkg/controller/operators/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/operators/components.go -------------------------------------------------------------------------------- /pkg/controller/operators/olm/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/operators/olm/config.go -------------------------------------------------------------------------------- /pkg/controller/operators/olm/groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/operators/olm/groups.go -------------------------------------------------------------------------------- /pkg/controller/operators/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/operators/suite_test.go -------------------------------------------------------------------------------- /pkg/controller/operators/testdata/fixtures/ns.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: foo 5 | 6 | -------------------------------------------------------------------------------- /pkg/controller/registry/grpc/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/registry/grpc/source.go -------------------------------------------------------------------------------- /pkg/controller/registry/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/controller/registry/types.go -------------------------------------------------------------------------------- /pkg/fakes/fake_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/fakes/fake_reconciler.go -------------------------------------------------------------------------------- /pkg/fakes/fake_reconciler_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/fakes/fake_reconciler_factory.go -------------------------------------------------------------------------------- /pkg/fakes/fake_registry_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/fakes/fake_registry_store.go -------------------------------------------------------------------------------- /pkg/fakes/fake_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/fakes/fake_resolver.go -------------------------------------------------------------------------------- /pkg/fakes/fake_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/fakes/fake_strategy.go -------------------------------------------------------------------------------- /pkg/fakes/fake_strategy_installer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/fakes/fake_strategy_installer.go -------------------------------------------------------------------------------- /pkg/fakes/fake_strategy_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/fakes/fake_strategy_resolver.go -------------------------------------------------------------------------------- /pkg/feature/feature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/feature/feature.go -------------------------------------------------------------------------------- /pkg/lib/clientfake/client_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/clientfake/client_options.go -------------------------------------------------------------------------------- /pkg/lib/clientfake/decorator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/clientfake/decorator.go -------------------------------------------------------------------------------- /pkg/lib/clientfake/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/clientfake/meta.go -------------------------------------------------------------------------------- /pkg/lib/clients/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/clients/factory.go -------------------------------------------------------------------------------- /pkg/lib/clients/transformers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/clients/transformers.go -------------------------------------------------------------------------------- /pkg/lib/codec/mapstructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/codec/mapstructure.go -------------------------------------------------------------------------------- /pkg/lib/codec/mapstructure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/codec/mapstructure_test.go -------------------------------------------------------------------------------- /pkg/lib/comparison/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/comparison/equal.go -------------------------------------------------------------------------------- /pkg/lib/comparison/equal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/comparison/equal_test.go -------------------------------------------------------------------------------- /pkg/lib/crd/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/crd/storage.go -------------------------------------------------------------------------------- /pkg/lib/crd/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/crd/storage_test.go -------------------------------------------------------------------------------- /pkg/lib/crd/unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/crd/unmarshal.go -------------------------------------------------------------------------------- /pkg/lib/crd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/crd/version.go -------------------------------------------------------------------------------- /pkg/lib/csv/csvset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/csv/csvset.go -------------------------------------------------------------------------------- /pkg/lib/csv/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/csv/notification.go -------------------------------------------------------------------------------- /pkg/lib/csv/replace_finder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/csv/replace_finder.go -------------------------------------------------------------------------------- /pkg/lib/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/doc.go -------------------------------------------------------------------------------- /pkg/lib/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/event/event.go -------------------------------------------------------------------------------- /pkg/lib/filemonitor/cert_updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/filemonitor/cert_updater.go -------------------------------------------------------------------------------- /pkg/lib/filemonitor/testdata/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/filemonitor/testdata/ca.crt -------------------------------------------------------------------------------- /pkg/lib/filemonitor/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/filemonitor/watcher.go -------------------------------------------------------------------------------- /pkg/lib/image/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/image/image.go -------------------------------------------------------------------------------- /pkg/lib/image/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/image/image_test.go -------------------------------------------------------------------------------- /pkg/lib/index/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/index/catalog.go -------------------------------------------------------------------------------- /pkg/lib/index/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/index/label.go -------------------------------------------------------------------------------- /pkg/lib/kubernetes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/kubernetes/LICENSE -------------------------------------------------------------------------------- /pkg/lib/kubernetes/pkg/apis/rbac/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/kubernetes/pkg/apis/rbac/BUILD -------------------------------------------------------------------------------- /pkg/lib/kubernetes/pkg/printers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/kubernetes/pkg/printers/BUILD -------------------------------------------------------------------------------- /pkg/lib/kubernetes/pkg/printers/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/kubernetes/pkg/printers/OWNERS -------------------------------------------------------------------------------- /pkg/lib/kubernetes/pkg/util/hash/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/kubernetes/pkg/util/hash/BUILD -------------------------------------------------------------------------------- /pkg/lib/kubernetes/pkg/util/labels/.readonly: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/lib/kubestate/kubestate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/kubestate/kubestate.go -------------------------------------------------------------------------------- /pkg/lib/labeler/labeler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/labeler/labeler.go -------------------------------------------------------------------------------- /pkg/lib/operatorclient/apiservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorclient/apiservice.go -------------------------------------------------------------------------------- /pkg/lib/operatorclient/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorclient/client.go -------------------------------------------------------------------------------- /pkg/lib/operatorclient/clusterrole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorclient/clusterrole.go -------------------------------------------------------------------------------- /pkg/lib/operatorclient/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorclient/configmap.go -------------------------------------------------------------------------------- /pkg/lib/operatorclient/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorclient/deployment.go -------------------------------------------------------------------------------- /pkg/lib/operatorclient/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorclient/patch.go -------------------------------------------------------------------------------- /pkg/lib/operatorclient/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorclient/role.go -------------------------------------------------------------------------------- /pkg/lib/operatorclient/rolebinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorclient/rolebinding.go -------------------------------------------------------------------------------- /pkg/lib/operatorclient/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorclient/secret.go -------------------------------------------------------------------------------- /pkg/lib/operatorclient/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorclient/service.go -------------------------------------------------------------------------------- /pkg/lib/operatorclient/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorclient/service_test.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/apiservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/apiservice.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/clusterrole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/clusterrole.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/configmap.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/deployment.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/installplan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/installplan.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/lister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/lister.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/namespace.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/pod.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/role.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/rolebinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/rolebinding.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/secret.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/service.go -------------------------------------------------------------------------------- /pkg/lib/operatorlister/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorlister/subscription.go -------------------------------------------------------------------------------- /pkg/lib/operatorstatus/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorstatus/builder.go -------------------------------------------------------------------------------- /pkg/lib/operatorstatus/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorstatus/builder_test.go -------------------------------------------------------------------------------- /pkg/lib/operatorstatus/csv_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorstatus/csv_handler.go -------------------------------------------------------------------------------- /pkg/lib/operatorstatus/csv_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorstatus/csv_reporter.go -------------------------------------------------------------------------------- /pkg/lib/operatorstatus/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorstatus/monitor.go -------------------------------------------------------------------------------- /pkg/lib/operatorstatus/monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorstatus/monitor_test.go -------------------------------------------------------------------------------- /pkg/lib/operatorstatus/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/operatorstatus/status.go -------------------------------------------------------------------------------- /pkg/lib/ownerutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/ownerutil/util.go -------------------------------------------------------------------------------- /pkg/lib/ownerutil/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/ownerutil/util_test.go -------------------------------------------------------------------------------- /pkg/lib/profile/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/profile/profile.go -------------------------------------------------------------------------------- /pkg/lib/proxy/available.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/proxy/available.go -------------------------------------------------------------------------------- /pkg/lib/proxy/envvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/proxy/envvar.go -------------------------------------------------------------------------------- /pkg/lib/proxy/envvar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/proxy/envvar_test.go -------------------------------------------------------------------------------- /pkg/lib/proxy/overridden.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/proxy/overridden.go -------------------------------------------------------------------------------- /pkg/lib/proxy/overridden_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/proxy/overridden_test.go -------------------------------------------------------------------------------- /pkg/lib/proxy/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/proxy/querier.go -------------------------------------------------------------------------------- /pkg/lib/proxy/syncer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/proxy/syncer.go -------------------------------------------------------------------------------- /pkg/lib/queueinformer/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/queueinformer/config.go -------------------------------------------------------------------------------- /pkg/lib/queueinformer/jitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/queueinformer/jitter.go -------------------------------------------------------------------------------- /pkg/lib/queueinformer/jitter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/queueinformer/jitter_test.go -------------------------------------------------------------------------------- /pkg/lib/queueinformer/loop_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/queueinformer/loop_id.go -------------------------------------------------------------------------------- /pkg/lib/queueinformer/queueinformer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/queueinformer/queueinformer.go -------------------------------------------------------------------------------- /pkg/lib/queueinformer/resourcequeue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/queueinformer/resourcequeue.go -------------------------------------------------------------------------------- /pkg/lib/scoped/attenuator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/scoped/attenuator.go -------------------------------------------------------------------------------- /pkg/lib/scoped/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/scoped/error.go -------------------------------------------------------------------------------- /pkg/lib/scoped/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/scoped/querier.go -------------------------------------------------------------------------------- /pkg/lib/scoped/querier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/scoped/querier_test.go -------------------------------------------------------------------------------- /pkg/lib/scoped/syncer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/scoped/syncer.go -------------------------------------------------------------------------------- /pkg/lib/scoped/token_retriever.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/scoped/token_retriever.go -------------------------------------------------------------------------------- /pkg/lib/scoped/token_retriever_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/scoped/token_retriever_test.go -------------------------------------------------------------------------------- /pkg/lib/scoped/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/scoped/util.go -------------------------------------------------------------------------------- /pkg/lib/scopedclient/clientfactory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/scopedclient/clientfactory.go -------------------------------------------------------------------------------- /pkg/lib/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/server/server.go -------------------------------------------------------------------------------- /pkg/lib/server/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/server/server_test.go -------------------------------------------------------------------------------- /pkg/lib/signals/signals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/signals/signals.go -------------------------------------------------------------------------------- /pkg/lib/testobj/fixture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/testobj/fixture.go -------------------------------------------------------------------------------- /pkg/lib/testobj/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/testobj/runtime.go -------------------------------------------------------------------------------- /pkg/lib/time/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/time/shared.go -------------------------------------------------------------------------------- /pkg/lib/time/shared_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/lib/time/shared_test.go -------------------------------------------------------------------------------- /pkg/metrics/experimental_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/metrics/experimental_register.go -------------------------------------------------------------------------------- /pkg/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/metrics/metrics.go -------------------------------------------------------------------------------- /pkg/metrics/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/metrics/metrics_test.go -------------------------------------------------------------------------------- /pkg/package-server/apis/doc.go: -------------------------------------------------------------------------------- 1 | package apis 2 | -------------------------------------------------------------------------------- /pkg/package-server/apiserver/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/package-server/apiserver/config.go -------------------------------------------------------------------------------- /pkg/package-server/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/package-server/client/client.go -------------------------------------------------------------------------------- /pkg/package-server/client/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/package-server/client/util.go -------------------------------------------------------------------------------- /pkg/package-server/provider/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/package-server/provider/labels.go -------------------------------------------------------------------------------- /pkg/package-server/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/package-server/server/server.go -------------------------------------------------------------------------------- /pkg/package-server/storage/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/package-server/storage/printer.go -------------------------------------------------------------------------------- /pkg/package-server/version/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/package-server/version/doc.go -------------------------------------------------------------------------------- /pkg/package-server/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/package-server/version/version.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /scripts/build_e2e_test_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/scripts/build_e2e_test_images.sh -------------------------------------------------------------------------------- /scripts/copy_crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/scripts/copy_crds.sh -------------------------------------------------------------------------------- /scripts/generate_openshift_crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/scripts/generate_openshift_crds.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/package_quickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/scripts/package_quickstart.sh -------------------------------------------------------------------------------- /scripts/package_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/scripts/package_release.sh -------------------------------------------------------------------------------- /scripts/update_codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/scripts/update_codegen.sh -------------------------------------------------------------------------------- /test/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/README.md -------------------------------------------------------------------------------- /test/e2e/bundle_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/bundle_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/catalog_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/catalog_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/catalog_exclusion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/catalog_exclusion_test.go -------------------------------------------------------------------------------- /test/e2e/catsrc_pod_config_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/catsrc_pod_config_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/collect-ci-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/collect-ci-artifacts.sh -------------------------------------------------------------------------------- /test/e2e/crd_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/crd_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/csv_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/csv_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/ctx/ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/ctx/ctx.go -------------------------------------------------------------------------------- /test/e2e/ctx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/ctx/doc.go -------------------------------------------------------------------------------- /test/e2e/ctx/installer_none.go: -------------------------------------------------------------------------------- 1 | package ctx 2 | 3 | func Install(_ *TestContext) error { 4 | return nil 5 | } 6 | -------------------------------------------------------------------------------- /test/e2e/ctx/must.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/ctx/must.go -------------------------------------------------------------------------------- /test/e2e/ctx/provisioner_kubeconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/ctx/provisioner_kubeconfig.go -------------------------------------------------------------------------------- /test/e2e/data/catalog.new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/data/catalog.new.yaml -------------------------------------------------------------------------------- /test/e2e/data/catalog.old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/data/catalog.old.yaml -------------------------------------------------------------------------------- /test/e2e/deprecated_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/deprecated_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/dsl/dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/dsl/dsl.go -------------------------------------------------------------------------------- /test/e2e/dynamic_resource_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/dynamic_resource_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/e2e_test.go -------------------------------------------------------------------------------- /test/e2e/fail_forward_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/fail_forward_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/fbc_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/fbc_provider.go -------------------------------------------------------------------------------- /test/e2e/gc_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/gc_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/installplan_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/installplan_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/like_metric_matcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/like_metric_matcher_test.go -------------------------------------------------------------------------------- /test/e2e/magic_catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/magic_catalog.go -------------------------------------------------------------------------------- /test/e2e/magic_catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/magic_catalog_test.go -------------------------------------------------------------------------------- /test/e2e/metrics_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/metrics_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/operator_groups_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/operator_groups_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/operator_test.go -------------------------------------------------------------------------------- /test/e2e/packagemanifest_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/packagemanifest_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/registry.go -------------------------------------------------------------------------------- /test/e2e/resource_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/resource_manager_test.go -------------------------------------------------------------------------------- /test/e2e/scoped_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/scoped_client_test.go -------------------------------------------------------------------------------- /test/e2e/skopeo.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/skopeo.Dockerfile -------------------------------------------------------------------------------- /test/e2e/skopeo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/skopeo.go -------------------------------------------------------------------------------- /test/e2e/split/integration_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/split/integration_test.sh -------------------------------------------------------------------------------- /test/e2e/split/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/split/main.go -------------------------------------------------------------------------------- /test/e2e/split/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/split/main_test.go -------------------------------------------------------------------------------- /test/e2e/split/testdata/some_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/split/testdata/some_test.go -------------------------------------------------------------------------------- /test/e2e/subscription_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/subscription_e2e_test.go -------------------------------------------------------------------------------- /test/e2e/testdata/bad-csv/bad-csv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/testdata/bad-csv/bad-csv.yaml -------------------------------------------------------------------------------- /test/e2e/testdata/vpa/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/testdata/vpa/crd.yaml -------------------------------------------------------------------------------- /test/e2e/user_defined_sa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/user_defined_sa_test.go -------------------------------------------------------------------------------- /test/e2e/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/util.go -------------------------------------------------------------------------------- /test/e2e/util/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/util/decode.go -------------------------------------------------------------------------------- /test/e2e/util/e2e_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/util/e2e_client.go -------------------------------------------------------------------------------- /test/e2e/util/e2e_determined_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/util/e2e_determined_client.go -------------------------------------------------------------------------------- /test/e2e/util/gomega/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/util/gomega/assertions.go -------------------------------------------------------------------------------- /test/e2e/util/resource_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/util/resource_queue.go -------------------------------------------------------------------------------- /test/e2e/util/test_logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/util/test_logging.go -------------------------------------------------------------------------------- /test/e2e/webhook_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/test/e2e/webhook_e2e_test.go -------------------------------------------------------------------------------- /test/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/tools.go -------------------------------------------------------------------------------- /util/cpb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/util/cpb/main.go -------------------------------------------------------------------------------- /util/cpb/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/util/cpb/main_test.go -------------------------------------------------------------------------------- /util/image-canonical-ref/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/util/image-canonical-ref/main.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.3.2 2 | # Keep this pinned version in parity with cel-go 3 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/.gitattributes -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/.gitignore -------------------------------------------------------------------------------- /vendor/cel.dev/expr/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/BUILD.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/GOVERNANCE.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/LICENSE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/MAINTAINERS.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/MODULE.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/README.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/WORKSPACE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/checked.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/checked.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/cloudbuild.yaml -------------------------------------------------------------------------------- /vendor/cel.dev/expr/eval.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/eval.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/explain.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/explain.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/regen_go_proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/regen_go_proto.sh -------------------------------------------------------------------------------- /vendor/cel.dev/expr/syntax.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/syntax.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/value.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/cel.dev/expr/value.pb.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/.gitignore: -------------------------------------------------------------------------------- 1 | _fuzz/ -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcs/doc.go: -------------------------------------------------------------------------------- 1 | package hcs 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcserror/doc.go: -------------------------------------------------------------------------------- 1 | package hcserror 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hns/doc.go: -------------------------------------------------------------------------------- 1 | package hns 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/interop/doc.go: -------------------------------------------------------------------------------- 1 | package interop 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/safefile/do.go: -------------------------------------------------------------------------------- 1 | package safefile 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/vmcompute/doc.go: -------------------------------------------------------------------------------- 1 | package vmcompute 2 | -------------------------------------------------------------------------------- /vendor/github.com/NYTimes/gziphandler/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/containerd/platforms/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf -------------------------------------------------------------------------------- /vendor/github.com/containerd/ttrpc/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/containerd/typeurl/v2/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitignore: -------------------------------------------------------------------------------- 1 | # Cover profiles 2 | *.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/docker/cli/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/docker/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/docker/cli/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/staticcheck.conf: -------------------------------------------------------------------------------- 1 | checks = ['all', 2 | '-U1000', # Don't complain about unused functions. 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/go-air/gini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-air/gini/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-air/gini/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-air/gini/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-air/gini/gini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-air/gini/gini.go -------------------------------------------------------------------------------- /vendor/github.com/go-air/gini/s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-air/gini/s.go -------------------------------------------------------------------------------- /vendor/github.com/go-air/gini/sv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-air/gini/sv.go -------------------------------------------------------------------------------- /vendor/github.com/go-air/gini/z/c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-air/gini/z/c.go -------------------------------------------------------------------------------- /vendor/github.com/go-air/gini/z/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-air/gini/z/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-air/gini/z/dv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-air/gini/z/dv.go -------------------------------------------------------------------------------- /vendor/github.com/go-air/gini/z/lit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-air/gini/z/lit.go -------------------------------------------------------------------------------- /vendor/github.com/go-air/gini/z/var.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-air/gini/z/var.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-logr/zapr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/zapr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/go-logr/zapr/zapr.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | *.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/pprof/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/pprof/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/gorilla/mux/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /vendor/github.com/h2non/filetype/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /vendor/github.com/itchyny/gojq/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/itchyny/gojq/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/itchyny/gojq/_gojq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/itchyny/gojq/_gojq -------------------------------------------------------------------------------- /vendor/github.com/itchyny/gojq/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/itchyny/gojq/code.go -------------------------------------------------------------------------------- /vendor/github.com/itchyny/gojq/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/itchyny/gojq/env.go -------------------------------------------------------------------------------- /vendor/github.com/itchyny/gojq/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/itchyny/gojq/func.go -------------------------------------------------------------------------------- /vendor/github.com/itchyny/gojq/gojq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/itchyny/gojq/gojq.go -------------------------------------------------------------------------------- /vendor/github.com/itchyny/gojq/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/itchyny/gojq/iter.go -------------------------------------------------------------------------------- /vendor/github.com/itchyny/gojq/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/itchyny/gojq/type.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.22 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/maxbrunsfeld/counterfeiter/v6/.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/locker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/moby/locker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/types/version.go: -------------------------------------------------------------------------------- 1 | package types 2 | 3 | const VERSION = "2.27.2" 4 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | TODO 7 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/otiai10/copy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/otiai10/copy/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/otiai10/copy/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/otiai10/copy/copy.go -------------------------------------------------------------------------------- /vendor/github.com/otiai10/mint/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/github.com/otiai10/mint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/otiai10/mint/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/otiai10/mint/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/otiai10/mint/exit.go -------------------------------------------------------------------------------- /vendor/github.com/otiai10/mint/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/otiai10/mint/log.go -------------------------------------------------------------------------------- /vendor/github.com/otiai10/mint/mint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/otiai10/mint/mint.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/text.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/time.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/github.com/x448/float16/LICENSE -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/.gitignore -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/.go-version: -------------------------------------------------------------------------------- 1 | 1.23.12 2 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/LICENSE -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/Makefile -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/OWNERS -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/README.md -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/bolt_aix.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/bolt_linux.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/bolt_unix.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/bucket.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/compact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/compact.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/cursor.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/db.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/doc.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/errors.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/logger.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/mlock_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/mlock_unix.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/node.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/tx.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/tx_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/bbolt/tx_check.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/api/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/etcd/api/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | labels: 4 | - area/clientv3 5 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/etcd/client/v3/kv.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.etcd.io/etcd/client/v3/op.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.podman.io/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.podman.io/common/LICENSE -------------------------------------------------------------------------------- /vendor/go.podman.io/image/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.podman.io/image/v5/LICENSE -------------------------------------------------------------------------------- /vendor/go.podman.io/image/v5/docker/paths_common.go: -------------------------------------------------------------------------------- 1 | //go:build !freebsd 2 | 3 | package docker 4 | 5 | const etcDir = "/etc" 6 | -------------------------------------------------------------------------------- /vendor/go.podman.io/storage/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.podman.io/storage/AUTHORS -------------------------------------------------------------------------------- /vendor/go.podman.io/storage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.podman.io/storage/LICENSE -------------------------------------------------------------------------------- /vendor/go.podman.io/storage/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.podman.io/storage/NOTICE -------------------------------------------------------------------------------- /vendor/go.uber.org/mock/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/mock/AUTHORS -------------------------------------------------------------------------------- /vendor/go.uber.org/mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/mock/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/mock/gomock/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/mock/gomock/call.go -------------------------------------------------------------------------------- /vendor/go.uber.org/mock/gomock/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/mock/gomock/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/mock/mockgen/gob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/mock/mockgen/gob.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/multierr/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/checklicense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/checklicense.sh -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/.travis.yml -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v2/yamlh.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/go.yaml.in/yaml/v3/yamlh.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/maps/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/exp/maps/maps.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/exp/slices/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/html/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/policy/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/resource/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/resource/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/apiserver/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/endpoints/request/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sttts 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/mux/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sttts 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/routes/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sttts 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/storage/etcd3/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - logicalhan 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - caesarxuchao 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/code-generator/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/code-generator/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/go-to-protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | go-to-protobuf 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/code-generator/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/component-base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/component-base/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/gengo/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/gengo/v2/Makefile -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/gengo/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/comments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/gengo/v2/comments.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/gengo/v2/execute.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/gengo/v2/namer/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/parser/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/gengo/v2/parser/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/gengo/v2/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/.golangci.yaml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/kms/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kms/apis/v2/api.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/kms/apis/v2/api.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/kms/apis/v2/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/kms/apis/v2/api.proto -------------------------------------------------------------------------------- /vendor/k8s.io/kms/apis/v2/v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/kms/apis/v2/v2.go -------------------------------------------------------------------------------- /vendor/k8s.io/kms/pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/kms/pkg/util/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/errors/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/strfmt/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/lru/lru.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/path/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/path/file.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/ptr/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/randfill/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/randfill/NOTICE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/randfill/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/randfill/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/HEAD/vendor/sigs.k8s.io/yaml/yaml.go --------------------------------------------------------------------------------