├── .ci-operator.yaml ├── .codecov.yml ├── .editorconfig ├── .githooks └── pre-commit ├── .github └── pull_request_template.md ├── .gitignore ├── .golangci.precommit.yml ├── .golangci.yml ├── .openshiftci ├── install-golangci-lint.sh └── publish-codecov.sh ├── .snyk ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── DoD.md ├── Dockerfile ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── STYLEGUIDE.md ├── bin └── .gitignore ├── cmd ├── changelog │ └── main.go ├── gendoc │ └── main.go ├── insights-operator │ └── main.go └── obfuscate-archive │ └── main.go ├── config ├── local.yaml └── pod.yaml ├── debug.Dockerfile ├── docs ├── anonymized-data.md ├── arch.md ├── conditional-gatherer │ └── README.md ├── gather-job.yaml ├── gathered-data.md ├── insights-archive-sample │ ├── aggregated │ │ ├── custom_prometheuses_alertmanagers.json │ │ ├── ingress_controllers_certs.json │ │ └── pods_and_netnamespaces_with_sdn_annotations.json │ ├── cluster-scoped-resources │ │ ├── nmstate.io │ │ │ ├── nodenetworkconfigurationpolicies │ │ │ │ └── policy-name.json │ │ │ └── nodenetworkstates │ │ │ │ ├── ip-10-0-21-41.us-east-2.compute.internal.json │ │ │ │ ├── ip-10-0-24-83.us-east-2.compute.internal.json │ │ │ │ ├── ip-10-0-42-30.us-east-2.compute.internal.json │ │ │ │ ├── ip-10-0-61-249.us-east-2.compute.internal.json │ │ │ │ ├── ip-10-0-78-199.us-east-2.compute.internal.json │ │ │ │ └── ip-10-0-85-177.us-east-2.compute.internal.json │ │ └── rbac.authorization.k8s.io │ │ │ └── clusterroles │ │ │ ├── admin.json │ │ │ └── edit.json │ ├── conditional │ │ ├── alerts │ │ │ └── APIRemovedInNextEUSReleaseInUse │ │ │ │ └── api_request_counts.json │ │ └── namespaces │ │ │ ├── openshift-cluster-samples-operator │ │ │ ├── imagestreams │ │ │ │ └── example.json │ │ │ └── pods │ │ │ │ └── cluster-samples-operator-8ffb9b45f-49mjr │ │ │ │ └── containers │ │ │ │ ├── cluster-samples-operator-watch │ │ │ │ └── logs │ │ │ │ │ └── last-100-lines.log │ │ │ │ └── cluster-samples-operator │ │ │ │ └── logs │ │ │ │ └── last-100-lines.log │ │ │ └── openshift-monitoring │ │ │ └── pods │ │ │ ├── alertmanager-main-0 │ │ │ ├── alertmanager-main-0.json │ │ │ └── containers │ │ │ │ └── alertmanager │ │ │ │ └── logs │ │ │ │ └── last-50-lines.log │ │ │ └── prometheus-operator-5474fcdb86-nknz9 │ │ │ └── containers │ │ │ └── prometheus-operator │ │ │ └── logs │ │ │ └── last-50-lines.log │ ├── config │ │ ├── alerts.json │ │ ├── apiserver.json │ │ ├── authentication.json │ │ ├── certificatesigningrequests │ │ │ └── csr-test.json │ │ ├── clusteroperator │ │ │ ├── authentication.json │ │ │ ├── baremetal.json │ │ │ ├── cloud-credential.json │ │ │ ├── cluster-autoscaler.json │ │ │ ├── config-operator.json │ │ │ ├── console.json │ │ │ ├── csi-snapshot-controller.json │ │ │ ├── dns.json │ │ │ ├── etcd.json │ │ │ ├── image-registry.json │ │ │ ├── imageregistry.operator.openshift.io │ │ │ │ ├── config │ │ │ │ │ └── cluster.json │ │ │ │ └── imagepruner │ │ │ │ │ └── cluster.json │ │ │ ├── ingress.json │ │ │ ├── insights.json │ │ │ ├── kube-apiserver.json │ │ │ ├── kube-controller-manager.json │ │ │ ├── kube-scheduler.json │ │ │ ├── kube-storage-version-migrator.json │ │ │ ├── machine-api.json │ │ │ ├── machine-approver.json │ │ │ ├── machine-config.json │ │ │ ├── marketplace.json │ │ │ ├── monitoring.json │ │ │ ├── network.json │ │ │ ├── node-tuning.json │ │ │ ├── openshift-apiserver.json │ │ │ ├── openshift-controller-manager.json │ │ │ ├── openshift-samples.json │ │ │ ├── operator-lifecycle-manager-catalog.json │ │ │ ├── operator-lifecycle-manager-packageserver.json │ │ │ ├── operator-lifecycle-manager.json │ │ │ ├── operator.openshift.io │ │ │ │ ├── authentication │ │ │ │ │ └── cluster.json │ │ │ │ ├── cloudcredential │ │ │ │ │ └── cluster.json │ │ │ │ ├── config │ │ │ │ │ └── cluster.json │ │ │ │ ├── console │ │ │ │ │ └── cluster.json │ │ │ │ ├── csisnapshotcontroller │ │ │ │ │ └── cluster.json │ │ │ │ ├── dns │ │ │ │ │ └── default.json │ │ │ │ ├── etcd │ │ │ │ │ └── cluster.json │ │ │ │ ├── ingresscontroller │ │ │ │ │ └── openshift-ingress-operator │ │ │ │ │ │ └── default.json │ │ │ │ ├── insightsoperator │ │ │ │ │ └── cluster.json │ │ │ │ ├── kubeapiserver │ │ │ │ │ └── cluster.json │ │ │ │ ├── kubecontrollermanager │ │ │ │ │ └── cluster.json │ │ │ │ ├── kubescheduler │ │ │ │ │ └── cluster.json │ │ │ │ ├── kubestorageversionmigrator │ │ │ │ │ └── cluster.json │ │ │ │ ├── network │ │ │ │ │ └── cluster.json │ │ │ │ ├── openshiftapiserver │ │ │ │ │ └── cluster.json │ │ │ │ ├── openshiftcontrollermanager │ │ │ │ │ └── cluster.json │ │ │ │ ├── serviceca │ │ │ │ │ └── cluster.json │ │ │ │ └── storage │ │ │ │ │ └── cluster.json │ │ │ ├── samples.operator.openshift.io │ │ │ │ └── config │ │ │ │ │ └── cluster.json │ │ │ ├── service-ca.json │ │ │ └── storage.json │ │ ├── clusterrolebinding │ │ │ ├── system_openshift_scc_anyuid.json │ │ │ └── system_openshift_scc_privileged.json │ │ ├── configmaps │ │ │ ├── kube-system │ │ │ │ └── cluster-config-v1 │ │ │ │ │ └── install-config │ │ │ ├── openshift-config │ │ │ │ ├── admin-kubeconfig-client-ca │ │ │ │ │ └── ca-bundle.crt │ │ │ │ ├── cloud-provider-config │ │ │ │ │ └── config │ │ │ │ ├── etcd-ca-bundle │ │ │ │ │ └── ca-bundle.crt │ │ │ │ ├── etcd-metric-serving-ca │ │ │ │ │ └── ca-bundle.crt │ │ │ │ ├── etcd-serving-ca │ │ │ │ │ └── ca-bundle.crt │ │ │ │ ├── initial-etcd-ca │ │ │ │ │ └── ca-bundle.crt │ │ │ │ ├── initial-kube-apiserver-server-ca │ │ │ │ │ └── ca-bundle.crt │ │ │ │ ├── openshift-install-manifests │ │ │ │ │ ├── invoker │ │ │ │ │ └── version │ │ │ │ └── openshift-install │ │ │ │ │ ├── invoker │ │ │ │ │ └── version │ │ │ ├── openshift-insights │ │ │ │ └── insights-config │ │ │ │ │ └── config.json │ │ │ ├── openshift-monitoring │ │ │ │ └── cluster-monitoring-config │ │ │ │ │ └── config.json │ │ │ └── openshift-network-operator │ │ │ │ └── gateway-mode-config │ │ │ │ └── mode.json │ │ ├── containerruntimeconfigs │ │ │ └── set-log-and-pid.json │ │ ├── cost_management_metrics_configs │ │ │ ├── 00-basic.json │ │ │ └── 00-token.json │ │ ├── crd │ │ │ ├── volumesnapshotcontents.snapshot.storage.k8s.io.json │ │ │ └── volumesnapshots.snapshot.storage.k8s.io.json │ │ ├── dvo_metrics │ │ ├── featuregate.json │ │ ├── helmchart_info.json │ │ ├── id │ │ ├── image.json │ │ ├── infrastructure.json │ │ ├── ingress.json │ │ ├── installplans.json │ │ ├── jaegertracing.io │ │ │ └── jaeger1.json │ │ ├── logging │ │ │ └── openshift-logging │ │ │ │ └── instance.json │ │ ├── machineautoscalers │ │ │ └── openshift-machine-api │ │ │ │ └── worker-us-east-1a.json │ │ ├── machineconfigpools │ │ │ ├── master.json │ │ │ └── worker.json │ │ ├── machineconfigs │ │ │ ├── 00-master.json │ │ │ ├── 00-worker.json │ │ │ ├── 01-master-container-runtime.json │ │ │ ├── 01-master-kubelet.json │ │ │ ├── 01-worker-container-runtime.json │ │ │ ├── 01-worker-kubelet.json │ │ │ ├── 99-master-generated-registries.json │ │ │ ├── 99-master-ssh.json │ │ │ ├── 99-worker-generated-registries.json │ │ │ ├── 99-worker-ssh.json │ │ │ ├── rendered-master-025110333ea44423ccb1052723956671.json │ │ │ └── rendered-worker-39c9df4a2c026c3149a02abe6f88cfc8.json │ │ ├── machinehealthchecks │ │ │ └── openshift-machine-api │ │ │ │ └── machine-api-termination-handler.json │ │ ├── machines │ │ │ └── openshift-machine-api │ │ │ │ ├── dev-rhrmo-dev-26-01-2-tk6g8-master-0.json │ │ │ │ ├── dev-rhrmo-dev-26-01-2-tk6g8-master-1.json │ │ │ │ ├── dev-rhrmo-dev-26-01-2-tk6g8-master-2.json │ │ │ │ ├── dev-rhrmo-dev-26-01-2-tk6g8-worker-us-east-2a-4g2rj.json │ │ │ │ ├── dev-rhrmo-dev-26-01-2-tk6g8-worker-us-east-2b-kz6kb.json │ │ │ │ └── dev-rhrmo-dev-26-01-2-tk6g8-worker-us-east-2c-hg88m.json │ │ ├── metrics │ │ ├── mutatingwebhookconfigurations │ │ │ ├── machine-api.json │ │ │ └── pod-identity-webhook.json │ │ ├── namespaces_with_overlapping_uids.json │ │ ├── network.json │ │ ├── node │ │ │ ├── logs │ │ │ │ └── ip-10-0-135-228.us-east-2.compute.internal.log │ │ │ ├── master-0.imeixner20210707.lab.upshift.rdu2.redhat.com.json │ │ │ └── worker-0.imeixner20210707.lab.upshift.rdu2.redhat.com.json │ │ ├── oauth.json │ │ ├── olm_operators.json │ │ ├── pdbs │ │ │ └── openshift-machine-config-operator │ │ │ │ └── etcd-quorum-guard.json │ │ ├── persistentvolumes │ │ │ ├── monitoring-persistent-volume.json │ │ │ └── task-pv-volume.json │ │ ├── pod │ │ │ ├── di-288312 │ │ │ │ ├── auditlog-retention-28566720-t22qj.json │ │ │ │ ├── data-hub-flow-agent-1a3a7e88888b7fe0630189-qcwhm-547b57cc5fvmg8.json │ │ │ │ ├── default-2k58azz-backup-deletion-5rdw4.json │ │ │ │ └── vsystem-867f4b77cc-pqcns.json │ │ │ ├── openshift-apiserver-operator │ │ │ │ ├── logs │ │ │ │ │ └── openshift-apiserver-operator-6ddb679b87-4kn55 │ │ │ │ │ │ └── errors.log │ │ │ │ └── openshift-apiserver-operator-57d7d6cb7c-r94lw.json │ │ │ ├── openshift-authentication-operator │ │ │ │ └── authentication-operator-6d65456dc7-9d2qx.json │ │ │ ├── openshift-authentication │ │ │ │ └── logs │ │ │ │ │ └── oauth-openshift-6c98668d5b-ftt5n │ │ │ │ │ └── errors.log │ │ │ ├── openshift-cluster-storage-operator │ │ │ │ ├── cluster-storage-operator-6974bfb5c6-tppp7.json │ │ │ │ ├── csi-snapshot-controller-fc56779c7-lbsmx.json │ │ │ │ └── csi-snapshot-controller-operator-c9886b54b-d5j84.json │ │ │ ├── openshift-config-operator │ │ │ │ └── openshift-config-operator-7db5898cdf-m9bqf.json │ │ │ ├── openshift-console-operator │ │ │ │ └── console-operator-946dbb485-g67fq.json │ │ │ ├── openshift-controller-manager-operator │ │ │ │ └── openshift-controller-manager-operator-6df4f59bf4-k84bk.json │ │ │ ├── openshift-etcd-operator │ │ │ │ └── etcd-operator-78bb597755-r6lgn.json │ │ │ ├── openshift-etcd │ │ │ │ └── etcd-master-0.imeixner20210707.lab.upshift.rdu2.redhat.com.json │ │ │ ├── openshift-ingress-operator │ │ │ │ └── ingress-operator-6557486749-h7qjw.json │ │ │ ├── openshift-ingress │ │ │ │ └── router-default-7bbdcfcf9b-7xdln.json │ │ │ ├── openshift-insights │ │ │ │ └── insights-operator-65bcbd8bbf-n5xcr.json │ │ │ ├── openshift-kube-apiserver-operator │ │ │ │ └── kube-apiserver-operator-5cd7cf9c4c-22fz9.json │ │ │ ├── openshift-kube-controller-manager-operator │ │ │ │ └── kube-controller-manager-operator-666b69fd7f-sb86z.json │ │ │ ├── openshift-kube-controller-manager │ │ │ │ ├── kube-controller-manager-master-0.imeixner20210707.lab.upshift.rdu2.redhat.com.json │ │ │ │ └── logs │ │ │ │ │ └── kube-controller-manager-ip-10-0-168-11.us-east-2.compute.internal │ │ │ │ │ └── errors.log │ │ │ ├── openshift-kube-scheduler-operator │ │ │ │ └── openshift-kube-scheduler-operator-766984867f-5nzpf.json │ │ │ ├── openshift-kube-scheduler │ │ │ │ ├── logs │ │ │ │ │ ├── openshift-kube-scheduler-ip-10-0-141-107.us-east-2.compute.internal │ │ │ │ │ │ └── messages.log │ │ │ │ │ ├── openshift-kube-scheduler-ip-10-0-177-226.us-east-2.compute.internal │ │ │ │ │ │ └── messages.log │ │ │ │ │ └── openshift-kube-scheduler-ip-10-0-211-255.us-east-2.compute.internal │ │ │ │ │ │ └── messages.log │ │ │ │ └── openshift-kube-scheduler-master-0.imeixner20210707.lab.upshift.rdu2.redhat.com.json │ │ │ ├── openshift-kube-storage-version-migrator-operator │ │ │ │ └── kube-storage-version-migrator-operator-bdddd9479-x47l2.json │ │ │ ├── openshift-machine-api │ │ │ │ ├── cluster-autoscaler-operator-76d8fccc8-wh9q5.json │ │ │ │ └── machine-api-operator-55bcf95cc9-2dvdc.json │ │ │ ├── openshift-machine-config-operator │ │ │ │ ├── machine-config-controller-8d486476f-c9qpm.json │ │ │ │ └── machine-config-operator-5c9f8b8457-hrtxb.json │ │ │ ├── openshift-monitoring │ │ │ │ ├── cluster-monitoring-operator-6c785d75f6-t79zv.json │ │ │ │ ├── prometheus-k8s-0.json │ │ │ │ └── prometheus-k8s-1.json │ │ │ ├── openshift-oauth-apiserver │ │ │ │ └── apiserver-695d9c5549-w7fjs.json │ │ │ ├── openshift-operator-lifecycle-manager │ │ │ │ ├── packageserver-6d96bf85f8-kqfkr.json │ │ │ │ └── packageserver-6d96bf85f8-pv2g8.json │ │ │ ├── openshift-service-ca-operator │ │ │ │ └── service-ca-operator-bf8bb76b5-8cnlb.json │ │ │ ├── openshift-service-ca │ │ │ │ └── service-ca-7d7647cfdb-szfd8.json │ │ │ └── sdi │ │ │ │ └── logs │ │ │ │ └── license-manager-da1d2e8fadfb8dd7022f08-4hjh7-6887768c5b-qzxb6 │ │ │ │ └── errors.log │ │ ├── podnetworkconnectivitychecks.json │ │ ├── proxy.json │ │ ├── running_containers.json │ │ ├── schedulers │ │ │ └── cluster.json │ │ ├── secrets │ │ │ └── openshift-config │ │ │ │ └── support │ │ │ │ └── data.json │ │ ├── securitycontextconstraint │ │ │ ├── anyuid.json │ │ │ └── privileged.json │ │ ├── serviceaccounts.json │ │ ├── silenced_alerts.json │ │ ├── storage │ │ │ ├── openshift-storage │ │ │ │ ├── cephclusters │ │ │ │ │ └── ocs-storagecluster-cephcluster.json │ │ │ │ └── storageclusters │ │ │ │ │ └── ocs-storagecluster.json │ │ │ └── storageclasses │ │ │ │ └── standard-csi.json │ │ ├── tsdb.json │ │ ├── validatingwebhookconfigurations │ │ │ ├── autoscaling.openshift.io.json │ │ │ ├── machine-api.json │ │ │ ├── multus.openshift.io.json │ │ │ ├── prometheusrules.openshift.io.json │ │ │ └── snapshot.storage.k8s.io.json │ │ ├── version.json │ │ └── workload_info.json │ ├── customresources │ │ └── installers.datahub.sap.com │ │ │ └── datahubs │ │ │ └── sdi │ │ │ └── default.json │ ├── events │ │ └── openshift-machine-api.json │ ├── insights-operator │ │ ├── conditional-gatherer-rules.json │ │ └── gathers.json │ ├── machinesets │ │ └── openshift-machine-api │ │ │ ├── ci-ln-fyvthbt-f76d1-nl2fh-worker-b.json │ │ │ ├── ci-ln-fyvthbt-f76d1-nl2fh-worker-c.json │ │ │ └── ci-ln-fyvthbt-f76d1-nl2fh-worker-d.json │ └── namespaces │ │ ├── default │ │ └── pods │ │ │ └── virt-launcher-example │ │ │ └── virt-launcher.json │ │ ├── openshift-logging │ │ └── lokistack-sample.json │ │ ├── openshift-nfd │ │ └── customresources │ │ │ └── ip-10-0-58-24.ec2.internal.json │ │ └── openstack │ │ ├── core.openstack.org │ │ ├── openstackcontrolplanes │ │ │ └── openstack-galera-network-isolation.json │ │ └── openstackversions │ │ │ └── openstack-galera-network-isolation.json │ │ └── dataplane.openstack.org │ │ ├── openstackdataplanedeployments │ │ └── edpm-deployment.json │ │ └── openstackdataplanenodesets │ │ └── openstack-edpm-ipam.json └── metrics.txt ├── go.mod ├── go.sum ├── manifests ├── 02-namespace.yaml ├── 03-clusterrole.yaml ├── 03-operator-crd.yaml ├── 03-serviceaccount.yaml ├── 04-insightsdatagather-config-cr.yaml ├── 04-operator-cr.yaml ├── 04-prometheus_rolebinding.yaml ├── 04-proxy-cert-configmap.yaml ├── 04-service-ca-configmap.yaml ├── 05-prometheus_role.yaml ├── 06-deployment-ibm-cloud-managed.yaml ├── 06-deployment.yaml ├── 06-service.yaml ├── 07-cluster-operator.yaml ├── 09-servicemonitor.yaml ├── 10-insights-runtime-extractor-proxy-configmap.yaml ├── 10-insights-runtime-extractor-service.yaml ├── 10-insights-runtime-extractor.yaml └── image-references ├── pkg ├── anonymization │ ├── anonymizer.go │ ├── anonymizer_test.go │ ├── builder_test.go │ ├── network_anonymizer.go │ └── network_builder.go ├── authorizer │ ├── clusterauthorizer │ │ ├── clusterauthorizer.go │ │ └── clusterauthorizer_test.go │ └── interface.go ├── cmd │ └── start │ │ ├── receiver.go │ │ └── start.go ├── config │ ├── config.go │ ├── config_test.go │ ├── configobserver │ │ ├── config.go │ │ ├── config_aggregator.go │ │ ├── config_aggregator_test.go │ │ ├── config_test.go │ │ ├── configmapobserver.go │ │ ├── insighgtsdatagather_observer.go │ │ ├── insightsdatagather_observer_test.go │ │ ├── secretconfigobserver.go │ │ └── secretconfigobserver_test.go │ ├── legacy_config.go │ ├── legacy_config_test.go │ ├── mock_configurator.go │ └── types.go ├── controller │ ├── const.go │ ├── gather_commands.go │ ├── gather_commands_test.go │ ├── generic_client.go │ ├── kubeconfigs.go │ ├── operator.go │ ├── operator_test.go │ ├── periodic │ │ ├── datagather_informer.go │ │ ├── job.go │ │ ├── job_informer.go │ │ ├── job_informer_test.go │ │ ├── job_test.go │ │ ├── mock_periodic.go │ │ ├── periodic.go │ │ └── periodic_test.go │ └── status │ │ ├── conditions.go │ │ ├── conditions_test.go │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── datagather_status.go │ │ ├── datagather_status_test.go │ │ ├── gatherer_status.go │ │ ├── gatherer_status_test.go │ │ ├── status.go │ │ └── status_test.go ├── controllerstatus │ ├── controllerstatus.go │ └── controllerstatus_test.go ├── dependencymagnet │ └── docs.go ├── gather │ ├── gather.go │ ├── gather_test.go │ ├── mock_gatherers.go │ ├── tasks_processing.go │ └── tasks_processing_test.go ├── gatherers │ ├── clusterconfig │ │ ├── cluster_config_v1_config_map.go │ │ ├── cluster_config_v1_config_map_test.go │ │ ├── clusterconfig_gatherer.go │ │ ├── clusterconfig_gatherer_test.go │ │ ├── const.go │ │ ├── events_filtering.go │ │ ├── events_filtering_test.go │ │ ├── gather_active_alerts.go │ │ ├── gather_active_alerts_test.go │ │ ├── gather_aggregated_instances.go │ │ ├── gather_aggregated_instances_test.go │ │ ├── gather_ceph_cluster.go │ │ ├── gather_ceph_cluster_test.go │ │ ├── gather_certificate_signing_requests.go │ │ ├── gather_certificate_signing_requests_test.go │ │ ├── gather_cluster_apiserver.go │ │ ├── gather_cluster_apiserver_test.go │ │ ├── gather_cluster_authentication.go │ │ ├── gather_cluster_authentication_test.go │ │ ├── gather_cluster_feature_gates.go │ │ ├── gather_cluster_feature_gates_test.go │ │ ├── gather_cluster_image.go │ │ ├── gather_cluster_image_registries.go │ │ ├── gather_cluster_image_registries_test.go │ │ ├── gather_cluster_image_test.go │ │ ├── gather_cluster_infrastructure.go │ │ ├── gather_cluster_infrastructure_test.go │ │ ├── gather_cluster_ingress.go │ │ ├── gather_cluster_ingress_certificates.go │ │ ├── gather_cluster_ingress_certificates_test.go │ │ ├── gather_cluster_ingress_test.go │ │ ├── gather_cluster_network.go │ │ ├── gather_cluster_network_test.go │ │ ├── gather_cluster_oauth.go │ │ ├── gather_cluster_oauth_test.go │ │ ├── gather_cluster_operator_pods_and_events.go │ │ ├── gather_cluster_operator_pods_and_events_test.go │ │ ├── gather_cluster_operators.go │ │ ├── gather_cluster_operators_test.go │ │ ├── gather_cluster_proxy.go │ │ ├── gather_cluster_proxy_test.go │ │ ├── gather_cluster_roles.go │ │ ├── gather_cluster_roles_test.go │ │ ├── gather_cluster_version.go │ │ ├── gather_cluster_version_test.go │ │ ├── gather_config_maps.go │ │ ├── gather_config_maps_test.go │ │ ├── gather_container_images.go │ │ ├── gather_container_images_test.go │ │ ├── gather_container_runtime_configs.go │ │ ├── gather_container_runtime_configs_test.go │ │ ├── gather_cost_management_metrics_configs.go │ │ ├── gather_cost_management_metrics_configs_test.go │ │ ├── gather_custom_resource_definitions.go │ │ ├── gather_custom_resource_definitions_test.go │ │ ├── gather_dvo_metrics.go │ │ ├── gather_image_pruners.go │ │ ├── gather_image_pruners_test.go │ │ ├── gather_install_plans.go │ │ ├── gather_install_plans_test.go │ │ ├── gather_jaeger_cr.go │ │ ├── gather_jaeger_cr_test.go │ │ ├── gather_lokistack.go │ │ ├── gather_lokistacks_test.go │ │ ├── gather_machine_autoscaler.go │ │ ├── gather_machine_autoscaler_test.go │ │ ├── gather_machine_config_pools.go │ │ ├── gather_machine_config_pools_test.go │ │ ├── gather_machine_configs.go │ │ ├── gather_machine_configs_test.go │ │ ├── gather_machine_health_check.go │ │ ├── gather_machine_health_check_test.go │ │ ├── gather_machine_sets.go │ │ ├── gather_machine_sets_test.go │ │ ├── gather_machines.go │ │ ├── gather_machines_test.go │ │ ├── gather_monitoring_pvs.go │ │ ├── gather_monitoring_pvs_test.go │ │ ├── gather_most_recent_metrics.go │ │ ├── gather_most_recent_metrics_test.go │ │ ├── gather_mutating_webhook_configurations.go │ │ ├── gather_mutating_webhook_configurations_test.go │ │ ├── gather_namespaces_with_overlapping_uids.go │ │ ├── gather_namespaces_with_overlapping_uids_test.go │ │ ├── gather_nmstate_node_network_configuration_policy.go │ │ ├── gather_nmstate_node_network_configuration_policy_test.go │ │ ├── gather_nmstate_nodenetworkstate.go │ │ ├── gather_nmstate_nodenetworkstate_test.go │ │ ├── gather_node_features.go │ │ ├── gather_node_features_test.go │ │ ├── gather_node_logs.go │ │ ├── gather_node_logs_test.go │ │ ├── gather_nodes.go │ │ ├── gather_nodes_test.go │ │ ├── gather_olm_operators.go │ │ ├── gather_olm_operators_test.go │ │ ├── gather_openshift_logging.go │ │ ├── gather_openshift_logging_test.go │ │ ├── gather_openshift_machine_api_events.go │ │ ├── gather_openshift_machine_api_events_test.go │ │ ├── gather_openstack_controlplanes.go │ │ ├── gather_openstack_controlplanes_test.go │ │ ├── gather_openstack_dataplane_deployments.go │ │ ├── gather_openstack_dataplane_deployments_test.go │ │ ├── gather_openstack_dataplane_node_sets.go │ │ ├── gather_openstack_dataplane_node_sets_test.go │ │ ├── gather_openstack_helpers.go │ │ ├── gather_openstackversions.go │ │ ├── gather_openstackversions_test.go │ │ ├── gather_pod_and_netnamespaces_with_sdn_annotation.go │ │ ├── gather_pod_and_netnamespaces_with_sdn_annotation_test.go │ │ ├── gather_pod_disruption_budgets.go │ │ ├── gather_pod_disruption_budgets_test.go │ │ ├── gather_pod_network_connectivity_checks.go │ │ ├── gather_pod_network_connectivity_checks_test.go │ │ ├── gather_prometheus_tsdb_status.go │ │ ├── gather_prometheus_tsdb_status_test.go │ │ ├── gather_qemu_kubevirt_launcher_logs.go │ │ ├── gather_qemu_kubevirt_launcher_logs_test.go │ │ ├── gather_sap_config.go │ │ ├── gather_sap_config_test.go │ │ ├── gather_sap_datahubs.go │ │ ├── gather_sap_datahubs_test.go │ │ ├── gather_sap_pods.go │ │ ├── gather_sap_pods_test.go │ │ ├── gather_schedulers.go │ │ ├── gather_service_accounts.go │ │ ├── gather_service_accounts_test.go │ │ ├── gather_silenced_alerts.go │ │ ├── gather_silenced_alerts_test.go │ │ ├── gather_storage_cluster.go │ │ ├── gather_storage_cluster_test.go │ │ ├── gather_storageclass.go │ │ ├── gather_storageclass_test.go │ │ ├── gather_support_secret.go │ │ ├── gather_support_secret_test.go │ │ ├── gather_validating_webhook_configurations.go │ │ ├── gather_validating_webhook_configurations_test.go │ │ └── testdata │ │ │ ├── authentication_pods.json │ │ │ ├── clusteroperators.json │ │ │ ├── configmaps.json │ │ │ ├── csr_appr.json │ │ │ ├── csr_appr_anon.json │ │ │ ├── csr_unappr.json │ │ │ ├── csr_unappr_anon.json │ │ │ ├── csv_1.yaml │ │ │ ├── csv_2.yaml │ │ │ ├── installplan.yaml │ │ │ ├── installplan2.yaml │ │ │ ├── installplan_openshift.yaml │ │ │ ├── installplan_psql.yaml │ │ │ ├── node_network_configuration_policy.yaml │ │ │ ├── node_network_state_no_interfaces.yaml │ │ │ ├── node_network_state_with_interfaces.yaml │ │ │ ├── node_network_state_with_interfaces_and_mac_addresses.yaml │ │ │ ├── nodefeature.yaml │ │ │ ├── nodes.json │ │ │ ├── olm_operator_1.yaml │ │ │ ├── olm_operator_2.yaml │ │ │ └── olm_operator_3.yaml │ ├── common │ │ ├── constants.go │ │ ├── gather_logs.go │ │ └── gather_logs_test.go │ ├── conditional │ │ ├── common.go │ │ ├── common_test.go │ │ ├── conditional_gatherer.go │ │ ├── conditional_gatherer_test.go │ │ ├── conditions.go │ │ ├── conditions_test.go │ │ ├── container_log.schema.json │ │ ├── container_logs.schema.json │ │ ├── default_remote_configuration.json │ │ ├── filter_and_gather_container_logs.go │ │ ├── filter_and_gather_container_logs_test.go │ │ ├── gather_api_request_count.go │ │ ├── gather_api_request_count_test.go │ │ ├── gather_containers_logs.go │ │ ├── gather_containers_logs_test.go │ │ ├── gather_image_stream_definitions_of_namespace.go │ │ ├── gather_logs_of_namespace.go │ │ ├── gather_pod_definition.go │ │ ├── gather_pod_definition_test.go │ │ ├── gathering_functions.go │ │ ├── gathering_rule.schema.json │ │ ├── gathering_rules.schema.json │ │ ├── parsing.go │ │ ├── parsing_test.go │ │ ├── types.go │ │ ├── validation.go │ │ └── validation_test.go │ ├── interface.go │ └── workloads │ │ ├── gather_helm_info.go │ │ ├── gather_helm_info_test.go │ │ ├── gather_workloads_info.go │ │ ├── gather_workloads_info_test.go │ │ ├── gather_workloads_runtime_infos.go │ │ ├── gather_workloads_runtime_infos_test.go │ │ ├── types.go │ │ ├── types_test.go │ │ ├── workloads_gatherer.go │ │ └── workloads_gatherer_test.go ├── insights │ ├── insightsclient │ │ ├── insightsclient.go │ │ ├── reader.go │ │ ├── requests.go │ │ └── requests_test.go │ ├── insightsreport │ │ ├── insightsreport.go │ │ └── insightsreport_test.go │ ├── insightsuploader │ │ └── insightsuploader.go │ ├── metrics.go │ ├── prometheus_rules.go │ ├── prometheus_rules_test.go │ └── types │ │ └── types.go ├── ocm │ ├── clustertransfer │ │ ├── cluster_transfer.go │ │ ├── cluster_transfer_test.go │ │ ├── test-data │ │ │ ├── accepted-cluster-transfer.json │ │ │ ├── empty.json │ │ │ ├── more-cluster-transfers.json │ │ │ ├── no-secret-data-cluster-transfer.json │ │ │ ├── not-json.json │ │ │ ├── test-pull-secret.json │ │ │ └── updated-pull-secret.json │ │ └── types.go │ ├── const.go │ └── sca │ │ ├── architectures_gather.go │ │ ├── architectures_gather_test.go │ │ ├── sca.go │ │ └── sca_test.go ├── record │ ├── memory.go │ ├── record.go │ ├── resource_marshaller.go │ └── resource_marshaller_test.go ├── recorder │ ├── diskrecorder │ │ ├── diskrecorder.go │ │ └── diskrecorder_test.go │ ├── interface.go │ ├── mock_recorder.go │ ├── recorder.go │ └── recorder_test.go ├── types │ └── types.go └── utils │ ├── anonymize │ ├── envvars.go │ ├── envvars_test.go │ ├── string.go │ ├── unstructured.go │ └── url.go │ ├── check │ ├── has_container_in_crashloop.go │ └── is_healthy_pod.go │ ├── const.go │ ├── count_lines.go │ ├── dns.go │ ├── errors.go │ ├── errors_test.go │ ├── gatherers.go │ ├── get_all_namespaces.go │ ├── kubernetes_fake_client.go │ ├── line_limit_reader.go │ ├── marshal │ ├── raw.go │ └── raw_byte.go │ ├── math.go │ ├── read_lines_with_prefix.go │ ├── read_lines_with_prefix_test.go │ ├── slices.go │ ├── slices_test.go │ ├── strings.go │ ├── strings_test.go │ ├── structs.go │ ├── testlog.go │ └── unstructerd_wrappers.go ├── profile-patches └── ibm-cloud-managed │ └── 06-deployment.yaml-patch ├── scripts └── update_sample_archive.sh ├── tools └── gen_cert_key.py └── 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 ├── 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 │ │ ├── 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 ├── asaskevich │ └── govalidator │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arrays.go │ │ ├── converter.go │ │ ├── error.go │ │ ├── numerics.go │ │ ├── patterns.go │ │ ├── types.go │ │ ├── utils.go │ │ ├── validator.go │ │ └── wercker.yml ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── blang │ └── semver │ │ └── v4 │ │ ├── LICENSE │ │ ├── json.go │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ └── sql.go ├── cenkalti │ └── backoff │ │ └── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── context.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ ├── timer.go │ │ └── tries.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 ├── 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 ├── 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 │ │ ├── json.go │ │ ├── jsoniter.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 ├── felixge │ ├── fgprof │ │ ├── BenchmarkProfilerGoroutines.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── fgprof.go │ │ └── handler.go │ └── 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 │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .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 │ │ ├── mkdoc.zsh │ │ ├── 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 │ │ ├── encode_map_go117.go │ │ ├── simplevalue.go │ │ ├── stream.go │ │ ├── structfields.go │ │ ├── tag.go │ │ └── valid.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 │ │ └── slogsink.go │ └── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go ├── go-openapi │ ├── jsonpointer │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── 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 │ │ ├── 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 ├── 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 │ ├── 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 │ │ └── ptypes │ │ ├── any.go │ │ ├── any │ │ └── any.pb.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration │ │ └── duration.pb.go │ │ ├── timestamp.go │ │ └── timestamp │ │ └── timestamp.pb.go ├── google │ ├── btree │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── btree.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 │ │ │ └── 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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── formatting.go │ │ │ ├── guards.go │ │ │ ├── lists.go │ │ │ ├── math.go │ │ │ ├── native.go │ │ │ ├── protos.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 │ │ │ └── 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 │ ├── gofuzz │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bytesource │ │ │ └── bytesource.go │ │ ├── doc.go │ │ └── fuzz.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 ├── 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 │ │ ├── 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 ├── imdario │ └── mergo │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ └── mergo.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.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 ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.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 ├── openshift │ ├── api │ │ ├── .ci-operator.yaml │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── Dockerfile.ocp │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── OWNERS │ │ ├── README.md │ │ ├── annotations │ │ │ └── annotations.go │ │ ├── apiserver │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_apirequestcount.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── apps │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── consts.go │ │ │ │ ├── deprecated_consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.swagger_doc_generated.go │ │ │ │ └── zz_prerelease_lifecycle_generated.go │ │ ├── authorization │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── codec.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── build │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── cloudnetwork │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── config │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ ├── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── stringsource.go │ │ │ │ ├── types.go │ │ │ │ ├── types_apiserver.go │ │ │ │ ├── types_authentication.go │ │ │ │ ├── types_build.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_tag_mirror_set.go │ │ │ │ ├── types_infrastructure.go │ │ │ │ ├── types_ingress.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 │ │ ├── console │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_console_cli_download.go │ │ │ │ ├── types_console_external_log_links.go │ │ │ │ ├── types_console_link.go │ │ │ │ ├── types_console_notification.go │ │ │ │ ├── types_console_plugin.go │ │ │ │ ├── types_console_quick_start.go │ │ │ │ ├── types_console_sample.go │ │ │ │ ├── types_console_yaml_sample.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── envtest-releases.yaml │ │ ├── features.md │ │ ├── features │ │ │ ├── features.go │ │ │ ├── legacyfeaturegates.go │ │ │ └── util.go │ │ ├── helm │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1beta1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_helm_chart_repository.go │ │ │ │ ├── types_project_helm_chart_repository.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── image │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── docker10 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_docker.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── dockerpre012 │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_docker.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── imageregistry │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_imagepruner.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── insights │ │ │ ├── v1alpha1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.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 │ │ ├── install.go │ │ ├── kubecontrolplane │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── legacyconfig │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── serialization.go │ │ │ │ ├── stringsource.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── machine │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ ├── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── common.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_alibabaprovider.go │ │ │ │ ├── types_aws.go │ │ │ │ ├── types_controlplanemachineset.go │ │ │ │ ├── types_nutanixprovider.go │ │ │ │ ├── types_powervsprovider.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_openstack.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ └── v1beta1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_awsprovider.go │ │ │ │ ├── types_azureprovider.go │ │ │ │ ├── types_gcpprovider.go │ │ │ │ ├── types_machine.go │ │ │ │ ├── types_machinehealthcheck.go │ │ │ │ ├── types_machineset.go │ │ │ │ ├── types_provider.go │ │ │ │ ├── types_vsphereprovider.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── machineconfiguration │ │ │ ├── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_machineconfignode.go │ │ │ │ ├── types_machineosbuild.go │ │ │ │ ├── types_machineosconfig.go │ │ │ │ ├── types_pinnedimageset.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ └── v1alpha1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_machineconfignode.go │ │ │ │ ├── types_machineosbuild.go │ │ │ │ ├── types_machineosconfig.go │ │ │ │ ├── types_pinnedimageset.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── monitoring │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── network │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ ├── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ └── v1alpha1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_dnsnameresolver.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── networkoperator │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types_egressrouter.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── oauth │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── openshiftcontrolplane │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── operator │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ ├── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_authentication.go │ │ │ │ ├── types_cloudcredential.go │ │ │ │ ├── types_config.go │ │ │ │ ├── types_console.go │ │ │ │ ├── types_csi_cluster_driver.go │ │ │ │ ├── types_csi_snapshot.go │ │ │ │ ├── types_dns.go │ │ │ │ ├── types_etcd.go │ │ │ │ ├── types_ingress.go │ │ │ │ ├── types_insights.go │ │ │ │ ├── types_kubeapiserver.go │ │ │ │ ├── types_kubecontrollermanager.go │ │ │ │ ├── types_kubestorageversionmigrator.go │ │ │ │ ├── types_machineconfiguration.go │ │ │ │ ├── types_network.go │ │ │ │ ├── types_olm.go │ │ │ │ ├── types_openshiftapiserver.go │ │ │ │ ├── types_openshiftcontrollermanager.go │ │ │ │ ├── types_scheduler.go │ │ │ │ ├── types_serviceca.go │ │ │ │ ├── types_servicecatalogapiserver.go │ │ │ │ ├── types_servicecatalogcontrollermanager.go │ │ │ │ ├── types_storage.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ └── v1alpha1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_clusterversion.go │ │ │ │ ├── types_etcdbackup.go │ │ │ │ ├── types_image_content_source_policy.go │ │ │ │ ├── types_olm.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── operatorcontrolplane │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1alpha1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_conditioncheck.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── osin │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── pkg │ │ │ └── serialization │ │ │ │ └── serialization.go │ │ ├── project │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── quota │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── route │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── test-route-validation.sh │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── samples │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types_config.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── security │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── servicecertsigner │ │ │ ├── .codegen.yaml │ │ │ ├── install.go │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── sharedresource │ │ │ ├── .codegen.yaml │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1alpha1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types_shared_configmap.go │ │ │ │ ├── types_shared_secret.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.featuregated-crd-manifests.yaml │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── template │ │ │ ├── OWNERS │ │ │ ├── install.go │ │ │ └── v1 │ │ │ │ ├── codec.go │ │ │ │ ├── consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ └── user │ │ │ ├── install.go │ │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── legacy.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.swagger_doc_generated.go │ ├── build-machinery-go │ │ ├── .ci-operator.yaml │ │ ├── .gitignore │ │ ├── Dockerfile.commitchecker │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── OWNERS │ │ ├── README.md │ │ ├── doc.go │ │ ├── make │ │ │ ├── default.example.mk │ │ │ ├── default.example.mk.help.log │ │ │ ├── default.mk │ │ │ ├── doc.go │ │ │ ├── golang.example.mk │ │ │ ├── golang.example.mk.help.log │ │ │ ├── golang.mk │ │ │ ├── lib │ │ │ │ ├── doc.go │ │ │ │ ├── golang.mk │ │ │ │ ├── tmp.mk │ │ │ │ └── version.mk │ │ │ ├── operator.example.mk │ │ │ ├── operator.example.mk.help.log │ │ │ ├── operator.mk │ │ │ └── targets │ │ │ │ ├── doc.go │ │ │ │ ├── golang │ │ │ │ ├── build.mk │ │ │ │ ├── doc.go │ │ │ │ ├── test-unit.mk │ │ │ │ ├── verify-update.mk │ │ │ │ ├── version.mk │ │ │ │ └── vulncheck.mk │ │ │ │ ├── help.mk │ │ │ │ └── openshift │ │ │ │ ├── bindata.mk │ │ │ │ ├── codegen.mk │ │ │ │ ├── controller-gen.mk │ │ │ │ ├── crd-schema-gen.mk │ │ │ │ ├── deps-glide.mk │ │ │ │ ├── deps-gomod.mk │ │ │ │ ├── deps.mk │ │ │ │ ├── doc.go │ │ │ │ ├── imagebuilder.mk │ │ │ │ ├── images.mk │ │ │ │ ├── kustomize.mk │ │ │ │ ├── operator │ │ │ │ ├── doc.go │ │ │ │ ├── mom.mk │ │ │ │ ├── profile-manifests.mk │ │ │ │ ├── release.mk │ │ │ │ └── telepresence.mk │ │ │ │ ├── rpm.mk │ │ │ │ ├── yaml-patch.mk │ │ │ │ └── yq.mk │ │ └── scripts │ │ │ ├── doc.go │ │ │ ├── run-telepresence.sh │ │ │ ├── test-operator-integration.sh │ │ │ ├── update-deps.sh │ │ │ └── vulncheck.sh │ ├── client-go │ │ ├── LICENSE │ │ ├── authorization │ │ │ ├── applyconfigurations │ │ │ │ ├── authorization │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ ├── grouprestriction.go │ │ │ │ │ │ ├── policyrule.go │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ ├── rolebinding.go │ │ │ │ │ │ ├── rolebindingrestriction.go │ │ │ │ │ │ ├── rolebindingrestrictionspec.go │ │ │ │ │ │ ├── serviceaccountreference.go │ │ │ │ │ │ ├── serviceaccountrestriction.go │ │ │ │ │ │ └── userrestriction.go │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ └── utils.go │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── authorization │ │ │ │ └── v1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authorization_client.go │ │ │ │ ├── fake_clusterrole.go │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ ├── fake_localresourceaccessreview.go │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ ├── fake_resourceaccessreview.go │ │ │ │ ├── fake_role.go │ │ │ │ ├── fake_rolebinding.go │ │ │ │ ├── fake_rolebindingrestriction.go │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ └── fake_subjectrulesreview.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localresourceaccessreview.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── resourceaccessreview.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── rolebindingrestriction.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectrulesreview.go │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── imagespec.go │ │ │ │ │ │ ├── imagestatus.go │ │ │ │ │ │ ├── imagetagmirrors.go │ │ │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ │ │ ├── imagetagmirrorsetspec.go │ │ │ │ │ │ ├── infrastructure.go │ │ │ │ │ │ ├── infrastructurespec.go │ │ │ │ │ │ ├── infrastructurestatus.go │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ ├── ingressplatformspec.go │ │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ │ ├── ingressstatus.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 │ │ │ │ │ │ ├── platformspec.go │ │ │ │ │ │ ├── platformstatus.go │ │ │ │ │ │ ├── powervsplatformspec.go │ │ │ │ │ │ ├── powervsplatformstatus.go │ │ │ │ │ │ ├── powervsserviceendpoint.go │ │ │ │ │ │ ├── prefixedclaimmapping.go │ │ │ │ │ │ ├── profilecustomizations.go │ │ │ │ │ │ ├── project.go │ │ │ │ │ │ ├── projectspec.go │ │ │ │ │ │ ├── promqlclustercondition.go │ │ │ │ │ │ ├── proxy.go │ │ │ │ │ │ ├── proxyspec.go │ │ │ │ │ │ ├── proxystatus.go │ │ │ │ │ │ ├── registrylocation.go │ │ │ │ │ │ ├── registrysources.go │ │ │ │ │ │ ├── release.go │ │ │ │ │ │ ├── repositorydigestmirrors.go │ │ │ │ │ │ ├── requestheaderidentityprovider.go │ │ │ │ │ │ ├── requiredhstspolicy.go │ │ │ │ │ │ ├── scheduler.go │ │ │ │ │ │ ├── schedulerspec.go │ │ │ │ │ │ ├── secretnamereference.go │ │ │ │ │ │ ├── signaturestore.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 │ │ │ │ │ │ ├── backup.go │ │ │ │ │ │ ├── backupspec.go │ │ │ │ │ │ ├── clusterimagepolicy.go │ │ │ │ │ │ ├── clusterimagepolicyspec.go │ │ │ │ │ │ ├── clusterimagepolicystatus.go │ │ │ │ │ │ ├── clustermonitoring.go │ │ │ │ │ │ ├── clustermonitoringspec.go │ │ │ │ │ │ ├── etcdbackupspec.go │ │ │ │ │ │ ├── fulciocawithrekor.go │ │ │ │ │ │ ├── gatherconfig.go │ │ │ │ │ │ ├── imagepolicy.go │ │ │ │ │ │ ├── imagepolicyspec.go │ │ │ │ │ │ ├── imagepolicystatus.go │ │ │ │ │ │ ├── insightsdatagather.go │ │ │ │ │ │ ├── insightsdatagatherspec.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 │ │ │ │ │ ├── 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_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_imagetagmirrorset.go │ │ │ │ │ │ ├── fake_infrastructure.go │ │ │ │ │ │ ├── fake_ingress.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 │ │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ │ ├── infrastructure.go │ │ │ │ │ ├── ingress.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 │ │ │ │ │ │ ├── clusteroperator.go │ │ │ │ │ │ ├── clusterversion.go │ │ │ │ │ │ ├── console.go │ │ │ │ │ │ ├── dns.go │ │ │ │ │ │ ├── featuregate.go │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ ├── imagecontentpolicy.go │ │ │ │ │ │ ├── imagedigestmirrorset.go │ │ │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ │ │ ├── infrastructure.go │ │ │ │ │ │ ├── ingress.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 │ │ │ │ ├── clusteroperator.go │ │ │ │ ├── clusterversion.go │ │ │ │ ├── console.go │ │ │ │ ├── dns.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── featuregate.go │ │ │ │ ├── image.go │ │ │ │ ├── imagecontentpolicy.go │ │ │ │ ├── imagedigestmirrorset.go │ │ │ │ ├── imagetagmirrorset.go │ │ │ │ ├── infrastructure.go │ │ │ │ ├── ingress.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 │ │ ├── image │ │ │ ├── applyconfigurations │ │ │ │ ├── image │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ ├── imagelayer.go │ │ │ │ │ │ ├── imagelookuppolicy.go │ │ │ │ │ │ ├── imagemanifest.go │ │ │ │ │ │ ├── imagesignature.go │ │ │ │ │ │ ├── imagestream.go │ │ │ │ │ │ ├── imagestreammapping.go │ │ │ │ │ │ ├── imagestreamspec.go │ │ │ │ │ │ ├── imagestreamstatus.go │ │ │ │ │ │ ├── namedtageventlist.go │ │ │ │ │ │ ├── signaturecondition.go │ │ │ │ │ │ ├── signaturegenericentity.go │ │ │ │ │ │ ├── signatureissuer.go │ │ │ │ │ │ ├── signaturesubject.go │ │ │ │ │ │ ├── tagevent.go │ │ │ │ │ │ ├── tageventcondition.go │ │ │ │ │ │ ├── tagimportpolicy.go │ │ │ │ │ │ ├── tagreference.go │ │ │ │ │ │ └── tagreferencepolicy.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── image │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── image.go │ │ │ │ ├── image_client.go │ │ │ │ ├── imagesignature.go │ │ │ │ ├── imagestream.go │ │ │ │ ├── imagestreamimage.go │ │ │ │ ├── imagestreamimport.go │ │ │ │ ├── imagestreammapping.go │ │ │ │ ├── imagestreamtag.go │ │ │ │ └── imagetag.go │ │ ├── imageregistry │ │ │ ├── applyconfigurations │ │ │ │ ├── imageregistry │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── azurenetworkaccess.go │ │ │ │ │ │ ├── azurenetworkaccessinternal.go │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── encryptionalibaba.go │ │ │ │ │ │ ├── imagepruner.go │ │ │ │ │ │ ├── imageprunerspec.go │ │ │ │ │ │ ├── imageprunerstatus.go │ │ │ │ │ │ ├── imageregistryconfigproxy.go │ │ │ │ │ │ ├── imageregistryconfigrequests.go │ │ │ │ │ │ ├── imageregistryconfigrequestslimits.go │ │ │ │ │ │ ├── imageregistryconfigroute.go │ │ │ │ │ │ ├── imageregistryconfigstorage.go │ │ │ │ │ │ ├── imageregistryconfigstoragealibabaoss.go │ │ │ │ │ │ ├── imageregistryconfigstorageazure.go │ │ │ │ │ │ ├── imageregistryconfigstoragegcs.go │ │ │ │ │ │ ├── imageregistryconfigstorageibmcos.go │ │ │ │ │ │ ├── imageregistryconfigstoragepvc.go │ │ │ │ │ │ ├── imageregistryconfigstorages3.go │ │ │ │ │ │ ├── imageregistryconfigstorages3cloudfront.go │ │ │ │ │ │ ├── imageregistryconfigstorageswift.go │ │ │ │ │ │ ├── imageregistryspec.go │ │ │ │ │ │ ├── imageregistrystatus.go │ │ │ │ │ │ ├── kmsencryptionalibaba.go │ │ │ │ │ │ └── s3trustedcasource.go │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ └── utils.go │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── imageregistry │ │ │ │ └── v1 │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_config.go │ │ │ │ ├── fake_imagepruner.go │ │ │ │ └── fake_imageregistry_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── imagepruner.go │ │ │ │ └── imageregistry_client.go │ │ ├── insights │ │ │ ├── applyconfigurations │ │ │ │ ├── insights │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── datagather.go │ │ │ │ │ │ ├── datagatherspec.go │ │ │ │ │ │ ├── datagatherstatus.go │ │ │ │ │ │ ├── gathererconfig.go │ │ │ │ │ │ ├── gathererstatus.go │ │ │ │ │ │ ├── healthcheck.go │ │ │ │ │ │ ├── insightsreport.go │ │ │ │ │ │ ├── objectreference.go │ │ │ │ │ │ ├── persistentvolumeclaimreference.go │ │ │ │ │ │ ├── persistentvolumeconfig.go │ │ │ │ │ │ └── storage.go │ │ │ │ │ └── v1alpha2 │ │ │ │ │ │ ├── custom.go │ │ │ │ │ │ ├── datagather.go │ │ │ │ │ │ ├── datagatherspec.go │ │ │ │ │ │ ├── datagatherstatus.go │ │ │ │ │ │ ├── gathererconfig.go │ │ │ │ │ │ ├── gatherers.go │ │ │ │ │ │ ├── gathererstatus.go │ │ │ │ │ │ ├── healthcheck.go │ │ │ │ │ │ ├── insightsreport.go │ │ │ │ │ │ ├── objectreference.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 │ │ │ │ │ └── insights │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── datagather.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_datagather.go │ │ │ │ │ │ └── fake_insights_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── insights_client.go │ │ │ │ │ └── v1alpha2 │ │ │ │ │ ├── datagather.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_datagather.go │ │ │ │ │ └── fake_insights_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── insights_client.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── insights │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── datagather.go │ │ │ │ │ │ └── interface.go │ │ │ │ │ └── v1alpha2 │ │ │ │ │ │ ├── datagather.go │ │ │ │ │ │ └── interface.go │ │ │ │ │ └── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ └── listers │ │ │ │ └── insights │ │ │ │ ├── v1alpha1 │ │ │ │ ├── datagather.go │ │ │ │ └── expansion_generated.go │ │ │ │ └── v1alpha2 │ │ │ │ ├── datagather.go │ │ │ │ └── expansion_generated.go │ │ ├── machineconfiguration │ │ │ ├── applyconfigurations │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ └── machineconfiguration │ │ │ │ │ ├── v1 │ │ │ │ │ ├── certexpiry.go │ │ │ │ │ ├── containerruntimeconfig.go │ │ │ │ │ ├── containerruntimeconfigcondition.go │ │ │ │ │ ├── containerruntimeconfigspec.go │ │ │ │ │ ├── containerruntimeconfigstatus.go │ │ │ │ │ ├── containerruntimeconfiguration.go │ │ │ │ │ ├── controllercertificate.go │ │ │ │ │ ├── controllerconfig.go │ │ │ │ │ ├── controllerconfigspec.go │ │ │ │ │ ├── controllerconfigstatus.go │ │ │ │ │ ├── controllerconfigstatuscondition.go │ │ │ │ │ ├── imageregistrybundle.go │ │ │ │ │ ├── imagesecretobjectreference.go │ │ │ │ │ ├── kubeletconfig.go │ │ │ │ │ ├── kubeletconfigcondition.go │ │ │ │ │ ├── kubeletconfigspec.go │ │ │ │ │ ├── kubeletconfigstatus.go │ │ │ │ │ ├── machineconfig.go │ │ │ │ │ ├── machineconfignode.go │ │ │ │ │ ├── machineconfignodespec.go │ │ │ │ │ ├── machineconfignodespecmachineconfigversion.go │ │ │ │ │ ├── machineconfignodestatus.go │ │ │ │ │ ├── machineconfignodestatusmachineconfigversion.go │ │ │ │ │ ├── machineconfignodestatuspinnedimageset.go │ │ │ │ │ ├── machineconfigpool.go │ │ │ │ │ ├── machineconfigpoolcondition.go │ │ │ │ │ ├── machineconfigpoolreference.go │ │ │ │ │ ├── machineconfigpoolspec.go │ │ │ │ │ ├── machineconfigpoolstatus.go │ │ │ │ │ ├── machineconfigpoolstatusconfiguration.go │ │ │ │ │ ├── machineconfigreference.go │ │ │ │ │ ├── machineconfigspec.go │ │ │ │ │ ├── machineosbuild.go │ │ │ │ │ ├── machineosbuilderreference.go │ │ │ │ │ ├── machineosbuildspec.go │ │ │ │ │ ├── machineosbuildstatus.go │ │ │ │ │ ├── machineosconfig.go │ │ │ │ │ ├── machineosconfigreference.go │ │ │ │ │ ├── machineosconfigspec.go │ │ │ │ │ ├── machineosconfigstatus.go │ │ │ │ │ ├── machineoscontainerfile.go │ │ │ │ │ ├── machineosimagebuilder.go │ │ │ │ │ ├── mcoobjectreference.go │ │ │ │ │ ├── networkinfo.go │ │ │ │ │ ├── objectreference.go │ │ │ │ │ ├── pinnedimageref.go │ │ │ │ │ ├── pinnedimageset.go │ │ │ │ │ ├── pinnedimagesetref.go │ │ │ │ │ ├── pinnedimagesetspec.go │ │ │ │ │ └── poolsynchronizerstatus.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── buildinputs.go │ │ │ │ │ ├── buildoutputs.go │ │ │ │ │ ├── imagesecretobjectreference.go │ │ │ │ │ ├── machineconfignode.go │ │ │ │ │ ├── machineconfignodespec.go │ │ │ │ │ ├── machineconfignodespecmachineconfigversion.go │ │ │ │ │ ├── machineconfignodestatus.go │ │ │ │ │ ├── machineconfignodestatusmachineconfigversion.go │ │ │ │ │ ├── machineconfignodestatuspinnedimageset.go │ │ │ │ │ ├── machineconfigpoolreference.go │ │ │ │ │ ├── machineosbuild.go │ │ │ │ │ ├── machineosbuilderreference.go │ │ │ │ │ ├── machineosbuildspec.go │ │ │ │ │ ├── machineosbuildstatus.go │ │ │ │ │ ├── machineosconfig.go │ │ │ │ │ ├── machineosconfigreference.go │ │ │ │ │ ├── machineosconfigspec.go │ │ │ │ │ ├── machineosconfigstatus.go │ │ │ │ │ ├── machineoscontainerfile.go │ │ │ │ │ ├── machineosimagebuilder.go │ │ │ │ │ ├── mcoobjectreference.go │ │ │ │ │ ├── objectreference.go │ │ │ │ │ ├── pinnedimageref.go │ │ │ │ │ ├── pinnedimageset.go │ │ │ │ │ ├── pinnedimagesetspec.go │ │ │ │ │ ├── pinnedimagesetstatus.go │ │ │ │ │ └── renderedmachineconfigreference.go │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── machineconfiguration │ │ │ │ ├── v1 │ │ │ │ ├── containerruntimeconfig.go │ │ │ │ ├── controllerconfig.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── kubeletconfig.go │ │ │ │ ├── machineconfig.go │ │ │ │ ├── machineconfignode.go │ │ │ │ ├── machineconfigpool.go │ │ │ │ ├── machineconfiguration_client.go │ │ │ │ ├── machineosbuild.go │ │ │ │ ├── machineosconfig.go │ │ │ │ └── pinnedimageset.go │ │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── machineconfignode.go │ │ │ │ ├── machineconfiguration_client.go │ │ │ │ ├── machineosbuild.go │ │ │ │ ├── machineosconfig.go │ │ │ │ └── pinnedimageset.go │ │ ├── network │ │ │ ├── applyconfigurations │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ ├── network │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── clusternetwork.go │ │ │ │ │ │ ├── clusternetworkentry.go │ │ │ │ │ │ ├── egressnetworkpolicy.go │ │ │ │ │ │ ├── egressnetworkpolicypeer.go │ │ │ │ │ │ ├── egressnetworkpolicyrule.go │ │ │ │ │ │ ├── egressnetworkpolicyspec.go │ │ │ │ │ │ ├── hostsubnet.go │ │ │ │ │ │ └── netnamespace.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ ├── dnsnameresolver.go │ │ │ │ │ │ ├── dnsnameresolverresolvedaddress.go │ │ │ │ │ │ ├── dnsnameresolverresolvedname.go │ │ │ │ │ │ ├── dnsnameresolverspec.go │ │ │ │ │ │ └── dnsnameresolverstatus.go │ │ │ │ └── utils.go │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── network │ │ │ │ ├── v1 │ │ │ │ ├── clusternetwork.go │ │ │ │ ├── doc.go │ │ │ │ ├── egressnetworkpolicy.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusternetwork.go │ │ │ │ │ ├── fake_egressnetworkpolicy.go │ │ │ │ │ ├── fake_hostsubnet.go │ │ │ │ │ ├── fake_netnamespace.go │ │ │ │ │ └── fake_network_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── hostsubnet.go │ │ │ │ ├── netnamespace.go │ │ │ │ └── network_client.go │ │ │ │ └── v1alpha1 │ │ │ │ ├── dnsnameresolver.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_dnsnameresolver.go │ │ │ │ └── fake_network_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── network_client.go │ │ ├── operator │ │ │ ├── applyconfigurations │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ ├── operator │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── accesslogging.go │ │ │ │ │ │ ├── additionalnetworkdefinition.go │ │ │ │ │ │ ├── additionalroutingcapabilities.go │ │ │ │ │ │ ├── addpage.go │ │ │ │ │ │ ├── authentication.go │ │ │ │ │ │ ├── authenticationspec.go │ │ │ │ │ │ ├── authenticationstatus.go │ │ │ │ │ │ ├── awsclassicloadbalancerparameters.go │ │ │ │ │ │ ├── awscsidriverconfigspec.go │ │ │ │ │ │ ├── awsefsvolumemetrics.go │ │ │ │ │ │ ├── awsefsvolumemetricsrecursivewalkconfig.go │ │ │ │ │ │ ├── awsloadbalancerparameters.go │ │ │ │ │ │ ├── awsnetworkloadbalancerparameters.go │ │ │ │ │ │ ├── awssubnets.go │ │ │ │ │ │ ├── azurecsidriverconfigspec.go │ │ │ │ │ │ ├── azurediskencryptionset.go │ │ │ │ │ │ ├── capability.go │ │ │ │ │ │ ├── capabilityvisibility.go │ │ │ │ │ │ ├── clienttls.go │ │ │ │ │ │ ├── cloudcredential.go │ │ │ │ │ │ ├── cloudcredentialspec.go │ │ │ │ │ │ ├── cloudcredentialstatus.go │ │ │ │ │ │ ├── clustercsidriver.go │ │ │ │ │ │ ├── clustercsidriverspec.go │ │ │ │ │ │ ├── clustercsidriverstatus.go │ │ │ │ │ │ ├── clusternetworkentry.go │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── configmapfilereference.go │ │ │ │ │ │ ├── configspec.go │ │ │ │ │ │ ├── configstatus.go │ │ │ │ │ │ ├── console.go │ │ │ │ │ │ ├── consoleconfigroute.go │ │ │ │ │ │ ├── consolecustomization.go │ │ │ │ │ │ ├── consoleproviders.go │ │ │ │ │ │ ├── consolespec.go │ │ │ │ │ │ ├── consolestatus.go │ │ │ │ │ │ ├── containerloggingdestinationparameters.go │ │ │ │ │ │ ├── csidriverconfigspec.go │ │ │ │ │ │ ├── csisnapshotcontroller.go │ │ │ │ │ │ ├── csisnapshotcontrollerspec.go │ │ │ │ │ │ ├── csisnapshotcontrollerstatus.go │ │ │ │ │ │ ├── defaultnetworkdefinition.go │ │ │ │ │ │ ├── developerconsolecatalogcategory.go │ │ │ │ │ │ ├── developerconsolecatalogcategorymeta.go │ │ │ │ │ │ ├── developerconsolecatalogcustomization.go │ │ │ │ │ │ ├── developerconsolecatalogtypes.go │ │ │ │ │ │ ├── dns.go │ │ │ │ │ │ ├── dnscache.go │ │ │ │ │ │ ├── dnsnodeplacement.go │ │ │ │ │ │ ├── dnsovertlsconfig.go │ │ │ │ │ │ ├── dnsspec.go │ │ │ │ │ │ ├── dnsstatus.go │ │ │ │ │ │ ├── dnstransportconfig.go │ │ │ │ │ │ ├── egressipconfig.go │ │ │ │ │ │ ├── endpointpublishingstrategy.go │ │ │ │ │ │ ├── etcd.go │ │ │ │ │ │ ├── etcdspec.go │ │ │ │ │ │ ├── etcdstatus.go │ │ │ │ │ │ ├── exportnetworkflows.go │ │ │ │ │ │ ├── featuresmigration.go │ │ │ │ │ │ ├── filereferencesource.go │ │ │ │ │ │ ├── forwardplugin.go │ │ │ │ │ │ ├── gatewayconfig.go │ │ │ │ │ │ ├── gathererstatus.go │ │ │ │ │ │ ├── gatherstatus.go │ │ │ │ │ │ ├── gcpcsidriverconfigspec.go │ │ │ │ │ │ ├── gcpkmskeyreference.go │ │ │ │ │ │ ├── gcploadbalancerparameters.go │ │ │ │ │ │ ├── generationstatus.go │ │ │ │ │ │ ├── healthcheck.go │ │ │ │ │ │ ├── hostnetworkstrategy.go │ │ │ │ │ │ ├── httpcompressionpolicy.go │ │ │ │ │ │ ├── hybridoverlayconfig.go │ │ │ │ │ │ ├── ibmcloudcsidriverconfigspec.go │ │ │ │ │ │ ├── ibmloadbalancerparameters.go │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ ├── ingresscontroller.go │ │ │ │ │ │ ├── ingresscontrollercapturehttpcookie.go │ │ │ │ │ │ ├── ingresscontrollercapturehttpcookieunion.go │ │ │ │ │ │ ├── ingresscontrollercapturehttpheader.go │ │ │ │ │ │ ├── ingresscontrollercapturehttpheaders.go │ │ │ │ │ │ ├── ingresscontrollerhttpheader.go │ │ │ │ │ │ ├── ingresscontrollerhttpheaderactions.go │ │ │ │ │ │ ├── ingresscontrollerhttpheaderactionunion.go │ │ │ │ │ │ ├── ingresscontrollerhttpheaders.go │ │ │ │ │ │ ├── ingresscontrollerhttpuniqueidheaderpolicy.go │ │ │ │ │ │ ├── ingresscontrollerlogging.go │ │ │ │ │ │ ├── ingresscontrollersethttpheader.go │ │ │ │ │ │ ├── ingresscontrollerspec.go │ │ │ │ │ │ ├── ingresscontrollerstatus.go │ │ │ │ │ │ ├── ingresscontrollertuningoptions.go │ │ │ │ │ │ ├── insightsoperator.go │ │ │ │ │ │ ├── insightsoperatorspec.go │ │ │ │ │ │ ├── insightsoperatorstatus.go │ │ │ │ │ │ ├── insightsreport.go │ │ │ │ │ │ ├── ipamconfig.go │ │ │ │ │ │ ├── ipfixconfig.go │ │ │ │ │ │ ├── ipsecconfig.go │ │ │ │ │ │ ├── ipsecfullmodeconfig.go │ │ │ │ │ │ ├── ipv4gatewayconfig.go │ │ │ │ │ │ ├── ipv4ovnkubernetesconfig.go │ │ │ │ │ │ ├── ipv6gatewayconfig.go │ │ │ │ │ │ ├── ipv6ovnkubernetesconfig.go │ │ │ │ │ │ ├── kubeapiserver.go │ │ │ │ │ │ ├── kubeapiserverspec.go │ │ │ │ │ │ ├── kubeapiserverstatus.go │ │ │ │ │ │ ├── kubecontrollermanager.go │ │ │ │ │ │ ├── kubecontrollermanagerspec.go │ │ │ │ │ │ ├── kubecontrollermanagerstatus.go │ │ │ │ │ │ ├── kubescheduler.go │ │ │ │ │ │ ├── kubeschedulerspec.go │ │ │ │ │ │ ├── kubeschedulerstatus.go │ │ │ │ │ │ ├── kubestorageversionmigrator.go │ │ │ │ │ │ ├── kubestorageversionmigratorspec.go │ │ │ │ │ │ ├── kubestorageversionmigratorstatus.go │ │ │ │ │ │ ├── loadbalancerstrategy.go │ │ │ │ │ │ ├── loggingdestination.go │ │ │ │ │ │ ├── logo.go │ │ │ │ │ │ ├── machineconfiguration.go │ │ │ │ │ │ ├── machineconfigurationspec.go │ │ │ │ │ │ ├── machineconfigurationstatus.go │ │ │ │ │ │ ├── machinemanager.go │ │ │ │ │ │ ├── machinemanagerselector.go │ │ │ │ │ │ ├── managedbootimages.go │ │ │ │ │ │ ├── mtumigration.go │ │ │ │ │ │ ├── mtumigrationvalues.go │ │ │ │ │ │ ├── netflowconfig.go │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ ├── networkmigration.go │ │ │ │ │ │ ├── networkspec.go │ │ │ │ │ │ ├── networkstatus.go │ │ │ │ │ │ ├── nodedisruptionpolicyclusterstatus.go │ │ │ │ │ │ ├── nodedisruptionpolicyconfig.go │ │ │ │ │ │ ├── nodedisruptionpolicyspecaction.go │ │ │ │ │ │ ├── nodedisruptionpolicyspecfile.go │ │ │ │ │ │ ├── nodedisruptionpolicyspecsshkey.go │ │ │ │ │ │ ├── nodedisruptionpolicyspecunit.go │ │ │ │ │ │ ├── nodedisruptionpolicystatus.go │ │ │ │ │ │ ├── nodedisruptionpolicystatusaction.go │ │ │ │ │ │ ├── nodedisruptionpolicystatusfile.go │ │ │ │ │ │ ├── nodedisruptionpolicystatussshkey.go │ │ │ │ │ │ ├── nodedisruptionpolicystatusunit.go │ │ │ │ │ │ ├── nodeplacement.go │ │ │ │ │ │ ├── nodeportstrategy.go │ │ │ │ │ │ ├── nodestatus.go │ │ │ │ │ │ ├── oauthapiserverstatus.go │ │ │ │ │ │ ├── olm.go │ │ │ │ │ │ ├── olmspec.go │ │ │ │ │ │ ├── olmstatus.go │ │ │ │ │ │ ├── openshiftapiserver.go │ │ │ │ │ │ ├── openshiftapiserverspec.go │ │ │ │ │ │ ├── openshiftapiserverstatus.go │ │ │ │ │ │ ├── openshiftcontrollermanager.go │ │ │ │ │ │ ├── openshiftcontrollermanagerspec.go │ │ │ │ │ │ ├── openshiftcontrollermanagerstatus.go │ │ │ │ │ │ ├── openshiftsdnconfig.go │ │ │ │ │ │ ├── openstackloadbalancerparameters.go │ │ │ │ │ │ ├── operatorcondition.go │ │ │ │ │ │ ├── operatorspec.go │ │ │ │ │ │ ├── operatorstatus.go │ │ │ │ │ │ ├── ovnkubernetesconfig.go │ │ │ │ │ │ ├── partialselector.go │ │ │ │ │ │ ├── perspective.go │ │ │ │ │ │ ├── perspectivevisibility.go │ │ │ │ │ │ ├── pinnedresourcereference.go │ │ │ │ │ │ ├── policyauditconfig.go │ │ │ │ │ │ ├── privatestrategy.go │ │ │ │ │ │ ├── projectaccess.go │ │ │ │ │ │ ├── providerloadbalancerparameters.go │ │ │ │ │ │ ├── proxyconfig.go │ │ │ │ │ │ ├── quickstarts.go │ │ │ │ │ │ ├── reloadservice.go │ │ │ │ │ │ ├── resourceattributesaccessreview.go │ │ │ │ │ │ ├── restartservice.go │ │ │ │ │ │ ├── routeadmissionpolicy.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── serviceaccountissuerstatus.go │ │ │ │ │ │ ├── serviceca.go │ │ │ │ │ │ ├── servicecaspec.go │ │ │ │ │ │ ├── servicecastatus.go │ │ │ │ │ │ ├── servicecatalogapiserver.go │ │ │ │ │ │ ├── servicecatalogapiserverspec.go │ │ │ │ │ │ ├── servicecatalogapiserverstatus.go │ │ │ │ │ │ ├── servicecatalogcontrollermanager.go │ │ │ │ │ │ ├── servicecatalogcontrollermanagerspec.go │ │ │ │ │ │ ├── servicecatalogcontrollermanagerstatus.go │ │ │ │ │ │ ├── sflowconfig.go │ │ │ │ │ │ ├── simplemacvlanconfig.go │ │ │ │ │ │ ├── staticipamaddresses.go │ │ │ │ │ │ ├── staticipamconfig.go │ │ │ │ │ │ ├── staticipamdns.go │ │ │ │ │ │ ├── staticipamroutes.go │ │ │ │ │ │ ├── staticpodoperatorspec.go │ │ │ │ │ │ ├── staticpodoperatorstatus.go │ │ │ │ │ │ ├── statuspageprovider.go │ │ │ │ │ │ ├── storage.go │ │ │ │ │ │ ├── storagespec.go │ │ │ │ │ │ ├── storagestatus.go │ │ │ │ │ │ ├── syslogloggingdestinationparameters.go │ │ │ │ │ │ ├── theme.go │ │ │ │ │ │ ├── upstream.go │ │ │ │ │ │ ├── upstreamresolvers.go │ │ │ │ │ │ └── vspherecsidriverconfigspec.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ ├── backupjobreference.go │ │ │ │ │ │ ├── clusterversionoperator.go │ │ │ │ │ │ ├── clusterversionoperatorspec.go │ │ │ │ │ │ ├── clusterversionoperatorstatus.go │ │ │ │ │ │ ├── etcdbackup.go │ │ │ │ │ │ ├── etcdbackupspec.go │ │ │ │ │ │ ├── etcdbackupstatus.go │ │ │ │ │ │ ├── imagecontentsourcepolicy.go │ │ │ │ │ │ ├── imagecontentsourcepolicyspec.go │ │ │ │ │ │ ├── olm.go │ │ │ │ │ │ ├── olmspec.go │ │ │ │ │ │ ├── olmstatus.go │ │ │ │ │ │ └── repositorydigestmirrors.go │ │ │ │ └── utils.go │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── operator │ │ │ │ │ ├── v1 │ │ │ │ │ ├── authentication.go │ │ │ │ │ ├── cloudcredential.go │ │ │ │ │ ├── clustercsidriver.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── console.go │ │ │ │ │ ├── csisnapshotcontroller.go │ │ │ │ │ ├── dns.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── etcd.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_authentication.go │ │ │ │ │ │ ├── fake_cloudcredential.go │ │ │ │ │ │ ├── fake_clustercsidriver.go │ │ │ │ │ │ ├── fake_config.go │ │ │ │ │ │ ├── fake_console.go │ │ │ │ │ │ ├── fake_csisnapshotcontroller.go │ │ │ │ │ │ ├── fake_dns.go │ │ │ │ │ │ ├── fake_etcd.go │ │ │ │ │ │ ├── fake_ingresscontroller.go │ │ │ │ │ │ ├── fake_insightsoperator.go │ │ │ │ │ │ ├── fake_kubeapiserver.go │ │ │ │ │ │ ├── fake_kubecontrollermanager.go │ │ │ │ │ │ ├── fake_kubescheduler.go │ │ │ │ │ │ ├── fake_kubestorageversionmigrator.go │ │ │ │ │ │ ├── fake_machineconfiguration.go │ │ │ │ │ │ ├── fake_network.go │ │ │ │ │ │ ├── fake_olm.go │ │ │ │ │ │ ├── fake_openshiftapiserver.go │ │ │ │ │ │ ├── fake_openshiftcontrollermanager.go │ │ │ │ │ │ ├── fake_operator_client.go │ │ │ │ │ │ ├── fake_serviceca.go │ │ │ │ │ │ ├── fake_servicecatalogapiserver.go │ │ │ │ │ │ ├── fake_servicecatalogcontrollermanager.go │ │ │ │ │ │ └── fake_storage.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingresscontroller.go │ │ │ │ │ ├── insightsoperator.go │ │ │ │ │ ├── kubeapiserver.go │ │ │ │ │ ├── kubecontrollermanager.go │ │ │ │ │ ├── kubescheduler.go │ │ │ │ │ ├── kubestorageversionmigrator.go │ │ │ │ │ ├── machineconfiguration.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── olm.go │ │ │ │ │ ├── openshiftapiserver.go │ │ │ │ │ ├── openshiftcontrollermanager.go │ │ │ │ │ ├── operator_client.go │ │ │ │ │ ├── serviceca.go │ │ │ │ │ ├── servicecatalogapiserver.go │ │ │ │ │ ├── servicecatalogcontrollermanager.go │ │ │ │ │ └── storage.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── clusterversionoperator.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── etcdbackup.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterversionoperator.go │ │ │ │ │ ├── fake_etcdbackup.go │ │ │ │ │ ├── fake_imagecontentsourcepolicy.go │ │ │ │ │ ├── fake_olm.go │ │ │ │ │ └── fake_operator_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── imagecontentsourcepolicy.go │ │ │ │ │ ├── olm.go │ │ │ │ │ └── operator_client.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── operator │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── authentication.go │ │ │ │ │ ├── cloudcredential.go │ │ │ │ │ ├── clustercsidriver.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── console.go │ │ │ │ │ ├── csisnapshotcontroller.go │ │ │ │ │ ├── dns.go │ │ │ │ │ ├── etcd.go │ │ │ │ │ ├── ingresscontroller.go │ │ │ │ │ ├── insightsoperator.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── kubeapiserver.go │ │ │ │ │ ├── kubecontrollermanager.go │ │ │ │ │ ├── kubescheduler.go │ │ │ │ │ ├── kubestorageversionmigrator.go │ │ │ │ │ ├── machineconfiguration.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── olm.go │ │ │ │ │ ├── openshiftapiserver.go │ │ │ │ │ ├── openshiftcontrollermanager.go │ │ │ │ │ ├── serviceca.go │ │ │ │ │ ├── servicecatalogapiserver.go │ │ │ │ │ ├── servicecatalogcontrollermanager.go │ │ │ │ │ └── storage.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── clusterversionoperator.go │ │ │ │ │ ├── etcdbackup.go │ │ │ │ │ ├── imagecontentsourcepolicy.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── olm.go │ │ │ └── listers │ │ │ │ └── operator │ │ │ │ ├── v1 │ │ │ │ ├── authentication.go │ │ │ │ ├── cloudcredential.go │ │ │ │ ├── clustercsidriver.go │ │ │ │ ├── config.go │ │ │ │ ├── console.go │ │ │ │ ├── csisnapshotcontroller.go │ │ │ │ ├── dns.go │ │ │ │ ├── etcd.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingresscontroller.go │ │ │ │ ├── insightsoperator.go │ │ │ │ ├── kubeapiserver.go │ │ │ │ ├── kubecontrollermanager.go │ │ │ │ ├── kubescheduler.go │ │ │ │ ├── kubestorageversionmigrator.go │ │ │ │ ├── machineconfiguration.go │ │ │ │ ├── network.go │ │ │ │ ├── olm.go │ │ │ │ ├── openshiftapiserver.go │ │ │ │ ├── openshiftcontrollermanager.go │ │ │ │ ├── serviceca.go │ │ │ │ ├── servicecatalogapiserver.go │ │ │ │ ├── servicecatalogcontrollermanager.go │ │ │ │ └── storage.go │ │ │ │ └── v1alpha1 │ │ │ │ ├── clusterversionoperator.go │ │ │ │ ├── etcdbackup.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── imagecontentsourcepolicy.go │ │ │ │ └── olm.go │ │ ├── operatorcontrolplane │ │ │ ├── applyconfigurations │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ ├── operatorcontrolplane │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ ├── logentry.go │ │ │ │ │ │ ├── outageentry.go │ │ │ │ │ │ ├── podnetworkconnectivitycheck.go │ │ │ │ │ │ ├── podnetworkconnectivitycheckcondition.go │ │ │ │ │ │ ├── podnetworkconnectivitycheckspec.go │ │ │ │ │ │ └── podnetworkconnectivitycheckstatus.go │ │ │ │ └── utils.go │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── operatorcontrolplane │ │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_operatorcontrolplane_client.go │ │ │ │ └── fake_podnetworkconnectivitycheck.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── operatorcontrolplane_client.go │ │ │ │ └── podnetworkconnectivitycheck.go │ │ └── security │ │ │ ├── applyconfigurations │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── security │ │ │ │ └── v1 │ │ │ │ │ ├── allowedflexvolume.go │ │ │ │ │ ├── fsgroupstrategyoptions.go │ │ │ │ │ ├── idrange.go │ │ │ │ │ ├── rangeallocation.go │ │ │ │ │ ├── runasuserstrategyoptions.go │ │ │ │ │ ├── securitycontextconstraints.go │ │ │ │ │ ├── selinuxcontextstrategyoptions.go │ │ │ │ │ └── supplementalgroupsstrategyoptions.go │ │ │ └── utils.go │ │ │ └── clientset │ │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── security │ │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_podsecuritypolicyreview.go │ │ │ ├── fake_podsecuritypolicyselfsubjectreview.go │ │ │ ├── fake_podsecuritypolicysubjectreview.go │ │ │ ├── fake_rangeallocation.go │ │ │ ├── fake_security_client.go │ │ │ └── fake_securitycontextconstraints.go │ │ │ ├── generated_expansion.go │ │ │ ├── podsecuritypolicyreview.go │ │ │ ├── podsecuritypolicyselfsubjectreview.go │ │ │ ├── podsecuritypolicysubjectreview.go │ │ │ ├── rangeallocation.go │ │ │ ├── security_client.go │ │ │ └── securitycontextconstraints.go │ ├── installer │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pkg │ │ │ ├── ipnet │ │ │ └── ipnet.go │ │ │ └── types │ │ │ ├── aws │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── machinepool.go │ │ │ ├── metadata.go │ │ │ └── platform.go │ │ │ ├── azure │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── machinepool.go │ │ │ ├── metadata.go │ │ │ └── platform.go │ │ │ ├── baremetal │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── machinepool.go │ │ │ ├── metadata.go │ │ │ └── platform.go │ │ │ ├── clustermetadata.go │ │ │ ├── doc.go │ │ │ ├── gcp │ │ │ ├── OWNERS │ │ │ ├── clouduid.go │ │ │ ├── doc.go │ │ │ ├── machinepools.go │ │ │ ├── metadata.go │ │ │ └── platform.go │ │ │ ├── installconfig.go │ │ │ ├── installconfig_libvirt.go │ │ │ ├── libvirt │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── machinepool.go │ │ │ ├── metadata.go │ │ │ ├── network.go │ │ │ └── platform.go │ │ │ ├── machinepools.go │ │ │ ├── none │ │ │ ├── doc.go │ │ │ └── platform.go │ │ │ ├── openstack │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── machinepool.go │ │ │ ├── metadata.go │ │ │ └── platform.go │ │ │ └── vsphere │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── machinepool.go │ │ │ └── platform.go │ └── library-go │ │ ├── LICENSE │ │ └── pkg │ │ ├── apiserver │ │ └── jsonpatch │ │ │ └── jsonpatch.go │ │ ├── authorization │ │ └── hardcodedauthorizer │ │ │ └── metrics.go │ │ ├── certs │ │ ├── pem.go │ │ └── util.go │ │ ├── config │ │ ├── client │ │ │ ├── client_config.go │ │ │ └── transport.go │ │ ├── clusterstatus │ │ │ └── clusterstatus.go │ │ ├── configdefaults │ │ │ └── config_default.go │ │ ├── leaderelection │ │ │ └── leaderelection.go │ │ └── serving │ │ │ ├── options.go │ │ │ └── server.go │ │ ├── controller │ │ ├── controllercmd │ │ │ ├── builder.go │ │ │ ├── cmd.go │ │ │ └── flags.go │ │ ├── factory │ │ │ ├── base_controller.go │ │ │ ├── controller_context.go │ │ │ ├── eventfilters.go │ │ │ ├── factory.go │ │ │ └── interfaces.go │ │ └── fileobserver │ │ │ ├── OWNERS │ │ │ ├── observer.go │ │ │ └── observer_polling.go │ │ ├── crypto │ │ ├── OWNERS │ │ ├── crypto.go │ │ └── rotation.go │ │ ├── image │ │ ├── imageutil │ │ │ └── helpers.go │ │ ├── internal │ │ │ ├── digest │ │ │ │ ├── digest.go │ │ │ │ ├── digester.go │ │ │ │ └── doc.go │ │ │ └── reference │ │ │ │ ├── doc.go │ │ │ │ ├── reference.go │ │ │ │ └── regexp.go │ │ └── reference │ │ │ └── reference.go │ │ ├── network │ │ ├── dialer.go │ │ ├── dialer_linux.go │ │ └── dialer_others.go │ │ ├── operator │ │ ├── certrotation │ │ │ ├── OWNERS │ │ │ ├── annotations.go │ │ │ ├── cabundle.go │ │ │ ├── client_cert_rotation_controller.go │ │ │ ├── config.go │ │ │ ├── label.go │ │ │ ├── metadata.go │ │ │ ├── signer.go │ │ │ └── target.go │ │ ├── condition │ │ │ └── condition.go │ │ ├── configobserver │ │ │ ├── OWNERS │ │ │ ├── config_observer_controller.go │ │ │ ├── featuregates │ │ │ │ ├── featuregate.go │ │ │ │ ├── hardcoded_featuregate_reader.go │ │ │ │ ├── observe_featuregates.go │ │ │ │ └── simple_featuregate_reader.go │ │ │ └── unstructured.go │ │ ├── events │ │ │ ├── OWNERS │ │ │ ├── recorder.go │ │ │ ├── recorder_in_memory.go │ │ │ ├── recorder_logging.go │ │ │ └── recorder_upstream.go │ │ ├── loglevel │ │ │ ├── logging_controller.go │ │ │ └── util.go │ │ ├── management │ │ │ └── management_state.go │ │ ├── resource │ │ │ ├── resourceapply │ │ │ │ ├── admissionregistration.go │ │ │ │ ├── apiextensions.go │ │ │ │ ├── apiregistration.go │ │ │ │ ├── apps.go │ │ │ │ ├── core.go │ │ │ │ ├── credentialsrequest.go │ │ │ │ ├── generic.go │ │ │ │ ├── json_patch_helpers.go │ │ │ │ ├── migration.go │ │ │ │ ├── monitoring.go │ │ │ │ ├── policy.go │ │ │ │ ├── rbac.go │ │ │ │ ├── resource_cache.go │ │ │ │ ├── storage.go │ │ │ │ ├── unstructured.go │ │ │ │ └── volumesnapshotclass.go │ │ │ ├── resourcehelper │ │ │ │ ├── event_helpers.go │ │ │ │ └── resource_helpers.go │ │ │ ├── resourcemerge │ │ │ │ ├── admissionregistration.go │ │ │ │ ├── apiextensions.go │ │ │ │ ├── apps.go │ │ │ │ ├── generic_config_merger.go │ │ │ │ └── object_merger.go │ │ │ └── resourceread │ │ │ │ ├── admission.go │ │ │ │ ├── apiextensions.go │ │ │ │ ├── apps.go │ │ │ │ ├── config.go │ │ │ │ ├── core.go │ │ │ │ ├── generic.go │ │ │ │ ├── images.go │ │ │ │ ├── migration.go │ │ │ │ ├── policy.go │ │ │ │ ├── rbac.go │ │ │ │ ├── route.go │ │ │ │ ├── storage.go │ │ │ │ └── unstructured.go │ │ ├── resourcesynccontroller │ │ │ ├── core.go │ │ │ ├── interfaces.go │ │ │ └── resourcesync_controller.go │ │ └── v1helpers │ │ │ ├── args.go │ │ │ ├── canonicalize.go │ │ │ ├── core_getters.go │ │ │ ├── fake_informers.go │ │ │ ├── helpers.go │ │ │ ├── informers.go │ │ │ ├── interfaces.go │ │ │ └── test_helpers.go │ │ └── serviceability │ │ ├── logrus.go │ │ ├── panic.go │ │ ├── profiler.go │ │ └── serviceability.go ├── pkg │ ├── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go │ └── profile │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ └── profile.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── prometheus-operator │ └── prometheus-operator │ │ └── pkg │ │ ├── apis │ │ └── monitoring │ │ │ ├── LICENSE │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── v1 │ │ │ ├── alertmanager_types.go │ │ │ ├── doc.go │ │ │ ├── podmonitor_types.go │ │ │ ├── probe_types.go │ │ │ ├── prometheus_types.go │ │ │ ├── prometheusrule_types.go │ │ │ ├── register.go │ │ │ ├── servicemonitor_types.go │ │ │ ├── thanos_types.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ ├── alertmanager_config_conversion.go │ │ │ ├── alertmanager_config_types.go │ │ │ ├── doc.go │ │ │ ├── prometheusagent_types.go │ │ │ ├── register.go │ │ │ ├── scrapeconfig_types.go │ │ │ ├── validation.go │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ ├── alertmanager_config_types.go │ │ │ ├── conversion_from.go │ │ │ ├── conversion_to.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── validation.go │ │ │ └── zz_generated.deepcopy.go │ │ └── client │ │ ├── LICENSE │ │ ├── applyconfiguration │ │ └── monitoring │ │ │ ├── v1 │ │ │ ├── alertingspec.go │ │ │ ├── alertmanager.go │ │ │ ├── alertmanagerconfigmatcherstrategy.go │ │ │ ├── alertmanagerconfiguration.go │ │ │ ├── alertmanagerendpoints.go │ │ │ ├── alertmanagerglobalconfig.go │ │ │ ├── alertmanagerspec.go │ │ │ ├── alertmanagerstatus.go │ │ │ ├── alertmanagerwebspec.go │ │ │ ├── apiserverconfig.go │ │ │ ├── arbitraryfsaccessthroughsmsconfig.go │ │ │ ├── argument.go │ │ │ ├── attachmetadata.go │ │ │ ├── authorization.go │ │ │ ├── basicauth.go │ │ │ ├── commonprometheusfields.go │ │ │ ├── condition.go │ │ │ ├── embeddedobjectmetadata.go │ │ │ ├── embeddedpersistentvolumeclaim.go │ │ │ ├── endpoint.go │ │ │ ├── exemplars.go │ │ │ ├── hostalias.go │ │ │ ├── httpconfig.go │ │ │ ├── metadataconfig.go │ │ │ ├── namespaceselector.go │ │ │ ├── oauth2.go │ │ │ ├── objectreference.go │ │ │ ├── podmetricsendpoint.go │ │ │ ├── podmetricsendpointtlsconfig.go │ │ │ ├── podmonitor.go │ │ │ ├── podmonitorspec.go │ │ │ ├── probe.go │ │ │ ├── proberspec.go │ │ │ ├── probespec.go │ │ │ ├── probetargetingress.go │ │ │ ├── probetargets.go │ │ │ ├── probetargetstaticconfig.go │ │ │ ├── probetlsconfig.go │ │ │ ├── prometheus.go │ │ │ ├── prometheusrule.go │ │ │ ├── prometheusruleexcludeconfig.go │ │ │ ├── prometheusrulespec.go │ │ │ ├── prometheusspec.go │ │ │ ├── prometheusstatus.go │ │ │ ├── prometheuswebspec.go │ │ │ ├── queryspec.go │ │ │ ├── queueconfig.go │ │ │ ├── relabelconfig.go │ │ │ ├── remotereadspec.go │ │ │ ├── remotewritespec.go │ │ │ ├── rule.go │ │ │ ├── rulegroup.go │ │ │ ├── rules.go │ │ │ ├── rulesalert.go │ │ │ ├── safeauthorization.go │ │ │ ├── safetlsconfig.go │ │ │ ├── secretorconfigmap.go │ │ │ ├── servicemonitor.go │ │ │ ├── servicemonitorspec.go │ │ │ ├── shardstatus.go │ │ │ ├── sigv4.go │ │ │ ├── storagespec.go │ │ │ ├── thanosruler.go │ │ │ ├── thanosrulerspec.go │ │ │ ├── thanosrulerstatus.go │ │ │ ├── thanosspec.go │ │ │ ├── tlsconfig.go │ │ │ ├── tsdbspec.go │ │ │ ├── webconfigfilefields.go │ │ │ ├── webhttpconfig.go │ │ │ ├── webhttpheaders.go │ │ │ └── webtlsconfig.go │ │ │ ├── v1alpha1 │ │ │ ├── alertmanagerconfig.go │ │ │ ├── alertmanagerconfigspec.go │ │ │ ├── dayofmonthrange.go │ │ │ ├── emailconfig.go │ │ │ ├── filesdconfig.go │ │ │ ├── httpconfig.go │ │ │ ├── httpsdconfig.go │ │ │ ├── inhibitrule.go │ │ │ ├── keyvalue.go │ │ │ ├── matcher.go │ │ │ ├── mutetimeinterval.go │ │ │ ├── opsgenieconfig.go │ │ │ ├── opsgenieconfigresponder.go │ │ │ ├── pagerdutyconfig.go │ │ │ ├── pagerdutyimageconfig.go │ │ │ ├── pagerdutylinkconfig.go │ │ │ ├── prometheusagent.go │ │ │ ├── prometheusagentspec.go │ │ │ ├── pushoverconfig.go │ │ │ ├── receiver.go │ │ │ ├── route.go │ │ │ ├── scrapeconfig.go │ │ │ ├── scrapeconfigspec.go │ │ │ ├── slackaction.go │ │ │ ├── slackconfig.go │ │ │ ├── slackconfirmationfield.go │ │ │ ├── slackfield.go │ │ │ ├── snsconfig.go │ │ │ ├── staticconfig.go │ │ │ ├── telegramconfig.go │ │ │ ├── timeinterval.go │ │ │ ├── timerange.go │ │ │ ├── victoropsconfig.go │ │ │ ├── webhookconfig.go │ │ │ └── wechatconfig.go │ │ │ └── v1beta1 │ │ │ ├── alertmanagerconfig.go │ │ │ ├── alertmanagerconfigspec.go │ │ │ ├── dayofmonthrange.go │ │ │ ├── emailconfig.go │ │ │ ├── httpconfig.go │ │ │ ├── inhibitrule.go │ │ │ ├── keyvalue.go │ │ │ ├── matcher.go │ │ │ ├── opsgenieconfig.go │ │ │ ├── opsgenieconfigresponder.go │ │ │ ├── pagerdutyconfig.go │ │ │ ├── pagerdutyimageconfig.go │ │ │ ├── pagerdutylinkconfig.go │ │ │ ├── pushoverconfig.go │ │ │ ├── receiver.go │ │ │ ├── route.go │ │ │ ├── secretkeyselector.go │ │ │ ├── slackaction.go │ │ │ ├── slackconfig.go │ │ │ ├── slackconfirmationfield.go │ │ │ ├── slackfield.go │ │ │ ├── snsconfig.go │ │ │ ├── telegramconfig.go │ │ │ ├── timeinterval.go │ │ │ ├── timeperiod.go │ │ │ ├── timerange.go │ │ │ ├── victoropsconfig.go │ │ │ ├── webhookconfig.go │ │ │ └── wechatconfig.go │ │ └── versioned │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── fake │ │ ├── clientset_generated.go │ │ ├── doc.go │ │ └── register.go │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── monitoring │ │ ├── v1 │ │ ├── alertmanager.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_alertmanager.go │ │ │ ├── fake_monitoring_client.go │ │ │ ├── fake_podmonitor.go │ │ │ ├── fake_probe.go │ │ │ ├── fake_prometheus.go │ │ │ ├── fake_prometheusrule.go │ │ │ ├── fake_servicemonitor.go │ │ │ └── fake_thanosruler.go │ │ ├── generated_expansion.go │ │ ├── monitoring_client.go │ │ ├── podmonitor.go │ │ ├── probe.go │ │ ├── prometheus.go │ │ ├── prometheusrule.go │ │ ├── servicemonitor.go │ │ └── thanosruler.go │ │ ├── v1alpha1 │ │ ├── alertmanagerconfig.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_alertmanagerconfig.go │ │ │ ├── fake_monitoring_client.go │ │ │ ├── fake_prometheusagent.go │ │ │ └── fake_scrapeconfig.go │ │ ├── generated_expansion.go │ │ ├── monitoring_client.go │ │ ├── prometheusagent.go │ │ └── scrapeconfig.go │ │ └── v1beta1 │ │ ├── alertmanagerconfig.go │ │ ├── doc.go │ │ ├── fake │ │ ├── doc.go │ │ ├── fake_alertmanagerconfig.go │ │ └── fake_monitoring_client.go │ │ ├── generated_expansion.go │ │ └── monitoring_client.go ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.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_js.go │ │ │ ├── process_collector_other.go │ │ │ ├── process_collector_wasip1.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ └── option.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── testutil │ │ │ ├── lint.go │ │ │ ├── promlint │ │ │ │ ├── problem.go │ │ │ │ ├── promlint.go │ │ │ │ ├── validation.go │ │ │ │ └── validations │ │ │ │ │ ├── counter_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 │ │ │ ├── labelset_string_go120.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_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 ├── robfig │ └── cron │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constantdelay.go │ │ ├── cron.go │ │ ├── doc.go │ │ ├── parser.go │ │ └── spec.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.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 │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.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 │ ├── objx │ │ ├── .codeclimate.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Taskfile.yml │ │ ├── accessors.go │ │ ├── conversions.go │ │ ├── doc.go │ │ ├── map.go │ │ ├── mutations.go │ │ ├── security.go │ │ ├── tests.go │ │ ├── type_specific.go │ │ ├── type_specific_codegen.go │ │ └── value.go │ └── 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 │ │ └── mock │ │ ├── doc.go │ │ └── mock.go ├── x448 │ └── float16 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── float16.go └── xeipuuv │ ├── gojsonpointer │ ├── LICENSE-APACHE-2.0.txt │ ├── README.md │ └── pointer.go │ ├── gojsonreference │ ├── LICENSE-APACHE-2.0.txt │ ├── README.md │ └── reference.go │ └── gojsonschema │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE-APACHE-2.0.txt │ ├── README.md │ ├── draft.go │ ├── errors.go │ ├── format_checkers.go │ ├── glide.yaml │ ├── internalLog.go │ ├── jsonContext.go │ ├── jsonLoader.go │ ├── locales.go │ ├── result.go │ ├── schema.go │ ├── schemaLoader.go │ ├── schemaPool.go │ ├── schemaReferencePool.go │ ├── schemaType.go │ ├── subSchema.go │ ├── types.go │ ├── utils.go │ └── validation.go ├── go.etcd.io └── 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 │ └── 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_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_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 │ └── v3 │ ├── LICENSE │ ├── 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.opentelemetry.io ├── 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 │ │ ├── semconv │ │ │ ├── env.go │ │ │ ├── util.go │ │ │ ├── v1.20.0.go │ │ │ └── v1.24.0.go │ │ └── semconvutil │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ └── netconv.go │ │ ├── labeler.go │ │ ├── transport.go │ │ ├── version.go │ │ └── wrap.go ├── otel │ ├── .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 │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.go │ │ ├── set.go │ │ ├── type_string.go │ │ └── value.go │ ├── baggage │ │ ├── README.md │ │ ├── baggage.go │ │ ├── context.go │ │ └── doc.go │ ├── codes │ │ ├── README.md │ │ ├── codes.go │ │ └── doc.go │ ├── 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 │ ├── get_main_pkgs.sh │ ├── handler.go │ ├── internal │ │ ├── attribute │ │ │ └── attribute.go │ │ ├── baggage │ │ │ ├── baggage.go │ │ │ └── context.go │ │ ├── gen.go │ │ ├── global │ │ │ ├── handler.go │ │ │ ├── instruments.go │ │ │ ├── internal_logging.go │ │ │ ├── meter.go │ │ │ ├── propagator.go │ │ │ ├── state.go │ │ │ └── trace.go │ │ └── rawhelpers.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.24.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── metric.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ └── v1.26.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ ├── metric.go │ │ │ └── schema.go │ ├── trace.go │ ├── trace │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── nonrecording.go │ │ ├── noop.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── trace.go │ │ └── tracestate.go │ ├── verify_examples.sh │ ├── verify_readmes.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.uber.org ├── 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 ├── 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.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_generic.go │ │ │ ├── sum_ppc64x.go │ │ │ ├── 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 │ ├── constraints │ │ └── constraints.go │ └── slices │ │ ├── cmp.go │ │ ├── slices.go │ │ ├── sort.go │ │ ├── zsortanyfunc.go │ │ └── zsortordered.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ └── context.go │ ├── http │ │ ├── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ │ └── httpproxy │ │ │ └── proxy.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go124.go │ │ ├── config_pre_go124.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 │ │ ├── timer.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.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 │ │ └── timeseries │ │ │ └── timeseries.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 │ └── 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_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_riscv64.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_loong64.go │ │ ├── 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_go15_plan9.go │ │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 ├── google.golang.org ├── genproto │ └── 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 ├── 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 │ │ ├── grpclb │ │ │ └── state │ │ │ │ └── state.go │ │ ├── pickfirst │ │ │ └── pickfirst.go │ │ └── roundrobin │ │ │ └── roundrobin.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 │ │ ├── gzip │ │ │ └── gzip.go │ │ └── proto │ │ │ └── proto.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.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 │ │ │ ├── grpclog.go │ │ │ └── prefixLogger.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ ├── oncefunc.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 │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.go │ │ ├── serviceconfig │ │ │ ├── duration.go │ │ │ └── serviceconfig.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 │ │ │ ├── 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 │ │ │ └── transport.go │ ├── keepalive │ │ └── keepalive.go │ ├── metadata │ │ └── metadata.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── preloader.go │ ├── regenerate.sh │ ├── 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 │ ├── shared_buffer_pool.go │ ├── stats │ │ ├── handlers.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 │ │ ├── is_go112.go │ │ └── is_go113.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ └── placeholder.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 │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_map_go111.go │ │ ├── codec_map_go112.go │ │ ├── codec_message.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 │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_unsafe.go │ │ ├── validate.go │ │ └── weak.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ ├── strings_unsafe_go120.go │ │ └── strings_unsafe_go121.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 │ └── 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_go120.go │ │ └── value_unsafe_go121.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.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 │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── v1alpha3 │ │ │ ├── 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 │ ├── 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 │ │ ├── apis │ │ └── apiextensions │ │ │ ├── deepcopy.go │ │ │ ├── doc.go │ │ │ ├── helpers.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 │ │ │ └── zz_generated.deepcopy.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 ├── 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 │ │ │ ├── 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 │ │ │ └── validation │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ ├── objectmeta.go │ │ │ │ └── path │ │ │ │ └── name.go │ │ ├── apis │ │ │ └── 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 │ │ │ │ │ │ │ ├── custom.go │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ ├── diagnostic.go │ │ │ │ │ │ │ └── encode.go │ │ │ │ │ └── raw.go │ │ │ │ ├── codec_factory.go │ │ │ │ ├── json │ │ │ │ │ ├── json.go │ │ │ │ │ └── meta.go │ │ │ │ ├── negotiated_codec.go │ │ │ │ ├── protobuf │ │ │ │ │ ├── doc.go │ │ │ │ │ └── protobuf.go │ │ │ │ ├── recognizer │ │ │ │ │ └── recognizer.go │ │ │ │ ├── streaming │ │ │ │ │ └── streaming.go │ │ │ │ ├── versioning │ │ │ │ │ └── versioning.go │ │ │ │ └── yaml │ │ │ │ │ ├── meta.go │ │ │ │ │ └── yaml.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 │ │ │ │ └── diff.go │ │ │ ├── dump │ │ │ │ └── dump.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.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 │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ └── values.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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ ├── 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 │ │ │ │ ├── lister_watcher.go │ │ │ │ ├── metrics │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── metrics.go │ │ │ │ ├── ready.go │ │ │ │ ├── store.go │ │ │ │ ├── store_btree.go │ │ │ │ ├── time_budget.go │ │ │ │ ├── util.go │ │ │ │ ├── watch_cache.go │ │ │ │ ├── watch_cache_interval.go │ │ │ │ └── watch_progress.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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ └── 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 │ │ │ │ ├── auditannotation.go │ │ │ │ ├── expressionwarning.go │ │ │ │ ├── matchcondition.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.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 │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ └── certificatesigningrequeststatus.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── lease.go │ │ │ │ └── leasespec.go │ │ │ ├── v1alpha2 │ │ │ │ ├── leasecandidate.go │ │ │ │ └── leasecandidatespec.go │ │ │ └── v1beta1 │ │ │ │ ├── lease.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 │ │ │ │ ├── containerimage.go │ │ │ │ ├── containerport.go │ │ │ │ ├── containerresizepolicy.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── podcondition.go │ │ │ │ ├── poddnsconfig.go │ │ │ │ ├── poddnsconfigoption.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 │ │ │ │ └── forzone.go │ │ │ └── v1beta1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.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 │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ └── servicebackendport.go │ │ │ ├── v1alpha1 │ │ │ │ ├── ipaddress.go │ │ │ │ ├── ipaddressspec.go │ │ │ │ ├── parentreference.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 │ │ │ ├── v1alpha3 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── basicdevice.go │ │ │ │ ├── celdeviceselector.go │ │ │ │ ├── device.go │ │ │ │ ├── deviceallocationconfiguration.go │ │ │ │ ├── deviceallocationresult.go │ │ │ │ ├── deviceattribute.go │ │ │ │ ├── deviceclaim.go │ │ │ │ ├── deviceclaimconfiguration.go │ │ │ │ ├── deviceclass.go │ │ │ │ ├── deviceclassconfiguration.go │ │ │ │ ├── deviceclassspec.go │ │ │ │ ├── deviceconfiguration.go │ │ │ │ ├── deviceconstraint.go │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.go │ │ │ │ ├── networkdevicedata.go │ │ │ │ ├── opaquedeviceconfiguration.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourcepool.go │ │ │ │ ├── resourceslice.go │ │ │ │ └── resourceslicespec.go │ │ │ └── v1beta1 │ │ │ │ ├── allocateddevicestatus.go │ │ │ │ ├── allocationresult.go │ │ │ │ ├── basicdevice.go │ │ │ │ ├── celdeviceselector.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 │ │ │ │ ├── devicerequest.go │ │ │ │ ├── devicerequestallocationresult.go │ │ │ │ ├── deviceselector.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── interface.go │ │ ├── coordination │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── interface.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── interface.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── interface.go │ │ │ │ └── lease.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 │ │ │ │ └── networkpolicy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ ├── ipaddress.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 │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── interface.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta1 │ │ │ │ ├── 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 │ │ │ ├── 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_mutatingwebhookconfiguration.go │ │ │ │ ├── fake_validatingadmissionpolicy.go │ │ │ │ ├── fake_validatingadmissionpolicybinding.go │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.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 │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_certificates_client.go │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ └── fake_certificatesigningrequest_expansion.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 │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.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_networking_client.go │ │ │ │ │ └── fake_networkpolicy.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── networking_client.go │ │ │ │ └── networkpolicy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_ipaddress.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ └── fake_servicecidr.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.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 │ │ │ ├── v1alpha3 │ │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── 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 │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.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 │ │ │ │ ├── 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 │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── expansion_generated.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── lease.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 │ │ │ │ └── networkpolicy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ipaddress.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 │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta1 │ │ │ │ ├── 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 │ │ │ ├── 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 │ ├── 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 │ ├── rest │ │ ├── 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 │ │ │ ├── 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 │ │ └── watch │ │ │ ├── informerwatcher.go │ │ │ ├── retrywatcher.go │ │ │ └── until.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 │ │ ├── list_data_consistency_detector.go │ │ └── watch_list_data_consistency_detector.go │ │ ├── flowcontrol │ │ ├── backoff.go │ │ └── throttle.go │ │ ├── homedir │ │ └── homedir.go │ │ ├── keyutil │ │ ├── OWNERS │ │ └── key.go │ │ ├── retry │ │ ├── OWNERS │ │ └── util.go │ │ ├── watchlist │ │ └── watch_list.go │ │ └── workqueue │ │ ├── default_rate_limiters.go │ │ ├── delaying_queue.go │ │ ├── doc.go │ │ ├── metrics.go │ │ ├── parallelizer.go │ │ ├── queue.go │ │ └── rate_limiting_queue.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 │ │ │ └── tristate.go │ ├── featuregate │ │ ├── OWNERS │ │ ├── feature_gate.go │ │ └── registry.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 │ │ │ ├── clientgo │ │ │ │ ├── leaderelection │ │ │ │ │ └── metrics.go │ │ │ │ └── metrics.go │ │ │ ├── feature │ │ │ │ └── metrics.go │ │ │ ├── restclient │ │ │ │ └── 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 │ │ └── flagz │ │ ├── flagreader.go │ │ └── flagz.go ├── klog │ └── 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 │ │ │ └── v1beta1.go │ │ └── v2 │ │ │ ├── api.pb.go │ │ │ ├── api.proto │ │ │ └── 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 │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── apiregistration │ │ └── v1 │ │ ├── apiregistration_client.go │ │ ├── apiservice.go │ │ ├── doc.go │ │ └── generated_expansion.go ├── kube-openapi │ ├── LICENSE │ └── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ └── time.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 │ ├── pointer │ ├── OWNERS │ ├── README.md │ └── pointer.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 ├── LICENSE └── pkg │ └── conversion │ └── conversion.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 ├── kube-storage-version-migrator ├── LICENSE └── pkg │ ├── apis │ └── migration │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go │ └── clients │ └── clientset │ ├── clientset.go │ ├── doc.go │ ├── scheme │ ├── doc.go │ └── register.go │ └── typed │ └── migration │ └── v1alpha1 │ ├── doc.go │ ├── generated_expansion.go │ ├── migration_client.go │ ├── storagestate.go │ └── storageversionmigration.go ├── node-feature-discovery └── api │ └── nfd │ ├── LICENSE │ └── v1alpha1 │ ├── annotations_labels.go │ ├── doc.go │ ├── feature.go │ ├── register.go │ ├── types.go │ ├── utils.go │ └── zz_generated.deepcopy.go ├── structured-merge-diff └── v4 │ ├── 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 ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── fields.go ├── goyaml.v2 ├── LICENSE ├── LICENSE.libyaml ├── NOTICE ├── OWNERS ├── 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.go └── yaml_go110.go /.ci-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/.ci-operator.yaml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.precommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/.golangci.precommit.yml -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.openshiftci/install-golangci-lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/.openshiftci/install-golangci-lint.sh -------------------------------------------------------------------------------- /.openshiftci/publish-codecov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/.openshiftci/publish-codecov.sh -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/.snyk -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- 1 | CLAUDE.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DoD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/DoD.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/README.md -------------------------------------------------------------------------------- /STYLEGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/STYLEGUIDE.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /cmd/changelog/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/cmd/changelog/main.go -------------------------------------------------------------------------------- /cmd/gendoc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/cmd/gendoc/main.go -------------------------------------------------------------------------------- /cmd/insights-operator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/cmd/insights-operator/main.go -------------------------------------------------------------------------------- /cmd/obfuscate-archive/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/cmd/obfuscate-archive/main.go -------------------------------------------------------------------------------- /config/local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/config/local.yaml -------------------------------------------------------------------------------- /config/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/config/pod.yaml -------------------------------------------------------------------------------- /debug.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/debug.Dockerfile -------------------------------------------------------------------------------- /docs/anonymized-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/docs/anonymized-data.md -------------------------------------------------------------------------------- /docs/arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/docs/arch.md -------------------------------------------------------------------------------- /docs/conditional-gatherer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/docs/conditional-gatherer/README.md -------------------------------------------------------------------------------- /docs/gather-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/docs/gather-job.yaml -------------------------------------------------------------------------------- /docs/gathered-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/docs/gathered-data.md -------------------------------------------------------------------------------- /docs/insights-archive-sample/config/configmaps/openshift-config/initial-etcd-ca/ca-bundle.crt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/insights-archive-sample/config/configmaps/openshift-config/openshift-install-manifests/version: -------------------------------------------------------------------------------- 1 | v4.4.0 -------------------------------------------------------------------------------- /docs/insights-archive-sample/config/configmaps/openshift-config/openshift-install/version: -------------------------------------------------------------------------------- 1 | v4.4.0 -------------------------------------------------------------------------------- /docs/insights-archive-sample/config/configmaps/openshift-network-operator/gateway-mode-config/mode.json: -------------------------------------------------------------------------------- 1 | "local" -------------------------------------------------------------------------------- /docs/insights-archive-sample/config/id: -------------------------------------------------------------------------------- 1 | d669cb71-8256-4e8b-a8df-333a5e2dd753 -------------------------------------------------------------------------------- /docs/metrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/docs/metrics.txt -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/go.sum -------------------------------------------------------------------------------- /manifests/02-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/02-namespace.yaml -------------------------------------------------------------------------------- /manifests/03-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/03-clusterrole.yaml -------------------------------------------------------------------------------- /manifests/03-operator-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/03-operator-crd.yaml -------------------------------------------------------------------------------- /manifests/03-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/03-serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/04-operator-cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/04-operator-cr.yaml -------------------------------------------------------------------------------- /manifests/04-prometheus_rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/04-prometheus_rolebinding.yaml -------------------------------------------------------------------------------- /manifests/04-proxy-cert-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/04-proxy-cert-configmap.yaml -------------------------------------------------------------------------------- /manifests/04-service-ca-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/04-service-ca-configmap.yaml -------------------------------------------------------------------------------- /manifests/05-prometheus_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/05-prometheus_role.yaml -------------------------------------------------------------------------------- /manifests/06-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/06-deployment.yaml -------------------------------------------------------------------------------- /manifests/06-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/06-service.yaml -------------------------------------------------------------------------------- /manifests/07-cluster-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/07-cluster-operator.yaml -------------------------------------------------------------------------------- /manifests/09-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/09-servicemonitor.yaml -------------------------------------------------------------------------------- /manifests/image-references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/manifests/image-references -------------------------------------------------------------------------------- /pkg/anonymization/anonymizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/anonymization/anonymizer.go -------------------------------------------------------------------------------- /pkg/anonymization/anonymizer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/anonymization/anonymizer_test.go -------------------------------------------------------------------------------- /pkg/anonymization/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/anonymization/builder_test.go -------------------------------------------------------------------------------- /pkg/anonymization/network_anonymizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/anonymization/network_anonymizer.go -------------------------------------------------------------------------------- /pkg/anonymization/network_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/anonymization/network_builder.go -------------------------------------------------------------------------------- /pkg/authorizer/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/authorizer/interface.go -------------------------------------------------------------------------------- /pkg/cmd/start/receiver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/cmd/start/receiver.go -------------------------------------------------------------------------------- /pkg/cmd/start/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/cmd/start/start.go -------------------------------------------------------------------------------- /pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/config/config.go -------------------------------------------------------------------------------- /pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/config/config_test.go -------------------------------------------------------------------------------- /pkg/config/configobserver/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/config/configobserver/config.go -------------------------------------------------------------------------------- /pkg/config/configobserver/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/config/configobserver/config_test.go -------------------------------------------------------------------------------- /pkg/config/legacy_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/config/legacy_config.go -------------------------------------------------------------------------------- /pkg/config/legacy_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/config/legacy_config_test.go -------------------------------------------------------------------------------- /pkg/config/mock_configurator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/config/mock_configurator.go -------------------------------------------------------------------------------- /pkg/config/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/config/types.go -------------------------------------------------------------------------------- /pkg/controller/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/const.go -------------------------------------------------------------------------------- /pkg/controller/gather_commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/gather_commands.go -------------------------------------------------------------------------------- /pkg/controller/gather_commands_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/gather_commands_test.go -------------------------------------------------------------------------------- /pkg/controller/generic_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/generic_client.go -------------------------------------------------------------------------------- /pkg/controller/kubeconfigs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/kubeconfigs.go -------------------------------------------------------------------------------- /pkg/controller/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/operator.go -------------------------------------------------------------------------------- /pkg/controller/operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/operator_test.go -------------------------------------------------------------------------------- /pkg/controller/periodic/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/periodic/job.go -------------------------------------------------------------------------------- /pkg/controller/periodic/job_informer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/periodic/job_informer.go -------------------------------------------------------------------------------- /pkg/controller/periodic/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/periodic/job_test.go -------------------------------------------------------------------------------- /pkg/controller/periodic/mock_periodic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/periodic/mock_periodic.go -------------------------------------------------------------------------------- /pkg/controller/periodic/periodic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/periodic/periodic.go -------------------------------------------------------------------------------- /pkg/controller/periodic/periodic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/periodic/periodic_test.go -------------------------------------------------------------------------------- /pkg/controller/status/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/status/conditions.go -------------------------------------------------------------------------------- /pkg/controller/status/conditions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/status/conditions_test.go -------------------------------------------------------------------------------- /pkg/controller/status/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/status/controller.go -------------------------------------------------------------------------------- /pkg/controller/status/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/status/controller_test.go -------------------------------------------------------------------------------- /pkg/controller/status/datagather_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/status/datagather_status.go -------------------------------------------------------------------------------- /pkg/controller/status/gatherer_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/status/gatherer_status.go -------------------------------------------------------------------------------- /pkg/controller/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/status/status.go -------------------------------------------------------------------------------- /pkg/controller/status/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controller/status/status_test.go -------------------------------------------------------------------------------- /pkg/controllerstatus/controllerstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/controllerstatus/controllerstatus.go -------------------------------------------------------------------------------- /pkg/dependencymagnet/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/dependencymagnet/docs.go -------------------------------------------------------------------------------- /pkg/gather/gather.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gather/gather.go -------------------------------------------------------------------------------- /pkg/gather/gather_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gather/gather_test.go -------------------------------------------------------------------------------- /pkg/gather/mock_gatherers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gather/mock_gatherers.go -------------------------------------------------------------------------------- /pkg/gather/tasks_processing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gather/tasks_processing.go -------------------------------------------------------------------------------- /pkg/gather/tasks_processing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gather/tasks_processing_test.go -------------------------------------------------------------------------------- /pkg/gatherers/clusterconfig/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/clusterconfig/const.go -------------------------------------------------------------------------------- /pkg/gatherers/common/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/common/constants.go -------------------------------------------------------------------------------- /pkg/gatherers/common/gather_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/common/gather_logs.go -------------------------------------------------------------------------------- /pkg/gatherers/common/gather_logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/common/gather_logs_test.go -------------------------------------------------------------------------------- /pkg/gatherers/conditional/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/conditional/common.go -------------------------------------------------------------------------------- /pkg/gatherers/conditional/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/conditional/common_test.go -------------------------------------------------------------------------------- /pkg/gatherers/conditional/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/conditional/conditions.go -------------------------------------------------------------------------------- /pkg/gatherers/conditional/parsing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/conditional/parsing.go -------------------------------------------------------------------------------- /pkg/gatherers/conditional/parsing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/conditional/parsing_test.go -------------------------------------------------------------------------------- /pkg/gatherers/conditional/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/conditional/types.go -------------------------------------------------------------------------------- /pkg/gatherers/conditional/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/conditional/validation.go -------------------------------------------------------------------------------- /pkg/gatherers/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/interface.go -------------------------------------------------------------------------------- /pkg/gatherers/workloads/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/workloads/types.go -------------------------------------------------------------------------------- /pkg/gatherers/workloads/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/gatherers/workloads/types_test.go -------------------------------------------------------------------------------- /pkg/insights/insightsclient/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/insights/insightsclient/reader.go -------------------------------------------------------------------------------- /pkg/insights/insightsclient/requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/insights/insightsclient/requests.go -------------------------------------------------------------------------------- /pkg/insights/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/insights/metrics.go -------------------------------------------------------------------------------- /pkg/insights/prometheus_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/insights/prometheus_rules.go -------------------------------------------------------------------------------- /pkg/insights/prometheus_rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/insights/prometheus_rules_test.go -------------------------------------------------------------------------------- /pkg/insights/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/insights/types/types.go -------------------------------------------------------------------------------- /pkg/ocm/clustertransfer/test-data/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/ocm/clustertransfer/test-data/not-json.json: -------------------------------------------------------------------------------- 1 | not json -------------------------------------------------------------------------------- /pkg/ocm/clustertransfer/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/ocm/clustertransfer/types.go -------------------------------------------------------------------------------- /pkg/ocm/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/ocm/const.go -------------------------------------------------------------------------------- /pkg/ocm/sca/architectures_gather.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/ocm/sca/architectures_gather.go -------------------------------------------------------------------------------- /pkg/ocm/sca/architectures_gather_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/ocm/sca/architectures_gather_test.go -------------------------------------------------------------------------------- /pkg/ocm/sca/sca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/ocm/sca/sca.go -------------------------------------------------------------------------------- /pkg/ocm/sca/sca_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/ocm/sca/sca_test.go -------------------------------------------------------------------------------- /pkg/record/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/record/memory.go -------------------------------------------------------------------------------- /pkg/record/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/record/record.go -------------------------------------------------------------------------------- /pkg/record/resource_marshaller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/record/resource_marshaller.go -------------------------------------------------------------------------------- /pkg/record/resource_marshaller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/record/resource_marshaller_test.go -------------------------------------------------------------------------------- /pkg/recorder/diskrecorder/diskrecorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/recorder/diskrecorder/diskrecorder.go -------------------------------------------------------------------------------- /pkg/recorder/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/recorder/interface.go -------------------------------------------------------------------------------- /pkg/recorder/mock_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/recorder/mock_recorder.go -------------------------------------------------------------------------------- /pkg/recorder/recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/recorder/recorder.go -------------------------------------------------------------------------------- /pkg/recorder/recorder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/recorder/recorder_test.go -------------------------------------------------------------------------------- /pkg/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/types/types.go -------------------------------------------------------------------------------- /pkg/utils/anonymize/envvars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/anonymize/envvars.go -------------------------------------------------------------------------------- /pkg/utils/anonymize/envvars_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/anonymize/envvars_test.go -------------------------------------------------------------------------------- /pkg/utils/anonymize/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/anonymize/string.go -------------------------------------------------------------------------------- /pkg/utils/anonymize/unstructured.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/anonymize/unstructured.go -------------------------------------------------------------------------------- /pkg/utils/anonymize/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/anonymize/url.go -------------------------------------------------------------------------------- /pkg/utils/check/is_healthy_pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/check/is_healthy_pod.go -------------------------------------------------------------------------------- /pkg/utils/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/const.go -------------------------------------------------------------------------------- /pkg/utils/count_lines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/count_lines.go -------------------------------------------------------------------------------- /pkg/utils/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/dns.go -------------------------------------------------------------------------------- /pkg/utils/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/errors.go -------------------------------------------------------------------------------- /pkg/utils/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/errors_test.go -------------------------------------------------------------------------------- /pkg/utils/gatherers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/gatherers.go -------------------------------------------------------------------------------- /pkg/utils/get_all_namespaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/get_all_namespaces.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes_fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/kubernetes_fake_client.go -------------------------------------------------------------------------------- /pkg/utils/line_limit_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/line_limit_reader.go -------------------------------------------------------------------------------- /pkg/utils/marshal/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/marshal/raw.go -------------------------------------------------------------------------------- /pkg/utils/marshal/raw_byte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/marshal/raw_byte.go -------------------------------------------------------------------------------- /pkg/utils/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/math.go -------------------------------------------------------------------------------- /pkg/utils/read_lines_with_prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/read_lines_with_prefix.go -------------------------------------------------------------------------------- /pkg/utils/read_lines_with_prefix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/read_lines_with_prefix_test.go -------------------------------------------------------------------------------- /pkg/utils/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/slices.go -------------------------------------------------------------------------------- /pkg/utils/slices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/slices_test.go -------------------------------------------------------------------------------- /pkg/utils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/strings.go -------------------------------------------------------------------------------- /pkg/utils/strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/strings_test.go -------------------------------------------------------------------------------- /pkg/utils/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/structs.go -------------------------------------------------------------------------------- /pkg/utils/testlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/testlog.go -------------------------------------------------------------------------------- /pkg/utils/unstructerd_wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/pkg/utils/unstructerd_wrappers.go -------------------------------------------------------------------------------- /scripts/update_sample_archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/scripts/update_sample_archive.sh -------------------------------------------------------------------------------- /tools/gen_cert_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/tools/gen_cert_key.py -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.bazelversion: -------------------------------------------------------------------------------- 1 | 7.0.1 2 | # Keep this pinned version in parity with cel-go 3 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/.gitattributes -------------------------------------------------------------------------------- /vendor/cel.dev/expr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/.gitignore -------------------------------------------------------------------------------- /vendor/cel.dev/expr/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/BUILD.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/GOVERNANCE.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/LICENSE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/MAINTAINERS.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/MODULE.bazel -------------------------------------------------------------------------------- /vendor/cel.dev/expr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/README.md -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/WORKSPACE -------------------------------------------------------------------------------- /vendor/cel.dev/expr/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cel.dev/expr/checked.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/checked.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/cloudbuild.yaml -------------------------------------------------------------------------------- /vendor/cel.dev/expr/eval.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/eval.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/explain.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/explain.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/regen_go_proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/regen_go_proto.sh -------------------------------------------------------------------------------- /vendor/cel.dev/expr/syntax.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/syntax.pb.go -------------------------------------------------------------------------------- /vendor/cel.dev/expr/value.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/cel.dev/expr/value.pb.go -------------------------------------------------------------------------------- /vendor/github.com/NYTimes/gziphandler/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/blang/semver/v4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/blang/semver/v4/json.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/blang/semver/v4/range.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/blang/semver/v4/sort.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/blang/semver/v4/sql.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/coreos/go-semver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-semver/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/coreos/go-semver/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /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/felixge/fgprof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/felixge/fgprof/README.md -------------------------------------------------------------------------------- /vendor/github.com/felixge/fgprof/fgprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/felixge/fgprof/fgprof.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/fxamacker/cbor/v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/fxamacker/cbor/v2/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/fxamacker/cbor/v2/tag.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-logr/logr/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-logr/logr/context.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-logr/logr/slogsink.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-logr/stdr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-logr/stdr/stdr.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-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-openapi/swag/file.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-openapi/swag/json.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-openapi/swag/path.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-openapi/swag/split.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-openapi/swag/util.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/go-openapi/swag/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/btree/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/btree/btree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/btree/btree.go -------------------------------------------------------------------------------- /vendor/github.com/google/cel-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/cel-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/cel-go/cel/cel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/cel-go/cel/cel.go -------------------------------------------------------------------------------- /vendor/github.com/google/cel-go/cel/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/cel-go/cel/env.go -------------------------------------------------------------------------------- /vendor/github.com/google/cel-go/cel/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/cel-go/cel/io.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/pprof/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/pprof/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/version6.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/google/uuid/version7.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/imdario/mergo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/imdario/mergo/README.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/imdario/mergo/mergo.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/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/mailru/easyjson/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/openshift/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/openshift/api/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/openshift/api/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/openshift/api/Makefile -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/openshift/api/OWNERS -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/openshift/api/README.md -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/apiserver/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/cloudnetwork/.codegen.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/config/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/console/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/helm/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/image/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/imageregistry/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/openshift/api/install.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/kubecontrolplane/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/machine/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/network/.codegen.yaml: -------------------------------------------------------------------------------- 1 | schemapatch: 2 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/networkoperator/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/oauth/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/openshiftcontrolplane/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operator/.codegen.yaml: -------------------------------------------------------------------------------- 1 | schemapatch: 2 | swaggerdocs: 3 | commentPolicy: Warn 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/operatorcontrolplane/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/project/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - mfojtik 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/route/.codegen.yaml: -------------------------------------------------------------------------------- 1 | schemapatch: 2 | swaggerdocs: 3 | commentPolicy: Warn 4 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/samples/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/servicecertsigner/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/sharedresource/.codegen.yaml: -------------------------------------------------------------------------------- 1 | swaggerdocs: 2 | commentPolicy: Warn 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/build-machinery-go/.gitignore: -------------------------------------------------------------------------------- 1 | *.log.raw 2 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/profile/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/profile/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/profile/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/profile/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/pkg/profile/profile.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/arp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/prometheus/procfs/arp.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/prometheus/procfs/vm.go -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/robfig/cron/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/robfig/cron/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/robfig/cron/README.md -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/robfig/cron/cron.go -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/robfig/cron/doc.go -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/robfig/cron/parser.go -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/robfig/cron/spec.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/cobra/CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/cobra/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/stretchr/objx/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/stretchr/objx/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/stretchr/objx/README.md -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/stretchr/objx/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/stretchr/objx/map.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/stretchr/objx/tests.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/stretchr/objx/value.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/x448/float16/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/x448/float16/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/x448/float16/README.md -------------------------------------------------------------------------------- /vendor/github.com/x448/float16/float16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/github.com/x448/float16/float16.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[nop] 2 | *.iml 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/api/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/api/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/README.md -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/auth.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/client.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/config.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/ctx.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/doc.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/kv.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/lease.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/lease.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/logger.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/op.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/retry.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/sort.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/txn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/txn.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/utils.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/client/v3/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.etcd.io/etcd/client/v3/watch.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.opentelemetry.io/otel/.gitignore -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.opentelemetry.io/otel/CODEOWNERS -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.opentelemetry.io/otel/Makefile -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.opentelemetry.io/otel/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.opentelemetry.io/otel/handler.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.opentelemetry.io/otel/metric.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.3.0 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.opentelemetry.io/otel/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.opentelemetry.io/otel/version.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/multierr/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/multierr/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/multierr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/buffer/buffer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/checklicense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/checklicense.sh -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/zapcore/clock.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/zapcore/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/zapcore/entry.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/zapcore/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/zapcore/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/zapcore/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/sampler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/zapcore/sampler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapgrpc/zapgrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/go.uber.org/zap/zapgrpc/zapgrpc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/exp/slices/cmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/exp/slices/slices.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/exp/slices/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/context/context.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/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/timer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/pre_go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/idna/pre_go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/idna/trie12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/idna/trie13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/websocket/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/oauth2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/deviceauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/oauth2/deviceauth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/oauth2/internal/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/byteorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/byteorder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_loong64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/hwcap_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/hwcap_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/plan9/dir_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/plan9/env_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/plan9/pwd_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/plan9/syscall.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/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/term/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/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/openshift/insights-operator/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/term/term_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/NOTICE.txt -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/admission/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/admission/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/admission/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/admission/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apidiscovery/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/apidiscovery/v2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/autoscaling/v2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/certificates/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/certificates/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/coordination/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/coordination/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/core/v1/lifecycle.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/discovery/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/discovery/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/events/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/events/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/flowcontrol/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/flowcontrol/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/networking/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/node/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/node/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/node/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/node/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/policy/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/policy/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/rbac/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/scheduling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/scheduling/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/storage/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/api/storage/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/apiserver/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/audit/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/apiserver/pkg/audit/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/cel/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/apiserver/pkg/cel/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/cel/cidr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/apiserver/pkg/cel/cidr.go -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/cel/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/apiserver/pkg/cel/ip.go -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/cel/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/apiserver/pkg/cel/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/cel/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/apiserver/pkg/cel/url.go -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/cel/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/apiserver/pkg/cel/value.go -------------------------------------------------------------------------------- /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/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/discovery/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/discovery/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/gentype/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/gentype/fake.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/gentype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/gentype/type.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/informers/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/listers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/listers/doc.go -------------------------------------------------------------------------------- /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/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/rest/request.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/warnings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/rest/warnings.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/testing/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/testing/fake.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/transport/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/util/cert/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/util/cert/csr.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/util/cert/io.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/pem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/client-go/util/cert/pem.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/component-base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/component-base/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/component-base/logs/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/component-base/logs/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/.golangci.yaml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/contextual_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/k8s_references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/k8s_references.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/kms/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kms/apis/v1beta1/api.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/kms/apis/v1beta1/api.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/kms/apis/v1beta1/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/kms/apis/v1beta1/api.proto -------------------------------------------------------------------------------- /vendor/k8s.io/kms/apis/v2/api.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/kms/apis/v2/api.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/kms/apis/v2/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/kms/apis/v2/api.proto -------------------------------------------------------------------------------- /vendor/k8s.io/kms/apis/v2/v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/kms/apis/v2/v2.go -------------------------------------------------------------------------------- /vendor/k8s.io/kms/pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/kms/pkg/util/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-aggregator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/kube-aggregator/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/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/openshift/insights-operator/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/lru/lru.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/multi_listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/net/multi_listen.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/path/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/path/file.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/pointer/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/pointer/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/pointer/pointer.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/ptr/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/json/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/yaml/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/goyaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/yaml/goyaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/goyaml.v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/yaml/goyaml.v2/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/insights-operator/HEAD/vendor/sigs.k8s.io/yaml/yaml_go110.go --------------------------------------------------------------------------------