├── .ci-operator.yaml ├── .github ├── dependabot.yml.disabled ├── labeler.yml └── workflows │ ├── chart-push-release.yml │ ├── codeql.yml │ ├── image-push-master.yml │ ├── image-push-release.yml │ ├── pr-ci-triggers.yml │ ├── pr-labeler.yml │ ├── pr-update.yml │ ├── prow.yml │ └── test.yml ├── .gitignore ├── .golangci.yml ├── .snyk ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.ocp ├── Dockerfile.sriov-network-config-daemon ├── Dockerfile.sriov-network-config-daemon.ocp ├── Dockerfile.webhook ├── Dockerfile.webhook.ocp ├── LICENSE ├── Makefile ├── Makefile.bundle ├── OWNERS ├── PROJECT ├── README.md ├── api └── v1 │ ├── groupversion_info.go │ ├── helper.go │ ├── helper_test.go │ ├── ovsnetwork_types.go │ ├── sriovibnetwork_types.go │ ├── sriovnetwork_types.go │ ├── sriovnetworknodepolicy_types.go │ ├── sriovnetworknodestate_types.go │ ├── sriovnetworkpoolconfig_types.go │ ├── sriovoperatorconfig_types.go │ ├── testdata │ ├── TestIBRendering │ │ └── simpleib.golden │ ├── TestOVSRendering │ │ ├── chained.golden │ │ ├── complexconf.golden │ │ └── simpleovs.golden │ └── TestRendering │ │ ├── chained.golden │ │ └── simple.golden │ └── zz_generated.deepcopy.go ├── bindata ├── manifests │ ├── cni-config │ │ ├── ovs │ │ │ └── ovs-cni-config.yaml │ │ └── sriov │ │ │ └── sriov-cni-config.yaml │ ├── daemon │ │ └── daemonset.yaml │ ├── metrics-exporter │ │ ├── metrics-daemonset.yaml │ │ ├── metrics-prometheus-rule.yaml │ │ ├── metrics-prometheus.yaml │ │ ├── metrics-rbac.yaml │ │ └── metrics-service.yaml │ ├── operator-webhook │ │ ├── 001-service.yaml │ │ ├── 002-rbac.yaml │ │ ├── 003-webhook.yaml │ │ ├── 004-networkpolicy.yaml │ │ └── server.yaml │ ├── plugins │ │ ├── 002-rbac.yaml │ │ └── sriov-device-plugin.yaml │ ├── sriov-config-service │ │ ├── kubernetes │ │ │ ├── sriov-config-post-network-service.yaml │ │ │ └── sriov-config-service.yaml │ │ └── openshift │ │ │ └── sriov-config-service.yaml │ ├── switchdev-config │ │ └── ovs-units │ │ │ └── ovs-vswitchd.service.yaml │ └── webhook │ │ ├── 001-service.yaml │ │ ├── 002-rbac.yaml │ │ ├── 003-webhook.yaml │ │ ├── 004-configmap.yaml │ │ ├── 005-networkpolicy.yaml │ │ └── server.yaml └── scripts │ ├── bf2-switch-mode.sh │ ├── clean-k8s-services.sh │ ├── kargs.sh │ ├── switchdev-vf-link-name.sh │ └── udev-find-sriov-pf.sh ├── bundle.Dockerfile ├── bundle ├── manifests │ ├── manager-config_v1_configmap.yaml │ ├── sriov-network-operator.clusterserviceversion.yaml │ ├── sriovnetwork.openshift.io_ovsnetworks.yaml │ ├── sriovnetwork.openshift.io_sriovibnetworks.yaml │ ├── sriovnetwork.openshift.io_sriovnetworknodepolicies.yaml │ ├── sriovnetwork.openshift.io_sriovnetworknodestates.yaml │ ├── sriovnetwork.openshift.io_sriovnetworkpoolconfigs.yaml │ ├── sriovnetwork.openshift.io_sriovnetworks.yaml │ ├── sriovnetwork.openshift.io_sriovoperatorconfigs.yaml │ └── supported-nic-ids_v1_configmap.yaml ├── metadata │ └── annotations.yaml └── tests │ └── scorecard │ └── config.yaml ├── bundleci.Dockerfile ├── ci ├── README.md ├── admin-list.yaml └── examples │ └── jenkins │ ├── README.md │ └── sriov-network-operator-ci.yaml ├── cmd ├── sriov-network-config-daemon │ ├── main.go │ ├── service.go │ ├── service_test.go │ ├── start.go │ ├── suite_test.go │ └── version.go ├── sriov-network-operator-config-cleanup │ ├── cleanup.go │ ├── cleanup_test.go │ ├── main.go │ └── suite_test.go └── webhook │ ├── main.go │ └── start.go ├── config ├── crd │ ├── bases │ │ ├── sriovnetwork.openshift.io_ovsnetworks.yaml │ │ ├── sriovnetwork.openshift.io_sriovibnetworks.yaml │ │ ├── sriovnetwork.openshift.io_sriovnetworknodepolicies.yaml │ │ ├── sriovnetwork.openshift.io_sriovnetworknodestates.yaml │ │ ├── sriovnetwork.openshift.io_sriovnetworkpoolconfigs.yaml │ │ ├── sriovnetwork.openshift.io_sriovnetworks.yaml │ │ └── sriovnetwork.openshift.io_sriovoperatorconfigs.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_ovsnetworks.yaml │ │ ├── cainjection_in_sriovibnetworks.yaml │ │ ├── cainjection_in_sriovnetworknodepolicies.yaml │ │ ├── cainjection_in_sriovnetworknodestates.yaml │ │ ├── cainjection_in_sriovnetworkpoolconfigs.yaml │ │ ├── cainjection_in_sriovnetworks.yaml │ │ ├── cainjection_in_sriovoperatorconfigs.yaml │ │ ├── webhook_in_ovsnetworks.yaml │ │ ├── webhook_in_sriovibnetworks.yaml │ │ ├── webhook_in_sriovnetworknodepolicies.yaml │ │ ├── webhook_in_sriovnetworknodestates.yaml │ │ ├── webhook_in_sriovnetworkpoolconfigs.yaml │ │ ├── webhook_in_sriovnetworks.yaml │ │ └── webhook_in_sriovoperatorconfigs.yaml ├── default │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ └── manager_config_patch.yaml ├── manager │ ├── controller_manager_config.yaml │ ├── kustomization.yaml │ └── manager.yaml ├── manifests │ ├── bases │ │ ├── sriov-network-operator.clusterserviceversion.yaml │ │ └── sriov-network-operator_configmap.yaml │ └── kustomization.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── ovsnetwork_editor_role.yaml │ ├── ovsnetwork_viewer_role.yaml │ ├── role.yaml │ ├── role_binding.yaml │ ├── service_account.yaml │ ├── sriov-network-config-daemon_clusterrole.yaml │ ├── sriov-network-config-daemon_clusterrole_binding.yaml │ ├── sriov-network-config-daemon_role.yaml │ ├── sriov-network-config-daemon_role_binding.yaml │ ├── sriovnetworkpoolconfig_editor_role.yaml │ └── sriovnetworkpoolconfig_viewer_role.yaml ├── samples │ ├── kustomization.yaml │ ├── sriovnetwork_v1_ovsnetwork.yaml │ ├── sriovnetwork_v1_sriovibnetwork.yaml │ ├── sriovnetwork_v1_sriovnetwork.yaml │ ├── sriovnetwork_v1_sriovnetworknodepolicy.yaml │ ├── sriovnetwork_v1_sriovnetworknodestate.yaml │ ├── sriovnetwork_v1_sriovnetworkpoolconfig.yaml │ └── sriovnetwork_v1_sriovoperatorconfig.yaml └── scorecard │ ├── bases │ └── config.yaml │ ├── kustomization.yaml │ └── patches │ ├── basic.config.yaml │ └── olm.config.yaml ├── controllers ├── drain_controller.go ├── drain_controller_helper.go ├── drain_controller_test.go ├── generic_network_controller.go ├── generic_network_controller_test.go ├── helper.go ├── ovsnetwork_controller.go ├── ovsnetwork_controller_test.go ├── sriovibnetwork_controller.go ├── sriovibnetwork_controller_test.go ├── sriovnetwork_controller.go ├── sriovnetwork_controller_test.go ├── sriovnetworknodepolicy_controller.go ├── sriovnetworknodepolicy_controller_test.go ├── sriovnetworkpoolconfig_controller.go ├── sriovnetworkpoolconfig_controller_test.go ├── sriovoperatorconfig_controller.go ├── sriovoperatorconfig_controller_test.go └── suite_test.go ├── deploy ├── clusterrole.yaml ├── clusterrolebinding.yaml ├── configmap.yaml ├── namespace.yaml ├── operator.yaml ├── role.yaml ├── role_binding.yaml ├── service_account.yaml └── sriovoperatorconfig.yaml ├── deployment └── sriov-network-operator-chart │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ ├── k8s.cni.cncf.io_networkattachmentdefinitions_crd.yaml │ ├── sriovnetwork.openshift.io_ovsnetworks.yaml │ ├── sriovnetwork.openshift.io_sriovibnetworks.yaml │ ├── sriovnetwork.openshift.io_sriovnetworknodepolicies.yaml │ ├── sriovnetwork.openshift.io_sriovnetworknodestates.yaml │ ├── sriovnetwork.openshift.io_sriovnetworkpoolconfigs.yaml │ ├── sriovnetwork.openshift.io_sriovnetworks.yaml │ └── sriovnetwork.openshift.io_sriovoperatorconfigs.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── certificate.yaml │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── configmap.yaml │ ├── extra-list.yaml │ ├── operator.yaml │ ├── pre-delete-webooks.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── serviceaccount.yaml │ └── sriovoperatorconfig.yaml │ └── values.yaml ├── doc ├── design │ ├── TEMPLATE.md │ ├── externally-manage-pf.md │ ├── ib-vf-configuration.md │ ├── parallel-node-config.md │ ├── platform-orchestrator-abstraction.md │ ├── software-bridge-management.md │ └── switchdev-refactoring.md ├── hacking.md ├── ib-vf-guid-static-configuration.md ├── images │ └── workflow.png ├── ovs-hw-offload.md ├── quickstart.md ├── supported-hardware.md ├── testing-kind.md ├── testing-virtual-machine.md ├── vdpa.md └── vendor-support.md ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt ├── build-go.sh ├── common ├── deploy-operator-helm.sh ├── deploy-setup.sh ├── deploy-sriov-in-telco-ci.sh ├── deploy-wait.sh ├── dummy.yaml ├── env.sh ├── get-e2e-kind-tools.sh ├── go-fmt.sh ├── release │ ├── chart-push.sh │ └── chart-update.sh ├── run-e2e-conformance-common ├── run-e2e-conformance-virtual-cluster.sh ├── run-e2e-conformance-virtual-ocp.sh ├── run-e2e-conformance.sh ├── run-e2e-test-kind.sh ├── run-e2e-test-locally.sh ├── run-e2e-test.sh ├── run-locally.sh ├── run-test.sh ├── teardown-e2e-kind-cluster.sh ├── tools.go ├── undeploy.sh ├── vf-netns-switcher.sh ├── vf-switcher.service └── virtual-cluster-redeploy.sh ├── main.go ├── manifests ├── art.yaml ├── sriov-network-operator.package.yaml └── stable │ ├── image-references │ ├── manager-config_v1_configmap.yaml │ ├── sriov-network-operator.clusterserviceversion.yaml │ ├── sriovnetwork.openshift.io_ovsnetworks.yaml │ ├── sriovnetwork.openshift.io_sriovibnetworks.yaml │ ├── sriovnetwork.openshift.io_sriovnetworknodepolicies.yaml │ ├── sriovnetwork.openshift.io_sriovnetworknodestates.yaml │ ├── sriovnetwork.openshift.io_sriovnetworkpoolconfigs.yaml │ ├── sriovnetwork.openshift.io_sriovnetworks.yaml │ ├── sriovnetwork.openshift.io_sriovoperatorconfigs.yaml │ └── supported-nic-ids_v1_configmap.yaml ├── pkg ├── apply │ ├── apply.go │ ├── merge.go │ └── merge_test.go ├── consts │ ├── constants.go │ └── platforms.go ├── daemon │ ├── config.go │ ├── config_test.go │ ├── daemon.go │ ├── daemon_suite_test.go │ ├── daemon_test.go │ ├── event_recorder.go │ ├── plugin.go │ └── status.go ├── drain │ ├── drainer.go │ ├── drainer_suite_test.go │ └── drainer_test.go ├── featuregate │ ├── featuregate.go │ ├── featuregate_test.go │ └── suite_test.go ├── helper │ ├── host.go │ └── mock │ │ └── mock_helper.go ├── host │ ├── internal │ │ ├── bridge │ │ │ ├── bridge.go │ │ │ ├── bridge_test.go │ │ │ ├── ovs │ │ │ │ ├── mock │ │ │ │ │ └── mock_ovs.go │ │ │ │ ├── models.go │ │ │ │ ├── ovs.go │ │ │ │ ├── ovs_test.go │ │ │ │ ├── store │ │ │ │ │ ├── mock │ │ │ │ │ │ └── mock_store.go │ │ │ │ │ ├── store.go │ │ │ │ │ ├── store_test.go │ │ │ │ │ └── suite_test.go │ │ │ │ ├── suite_test.go │ │ │ │ └── test_db.ovsschema │ │ │ └── suite_test.go │ │ ├── cpu │ │ │ └── cpu.go │ │ ├── infiniband │ │ │ ├── guid.go │ │ │ ├── guid_test.go │ │ │ ├── ib_guid_config.go │ │ │ ├── ib_guid_config_test.go │ │ │ ├── ib_guid_pool.go │ │ │ ├── ib_guid_pool_test.go │ │ │ ├── infiniband.go │ │ │ ├── infiniband_test.go │ │ │ └── suite_test.go │ │ ├── kernel │ │ │ ├── kernel.go │ │ │ ├── kernel_test.go │ │ │ └── suite_test.go │ │ ├── lib │ │ │ ├── dputils │ │ │ │ ├── dputils.go │ │ │ │ └── mock │ │ │ │ │ └── mock_dputils.go │ │ │ ├── ethtool │ │ │ │ ├── ethtool.go │ │ │ │ └── mock │ │ │ │ │ └── mock_ethtool.go │ │ │ ├── ghw │ │ │ │ ├── ghw.go │ │ │ │ └── mock │ │ │ │ │ └── mock_ghw.go │ │ │ ├── netlink │ │ │ │ ├── mock │ │ │ │ │ └── mock_netlink.go │ │ │ │ └── netlink.go │ │ │ └── sriovnet │ │ │ │ ├── mock │ │ │ │ └── mock_sriovnet.go │ │ │ │ └── sriovnet.go │ │ ├── network │ │ │ ├── network.go │ │ │ ├── network_test.go │ │ │ └── suite_test.go │ │ ├── service │ │ │ └── service.go │ │ ├── sriov │ │ │ ├── sriov.go │ │ │ ├── sriov_test.go │ │ │ └── suite_test.go │ │ ├── systemd │ │ │ ├── systemd.go │ │ │ ├── systemd_suite_test.go │ │ │ └── systemd_test.go │ │ ├── udev │ │ │ ├── suite_test.go │ │ │ ├── udev.go │ │ │ └── udev_test.go │ │ └── vdpa │ │ │ ├── suite_test.go │ │ │ ├── vdpa.go │ │ │ └── vdpa_test.go │ ├── manager.go │ ├── mock │ │ └── mock_host.go │ ├── store │ │ ├── mock │ │ │ └── mock_store.go │ │ ├── store.go │ │ ├── store_suite_test.go │ │ └── store_test.go │ └── types │ │ ├── interfaces.go │ │ └── types.go ├── log │ ├── log.go │ └── log_test.go ├── orchestrator │ ├── kubernetes │ │ ├── kubernetes.go │ │ └── kubernetes_test.go │ ├── mock │ │ └── mock_orchestrator.go │ ├── openshift │ │ ├── openshift.go │ │ ├── openshift_suite_test.go │ │ └── openshift_test.go │ ├── orchestrator.go │ ├── orchestrator_suite_test.go │ └── orchestrator_test.go ├── platform │ ├── baremetal │ │ ├── baremetal.go │ │ ├── baremetal_suite_test.go │ │ └── baremetal_test.go │ ├── mock │ │ └── mock_platform.go │ ├── openstack │ │ ├── helpers.go │ │ ├── openstack.go │ │ ├── openstack_test.go │ │ ├── testdata │ │ │ ├── meta_data.json │ │ │ └── network_data.json │ │ └── types.go │ └── platform.go ├── plugins │ ├── generic │ │ ├── generic_plugin.go │ │ └── generic_plugin_test.go │ ├── intel │ │ └── intel_plugin.go │ ├── k8s │ │ ├── k8s_plugin.go │ │ └── k8s_plugin_test.go │ ├── mellanox │ │ ├── mellanox_plugin.go │ │ ├── mellanox_plugin_test.go │ │ └── suite_test.go │ ├── mock │ │ └── mock_plugin.go │ ├── plugin.go │ └── virtual │ │ ├── suite_test.go │ │ ├── virtual_plugin.go │ │ └── virtual_plugin_test.go ├── render │ ├── README.md │ ├── funcs.go │ ├── render.go │ ├── render_test.go │ └── testdata │ │ ├── doc.txt │ │ ├── machineconfig │ │ ├── files │ │ │ └── configure-switchdev.sh.yaml │ │ └── units │ │ │ ├── NetworkManager.service.yaml │ │ │ ├── ovs-configuration.service.yaml │ │ │ ├── ovs-vswitchd.service.yaml │ │ │ └── switchdev-configuration.yaml │ │ └── manifests │ │ ├── multiple.yaml │ │ ├── simple.json │ │ ├── simple.yaml │ │ ├── template.yaml │ │ └── template_with_empty_object.yaml ├── utils │ ├── cluster.go │ ├── mock │ │ └── mock_utils.go │ ├── shutdown.go │ └── utils.go ├── vars │ └── vars.go ├── vendors │ └── mellanox │ │ ├── mellanox.go │ │ ├── mellanox_test.go │ │ ├── mock │ │ └── mock_mellanox.go │ │ └── suite_test.go ├── version │ └── version.go └── webhook │ ├── client.go │ ├── config.go │ ├── mutate.go │ ├── scheme.go │ ├── validate.go │ ├── validate_networks.go │ ├── validate_networks_test.go │ ├── validate_test.go │ └── webhook.go ├── test ├── OWNERS ├── conformance │ ├── test.go │ ├── test_suite_test.go │ └── tests │ │ ├── fixtures.go │ │ ├── init.go │ │ ├── test_exporter_metrics.go │ │ ├── test_networkpool.go │ │ ├── test_no_policy.go │ │ ├── test_policy_configuration.go │ │ ├── test_sriov_operator.go │ │ └── test_switchdev.go ├── e2e │ ├── e2e_tests_suite_test.go │ └── sriovoperatornodepolicy_test.go ├── scripts │ ├── kargs_test.sh │ ├── rpm-ostree_mock │ └── shunit2 ├── util │ ├── clean │ │ └── clean.go │ ├── client │ │ └── clients.go │ ├── cluster │ │ ├── cluster.go │ │ └── cluster_test.go │ ├── crds │ │ ├── config.openshift.io_infrastructures_crd.yaml │ │ ├── k8s.cni.cncf.io_networkattachmentdefinitions_crd.yaml │ │ ├── machineconfiguration.openshift.io_machineconfigpools_crd.yaml │ │ ├── machineconfiguration.openshift.io_machineconfigs_crd.yaml │ │ ├── monitoring.coreos.com_prometheusrules.yaml │ │ └── monitoring.coreos.com_servicemonitors.yaml │ ├── discovery │ │ └── discovery.go │ ├── execute │ │ └── ginkgo.go │ ├── fakefilesystem │ │ └── fakefilesystem.go │ ├── helpers │ │ └── helpers.go │ ├── images │ │ └── images.go │ ├── k8sreporter │ │ ├── descriptions.go │ │ └── reporter.go │ ├── namespaces │ │ └── namespaces.go │ ├── netns │ │ └── netns.go │ ├── network │ │ ├── network.go │ │ └── network_test.go │ ├── nodes │ │ └── nodes.go │ ├── pod │ │ └── pod.go │ └── util.go └── validation │ ├── test_suite_test.go │ └── tests │ └── test_validation.go └── vendor ├── github.com ├── Azure │ └── go-ansiterm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── constants.go │ │ ├── context.go │ │ ├── csi_entry_state.go │ │ ├── csi_param_state.go │ │ ├── escape_intermediate_state.go │ │ ├── escape_state.go │ │ ├── event_handler.go │ │ ├── ground_state.go │ │ ├── osc_string_state.go │ │ ├── parser.go │ │ ├── parser_action_helpers.go │ │ ├── parser_actions.go │ │ ├── states.go │ │ ├── utilities.go │ │ └── winterm │ │ ├── ansi.go │ │ ├── api.go │ │ ├── attr_translation.go │ │ ├── cursor_helpers.go │ │ ├── erase_helpers.go │ │ ├── scroll_helper.go │ │ ├── utilities.go │ │ └── win_event_handler.go ├── MakeNowJust │ └── heredoc │ │ ├── LICENSE │ │ ├── README.md │ │ └── heredoc.go ├── Masterminds │ ├── goutils │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── cryptorandomstringutils.go │ │ ├── randomstringutils.go │ │ ├── stringutils.go │ │ └── wordutils.go │ ├── semver │ │ └── v3 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── collection.go │ │ │ ├── constraints.go │ │ │ ├── doc.go │ │ │ └── version.go │ └── sprig │ │ └── v3 │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── crypto.go │ │ ├── date.go │ │ ├── defaults.go │ │ ├── dict.go │ │ ├── doc.go │ │ ├── functions.go │ │ ├── list.go │ │ ├── network.go │ │ ├── numeric.go │ │ ├── reflect.go │ │ ├── regex.go │ │ ├── semver.go │ │ ├── strings.go │ │ └── url.go ├── Mellanox │ └── sriovnet │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── file_access.go │ │ ├── mofed_ib_helper.go │ │ ├── pkg │ │ └── utils │ │ │ ├── filesystem │ │ │ ├── defaultfs.go │ │ │ ├── fakefs.go │ │ │ └── filesystem.go │ │ │ └── netlinkops │ │ │ └── netlinkops.go │ │ ├── sriovnet.go │ │ ├── sriovnet_helper.go │ │ └── sriovnet_switchdev.go ├── StackExchange │ └── wmi │ │ ├── LICENSE │ │ ├── README.md │ │ ├── swbemservices.go │ │ └── wmi.go ├── ajeddeloh │ └── go-json │ │ ├── OWNERS │ │ ├── README │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fold.go │ │ ├── indent.go │ │ ├── scanner.go │ │ ├── stream.go │ │ └── tags.go ├── aws │ └── aws-sdk-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ └── aws │ │ └── arn │ │ └── arn.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── blang │ └── semver │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── json.go │ │ ├── package.json │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ ├── sql.go │ │ └── v4 │ │ ├── LICENSE │ │ ├── json.go │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ └── sql.go ├── cenkalti │ ├── backoff │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── context.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ ├── tries.go │ │ └── v4 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backoff.go │ │ │ ├── context.go │ │ │ ├── exponential.go │ │ │ ├── retry.go │ │ │ ├── ticker.go │ │ │ ├── timer.go │ │ │ └── tries.go │ ├── hub │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── hub.go │ └── rpc2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── codec.go │ │ ├── debug.go │ │ ├── jsonrpc │ │ └── jsonrpc.go │ │ ├── server.go │ │ └── state.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 ├── chai2010 │ └── gettext-go │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_json.go │ │ ├── fs_os.go │ │ ├── fs_zip.go │ │ ├── gettext.go │ │ ├── locale.go │ │ ├── mo │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── file.go │ │ ├── header.go │ │ ├── message.go │ │ └── util.go │ │ ├── plural │ │ ├── doc.go │ │ ├── formula.go │ │ └── table.go │ │ ├── po │ │ ├── comment.go │ │ ├── doc.go │ │ ├── file.go │ │ ├── header.go │ │ ├── line_reader.go │ │ ├── message.go │ │ ├── re.go │ │ └── util.go │ │ ├── tr.go │ │ └── util.go ├── clarketm │ └── json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fold.go │ │ ├── fuzz.go │ │ ├── indent.go │ │ ├── scanner.go │ │ ├── stream.go │ │ ├── tables.go │ │ └── tags.go ├── coreos │ ├── fcct │ │ ├── LICENSE │ │ ├── base │ │ │ └── v0_1 │ │ │ │ ├── schema.go │ │ │ │ ├── translate.go │ │ │ │ └── validate.go │ │ └── translate │ │ │ ├── set.go │ │ │ ├── translate.go │ │ │ └── util.go │ ├── go-json │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fold.go │ │ ├── fuzz.go │ │ ├── indent.go │ │ ├── scanner.go │ │ ├── stream.go │ │ ├── tables.go │ │ └── tags.go │ ├── go-semver │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── semver │ │ │ ├── semver.go │ │ │ └── sort.go │ ├── go-systemd │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── unit │ │ │ ├── deserialize.go │ │ │ ├── escape.go │ │ │ ├── option.go │ │ │ └── serialize.go │ │ └── v22 │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── unit │ │ │ ├── deserialize.go │ │ │ ├── escape.go │ │ │ ├── option.go │ │ │ ├── section.go │ │ │ └── serialize.go │ ├── ign-converter │ │ ├── LICENSE │ │ ├── translate │ │ │ ├── v23tov30 │ │ │ │ └── v23tov30.go │ │ │ ├── v32tov22 │ │ │ │ └── v32tov22.go │ │ │ ├── v32tov31 │ │ │ │ └── v32tov31.go │ │ │ ├── v33tov32 │ │ │ │ └── v33tov32.go │ │ │ └── v34tov33 │ │ │ │ └── v34tov33.go │ │ └── util │ │ │ └── util.go │ ├── ignition │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── config │ │ │ ├── shared │ │ │ │ ├── errors │ │ │ │ │ └── errors.go │ │ │ │ └── validations │ │ │ │ │ └── unit.go │ │ │ ├── util │ │ │ │ ├── helpers.go │ │ │ │ └── parsingErrors.go │ │ │ ├── v1 │ │ │ │ ├── cloudinit.go │ │ │ │ ├── config.go │ │ │ │ └── types │ │ │ │ │ ├── config.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── group.go │ │ │ │ │ ├── networkd.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── systemd.go │ │ │ │ │ ├── unit.go │ │ │ │ │ └── user.go │ │ │ ├── v2_0 │ │ │ │ ├── append.go │ │ │ │ ├── cloudinit.go │ │ │ │ ├── config.go │ │ │ │ ├── translate.go │ │ │ │ └── types │ │ │ │ │ ├── compression.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── group.go │ │ │ │ │ ├── hash.go │ │ │ │ │ ├── ignition.go │ │ │ │ │ ├── networkd.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── systemd.go │ │ │ │ │ ├── unit.go │ │ │ │ │ ├── url.go │ │ │ │ │ ├── user.go │ │ │ │ │ └── verification.go │ │ │ ├── v2_1 │ │ │ │ ├── append.go │ │ │ │ ├── cloudinit.go │ │ │ │ ├── config.go │ │ │ │ ├── translate.go │ │ │ │ └── types │ │ │ │ │ ├── config.go │ │ │ │ │ ├── directory.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── ignition.go │ │ │ │ │ ├── mode.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── unit.go │ │ │ │ │ ├── url.go │ │ │ │ │ └── verification.go │ │ │ ├── v2_2 │ │ │ │ ├── append.go │ │ │ │ ├── cloudinit.go │ │ │ │ ├── config.go │ │ │ │ ├── translate.go │ │ │ │ └── types │ │ │ │ │ ├── ca.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── directory.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── ignition.go │ │ │ │ │ ├── mode.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── unit.go │ │ │ │ │ ├── url.go │ │ │ │ │ └── verification.go │ │ │ ├── v2_3 │ │ │ │ ├── append.go │ │ │ │ ├── cloudinit.go │ │ │ │ ├── config.go │ │ │ │ ├── translate.go │ │ │ │ └── types │ │ │ │ │ ├── ca.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── directory.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── ignition.go │ │ │ │ │ ├── mode.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── unit.go │ │ │ │ │ ├── url.go │ │ │ │ │ └── verification.go │ │ │ ├── v2_5_experimental │ │ │ │ └── types │ │ │ │ │ ├── ca.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── directory.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── headers.go │ │ │ │ │ ├── ignition.go │ │ │ │ │ ├── mode.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── unit.go │ │ │ │ │ ├── url.go │ │ │ │ │ └── verification.go │ │ │ └── validate │ │ │ │ ├── astjson │ │ │ │ └── node.go │ │ │ │ ├── astnode │ │ │ │ └── astnode.go │ │ │ │ ├── report │ │ │ │ └── report.go │ │ │ │ └── validate.go │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── config │ │ │ ├── merge │ │ │ └── merge.go │ │ │ ├── shared │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── parse │ │ │ │ └── unit.go │ │ │ └── validations │ │ │ │ └── unit.go │ │ │ ├── translate │ │ │ └── translate.go │ │ │ ├── util │ │ │ ├── config.go │ │ │ ├── helpers.go │ │ │ ├── interfaces.go │ │ │ ├── parsingErrors.go │ │ │ └── reflection.go │ │ │ ├── v3_0 │ │ │ ├── config.go │ │ │ └── types │ │ │ │ ├── ca.go │ │ │ │ ├── config.go │ │ │ │ ├── device.go │ │ │ │ ├── directory.go │ │ │ │ ├── disk.go │ │ │ │ ├── file.go │ │ │ │ ├── filesystem.go │ │ │ │ ├── ignition.go │ │ │ │ ├── mode.go │ │ │ │ ├── node.go │ │ │ │ ├── partition.go │ │ │ │ ├── passwd.go │ │ │ │ ├── path.go │ │ │ │ ├── raid.go │ │ │ │ ├── schema.go │ │ │ │ ├── storage.go │ │ │ │ ├── systemd.go │ │ │ │ ├── unit.go │ │ │ │ ├── url.go │ │ │ │ └── verification.go │ │ │ ├── v3_1 │ │ │ ├── config.go │ │ │ ├── translate │ │ │ │ └── translate.go │ │ │ └── types │ │ │ │ ├── config.go │ │ │ │ ├── device.go │ │ │ │ ├── directory.go │ │ │ │ ├── disk.go │ │ │ │ ├── file.go │ │ │ │ ├── filesystem.go │ │ │ │ ├── headers.go │ │ │ │ ├── ignition.go │ │ │ │ ├── mode.go │ │ │ │ ├── node.go │ │ │ │ ├── partition.go │ │ │ │ ├── passwd.go │ │ │ │ ├── path.go │ │ │ │ ├── proxy.go │ │ │ │ ├── raid.go │ │ │ │ ├── resource.go │ │ │ │ ├── schema.go │ │ │ │ ├── storage.go │ │ │ │ ├── systemd.go │ │ │ │ ├── tls.go │ │ │ │ ├── unit.go │ │ │ │ ├── url.go │ │ │ │ └── verification.go │ │ │ ├── v3_2 │ │ │ ├── config.go │ │ │ ├── translate │ │ │ │ └── translate.go │ │ │ └── types │ │ │ │ ├── config.go │ │ │ │ ├── custom.go │ │ │ │ ├── device.go │ │ │ │ ├── directory.go │ │ │ │ ├── disk.go │ │ │ │ ├── file.go │ │ │ │ ├── filesystem.go │ │ │ │ ├── headers.go │ │ │ │ ├── ignition.go │ │ │ │ ├── luks.go │ │ │ │ ├── mode.go │ │ │ │ ├── node.go │ │ │ │ ├── partition.go │ │ │ │ ├── passwd.go │ │ │ │ ├── path.go │ │ │ │ ├── proxy.go │ │ │ │ ├── raid.go │ │ │ │ ├── resource.go │ │ │ │ ├── schema.go │ │ │ │ ├── storage.go │ │ │ │ ├── systemd.go │ │ │ │ ├── tang.go │ │ │ │ ├── tls.go │ │ │ │ ├── unit.go │ │ │ │ ├── url.go │ │ │ │ └── verification.go │ │ │ ├── v3_3 │ │ │ ├── config.go │ │ │ ├── translate │ │ │ │ └── translate.go │ │ │ └── types │ │ │ │ ├── clevis.go │ │ │ │ ├── config.go │ │ │ │ ├── device.go │ │ │ │ ├── directory.go │ │ │ │ ├── disk.go │ │ │ │ ├── file.go │ │ │ │ ├── filesystem.go │ │ │ │ ├── headers.go │ │ │ │ ├── ignition.go │ │ │ │ ├── kargs.go │ │ │ │ ├── luks.go │ │ │ │ ├── mode.go │ │ │ │ ├── node.go │ │ │ │ ├── partition.go │ │ │ │ ├── passwd.go │ │ │ │ ├── path.go │ │ │ │ ├── proxy.go │ │ │ │ ├── raid.go │ │ │ │ ├── resource.go │ │ │ │ ├── schema.go │ │ │ │ ├── storage.go │ │ │ │ ├── systemd.go │ │ │ │ ├── tang.go │ │ │ │ ├── tls.go │ │ │ │ ├── unit.go │ │ │ │ ├── url.go │ │ │ │ └── verification.go │ │ │ ├── v3_4 │ │ │ ├── config.go │ │ │ ├── translate │ │ │ │ └── translate.go │ │ │ └── types │ │ │ │ ├── clevis.go │ │ │ │ ├── config.go │ │ │ │ ├── device.go │ │ │ │ ├── directory.go │ │ │ │ ├── disk.go │ │ │ │ ├── file.go │ │ │ │ ├── filesystem.go │ │ │ │ ├── headers.go │ │ │ │ ├── ignition.go │ │ │ │ ├── kargs.go │ │ │ │ ├── luks.go │ │ │ │ ├── mode.go │ │ │ │ ├── node.go │ │ │ │ ├── partition.go │ │ │ │ ├── passwd.go │ │ │ │ ├── path.go │ │ │ │ ├── proxy.go │ │ │ │ ├── raid.go │ │ │ │ ├── resource.go │ │ │ │ ├── schema.go │ │ │ │ ├── storage.go │ │ │ │ ├── systemd.go │ │ │ │ ├── tang.go │ │ │ │ ├── tls.go │ │ │ │ ├── unit.go │ │ │ │ ├── url.go │ │ │ │ └── verification.go │ │ │ └── validate │ │ │ └── validate.go │ └── vcontext │ │ ├── LICENSE │ │ ├── json │ │ └── json.go │ │ ├── path │ │ └── path.go │ │ ├── report │ │ └── report.go │ │ ├── tree │ │ └── tree.go │ │ └── validate │ │ └── validate.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 │ │ ├── jsr311.go │ │ ├── log │ │ └── log.go │ │ ├── logger.go │ │ ├── mime.go │ │ ├── options_filter.go │ │ ├── parameter.go │ │ ├── path_expression.go │ │ ├── path_processor.go │ │ ├── request.go │ │ ├── response.go │ │ ├── route.go │ │ ├── route_builder.go │ │ ├── route_reader.go │ │ ├── router.go │ │ ├── service_error.go │ │ ├── web_service.go │ │ └── web_service_container.go ├── evanphx │ └── json-patch │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ ├── patch.go │ │ └── v5 │ │ ├── LICENSE │ │ ├── errors.go │ │ ├── internal │ │ └── json │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── fold.go │ │ │ ├── fuzz.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── merge.go │ │ └── patch.go ├── exponent-io │ └── jsonpath │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decoder.go │ │ ├── path.go │ │ └── pathaction.go ├── fsnotify │ └── fsnotify │ │ ├── .cirrus.yml │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── internal │ │ ├── darwin.go │ │ ├── debug_darwin.go │ │ ├── debug_dragonfly.go │ │ ├── debug_freebsd.go │ │ ├── debug_kqueue.go │ │ ├── debug_linux.go │ │ ├── debug_netbsd.go │ │ ├── debug_openbsd.go │ │ ├── debug_solaris.go │ │ ├── debug_windows.go │ │ ├── freebsd.go │ │ ├── internal.go │ │ ├── unix.go │ │ ├── unix2.go │ │ └── windows.go │ │ ├── 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 ├── gabriel-vasile │ └── mimetype │ │ ├── .gitattributes │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ ├── charset │ │ │ └── charset.go │ │ ├── json │ │ │ └── json.go │ │ └── magic │ │ │ ├── archive.go │ │ │ ├── audio.go │ │ │ ├── binary.go │ │ │ ├── database.go │ │ │ ├── document.go │ │ │ ├── font.go │ │ │ ├── ftyp.go │ │ │ ├── geo.go │ │ │ ├── image.go │ │ │ ├── magic.go │ │ │ ├── ms_office.go │ │ │ ├── ogg.go │ │ │ ├── text.go │ │ │ ├── text_csv.go │ │ │ ├── video.go │ │ │ └── zip.go │ │ ├── mime.go │ │ ├── mimetype.go │ │ ├── supported_mimes.md │ │ └── tree.go ├── ghodss │ └── yaml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fields.go │ │ ├── yaml.go │ │ └── yaml_go110.go ├── go-errors │ └── errors │ │ ├── .travis.yml │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── error.go │ │ ├── error_1_13.go │ │ ├── error_backward.go │ │ ├── parse_panic.go │ │ └── stackframe.go ├── go-logr │ ├── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── context.go │ │ ├── context_noslog.go │ │ ├── context_slog.go │ │ ├── discard.go │ │ ├── funcr │ │ │ ├── funcr.go │ │ │ └── slogsink.go │ │ ├── logr.go │ │ ├── sloghandler.go │ │ ├── slogr.go │ │ ├── slogr │ │ │ └── slogr.go │ │ └── slogsink.go │ ├── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go │ └── zapr │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── slogzapr.go │ │ ├── zapr.go │ │ ├── zapr_noslog.go │ │ └── zapr_slog.go ├── go-ole │ └── go-ole │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── com.go │ │ ├── com_func.go │ │ ├── connect.go │ │ ├── constants.go │ │ ├── error.go │ │ ├── error_func.go │ │ ├── error_windows.go │ │ ├── guid.go │ │ ├── iconnectionpoint.go │ │ ├── iconnectionpoint_func.go │ │ ├── iconnectionpoint_windows.go │ │ ├── iconnectionpointcontainer.go │ │ ├── iconnectionpointcontainer_func.go │ │ ├── iconnectionpointcontainer_windows.go │ │ ├── idispatch.go │ │ ├── idispatch_func.go │ │ ├── idispatch_windows.go │ │ ├── ienumvariant.go │ │ ├── ienumvariant_func.go │ │ ├── ienumvariant_windows.go │ │ ├── iinspectable.go │ │ ├── iinspectable_func.go │ │ ├── iinspectable_windows.go │ │ ├── iprovideclassinfo.go │ │ ├── iprovideclassinfo_func.go │ │ ├── iprovideclassinfo_windows.go │ │ ├── itypeinfo.go │ │ ├── itypeinfo_func.go │ │ ├── itypeinfo_windows.go │ │ ├── iunknown.go │ │ ├── iunknown_func.go │ │ ├── iunknown_windows.go │ │ ├── ole.go │ │ ├── oleutil │ │ ├── connection.go │ │ ├── connection_func.go │ │ ├── connection_windows.go │ │ ├── go-get.go │ │ └── oleutil.go │ │ ├── safearray.go │ │ ├── safearray_func.go │ │ ├── safearray_windows.go │ │ ├── safearrayconversion.go │ │ ├── safearrayslices.go │ │ ├── utility.go │ │ ├── variables.go │ │ ├── variant.go │ │ ├── variant_386.go │ │ ├── variant_amd64.go │ │ ├── variant_arm.go │ │ ├── variant_arm64.go │ │ ├── variant_date_386.go │ │ ├── variant_date_amd64.go │ │ ├── variant_date_arm.go │ │ ├── variant_date_arm64.go │ │ ├── variant_ppc64le.go │ │ ├── variant_s390x.go │ │ ├── vt_string.go │ │ ├── winrt.go │ │ └── winrt_doc.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 ├── go-playground │ ├── locales │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── currency │ │ │ └── currency.go │ │ ├── logo.png │ │ └── rules.go │ ├── universal-translator │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── errors.go │ │ ├── import_export.go │ │ ├── logo.png │ │ ├── translator.go │ │ └── universal_translator.go │ └── validator │ │ └── v10 │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── baked_in.go │ │ ├── cache.go │ │ ├── country_codes.go │ │ ├── currency_codes.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── field_level.go │ │ ├── logo.png │ │ ├── options.go │ │ ├── postcode_regexes.go │ │ ├── regexes.go │ │ ├── struct_level.go │ │ ├── translations.go │ │ ├── util.go │ │ ├── validator.go │ │ └── validator_instance.go ├── go-task │ └── slim-sprig │ │ └── v3 │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Taskfile.yml │ │ ├── crypto.go │ │ ├── date.go │ │ ├── defaults.go │ │ ├── dict.go │ │ ├── doc.go │ │ ├── functions.go │ │ ├── list.go │ │ ├── network.go │ │ ├── numeric.go │ │ ├── reflect.go │ │ ├── regex.go │ │ ├── strings.go │ │ └── url.go ├── 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 │ ├── glog │ │ ├── LICENSE │ │ ├── README.md │ │ ├── glog.go │ │ ├── glog_file.go │ │ ├── glog_file_linux.go │ │ ├── glog_file_nonwindows.go │ │ ├── glog_file_other.go │ │ ├── glog_file_posix.go │ │ ├── glog_file_windows.go │ │ ├── glog_flags.go │ │ └── internal │ │ │ ├── logsink │ │ │ ├── logsink.go │ │ │ └── logsink_fatal.go │ │ │ └── stackdump │ │ │ └── stackdump.go │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ ├── buffer.go │ │ ├── defaults.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── extensions.go │ │ ├── properties.go │ │ ├── proto.go │ │ ├── registry.go │ │ ├── text_decode.go │ │ ├── text_encode.go │ │ ├── wire.go │ │ └── wrappers.go ├── google │ ├── btree │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ └── btree_generic.go │ ├── gnostic-models │ │ ├── LICENSE │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extensions.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ ├── extensions │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ └── extensions.go │ │ ├── jsonschema │ │ │ ├── README.md │ │ │ ├── base.go │ │ │ ├── display.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── reader.go │ │ │ ├── schema.json │ │ │ └── writer.go │ │ ├── openapiv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ ├── document.go │ │ │ └── openapi-2.0.json │ │ └── openapiv3 │ │ │ ├── OpenAPIv3.go │ │ │ ├── OpenAPIv3.pb.go │ │ │ ├── OpenAPIv3.proto │ │ │ ├── README.md │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ └── document.go │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ ├── 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 │ ├── renameio │ │ └── v2 │ │ │ ├── .golangci.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── option.go │ │ │ ├── tempfile.go │ │ │ └── writefile.go │ ├── shlex │ │ ├── COPYING │ │ ├── README │ │ └── shlex.go │ └── uuid │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go ├── gorilla │ └── websocket │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── compression.go │ │ ├── conn.go │ │ ├── doc.go │ │ ├── join.go │ │ ├── json.go │ │ ├── mask.go │ │ ├── mask_safe.go │ │ ├── prepared.go │ │ ├── proxy.go │ │ ├── server.go │ │ ├── tls_handshake.go │ │ ├── tls_handshake_116.go │ │ ├── util.go │ │ └── x_net_proxy.go ├── gregjones │ └── httpcache │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── httpcache.go ├── hashicorp │ ├── go-cleanhttp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cleanhttp.go │ │ ├── doc.go │ │ └── handlers.go │ └── go-retryablehttp │ │ ├── .gitignore │ │ ├── .go-version │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cert_error_go119.go │ │ ├── cert_error_go120.go │ │ ├── client.go │ │ └── roundtripper.go ├── huandu │ └── xstrings │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── common.go │ │ ├── convert.go │ │ ├── count.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── manipulate.go │ │ ├── stringbuilder.go │ │ ├── stringbuilder_go110.go │ │ └── translate.go ├── imdario │ └── mergo │ │ ├── .deepsource.toml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ └── mergo.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go ├── jaypipes │ ├── ghw │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── COPYING │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── SNAPSHOT.md │ │ ├── alias.go │ │ ├── doc.go │ │ ├── host.go │ │ └── pkg │ │ │ ├── accelerator │ │ │ ├── accelerator.go │ │ │ ├── accelerator_linux.go │ │ │ └── accelerator_stub.go │ │ │ ├── baseboard │ │ │ ├── baseboard.go │ │ │ ├── baseboard_linux.go │ │ │ ├── baseboard_stub.go │ │ │ └── baseboard_windows.go │ │ │ ├── bios │ │ │ ├── bios.go │ │ │ ├── bios_linux.go │ │ │ ├── bios_stub.go │ │ │ └── bios_windows.go │ │ │ ├── block │ │ │ ├── block.go │ │ │ ├── block_darwin.go │ │ │ ├── block_linux.go │ │ │ ├── block_stub.go │ │ │ └── block_windows.go │ │ │ ├── chassis │ │ │ ├── chassis.go │ │ │ ├── chassis_linux.go │ │ │ ├── chassis_stub.go │ │ │ └── chassis_windows.go │ │ │ ├── context │ │ │ └── context.go │ │ │ ├── cpu │ │ │ ├── cpu.go │ │ │ ├── cpu_darwin.go │ │ │ ├── cpu_linux.go │ │ │ ├── cpu_stub.go │ │ │ └── cpu_windows.go │ │ │ ├── gpu │ │ │ ├── gpu.go │ │ │ ├── gpu_linux.go │ │ │ ├── gpu_stub.go │ │ │ └── gpu_windows.go │ │ │ ├── linuxdmi │ │ │ └── dmi_linux.go │ │ │ ├── linuxpath │ │ │ └── path_linux.go │ │ │ ├── marshal │ │ │ └── marshal.go │ │ │ ├── memory │ │ │ ├── memory.go │ │ │ ├── memory_cache.go │ │ │ ├── memory_cache_linux.go │ │ │ ├── memory_linux.go │ │ │ ├── memory_stub.go │ │ │ └── memory_windows.go │ │ │ ├── net │ │ │ ├── net.go │ │ │ ├── net_linux.go │ │ │ ├── net_stub.go │ │ │ └── net_windows.go │ │ │ ├── option │ │ │ └── option.go │ │ │ ├── pci │ │ │ ├── address │ │ │ │ └── address.go │ │ │ ├── pci.go │ │ │ ├── pci_linux.go │ │ │ └── pci_stub.go │ │ │ ├── product │ │ │ ├── product.go │ │ │ ├── product_linux.go │ │ │ ├── product_stub.go │ │ │ └── product_windows.go │ │ │ ├── snapshot │ │ │ ├── clonetree.go │ │ │ ├── clonetree_block_linux.go │ │ │ ├── clonetree_gpu_linux.go │ │ │ ├── clonetree_linux.go │ │ │ ├── clonetree_net_linux.go │ │ │ ├── clonetree_pci_linux.go │ │ │ ├── clonetree_stub.go │ │ │ ├── pack.go │ │ │ ├── testdata.tar.gz │ │ │ ├── trace.go │ │ │ └── unpack.go │ │ │ ├── topology │ │ │ ├── topology.go │ │ │ ├── topology_linux.go │ │ │ ├── topology_stub.go │ │ │ └── topology_windows.go │ │ │ ├── unitutil │ │ │ └── unit.go │ │ │ └── util │ │ │ └── util.go │ └── pcidb │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── context.go │ │ ├── discover.go │ │ ├── main.go │ │ └── parse.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 ├── k8snetworkplumbingwg │ ├── govdpa │ │ ├── LICENSE │ │ └── pkg │ │ │ └── kvdpa │ │ │ ├── device.go │ │ │ ├── mgmtdev.go │ │ │ ├── netlink.go │ │ │ ├── vhost.go │ │ │ └── virtio.go │ ├── network-attachment-definition-client │ │ ├── LICENSE │ │ └── pkg │ │ │ └── apis │ │ │ └── k8s.cni.cncf.io │ │ │ ├── register.go │ │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ ├── sriov-network-device-plugin │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── types │ │ │ └── types.go │ │ │ └── utils │ │ │ ├── ddp.go │ │ │ ├── mocks │ │ │ ├── NetlinkProvider.go │ │ │ ├── SriovnetProvider.go │ │ │ └── VdpaProvider.go │ │ │ ├── netlink_provider.go │ │ │ ├── sriovnet_provider.go │ │ │ ├── testing.go │ │ │ ├── utils.go │ │ │ └── vdpa_provider.go │ └── sriovnet │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── file_access.go │ │ ├── mofed_ib_helper.go │ │ ├── pkg │ │ └── utils │ │ │ ├── filesystem │ │ │ ├── defaultfs.go │ │ │ ├── fakefs.go │ │ │ └── filesystem.go │ │ │ └── netlinkops │ │ │ └── netlinkops.go │ │ ├── sriovnet.go │ │ ├── sriovnet_aux.go │ │ ├── sriovnet_helper.go │ │ ├── sriovnet_switchdev.go │ │ └── utils.go ├── kr │ ├── pretty │ │ ├── .gitignore │ │ ├── License │ │ ├── Readme │ │ ├── diff.go │ │ ├── formatter.go │ │ ├── pretty.go │ │ └── zero.go │ └── text │ │ ├── License │ │ ├── Readme │ │ ├── doc.go │ │ ├── indent.go │ │ └── wrap.go ├── leodido │ └── go-urn │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── kind.go │ │ ├── machine.go │ │ ├── machine.go.rl │ │ ├── makefile │ │ ├── options.go │ │ ├── parsing_mode.go │ │ ├── scim.go │ │ ├── scim │ │ └── schema │ │ │ └── type.go │ │ ├── urn.go │ │ └── urn8141.go ├── liggitt │ └── tabwriter │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── tabwriter.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.go ├── mitchellh │ ├── copystructure │ │ ├── LICENSE │ │ ├── README.md │ │ ├── copier_time.go │ │ └── copystructure.go │ ├── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ └── homedir.go │ ├── go-wordwrap │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── wordwrap.go │ └── reflectwalk │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── location.go │ │ ├── location_string.go │ │ └── reflectwalk.go ├── moby │ ├── spdystream │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── NOTICE │ │ ├── README.md │ │ ├── connection.go │ │ ├── handlers.go │ │ ├── priority.go │ │ ├── spdy │ │ │ ├── dictionary.go │ │ │ ├── read.go │ │ │ ├── types.go │ │ │ └── write.go │ │ ├── stream.go │ │ └── utils.go │ └── term │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ascii.go │ │ ├── doc.go │ │ ├── proxy.go │ │ ├── term.go │ │ ├── term_unix.go │ │ ├── term_windows.go │ │ ├── termios_bsd.go │ │ ├── termios_nonbsd.go │ │ ├── termios_unix.go │ │ ├── termios_windows.go │ │ └── windows │ │ ├── ansi_reader.go │ │ ├── ansi_writer.go │ │ ├── console.go │ │ └── doc.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 ├── monochromegane │ └── go-gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── depth_holder.go │ │ ├── full_scan_patterns.go │ │ ├── gitignore.go │ │ ├── index_scan_patterns.go │ │ ├── initial_holder.go │ │ ├── match.go │ │ ├── pattern.go │ │ ├── patterns.go │ │ └── util.go ├── munnerz │ └── goautoneg │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go ├── mxk │ └── go-flowrate │ │ ├── LICENSE │ │ └── flowrate │ │ ├── flowrate.go │ │ ├── io.go │ │ └── util.go ├── onsi │ ├── ginkgo │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RELEASING.md │ │ │ ├── config │ │ │ └── deprecated.go │ │ │ ├── core_dsl.go │ │ │ ├── decorator_dsl.go │ │ │ ├── deprecated_dsl.go │ │ │ ├── formatter │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ └── formatter.go │ │ │ ├── ginkgo │ │ │ ├── build │ │ │ │ └── build_command.go │ │ │ ├── command │ │ │ │ ├── abort.go │ │ │ │ ├── command.go │ │ │ │ └── program.go │ │ │ ├── generators │ │ │ │ ├── boostrap_templates.go │ │ │ │ ├── bootstrap_command.go │ │ │ │ ├── generate_command.go │ │ │ │ ├── generate_templates.go │ │ │ │ └── generators_common.go │ │ │ ├── internal │ │ │ │ ├── compile.go │ │ │ │ ├── gocovmerge.go │ │ │ │ ├── profiles_and_reports.go │ │ │ │ ├── run.go │ │ │ │ ├── test_suite.go │ │ │ │ ├── utils.go │ │ │ │ └── verify_version.go │ │ │ ├── labels │ │ │ │ └── labels_command.go │ │ │ ├── main.go │ │ │ ├── outline │ │ │ │ ├── ginkgo.go │ │ │ │ ├── import.go │ │ │ │ ├── outline.go │ │ │ │ └── outline_command.go │ │ │ ├── run │ │ │ │ └── run_command.go │ │ │ ├── unfocus │ │ │ │ └── unfocus_command.go │ │ │ └── watch │ │ │ │ ├── delta.go │ │ │ │ ├── delta_tracker.go │ │ │ │ ├── dependencies.go │ │ │ │ ├── package_hash.go │ │ │ │ ├── package_hashes.go │ │ │ │ ├── suite.go │ │ │ │ └── watch_command.go │ │ │ ├── ginkgo_cli_dependencies.go │ │ │ ├── ginkgo_t_dsl.go │ │ │ ├── internal │ │ │ ├── counter.go │ │ │ ├── failer.go │ │ │ ├── focus.go │ │ │ ├── global │ │ │ │ └── init.go │ │ │ ├── group.go │ │ │ ├── interrupt_handler │ │ │ │ ├── interrupt_handler.go │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ └── sigquit_swallower_windows.go │ │ │ ├── node.go │ │ │ ├── ordering.go │ │ │ ├── output_interceptor.go │ │ │ ├── output_interceptor_unix.go │ │ │ ├── output_interceptor_wasm.go │ │ │ ├── output_interceptor_win.go │ │ │ ├── parallel_support │ │ │ │ ├── client_server.go │ │ │ │ ├── http_client.go │ │ │ │ ├── http_server.go │ │ │ │ ├── rpc_client.go │ │ │ │ ├── rpc_server.go │ │ │ │ └── server_handler.go │ │ │ ├── progress_report.go │ │ │ ├── progress_report_bsd.go │ │ │ ├── progress_report_unix.go │ │ │ ├── progress_report_wasm.go │ │ │ ├── progress_report_win.go │ │ │ ├── progress_reporter_manager.go │ │ │ ├── report_entry.go │ │ │ ├── spec.go │ │ │ ├── spec_context.go │ │ │ ├── suite.go │ │ │ ├── testingtproxy │ │ │ │ └── testing_t_proxy.go │ │ │ ├── tree.go │ │ │ └── writer.go │ │ │ ├── reporters │ │ │ ├── default_reporter.go │ │ │ ├── deprecated_reporter.go │ │ │ ├── json_report.go │ │ │ ├── junit_report.go │ │ │ ├── reporter.go │ │ │ └── teamcity_report.go │ │ │ ├── reporting_dsl.go │ │ │ ├── table_dsl.go │ │ │ └── types │ │ │ ├── code_location.go │ │ │ ├── config.go │ │ │ ├── deprecated_types.go │ │ │ ├── deprecation_support.go │ │ │ ├── enum_support.go │ │ │ ├── errors.go │ │ │ ├── file_filter.go │ │ │ ├── flags.go │ │ │ ├── label_filter.go │ │ │ ├── report_entry.go │ │ │ ├── types.go │ │ │ └── version.go │ └── gomega │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── format │ │ └── format.go │ │ ├── gomega_dsl.go │ │ ├── gstruct │ │ ├── elements.go │ │ ├── errors │ │ │ └── nested_types.go │ │ ├── fields.go │ │ ├── ignore.go │ │ ├── keys.go │ │ ├── pointer.go │ │ └── types.go │ │ ├── internal │ │ ├── assertion.go │ │ ├── async_assertion.go │ │ ├── duration_bundle.go │ │ ├── gomega.go │ │ ├── gutil │ │ │ ├── post_ioutil.go │ │ │ └── using_ioutil.go │ │ ├── polling_signal_error.go │ │ └── vetoptdesc.go │ │ ├── matchers.go │ │ ├── matchers │ │ ├── and.go │ │ ├── assignable_to_type_of_matcher.go │ │ ├── attributes_slice.go │ │ ├── be_a_directory.go │ │ ├── be_a_regular_file.go │ │ ├── be_an_existing_file.go │ │ ├── be_closed_matcher.go │ │ ├── be_comparable_to_matcher.go │ │ ├── be_element_of_matcher.go │ │ ├── be_empty_matcher.go │ │ ├── be_equivalent_to_matcher.go │ │ ├── be_false_matcher.go │ │ ├── be_identical_to.go │ │ ├── be_key_of_matcher.go │ │ ├── be_nil_matcher.go │ │ ├── be_numerically_matcher.go │ │ ├── be_sent_matcher.go │ │ ├── be_temporally_matcher.go │ │ ├── be_true_matcher.go │ │ ├── be_zero_matcher.go │ │ ├── consist_of.go │ │ ├── contain_element_matcher.go │ │ ├── contain_elements_matcher.go │ │ ├── contain_substring_matcher.go │ │ ├── equal_matcher.go │ │ ├── have_cap_matcher.go │ │ ├── have_each_matcher.go │ │ ├── have_exact_elements.go │ │ ├── have_existing_field_matcher.go │ │ ├── have_field.go │ │ ├── have_http_body_matcher.go │ │ ├── have_http_header_with_value_matcher.go │ │ ├── have_http_status_matcher.go │ │ ├── have_key_matcher.go │ │ ├── have_key_with_value_matcher.go │ │ ├── have_len_matcher.go │ │ ├── have_occurred_matcher.go │ │ ├── have_prefix_matcher.go │ │ ├── have_suffix_matcher.go │ │ ├── have_value.go │ │ ├── internal │ │ │ └── miter │ │ │ │ ├── type_support_iter.go │ │ │ │ └── type_support_noiter.go │ │ ├── match_error_matcher.go │ │ ├── match_json_matcher.go │ │ ├── match_regexp_matcher.go │ │ ├── match_xml_matcher.go │ │ ├── match_yaml_matcher.go │ │ ├── not.go │ │ ├── or.go │ │ ├── panic_matcher.go │ │ ├── receive_matcher.go │ │ ├── satisfy_matcher.go │ │ ├── semi_structured_data_support.go │ │ ├── succeed_matcher.go │ │ ├── support │ │ │ └── goraph │ │ │ │ ├── bipartitegraph │ │ │ │ ├── bipartitegraph.go │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ │ ├── node │ │ │ │ └── node.go │ │ │ │ └── util │ │ │ │ └── util.go │ │ ├── type_support.go │ │ └── with_transform.go │ │ └── types │ │ └── types.go ├── openshift-kni │ └── k8sreporter │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ └── reporter.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_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 │ │ ├── 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 │ │ ├── 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_machineosbuild.go │ │ │ │ ├── types_machineosconfig.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 │ ├── client-go │ │ ├── LICENSE │ │ ├── build │ │ │ ├── applyconfigurations │ │ │ │ ├── build │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── binarybuildsource.go │ │ │ │ │ │ ├── bitbucketwebhookcause.go │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── buildcondition.go │ │ │ │ │ │ ├── buildconfig.go │ │ │ │ │ │ ├── buildconfigspec.go │ │ │ │ │ │ ├── buildconfigstatus.go │ │ │ │ │ │ ├── buildoutput.go │ │ │ │ │ │ ├── buildpostcommitspec.go │ │ │ │ │ │ ├── buildsource.go │ │ │ │ │ │ ├── buildspec.go │ │ │ │ │ │ ├── buildstatus.go │ │ │ │ │ │ ├── buildstatusoutput.go │ │ │ │ │ │ ├── buildstatusoutputto.go │ │ │ │ │ │ ├── buildstrategy.go │ │ │ │ │ │ ├── buildtriggercause.go │ │ │ │ │ │ ├── buildtriggerpolicy.go │ │ │ │ │ │ ├── buildvolume.go │ │ │ │ │ │ ├── buildvolumemount.go │ │ │ │ │ │ ├── buildvolumesource.go │ │ │ │ │ │ ├── commonspec.go │ │ │ │ │ │ ├── commonwebhookcause.go │ │ │ │ │ │ ├── configmapbuildsource.go │ │ │ │ │ │ ├── custombuildstrategy.go │ │ │ │ │ │ ├── dockerbuildstrategy.go │ │ │ │ │ │ ├── genericwebhookcause.go │ │ │ │ │ │ ├── gitbuildsource.go │ │ │ │ │ │ ├── githubwebhookcause.go │ │ │ │ │ │ ├── gitlabwebhookcause.go │ │ │ │ │ │ ├── gitsourcerevision.go │ │ │ │ │ │ ├── imagechangecause.go │ │ │ │ │ │ ├── imagechangetrigger.go │ │ │ │ │ │ ├── imagechangetriggerstatus.go │ │ │ │ │ │ ├── imagelabel.go │ │ │ │ │ │ ├── imagesource.go │ │ │ │ │ │ ├── imagesourcepath.go │ │ │ │ │ │ ├── imagestreamtagreference.go │ │ │ │ │ │ ├── jenkinspipelinebuildstrategy.go │ │ │ │ │ │ ├── proxyconfig.go │ │ │ │ │ │ ├── secretbuildsource.go │ │ │ │ │ │ ├── secretlocalreference.go │ │ │ │ │ │ ├── secretspec.go │ │ │ │ │ │ ├── sourcebuildstrategy.go │ │ │ │ │ │ ├── sourcecontroluser.go │ │ │ │ │ │ ├── sourcerevision.go │ │ │ │ │ │ ├── stageinfo.go │ │ │ │ │ │ ├── stepinfo.go │ │ │ │ │ │ └── webhooktrigger.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── build │ │ │ │ └── v1 │ │ │ │ ├── build.go │ │ │ │ ├── build_client.go │ │ │ │ ├── buildconfig.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── featuregate.go │ │ │ │ │ │ ├── featuregateattributes.go │ │ │ │ │ │ ├── featuregatedetails.go │ │ │ │ │ │ ├── featuregateselection.go │ │ │ │ │ │ ├── featuregatespec.go │ │ │ │ │ │ ├── featuregatestatus.go │ │ │ │ │ │ ├── gcpplatformstatus.go │ │ │ │ │ │ ├── gcpresourcelabel.go │ │ │ │ │ │ ├── gcpresourcetag.go │ │ │ │ │ │ ├── githubidentityprovider.go │ │ │ │ │ │ ├── gitlabidentityprovider.go │ │ │ │ │ │ ├── googleidentityprovider.go │ │ │ │ │ │ ├── htpasswdidentityprovider.go │ │ │ │ │ │ ├── hubsource.go │ │ │ │ │ │ ├── hubsourcestatus.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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── policy.go │ │ │ │ │ │ ├── policyfulciosubject.go │ │ │ │ │ │ ├── policyidentity.go │ │ │ │ │ │ ├── policymatchexactrepository.go │ │ │ │ │ │ ├── policymatchremapidentity.go │ │ │ │ │ │ ├── policyrootoftrust.go │ │ │ │ │ │ ├── publickey.go │ │ │ │ │ │ ├── retentionnumberconfig.go │ │ │ │ │ │ ├── retentionpolicy.go │ │ │ │ │ │ ├── retentionsizeconfig.go │ │ │ │ │ │ └── userdefinedmonitoring.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── imagepolicy.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 │ │ │ │ │ ├── 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 │ │ ├── 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 │ │ │ │ ├── clientset.go │ │ │ │ ├── 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 │ │ ├── machine │ │ │ ├── applyconfigurations │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ └── machine │ │ │ │ │ ├── v1 │ │ │ │ │ ├── awsfailuredomain.go │ │ │ │ │ ├── awsfailuredomainplacement.go │ │ │ │ │ ├── awsresourcefilter.go │ │ │ │ │ ├── awsresourcereference.go │ │ │ │ │ ├── azurefailuredomain.go │ │ │ │ │ ├── controlplanemachineset.go │ │ │ │ │ ├── controlplanemachinesetspec.go │ │ │ │ │ ├── controlplanemachinesetstatus.go │ │ │ │ │ ├── controlplanemachinesetstrategy.go │ │ │ │ │ ├── controlplanemachinesettemplate.go │ │ │ │ │ ├── controlplanemachinesettemplateobjectmeta.go │ │ │ │ │ ├── failuredomains.go │ │ │ │ │ ├── gcpfailuredomain.go │ │ │ │ │ ├── nutanixfailuredomainreference.go │ │ │ │ │ ├── openshiftmachinev1beta1machinetemplate.go │ │ │ │ │ ├── openstackfailuredomain.go │ │ │ │ │ ├── rootvolume.go │ │ │ │ │ └── vspherefailuredomain.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── condition.go │ │ │ │ │ ├── lastoperation.go │ │ │ │ │ ├── lifecyclehook.go │ │ │ │ │ ├── lifecyclehooks.go │ │ │ │ │ ├── machine.go │ │ │ │ │ ├── machinehealthcheck.go │ │ │ │ │ ├── machinehealthcheckspec.go │ │ │ │ │ ├── machinehealthcheckstatus.go │ │ │ │ │ ├── machineset.go │ │ │ │ │ ├── machinesetspec.go │ │ │ │ │ ├── machinesetstatus.go │ │ │ │ │ ├── machinespec.go │ │ │ │ │ ├── machinestatus.go │ │ │ │ │ ├── machinetemplatespec.go │ │ │ │ │ ├── objectmeta.go │ │ │ │ │ ├── providerspec.go │ │ │ │ │ └── unhealthycondition.go │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── machine │ │ │ │ │ ├── v1 │ │ │ │ │ ├── controlplanemachineset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── machine_client.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── machine.go │ │ │ │ │ ├── machine_client.go │ │ │ │ │ ├── machinehealthcheck.go │ │ │ │ │ └── machineset.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── machine │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── controlplanemachineset.go │ │ │ │ │ └── interface.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── machine.go │ │ │ │ │ ├── machinehealthcheck.go │ │ │ │ │ └── machineset.go │ │ │ └── listers │ │ │ │ └── machine │ │ │ │ ├── v1 │ │ │ │ ├── controlplanemachineset.go │ │ │ │ └── expansion_generated.go │ │ │ │ └── v1beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── machine.go │ │ │ │ ├── machinehealthcheck.go │ │ │ │ └── machineset.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── networkinfo.go │ │ │ │ │ ├── objectreference.go │ │ │ │ │ ├── pinnedimagesetref.go │ │ │ │ │ └── poolsynchronizerstatus.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── buildinputs.go │ │ │ │ │ ├── buildoutputs.go │ │ │ │ │ ├── imagesecretobjectreference.go │ │ │ │ │ ├── machineconfignode.go │ │ │ │ │ ├── machineconfignodespec.go │ │ │ │ │ ├── machineconfignodespecmachineconfigversion.go │ │ │ │ │ ├── machineconfignodespecpinnedimageset.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 │ │ │ │ │ ├── machineconfigpool.go │ │ │ │ │ ├── machineconfiguration_client.go │ │ │ │ │ ├── machineosbuild.go │ │ │ │ │ └── machineosconfig.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── machineconfignode.go │ │ │ │ │ ├── machineconfiguration_client.go │ │ │ │ │ ├── machineosbuild.go │ │ │ │ │ ├── machineosconfig.go │ │ │ │ │ └── pinnedimageset.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── machineconfiguration │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── containerruntimeconfig.go │ │ │ │ │ ├── controllerconfig.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── kubeletconfig.go │ │ │ │ │ ├── machineconfig.go │ │ │ │ │ ├── machineconfigpool.go │ │ │ │ │ ├── machineosbuild.go │ │ │ │ │ └── machineosconfig.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── machineconfignode.go │ │ │ │ │ ├── machineosbuild.go │ │ │ │ │ ├── machineosconfig.go │ │ │ │ │ └── pinnedimageset.go │ │ │ └── listers │ │ │ │ └── machineconfiguration │ │ │ │ ├── v1 │ │ │ │ ├── containerruntimeconfig.go │ │ │ │ ├── controllerconfig.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── kubeletconfig.go │ │ │ │ ├── machineconfig.go │ │ │ │ ├── machineconfigpool.go │ │ │ │ ├── machineosbuild.go │ │ │ │ └── machineosconfig.go │ │ │ │ └── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── machineconfignode.go │ │ │ │ ├── machineosbuild.go │ │ │ │ ├── machineosconfig.go │ │ │ │ └── pinnedimageset.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── clientset │ │ │ └── versioned │ │ │ │ ├── clientset.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ ├── library-go │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── apiserver │ │ │ └── jsonpatch │ │ │ │ └── jsonpatch.go │ │ │ ├── certs │ │ │ ├── pem.go │ │ │ └── util.go │ │ │ ├── controller │ │ │ └── factory │ │ │ │ ├── base_controller.go │ │ │ │ ├── controller_context.go │ │ │ │ ├── eventfilters.go │ │ │ │ ├── factory.go │ │ │ │ └── interfaces.go │ │ │ ├── crypto │ │ │ ├── OWNERS │ │ │ ├── crypto.go │ │ │ └── rotation.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 │ │ │ ├── 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 │ └── machine-config-operator │ │ ├── LICENSE │ │ ├── internal │ │ └── clients │ │ │ └── builder.go │ │ └── pkg │ │ ├── apihelpers │ │ ├── apihelpers.go │ │ ├── machineosbuild.go │ │ └── machineosconfig.go │ │ ├── controller │ │ └── common │ │ │ ├── constants.go │ │ │ ├── controller.go │ │ │ ├── controller_context.go │ │ │ ├── dockerconfig.go │ │ │ ├── featuregates.go │ │ │ ├── helpers.go │ │ │ ├── images.go │ │ │ ├── layered_node_state.go │ │ │ ├── layered_pool_state.go │ │ │ ├── metrics.go │ │ │ ├── mos_state.go │ │ │ ├── reconcile.go │ │ │ └── wrappedqueue.go │ │ ├── daemon │ │ └── constants │ │ │ └── constants.go │ │ └── version │ │ ├── version.go │ │ ├── version_fcos.go │ │ └── version_scos.go ├── ovn-kubernetes │ └── libovsdb │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── cache │ │ ├── cache.go │ │ ├── doc.go │ │ └── uuidset.go │ │ ├── client │ │ ├── api.go │ │ ├── api_test_model.go │ │ ├── client.go │ │ ├── condition.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── metrics.go │ │ ├── monitor.go │ │ ├── options.go │ │ └── validation.go │ │ ├── database │ │ ├── database.go │ │ ├── doc.go │ │ ├── inmemory │ │ │ ├── doc.go │ │ │ └── inmemory.go │ │ ├── references.go │ │ └── transaction │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ └── transaction.go │ │ ├── mapper │ │ ├── info.go │ │ └── mapper.go │ │ ├── model │ │ ├── client.go │ │ ├── database.go │ │ └── model.go │ │ ├── ovsdb │ │ ├── bindings.go │ │ ├── condition.go │ │ ├── error.go │ │ ├── map.go │ │ ├── monitor_select.go │ │ ├── mutation.go │ │ ├── named_uuid.go │ │ ├── notation.go │ │ ├── row.go │ │ ├── rpc.go │ │ ├── schema.go │ │ ├── serverdb │ │ │ ├── .gitignore │ │ │ ├── database.go │ │ │ ├── gen.go │ │ │ └── model.go │ │ ├── set.go │ │ ├── update3.go │ │ ├── updates.go │ │ ├── updates2.go │ │ └── uuid.go │ │ ├── server │ │ ├── doc.go │ │ ├── monitor.go │ │ └── server.go │ │ └── updates │ │ ├── difference.go │ │ ├── doc.go │ │ ├── merge.go │ │ ├── mutate.go │ │ ├── references.go │ │ └── updates.go ├── peterbourgon │ └── diskv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compression.go │ │ ├── diskv.go │ │ └── index.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── prometheus-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 │ │ │ ├── globalsmtpconfig.go │ │ │ ├── hostalias.go │ │ │ ├── hostport.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 │ │ │ ├── prometheustracingconfig.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 │ │ └── versioned │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── monitoring │ │ └── v1 │ │ ├── alertmanager.go │ │ ├── doc.go │ │ ├── generated_expansion.go │ │ ├── monitoring_client.go │ │ ├── podmonitor.go │ │ ├── probe.go │ │ ├── prometheus.go │ │ ├── prometheusrule.go │ │ ├── servicemonitor.go │ │ └── thanosruler.go ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── internal │ │ │ └── github.com │ │ │ │ └── golang │ │ │ │ └── gddo │ │ │ │ ├── LICENSE │ │ │ │ └── httputil │ │ │ │ ├── header │ │ │ │ └── header.go │ │ │ │ └── negotiate.go │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── collectorfunc.go │ │ │ ├── collectors │ │ │ ├── collectors.go │ │ │ ├── dbstats_collector.go │ │ │ ├── expvar_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ └── process_collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_darwin.go │ │ │ ├── process_collector_mem_cgo_darwin.c │ │ │ ├── process_collector_mem_cgo_darwin.go │ │ │ ├── process_collector_mem_nocgo_darwin.go │ │ │ ├── process_collector_not_supported.go │ │ │ ├── process_collector_procfsenabled.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ ├── internal │ │ │ │ └── compression.go │ │ │ └── option.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ ├── vnext.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── labelset_string.go │ │ │ ├── metadata.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ ├── value.go │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ └── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_statfs_notype.go │ │ ├── fs_statfs_type.go │ │ ├── fscache.go │ │ ├── internal │ │ ├── fs │ │ │ └── fs.go │ │ └── util │ │ │ ├── parse.go │ │ │ ├── readfile.go │ │ │ ├── sysreadfile.go │ │ │ ├── sysreadfile_compat.go │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_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 ├── rogpeppe │ └── go-internal │ │ ├── LICENSE │ │ └── fmtsort │ │ ├── mapelem.go │ │ └── sort.go ├── russross │ └── blackfriday │ │ └── v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── block.go │ │ ├── doc.go │ │ ├── entities.go │ │ ├── esc.go │ │ ├── html.go │ │ ├── inline.go │ │ ├── markdown.go │ │ ├── node.go │ │ └── smartypants.go ├── safchain │ └── ethtool │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── ethtool.go │ │ ├── ethtool_cmd.go │ │ └── ethtool_msglvl.go ├── samber │ └── lo │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── channel.go │ │ ├── concurrency.go │ │ ├── condition.go │ │ ├── constraints.go │ │ ├── errors.go │ │ ├── find.go │ │ ├── func.go │ │ ├── internal │ │ ├── constraints │ │ │ ├── constraints.go │ │ │ ├── ordered_go118.go │ │ │ └── ordered_go121.go │ │ └── rand │ │ │ ├── ordered_go118.go │ │ │ └── ordered_go122.go │ │ ├── intersect.go │ │ ├── map.go │ │ ├── math.go │ │ ├── retry.go │ │ ├── slice.go │ │ ├── string.go │ │ ├── time.go │ │ ├── tuples.go │ │ ├── type_manipulation.go │ │ └── types.go ├── shopspring │ └── decimal │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decimal-go.go │ │ ├── decimal.go │ │ └── rounding.go ├── spf13 │ ├── afero │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── httpFs.go │ │ ├── internal │ │ │ └── common │ │ │ │ └── adapters.go │ │ ├── iofs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── symlink.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cast │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cast.go │ │ ├── caste.go │ │ └── timeformattype_string.go │ ├── 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 │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .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 │ │ ├── ipnet_slice.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 ├── 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 │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ ├── mock │ │ ├── doc.go │ │ └── mock.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go ├── vincent-petithory │ └── dataurl │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dataurl.go │ │ ├── doc.go │ │ ├── lex.go │ │ ├── rfc2396.go │ │ └── wercker.yml ├── vishvananda │ ├── netlink │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── addr.go │ │ ├── addr_linux.go │ │ ├── bpf_linux.go │ │ ├── bridge_linux.go │ │ ├── chain.go │ │ ├── chain_linux.go │ │ ├── class.go │ │ ├── class_linux.go │ │ ├── conntrack_linux.go │ │ ├── conntrack_unspecified.go │ │ ├── devlink_linux.go │ │ ├── filter.go │ │ ├── filter_linux.go │ │ ├── fou.go │ │ ├── fou_linux.go │ │ ├── fou_unspecified.go │ │ ├── genetlink_linux.go │ │ ├── genetlink_unspecified.go │ │ ├── gtp_linux.go │ │ ├── handle_linux.go │ │ ├── handle_unspecified.go │ │ ├── inet_diag.go │ │ ├── ioctl_linux.go │ │ ├── ipset_linux.go │ │ ├── link.go │ │ ├── link_linux.go │ │ ├── link_tuntap_linux.go │ │ ├── neigh.go │ │ ├── neigh_linux.go │ │ ├── netlink.go │ │ ├── netlink_linux.go │ │ ├── netlink_unspecified.go │ │ ├── netns_linux.go │ │ ├── netns_unspecified.go │ │ ├── nl │ │ │ ├── addr_linux.go │ │ │ ├── bridge_linux.go │ │ │ ├── conntrack_linux.go │ │ │ ├── devlink_linux.go │ │ │ ├── genetlink_linux.go │ │ │ ├── ip6tnl_linux.go │ │ │ ├── ipset_linux.go │ │ │ ├── link_linux.go │ │ │ ├── lwt_linux.go │ │ │ ├── mpls_linux.go │ │ │ ├── nl_linux.go │ │ │ ├── nl_unspecified.go │ │ │ ├── parse_attr_linux.go │ │ │ ├── rdma_link_linux.go │ │ │ ├── route_linux.go │ │ │ ├── seg6_linux.go │ │ │ ├── seg6local_linux.go │ │ │ ├── syscall.go │ │ │ ├── tc_linux.go │ │ │ ├── vdpa_linux.go │ │ │ ├── xfrm_linux.go │ │ │ ├── xfrm_monitor_linux.go │ │ │ ├── xfrm_policy_linux.go │ │ │ └── xfrm_state_linux.go │ │ ├── order.go │ │ ├── proc_event_linux.go │ │ ├── protinfo.go │ │ ├── protinfo_linux.go │ │ ├── qdisc.go │ │ ├── qdisc_linux.go │ │ ├── rdma_link_linux.go │ │ ├── route.go │ │ ├── route_linux.go │ │ ├── route_unspecified.go │ │ ├── rule.go │ │ ├── rule_linux.go │ │ ├── socket.go │ │ ├── socket_linux.go │ │ ├── tcp.go │ │ ├── tcp_linux.go │ │ ├── unix_diag.go │ │ ├── vdpa_linux.go │ │ ├── virtio.go │ │ ├── xfrm_linux.go │ │ ├── xfrm_monitor_linux.go │ │ ├── xfrm_policy_linux.go │ │ ├── xfrm_state_linux.go │ │ └── xfrm_unspecified.go │ └── netns │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── netns_linux.go │ │ ├── netns_others.go │ │ ├── nshandle_linux.go │ │ └── nshandle_others.go ├── x448 │ └── float16 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── float16.go └── xlab │ └── treeprint │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── helpers.go │ ├── struct.go │ └── treeprint.go ├── go.opentelemetry.io └── otel │ ├── LICENSE │ ├── attribute │ ├── README.md │ ├── doc.go │ ├── encoder.go │ ├── filter.go │ ├── iterator.go │ ├── key.go │ ├── kv.go │ ├── set.go │ ├── type_string.go │ └── value.go │ ├── codes │ ├── README.md │ ├── codes.go │ └── doc.go │ ├── internal │ ├── attribute │ │ └── attribute.go │ ├── gen.go │ └── rawhelpers.go │ └── trace │ ├── LICENSE │ ├── README.md │ ├── config.go │ ├── context.go │ ├── doc.go │ ├── embedded │ ├── README.md │ └── embedded.go │ ├── nonrecording.go │ ├── noop.go │ ├── provider.go │ ├── span.go │ ├── trace.go │ ├── tracer.go │ └── tracestate.go ├── go.uber.org ├── mock │ ├── AUTHORS │ ├── LICENSE │ └── gomock │ │ ├── call.go │ │ ├── callset.go │ │ ├── controller.go │ │ ├── doc.go │ │ ├── matchers.go │ │ └── string.go ├── multierr │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── error.go │ ├── error_post_go120.go │ └── error_pre_go120.go └── zap │ ├── .codecov.yml │ ├── .gitignore │ ├── .golangci.yml │ ├── .readme.tmpl │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── array.go │ ├── buffer │ ├── buffer.go │ └── pool.go │ ├── checklicense.sh │ ├── config.go │ ├── doc.go │ ├── encoder.go │ ├── error.go │ ├── field.go │ ├── flag.go │ ├── glide.yaml │ ├── global.go │ ├── http_handler.go │ ├── internal │ ├── bufferpool │ │ └── bufferpool.go │ ├── color │ │ └── color.go │ ├── exit │ │ └── exit.go │ ├── level_enabler.go │ ├── pool │ │ └── pool.go │ └── stacktrace │ │ └── stack.go │ ├── level.go │ ├── logger.go │ ├── options.go │ ├── sink.go │ ├── sugar.go │ ├── time.go │ ├── writer.go │ └── zapcore │ ├── buffered_write_syncer.go │ ├── clock.go │ ├── console_encoder.go │ ├── core.go │ ├── doc.go │ ├── encoder.go │ ├── entry.go │ ├── error.go │ ├── field.go │ ├── hook.go │ ├── increase_level.go │ ├── json_encoder.go │ ├── lazy_with.go │ ├── level.go │ ├── level_strings.go │ ├── marshaler.go │ ├── memory_encoder.go │ ├── reflected_encoder.go │ ├── sampler.go │ ├── tee.go │ └── write_syncer.go ├── go4.org ├── AUTHORS ├── LICENSE └── errorutil │ └── highlight.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── bcrypt │ │ ├── base64.go │ │ └── bcrypt.go │ ├── blowfish │ │ ├── block.go │ │ ├── cipher.go │ │ └── const.go │ ├── pbkdf2 │ │ └── pbkdf2.go │ ├── scrypt │ │ └── scrypt.go │ └── sha3 │ │ ├── doc.go │ │ ├── hashes.go │ │ ├── hashes_noasm.go │ │ ├── keccakf.go │ │ ├── keccakf_amd64.go │ │ ├── keccakf_amd64.s │ │ ├── sha3.go │ │ ├── sha3_s390x.go │ │ ├── sha3_s390x.s │ │ ├── shake.go │ │ └── shake_noasm.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── lazyregexp │ │ │ └── lazyre.go │ ├── module │ │ ├── module.go │ │ └── pseudo.go │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ └── context.go │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ └── table.go │ │ ├── charset │ │ │ └── charset.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── escape.go │ │ ├── foreign.go │ │ ├── iter.go │ │ ├── node.go │ │ ├── parse.go │ │ ├── render.go │ │ └── token.go │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── 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 │ │ ├── socks │ │ │ ├── client.go │ │ │ └── socks.go │ │ └── timeseries │ │ │ └── timeseries.go │ ├── proxy │ │ ├── dial.go │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ ├── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ └── websocket │ │ ├── client.go │ │ ├── dial.go │ │ ├── hybi.go │ │ ├── server.go │ │ └── websocket.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── deviceauth.go │ ├── internal │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── oauth2.go │ ├── pkce.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ └── errgroup │ │ └── errgroup.go │ ├── 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 │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── term.go │ ├── term_plan9.go │ ├── term_unix.go │ ├── term_unix_bsd.go │ ├── term_unix_other.go │ ├── term_unsupported.go │ ├── term_windows.go │ └── terminal.go │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── htmlindex │ │ │ ├── htmlindex.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── identifier │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── euckr.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ └── tables.go │ │ ├── traditionalchinese │ │ │ ├── big5.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ └── unicode.go │ ├── internal │ │ ├── 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 │ │ ├── tag │ │ │ └── tag.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ └── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ └── trie.go │ ├── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ │ ├── rate.go │ │ └── sometimes.go │ └── tools │ ├── LICENSE │ ├── PATENTS │ ├── cover │ └── profile.go │ ├── go │ ├── ast │ │ ├── astutil │ │ │ ├── enclosing.go │ │ │ ├── imports.go │ │ │ ├── rewrite.go │ │ │ └── util.go │ │ └── inspector │ │ │ ├── inspector.go │ │ │ ├── iter.go │ │ │ └── typeof.go │ ├── gcexportdata │ │ ├── gcexportdata.go │ │ └── importer.go │ ├── packages │ │ ├── doc.go │ │ ├── external.go │ │ ├── golist.go │ │ ├── golist_overlay.go │ │ ├── loadmode_string.go │ │ ├── packages.go │ │ └── visit.go │ └── types │ │ ├── objectpath │ │ └── objectpath.go │ │ └── typeutil │ │ ├── callee.go │ │ ├── imports.go │ │ ├── map.go │ │ ├── methodsetcache.go │ │ └── ui.go │ ├── imports │ └── forward.go │ └── internal │ ├── aliases │ ├── aliases.go │ └── aliases_go122.go │ ├── event │ ├── core │ │ ├── event.go │ │ ├── export.go │ │ └── fast.go │ ├── doc.go │ ├── event.go │ ├── keys │ │ ├── keys.go │ │ ├── standard.go │ │ └── util.go │ └── label │ │ └── label.go │ ├── gcimporter │ ├── bimport.go │ ├── exportdata.go │ ├── gcimporter.go │ ├── iexport.go │ ├── iimport.go │ ├── iimport_go122.go │ ├── predeclared.go │ ├── support.go │ └── ureader_yes.go │ ├── gocommand │ ├── invoke.go │ ├── vendor.go │ └── version.go │ ├── gopathwalk │ └── walk.go │ ├── imports │ ├── fix.go │ ├── imports.go │ ├── mod.go │ ├── mod_cache.go │ ├── sortimports.go │ ├── source.go │ ├── source_env.go │ └── source_modindex.go │ ├── modindex │ ├── directories.go │ ├── index.go │ ├── lookup.go │ ├── modindex.go │ ├── symbols.go │ └── types.go │ ├── packagesinternal │ └── packages.go │ ├── pkgbits │ ├── codes.go │ ├── decoder.go │ ├── doc.go │ ├── encoder.go │ ├── flags.go │ ├── reloc.go │ ├── support.go │ ├── sync.go │ ├── syncmarker_string.go │ └── version.go │ ├── stdlib │ ├── manifest.go │ └── stdlib.go │ ├── typeparams │ ├── common.go │ ├── coretype.go │ ├── free.go │ ├── normalize.go │ ├── termlist.go │ └── typeterm.go │ ├── typesinternal │ ├── element.go │ ├── errorcode.go │ ├── errorcode_string.go │ ├── qualifier.go │ ├── recv.go │ ├── toonew.go │ ├── types.go │ └── zerovalue.go │ └── versions │ ├── features.go │ ├── gover.go │ ├── types.go │ └── versions.go ├── gomodules.xyz └── jsonpatch │ └── v2 │ ├── LICENSE │ └── jsonpatch.go ├── google.golang.org ├── genproto │ └── googleapis │ │ └── rpc │ │ ├── LICENSE │ │ └── 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 │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── pickfirst.go │ │ │ └── pickfirstleaf │ │ │ │ └── pickfirstleaf.go │ │ ├── roundrobin │ │ │ └── roundrobin.go │ │ └── subconn.go │ ├── balancer_wrapper.go │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ ├── call.go │ ├── channelz │ │ └── channelz.go │ ├── clientconn.go │ ├── codec.go │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ ├── connectivity │ │ └── connectivity.go │ ├── credentials │ │ ├── credentials.go │ │ ├── insecure │ │ │ └── insecure.go │ │ └── tls.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ │ ├── encoding.go │ │ ├── encoding_v2.go │ │ └── proto │ │ │ └── proto.go │ ├── experimental │ │ └── stats │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── internal │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── interceptor.go │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ └── gracefulswitch │ │ │ │ ├── config.go │ │ │ │ └── gracefulswitch.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── channelz │ │ │ ├── channel.go │ │ │ ├── channelmap.go │ │ │ ├── funcs.go │ │ │ ├── logging.go │ │ │ ├── server.go │ │ │ ├── socket.go │ │ │ ├── subchannel.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_nonlinux.go │ │ │ └── trace.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── spiffe.go │ │ │ ├── syscallconn.go │ │ │ └── util.go │ │ ├── envconfig │ │ │ ├── envconfig.go │ │ │ ├── observability.go │ │ │ └── xds.go │ │ ├── experimental.go │ │ ├── grpclog │ │ │ └── prefix_logger.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ ├── 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 │ │ ├── stats │ │ │ ├── labels.go │ │ │ └── metrics_recorder_list.go │ │ ├── status │ │ │ └── status.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ ├── tcp_keepalive_others.go │ │ ├── tcp_keepalive_unix.go │ │ ├── tcp_keepalive_windows.go │ │ └── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── client_stream.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── logging.go │ │ │ ├── networktype │ │ │ └── networktype.go │ │ │ ├── proxy.go │ │ │ ├── server_stream.go │ │ │ └── transport.go │ ├── keepalive │ │ └── keepalive.go │ ├── mem │ │ ├── buffer_pool.go │ │ ├── buffer_slice.go │ │ └── buffers.go │ ├── metadata │ │ └── metadata.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── preloader.go │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── stream_interfaces.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ └── version.go └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── protodelim │ │ └── protodelim.go │ ├── protojson │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── well_known_types.go │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── editionssupport │ │ └── editions.go │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ └── errors.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ └── placeholder.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── name.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── api_export_opaque.go │ │ ├── bitmap.go │ │ ├── bitmap_race.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_field_opaque.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_message.go │ │ ├── codec_message_opaque.go │ │ ├── codec_messageset.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── lazy.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_opaque.go │ │ ├── message_opaque_gen.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_field_gen.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_opaque.go │ │ ├── presence.go │ │ └── validate.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── protolazy │ │ ├── bufferreader.go │ │ ├── lazy.go │ │ └── pointer_unsafe.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ ├── strings_unsafe_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 │ ├── wrapperopaque.go │ └── wrappers.go │ ├── protoadapt │ └── convert.go │ ├── reflect │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_union.go │ │ ├── value_unsafe_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 │ ├── gofeaturespb │ └── go_features.pb.go │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ └── timestamppb │ └── timestamp.pb.go ├── gopkg.in ├── check.v1 │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── TODO │ ├── benchmark.go │ ├── check.go │ ├── checkers.go │ ├── helpers.go │ ├── printer.go │ ├── reporter.go │ └── run.go ├── evanphx │ └── json-patch.v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ └── patch.go ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go ├── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── howett.net └── plist │ ├── .gitignore │ ├── .gitlab-ci.yml │ ├── LICENSE │ ├── README.md │ ├── bplist.go │ ├── bplist_generator.go │ ├── bplist_parser.go │ ├── decode.go │ ├── doc.go │ ├── encode.go │ ├── fuzz.go │ ├── marshal.go │ ├── must.go │ ├── plist.go │ ├── plist_types.go │ ├── text_generator.go │ ├── text_parser.go │ ├── text_tables.go │ ├── typeinfo.go │ ├── unmarshal.go │ ├── util.go │ ├── xml_generator.go │ ├── xml_parser.go │ ├── zerocopy.go │ └── zerocopy_appengine.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 │ │ ├── clientset │ │ └── clientset │ │ │ ├── clientset.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── apiextensions │ │ │ ├── v1 │ │ │ ├── apiextensions_client.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ ├── apiextensions_client.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ │ ├── informers │ │ └── externalversions │ │ │ ├── apiextensions │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── customresourcedefinition.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── customresourcedefinition.go │ │ │ │ └── interface.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ │ └── listers │ │ └── apiextensions │ │ ├── v1 │ │ ├── customresourcedefinition.go │ │ └── expansion_generated.go │ │ └── v1beta1 │ │ ├── customresourcedefinition.go │ │ └── expansion_generated.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 │ │ ├── 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 │ │ │ │ │ ├── unstructuredscheme │ │ │ │ │ │ └── scheme.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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── duration │ │ │ │ └── duration.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── framer │ │ │ │ └── framer.go │ │ │ ├── httpstream │ │ │ │ ├── doc.go │ │ │ │ ├── httpstream.go │ │ │ │ ├── spdy │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ └── upgrade.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 │ │ │ ├── proxy │ │ │ │ ├── dial.go │ │ │ │ ├── doc.go │ │ │ │ ├── transport.go │ │ │ │ └── upgradeaware.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 │ │ │ └── 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 │ │ ├── netutil │ │ └── addr.go │ │ └── reflect │ │ └── deep_equal.go ├── apiserver │ ├── LICENSE │ └── pkg │ │ └── authentication │ │ └── user │ │ ├── doc.go │ │ └── user.go ├── cli-runtime │ ├── LICENSE │ └── pkg │ │ ├── genericclioptions │ │ ├── builder_flags.go │ │ ├── builder_flags_fake.go │ │ ├── client_config.go │ │ ├── command_headers.go │ │ ├── config_flags.go │ │ ├── config_flags_fake.go │ │ ├── doc.go │ │ ├── filename_flags.go │ │ ├── io_options.go │ │ ├── json_yaml_flags.go │ │ ├── jsonpath_flags.go │ │ ├── kube_template_flags.go │ │ ├── name_flags.go │ │ ├── print_flags.go │ │ ├── record_flags.go │ │ └── template_flags.go │ │ ├── genericiooptions │ │ └── io_options.go │ │ ├── printers │ │ ├── discard.go │ │ ├── doc.go │ │ ├── interface.go │ │ ├── json.go │ │ ├── jsonpath.go │ │ ├── managedfields.go │ │ ├── name.go │ │ ├── sourcechecker.go │ │ ├── tableprinter.go │ │ ├── tabwriter.go │ │ ├── template.go │ │ ├── terminal.go │ │ ├── typesetter.go │ │ ├── warningprinter.go │ │ └── yaml.go │ │ └── resource │ │ ├── builder.go │ │ ├── client.go │ │ ├── crd_finder.go │ │ ├── doc.go │ │ ├── fake.go │ │ ├── fallback_query_param_verifier.go │ │ ├── helper.go │ │ ├── interfaces.go │ │ ├── kustomizevisitor.go │ │ ├── mapper.go │ │ ├── metadata_decoder.go │ │ ├── query_param_verifier.go │ │ ├── query_param_verifier_v3.go │ │ ├── result.go │ │ ├── scheme.go │ │ ├── selector.go │ │ └── visitor.go ├── client-go │ ├── LICENSE │ ├── applyconfigurations │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ ├── discovery │ │ ├── aggregated_discovery.go │ │ ├── cached │ │ │ ├── disk │ │ │ │ ├── cached_discovery.go │ │ │ │ └── round_tripper.go │ │ │ └── memory │ │ │ │ └── memcache.go │ │ ├── discovery_client.go │ │ ├── doc.go │ │ └── helper.go │ ├── dynamic │ │ ├── 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 │ │ ├── import.go │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed │ │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── v1alpha1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingadmissionpolicy.go │ │ │ │ ├── mutatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.go │ │ │ └── v1beta1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── storageversion.go │ │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── v1beta1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── v1alpha1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── selfsubjectreview.go │ │ │ └── v1beta1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── selfsubjectreview.go │ │ │ │ └── tokenreview.go │ │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ └── v1beta1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2beta1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ └── v1beta1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── v1alpha1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── clustertrustbundle.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.go │ │ │ ├── v1alpha2 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── leasecandidate.go │ │ │ └── v1beta1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.go │ │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── core_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.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 │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── discovery_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpointslice.go │ │ │ │ └── generated_expansion.go │ │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── events_client.go │ │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── events_client.go │ │ │ │ └── generated_expansion.go │ │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ └── replicaset.go │ │ │ ├── flowcontrol │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── doc.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── networking_client.go │ │ │ │ └── networkpolicy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ └── servicecidr.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ipaddress.go │ │ │ │ ├── networking_client.go │ │ │ │ └── servicecidr.go │ │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── resource │ │ │ ├── v1alpha3 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ └── v1beta1 │ │ │ │ ├── deviceclass.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceslice.go │ │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── storage │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── volumeattachment.go │ │ │ │ └── volumeattributesclass.go │ │ │ └── storagemigration │ │ │ └── v1alpha1 │ │ │ ├── doc.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 │ ├── metadata │ │ ├── interface.go │ │ └── metadata.go │ ├── openapi │ │ ├── OWNERS │ │ ├── cached │ │ │ ├── client.go │ │ │ └── groupversion.go │ │ ├── client.go │ │ ├── groupversion.go │ │ └── typeconverter.go │ ├── openapi3 │ │ └── root.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 │ │ │ ├── OWNERS │ │ │ ├── azure │ │ │ └── azure_stub.go │ │ │ ├── exec │ │ │ ├── exec.go │ │ │ └── metrics.go │ │ │ ├── gcp │ │ │ └── gcp_stub.go │ │ │ ├── oidc │ │ │ └── oidc.go │ │ │ ├── plugins.go │ │ │ └── plugins_providers.go │ ├── rest │ │ ├── OWNERS │ │ ├── client.go │ │ ├── config.go │ │ ├── exec.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 │ ├── scale │ │ ├── client.go │ │ ├── doc.go │ │ ├── interfaces.go │ │ ├── scheme │ │ │ ├── appsint │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── appsv1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── appsv1beta2 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── autoscalingv1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── doc.go │ │ │ ├── extensionsint │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── extensionsv1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── util.go │ ├── testing │ │ ├── actions.go │ │ ├── fake.go │ │ ├── fixture.go │ │ └── interface.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── template │ │ │ ├── exec.go │ │ │ └── funcs.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 │ │ ├── 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 │ │ └── remotecommand │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── errorstream.go │ │ │ ├── fallback.go │ │ │ ├── reader.go │ │ │ ├── remotecommand.go │ │ │ ├── resize.go │ │ │ ├── spdy.go │ │ │ ├── v1.go │ │ │ ├── v2.go │ │ │ ├── v3.go │ │ │ ├── v4.go │ │ │ ├── v5.go │ │ │ └── websocket.go │ ├── transport │ │ ├── OWNERS │ │ ├── cache.go │ │ ├── cache_go118.go │ │ ├── cert_rotation.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ ├── spdy │ │ │ └── spdy.go │ │ ├── token_source.go │ │ ├── transport.go │ │ └── websocket │ │ │ └── roundtripper.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 │ │ ├── exec │ │ └── exec.go │ │ ├── flowcontrol │ │ ├── backoff.go │ │ └── throttle.go │ │ ├── homedir │ │ └── homedir.go │ │ ├── jsonpath │ │ ├── doc.go │ │ ├── jsonpath.go │ │ ├── node.go │ │ └── parser.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 ├── code-generator │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── SECURITY_CONTACTS │ ├── cmd │ │ ├── applyconfiguration-gen │ │ │ ├── args │ │ │ │ ├── args.go │ │ │ │ └── externaltypes.go │ │ │ ├── generators │ │ │ │ ├── applyconfiguration.go │ │ │ │ ├── internal.go │ │ │ │ ├── jsontagutil.go │ │ │ │ ├── openapi.go │ │ │ │ ├── refgraph.go │ │ │ │ ├── targets.go │ │ │ │ ├── types.go │ │ │ │ └── util.go │ │ │ └── main.go │ │ ├── client-gen │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── args │ │ │ │ ├── args.go │ │ │ │ ├── gvpackages.go │ │ │ │ └── gvtype.go │ │ │ ├── generators │ │ │ │ ├── client_generator.go │ │ │ │ ├── fake │ │ │ │ │ ├── fake_client_generator.go │ │ │ │ │ ├── generator_fake_for_clientset.go │ │ │ │ │ ├── generator_fake_for_group.go │ │ │ │ │ └── generator_fake_for_type.go │ │ │ │ ├── generator_for_clientset.go │ │ │ │ ├── generator_for_expansion.go │ │ │ │ ├── generator_for_group.go │ │ │ │ ├── generator_for_type.go │ │ │ │ ├── scheme │ │ │ │ │ └── generator_for_scheme.go │ │ │ │ └── util │ │ │ │ │ ├── gvpackages.go │ │ │ │ │ └── tags.go │ │ │ ├── main.go │ │ │ └── types │ │ │ │ ├── helpers.go │ │ │ │ └── types.go │ │ ├── conversion-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── conversion.go │ │ │ └── main.go │ │ ├── deepcopy-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── deepcopy.go │ │ │ └── main.go │ │ ├── defaulter-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── defaulter.go │ │ │ └── main.go │ │ ├── go-to-protobuf │ │ │ ├── .gitignore │ │ │ ├── OWNERS │ │ │ ├── main.go │ │ │ └── protobuf │ │ │ │ ├── cmd.go │ │ │ │ ├── generator.go │ │ │ │ ├── import_tracker.go │ │ │ │ ├── namer.go │ │ │ │ ├── package.go │ │ │ │ ├── parser.go │ │ │ │ └── tags.go │ │ ├── informer-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ ├── factory.go │ │ │ │ ├── factoryinterface.go │ │ │ │ ├── generic.go │ │ │ │ ├── groupinterface.go │ │ │ │ ├── informer.go │ │ │ │ ├── targets.go │ │ │ │ ├── types.go │ │ │ │ └── versioninterface.go │ │ │ └── main.go │ │ ├── lister-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ ├── expansion.go │ │ │ │ └── lister.go │ │ │ └── main.go │ │ └── register-gen │ │ │ ├── args │ │ │ └── args.go │ │ │ ├── generators │ │ │ ├── register_external.go │ │ │ └── targets.go │ │ │ └── main.go │ ├── code-of-conduct.md │ ├── doc.go │ ├── generate-groups.sh │ ├── generate-internal-groups.sh │ ├── kube_codegen.sh │ ├── pkg │ │ ├── namer │ │ │ └── tag-override.go │ │ └── util │ │ │ └── plural_exceptions.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── reflect │ │ │ └── type.go │ └── tools.go ├── component-base │ ├── LICENSE │ ├── cli │ │ └── flag │ │ │ ├── ciphersuites_flag.go │ │ │ ├── colon_separated_multimap_string_string.go │ │ │ ├── configuration_map.go │ │ │ ├── flags.go │ │ │ ├── langle_separated_map_string_string.go │ │ │ ├── map_string_bool.go │ │ │ ├── map_string_string.go │ │ │ ├── namedcertkey_flag.go │ │ │ ├── noop.go │ │ │ ├── omitempty.go │ │ │ ├── sectioned.go │ │ │ ├── string_flag.go │ │ │ ├── string_slice_flag.go │ │ │ └── tristate.go │ ├── metrics │ │ ├── OWNERS │ │ ├── buckets.go │ │ ├── collector.go │ │ ├── counter.go │ │ ├── desc.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 │ │ ├── prometheusextension │ │ │ ├── timing_histogram.go │ │ │ ├── timing_histogram_vec.go │ │ │ ├── weighted_histogram.go │ │ │ └── weighted_histogram_vec.go │ │ ├── registry.go │ │ ├── summary.go │ │ ├── timing_histogram.go │ │ ├── value.go │ │ ├── version.go │ │ ├── version_parser.go │ │ └── wrappers.go │ └── version │ │ ├── OWNERS │ │ ├── base.go │ │ ├── dynamic.go │ │ └── version.go ├── gengo │ └── v2 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── comments.go │ │ ├── execute.go │ │ ├── generator │ │ ├── doc.go │ │ ├── error_tracker.go │ │ ├── execute.go │ │ ├── generator.go │ │ ├── go_generator.go │ │ ├── import_tracker.go │ │ ├── simple_target.go │ │ └── snippet_writer.go │ │ ├── namer │ │ ├── doc.go │ │ ├── import_tracker.go │ │ ├── namer.go │ │ ├── order.go │ │ └── plural_namer.go │ │ ├── parser │ │ ├── doc.go │ │ ├── parse.go │ │ ├── parse_122.go │ │ └── parse_pre_122.go │ │ └── types │ │ ├── doc.go │ │ └── types.go ├── klog │ └── 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 │ │ ├── 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 ├── 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 │ ├── cmd │ │ └── openapi-gen │ │ │ ├── args │ │ │ └── args.go │ │ │ └── openapi-gen.go │ └── pkg │ │ ├── cached │ │ └── cache.go │ │ ├── common │ │ ├── common.go │ │ ├── doc.go │ │ └── interfaces.go │ │ ├── generators │ │ ├── README.md │ │ ├── api_linter.go │ │ ├── config.go │ │ ├── enum.go │ │ ├── extension.go │ │ ├── markers.go │ │ ├── openapi.go │ │ ├── rules │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── idl_tag.go │ │ │ ├── names_match.go │ │ │ └── omitempty_match_case.go │ │ └── union.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 │ │ ├── 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 │ │ │ └── validation │ │ │ │ ├── errors.go │ │ │ │ ├── types.go │ │ │ │ └── validation.go │ │ └── sets │ │ │ ├── empty.go │ │ │ └── string.go │ │ └── validation │ │ └── 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 ├── kubectl │ ├── LICENSE │ └── pkg │ │ ├── cmd │ │ └── util │ │ │ ├── env_file.go │ │ │ ├── factory.go │ │ │ ├── factory_client_access.go │ │ │ ├── helpers.go │ │ │ ├── kubectl_match_version.go │ │ │ ├── override_options.go │ │ │ └── printing.go │ │ ├── drain │ │ ├── cordon.go │ │ ├── default.go │ │ ├── drain.go │ │ └── filters.go │ │ ├── scheme │ │ ├── install.go │ │ └── scheme.go │ │ ├── util │ │ ├── i18n │ │ │ ├── i18n.go │ │ │ └── translations │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── extract.py │ │ │ │ ├── kubectl │ │ │ │ ├── OWNERS │ │ │ │ ├── de_DE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── default │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── en_US │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── fr_FR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── it_IT │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── ja_JP │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── ko_KR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── template.pot │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── k8s.mo │ │ │ │ │ └── k8s.po │ │ │ │ └── test │ │ │ │ ├── default │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── k8s.mo │ │ │ │ │ └── k8s.po │ │ │ │ └── en_US │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── k8s.mo │ │ │ │ └── k8s.po │ │ ├── interrupt │ │ │ └── interrupt.go │ │ ├── openapi │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── openapi.go │ │ │ └── openapi_getter.go │ │ ├── templates │ │ │ ├── command_groups.go │ │ │ ├── help_flags_printer.go │ │ │ ├── markdown.go │ │ │ ├── normalizers.go │ │ │ ├── templater.go │ │ │ └── templates.go │ │ └── term │ │ │ ├── resize.go │ │ │ ├── resizeevents.go │ │ │ ├── resizeevents_windows.go │ │ │ ├── term.go │ │ │ └── term_writer.go │ │ └── validation │ │ ├── schema.go │ │ └── validation.go ├── kubelet │ ├── LICENSE │ └── pkg │ │ └── apis │ │ └── deviceplugin │ │ └── v1beta1 │ │ ├── api.pb.go │ │ ├── api.proto │ │ └── constants.go └── utils │ ├── LICENSE │ ├── buffer │ └── ring_growing.go │ ├── clock │ ├── README.md │ ├── clock.go │ └── testing │ │ ├── fake_clock.go │ │ └── simple_interval_clock.go │ ├── exec │ ├── README.md │ ├── doc.go │ ├── exec.go │ ├── fixup_go118.go │ └── fixup_go119.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 │ ├── pointer │ ├── OWNERS │ ├── README.md │ └── pointer.go │ ├── ptr │ ├── OWNERS │ ├── README.md │ └── ptr.go │ └── trace │ ├── README.md │ └── trace.go ├── modules.txt └── sigs.k8s.io ├── controller-runtime ├── .gitignore ├── .golangci.yml ├── .gomodcheck.yaml ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── Makefile ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── TMP-LOGGING.md ├── VERSIONING.md ├── alias.go ├── code-of-conduct.md ├── doc.go └── pkg │ ├── builder │ ├── controller.go │ ├── doc.go │ ├── options.go │ └── webhook.go │ ├── cache │ ├── cache.go │ ├── delegating_by_gvk_cache.go │ ├── doc.go │ ├── informer_cache.go │ ├── internal │ │ ├── cache_reader.go │ │ ├── informers.go │ │ └── selector.go │ └── multi_namespace_cache.go │ ├── certwatcher │ ├── certwatcher.go │ ├── doc.go │ └── metrics │ │ └── metrics.go │ ├── client │ ├── apiutil │ │ ├── apimachinery.go │ │ ├── errors.go │ │ └── restmapper.go │ ├── client.go │ ├── client_rest_resources.go │ ├── codec.go │ ├── config │ │ ├── config.go │ │ └── doc.go │ ├── doc.go │ ├── dryrun.go │ ├── fake │ │ ├── client.go │ │ └── doc.go │ ├── fieldowner.go │ ├── fieldvalidation.go │ ├── interceptor │ │ └── intercept.go │ ├── interfaces.go │ ├── metadata_client.go │ ├── namespaced_client.go │ ├── object.go │ ├── options.go │ ├── patch.go │ ├── typed_client.go │ ├── unstructured_client.go │ └── watch.go │ ├── cluster │ ├── cluster.go │ └── internal.go │ ├── config │ └── controller.go │ ├── controller │ ├── controller.go │ ├── controllerutil │ │ ├── controllerutil.go │ │ └── doc.go │ ├── doc.go │ ├── name.go │ └── priorityqueue │ │ ├── metrics.go │ │ └── priorityqueue.go │ ├── conversion │ └── conversion.go │ ├── envtest │ ├── crd.go │ ├── doc.go │ ├── helper.go │ ├── server.go │ └── webhook.go │ ├── event │ ├── doc.go │ └── event.go │ ├── handler │ ├── doc.go │ ├── enqueue.go │ ├── enqueue_mapped.go │ ├── enqueue_owner.go │ └── eventhandler.go │ ├── healthz │ ├── doc.go │ └── healthz.go │ ├── internal │ ├── controller │ │ ├── controller.go │ │ └── metrics │ │ │ └── metrics.go │ ├── field │ │ └── selector │ │ │ └── utils.go │ ├── flock │ │ ├── doc.go │ │ ├── errors.go │ │ ├── flock_other.go │ │ └── flock_unix.go │ ├── httpserver │ │ └── server.go │ ├── log │ │ └── log.go │ ├── metrics │ │ └── workqueue.go │ ├── objectutil │ │ └── objectutil.go │ ├── recorder │ │ └── recorder.go │ ├── source │ │ ├── event_handler.go │ │ └── kind.go │ ├── syncs │ │ └── syncs.go │ └── testing │ │ ├── addr │ │ └── manager.go │ │ ├── certs │ │ └── tinyca.go │ │ ├── controlplane │ │ ├── apiserver.go │ │ ├── auth.go │ │ ├── etcd.go │ │ ├── kubectl.go │ │ └── plane.go │ │ └── process │ │ ├── arguments.go │ │ ├── bin_path_finder.go │ │ ├── procattr_other.go │ │ ├── procattr_unix.go │ │ └── process.go │ ├── leaderelection │ ├── doc.go │ └── leader_election.go │ ├── log │ ├── deleg.go │ ├── log.go │ ├── null.go │ ├── warning_handler.go │ └── zap │ │ ├── flags.go │ │ ├── kube_helpers.go │ │ └── zap.go │ ├── manager │ ├── doc.go │ ├── internal.go │ ├── manager.go │ ├── runnable_group.go │ ├── server.go │ └── signals │ │ ├── doc.go │ │ ├── signal.go │ │ ├── signal_posix.go │ │ └── signal_windows.go │ ├── metrics │ ├── client_go_adapter.go │ ├── doc.go │ ├── leaderelection.go │ ├── registry.go │ ├── server │ │ ├── doc.go │ │ └── server.go │ └── workqueue.go │ ├── predicate │ ├── doc.go │ └── predicate.go │ ├── reconcile │ ├── doc.go │ └── reconcile.go │ ├── recorder │ └── recorder.go │ ├── scheme │ └── scheme.go │ ├── source │ ├── doc.go │ └── source.go │ └── webhook │ ├── admission │ ├── decode.go │ ├── defaulter_custom.go │ ├── doc.go │ ├── http.go │ ├── metrics │ │ └── metrics.go │ ├── multi.go │ ├── response.go │ ├── validator_custom.go │ └── webhook.go │ ├── alias.go │ ├── conversion │ ├── conversion.go │ └── decoder.go │ ├── doc.go │ ├── internal │ └── metrics │ │ └── metrics.go │ └── server.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 ├── kustomize ├── api │ ├── LICENSE │ ├── filters │ │ ├── annotations │ │ │ ├── annotations.go │ │ │ └── doc.go │ │ ├── fieldspec │ │ │ ├── doc.go │ │ │ └── fieldspec.go │ │ ├── filtersutil │ │ │ └── setters.go │ │ ├── fsslice │ │ │ ├── doc.go │ │ │ └── fsslice.go │ │ ├── iampolicygenerator │ │ │ ├── doc.go │ │ │ └── iampolicygenerator.go │ │ ├── imagetag │ │ │ ├── doc.go │ │ │ ├── imagetag.go │ │ │ ├── legacy.go │ │ │ └── updater.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ └── labels.go │ │ ├── nameref │ │ │ ├── doc.go │ │ │ ├── nameref.go │ │ │ └── seqfilter.go │ │ ├── namespace │ │ │ ├── doc.go │ │ │ └── namespace.go │ │ ├── patchjson6902 │ │ │ ├── doc.go │ │ │ └── patchjson6902.go │ │ ├── patchstrategicmerge │ │ │ ├── doc.go │ │ │ └── patchstrategicmerge.go │ │ ├── prefix │ │ │ ├── doc.go │ │ │ └── prefix.go │ │ ├── refvar │ │ │ ├── doc.go │ │ │ ├── expand.go │ │ │ └── refvar.go │ │ ├── replacement │ │ │ ├── doc.go │ │ │ └── replacement.go │ │ ├── replicacount │ │ │ ├── doc.go │ │ │ └── replicacount.go │ │ ├── suffix │ │ │ ├── doc.go │ │ │ └── suffix.go │ │ └── valueadd │ │ │ └── valueadd.go │ ├── hasher │ │ └── hasher.go │ ├── ifc │ │ └── ifc.go │ ├── internal │ │ ├── accumulator │ │ │ ├── loadconfigfromcrds.go │ │ │ ├── namereferencetransformer.go │ │ │ ├── refvartransformer.go │ │ │ └── resaccumulator.go │ │ ├── builtins │ │ │ ├── AnnotationsTransformer.go │ │ │ ├── ConfigMapGenerator.go │ │ │ ├── HashTransformer.go │ │ │ ├── HelmChartInflationGenerator.go │ │ │ ├── IAMPolicyGenerator.go │ │ │ ├── ImageTagTransformer.go │ │ │ ├── LabelTransformer.go │ │ │ ├── NamespaceTransformer.go │ │ │ ├── PatchJson6902Transformer.go │ │ │ ├── PatchStrategicMergeTransformer.go │ │ │ ├── PatchTransformer.go │ │ │ ├── PrefixTransformer.go │ │ │ ├── ReplacementTransformer.go │ │ │ ├── ReplicaCountTransformer.go │ │ │ ├── SecretGenerator.go │ │ │ ├── SortOrderTransformer.go │ │ │ ├── SuffixTransformer.go │ │ │ ├── ValueAddTransformer.go │ │ │ └── doc.go │ │ ├── generators │ │ │ ├── configmap.go │ │ │ ├── secret.go │ │ │ └── utils.go │ │ ├── git │ │ │ ├── cloner.go │ │ │ ├── gitrunner.go │ │ │ └── repospec.go │ │ ├── image │ │ │ └── image.go │ │ ├── konfig │ │ │ └── builtinpluginconsts │ │ │ │ ├── commonannotations.go │ │ │ │ ├── commonlabels.go │ │ │ │ ├── defaultconfig.go │ │ │ │ ├── doc.go │ │ │ │ ├── images.go │ │ │ │ ├── metadatalabels.go │ │ │ │ ├── nameprefix.go │ │ │ │ ├── namereference.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namesuffix.go │ │ │ │ ├── replicas.go │ │ │ │ ├── templatelabels.go │ │ │ │ └── varreference.go │ │ ├── kusterr │ │ │ └── yamlformaterror.go │ │ ├── loader │ │ │ ├── errors.go │ │ │ ├── fileloader.go │ │ │ ├── loader.go │ │ │ └── loadrestrictions.go │ │ ├── plugins │ │ │ ├── builtinconfig │ │ │ │ ├── doc.go │ │ │ │ ├── loaddefaultconfig.go │ │ │ │ ├── namebackreferences.go │ │ │ │ └── transformerconfig.go │ │ │ ├── builtinhelpers │ │ │ │ ├── builtinplugintype_string.go │ │ │ │ └── builtins.go │ │ │ ├── execplugin │ │ │ │ └── execplugin.go │ │ │ ├── fnplugin │ │ │ │ └── fnplugin.go │ │ │ ├── loader │ │ │ │ ├── load_go_plugin.go │ │ │ │ ├── load_go_plugin_disabled.go │ │ │ │ └── loader.go │ │ │ └── utils │ │ │ │ └── utils.go │ │ ├── target │ │ │ ├── errmissingkustomization.go │ │ │ ├── kusttarget.go │ │ │ ├── kusttarget_configplugin.go │ │ │ └── multitransformer.go │ │ ├── utils │ │ │ ├── annotations.go │ │ │ ├── errtimeout.go │ │ │ ├── makeResIds.go │ │ │ ├── stringslice.go │ │ │ └── timedcall.go │ │ └── validate │ │ │ └── fieldvalidator.go │ ├── konfig │ │ ├── doc.go │ │ ├── general.go │ │ └── plugins.go │ ├── krusty │ │ ├── doc.go │ │ ├── kustomizer.go │ │ └── options.go │ ├── kv │ │ └── kv.go │ ├── provenance │ │ └── provenance.go │ ├── provider │ │ └── depprovider.go │ ├── resmap │ │ ├── factory.go │ │ ├── resmap.go │ │ └── reswrangler.go │ ├── resource │ │ ├── doc.go │ │ ├── factory.go │ │ ├── idset.go │ │ ├── origin.go │ │ └── resource.go │ └── types │ │ ├── builtinpluginloadingoptions_string.go │ │ ├── configmapargs.go │ │ ├── doc.go │ │ ├── erronlybuiltinpluginsallowed.go │ │ ├── errunabletofind.go │ │ ├── fieldspec.go │ │ ├── generationbehavior.go │ │ ├── generatorargs.go │ │ ├── generatoroptions.go │ │ ├── helmchartargs.go │ │ ├── iampolicygenerator.go │ │ ├── image.go │ │ ├── kustomization.go │ │ ├── kvpairsources.go │ │ ├── labels.go │ │ ├── loadrestrictions.go │ │ ├── loadrestrictions_string.go │ │ ├── objectmeta.go │ │ ├── pair.go │ │ ├── patch.go │ │ ├── patchstrategicmerge.go │ │ ├── pluginconfig.go │ │ ├── pluginrestrictions.go │ │ ├── pluginrestrictions_string.go │ │ ├── replacement.go │ │ ├── replacementfield.go │ │ ├── replica.go │ │ ├── secretargs.go │ │ ├── selector.go │ │ ├── sortoptions.go │ │ ├── typemeta.go │ │ └── var.go └── kyaml │ ├── LICENSE │ ├── comments │ └── comments.go │ ├── errors │ └── errors.go │ ├── ext │ └── ext.go │ ├── fieldmeta │ └── fieldmeta.go │ ├── filesys │ ├── confirmeddir.go │ ├── doc.go │ ├── file.go │ ├── fileinfo.go │ ├── fileondisk.go │ ├── filesystem.go │ ├── fsnode.go │ ├── fsondisk.go │ ├── fsondisk_unix.go │ ├── fsondisk_windows.go │ └── util.go │ ├── fn │ └── runtime │ │ ├── container │ │ └── container.go │ │ ├── exec │ │ ├── doc.go │ │ └── exec.go │ │ └── runtimeutil │ │ ├── doc.go │ │ ├── functiontypes.go │ │ ├── runtimeutil.go │ │ └── types.go │ ├── kio │ ├── byteio_reader.go │ ├── byteio_writer.go │ ├── doc.go │ ├── ignorefilesmatcher.go │ ├── kio.go │ ├── kioutil │ │ └── kioutil.go │ ├── pkgio_reader.go │ ├── pkgio_writer.go │ └── tree.go │ ├── openapi │ ├── Makefile │ ├── README.md │ ├── kubernetesapi │ │ ├── openapiinfo.go │ │ └── v1_21_2 │ │ │ ├── swagger.go │ │ │ └── swagger.pb │ ├── kustomizationapi │ │ ├── swagger.go │ │ └── swagger.json │ └── openapi.go │ ├── order │ └── syncorder.go │ ├── resid │ ├── gvk.go │ └── resid.go │ ├── runfn │ └── runfn.go │ ├── sets │ ├── string.go │ └── stringlist.go │ ├── sliceutil │ └── slice.go │ ├── utils │ └── pathsplitter.go │ └── yaml │ ├── alias.go │ ├── compatibility.go │ ├── const.go │ ├── datamap.go │ ├── doc.go │ ├── filters.go │ ├── fns.go │ ├── internal │ └── k8sgen │ │ └── pkg │ │ ├── labels │ │ ├── copied.deepcopy.go │ │ ├── labels.go │ │ └── selector.go │ │ ├── selection │ │ └── operator.go │ │ └── util │ │ ├── errors │ │ └── errors.go │ │ ├── sets │ │ ├── empty.go │ │ └── string.go │ │ └── validation │ │ ├── field │ │ ├── errors.go │ │ └── path.go │ │ └── validation.go │ ├── kfns.go │ ├── mapnode.go │ ├── match.go │ ├── merge2 │ ├── merge2.go │ ├── smpdirective.go │ └── smpdirective_string.go │ ├── order.go │ ├── rnode.go │ ├── schema │ └── schema.go │ ├── types.go │ ├── util.go │ └── walk │ ├── associative_sequence.go │ ├── map.go │ ├── nonassociative_sequence.go │ ├── scalar.go │ ├── visitor.go │ └── walk.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 ├── goyaml.v3 ├── LICENSE ├── NOTICE ├── OWNERS ├── README.md ├── apic.go ├── decode.go ├── emitterc.go ├── encode.go ├── parserc.go ├── patch.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/sriov-network-operator/HEAD/.ci-operator.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.github/dependabot.yml.disabled -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/chart-push-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.github/workflows/chart-push-release.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/image-push-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.github/workflows/image-push-master.yml -------------------------------------------------------------------------------- /.github/workflows/image-push-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.github/workflows/image-push-release.yml -------------------------------------------------------------------------------- /.github/workflows/pr-ci-triggers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.github/workflows/pr-ci-triggers.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/pr-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.github/workflows/pr-update.yml -------------------------------------------------------------------------------- /.github/workflows/prow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.github/workflows/prow.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/.snyk -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.ocp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/Dockerfile.ocp -------------------------------------------------------------------------------- /Dockerfile.sriov-network-config-daemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/Dockerfile.sriov-network-config-daemon -------------------------------------------------------------------------------- /Dockerfile.webhook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/Dockerfile.webhook -------------------------------------------------------------------------------- /Dockerfile.webhook.ocp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/Dockerfile.webhook.ocp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/Makefile.bundle -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/OWNERS -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/README.md -------------------------------------------------------------------------------- /api/v1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/api/v1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/api/v1/helper.go -------------------------------------------------------------------------------- /api/v1/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/api/v1/helper_test.go -------------------------------------------------------------------------------- /api/v1/ovsnetwork_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/api/v1/ovsnetwork_types.go -------------------------------------------------------------------------------- /api/v1/sriovibnetwork_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/api/v1/sriovibnetwork_types.go -------------------------------------------------------------------------------- /api/v1/sriovnetwork_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/api/v1/sriovnetwork_types.go -------------------------------------------------------------------------------- /api/v1/sriovnetworknodepolicy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/api/v1/sriovnetworknodepolicy_types.go -------------------------------------------------------------------------------- /api/v1/sriovnetworknodestate_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/api/v1/sriovnetworknodestate_types.go -------------------------------------------------------------------------------- /api/v1/sriovnetworkpoolconfig_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/api/v1/sriovnetworkpoolconfig_types.go -------------------------------------------------------------------------------- /api/v1/sriovoperatorconfig_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/api/v1/sriovoperatorconfig_types.go -------------------------------------------------------------------------------- /api/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/api/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /bindata/manifests/daemon/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/bindata/manifests/daemon/daemonset.yaml -------------------------------------------------------------------------------- /bindata/manifests/plugins/002-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/bindata/manifests/plugins/002-rbac.yaml -------------------------------------------------------------------------------- /bindata/manifests/webhook/002-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/bindata/manifests/webhook/002-rbac.yaml -------------------------------------------------------------------------------- /bindata/manifests/webhook/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/bindata/manifests/webhook/server.yaml -------------------------------------------------------------------------------- /bindata/scripts/bf2-switch-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/bindata/scripts/bf2-switch-mode.sh -------------------------------------------------------------------------------- /bindata/scripts/clean-k8s-services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/bindata/scripts/clean-k8s-services.sh -------------------------------------------------------------------------------- /bindata/scripts/kargs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/bindata/scripts/kargs.sh -------------------------------------------------------------------------------- /bindata/scripts/switchdev-vf-link-name.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -x 3 | PORT="$1" 4 | echo "NUMBER=${PORT##pf*vf}" 5 | -------------------------------------------------------------------------------- /bindata/scripts/udev-find-sriov-pf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/bindata/scripts/udev-find-sriov-pf.sh -------------------------------------------------------------------------------- /bundle.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/bundle.Dockerfile -------------------------------------------------------------------------------- /bundle/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/bundle/metadata/annotations.yaml -------------------------------------------------------------------------------- /bundle/tests/scorecard/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/bundle/tests/scorecard/config.yaml -------------------------------------------------------------------------------- /bundleci.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/bundleci.Dockerfile -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/admin-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/ci/admin-list.yaml -------------------------------------------------------------------------------- /ci/examples/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/ci/examples/jenkins/README.md -------------------------------------------------------------------------------- /cmd/sriov-network-config-daemon/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/cmd/sriov-network-config-daemon/main.go -------------------------------------------------------------------------------- /cmd/sriov-network-config-daemon/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/cmd/sriov-network-config-daemon/start.go -------------------------------------------------------------------------------- /cmd/webhook/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/cmd/webhook/main.go -------------------------------------------------------------------------------- /cmd/webhook/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/cmd/webhook/start.go -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/default/manager_config_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/default/manager_config_patch.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/rbac/clusterrole.yaml -------------------------------------------------------------------------------- /config/rbac/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/rbac/clusterrolebinding.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/ovsnetwork_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/rbac/ovsnetwork_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/ovsnetwork_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/rbac/ovsnetwork_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /controllers/drain_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/controllers/drain_controller.go -------------------------------------------------------------------------------- /controllers/drain_controller_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/controllers/drain_controller_helper.go -------------------------------------------------------------------------------- /controllers/drain_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/controllers/drain_controller_test.go -------------------------------------------------------------------------------- /controllers/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/controllers/helper.go -------------------------------------------------------------------------------- /controllers/ovsnetwork_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/controllers/ovsnetwork_controller.go -------------------------------------------------------------------------------- /controllers/sriovibnetwork_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/controllers/sriovibnetwork_controller.go -------------------------------------------------------------------------------- /controllers/sriovnetwork_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/controllers/sriovnetwork_controller.go -------------------------------------------------------------------------------- /controllers/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/controllers/suite_test.go -------------------------------------------------------------------------------- /deploy/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/deploy/clusterrole.yaml -------------------------------------------------------------------------------- /deploy/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/deploy/clusterrolebinding.yaml -------------------------------------------------------------------------------- /deploy/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/deploy/configmap.yaml -------------------------------------------------------------------------------- /deploy/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/deploy/namespace.yaml -------------------------------------------------------------------------------- /deploy/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/deploy/operator.yaml -------------------------------------------------------------------------------- /deploy/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/deploy/role.yaml -------------------------------------------------------------------------------- /deploy/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/deploy/role_binding.yaml -------------------------------------------------------------------------------- /deploy/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/deploy/service_account.yaml -------------------------------------------------------------------------------- /deploy/sriovoperatorconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/deploy/sriovoperatorconfig.yaml -------------------------------------------------------------------------------- /doc/design/TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/design/TEMPLATE.md -------------------------------------------------------------------------------- /doc/design/externally-manage-pf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/design/externally-manage-pf.md -------------------------------------------------------------------------------- /doc/design/ib-vf-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/design/ib-vf-configuration.md -------------------------------------------------------------------------------- /doc/design/parallel-node-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/design/parallel-node-config.md -------------------------------------------------------------------------------- /doc/design/software-bridge-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/design/software-bridge-management.md -------------------------------------------------------------------------------- /doc/design/switchdev-refactoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/design/switchdev-refactoring.md -------------------------------------------------------------------------------- /doc/hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/hacking.md -------------------------------------------------------------------------------- /doc/ib-vf-guid-static-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/ib-vf-guid-static-configuration.md -------------------------------------------------------------------------------- /doc/images/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/images/workflow.png -------------------------------------------------------------------------------- /doc/ovs-hw-offload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/ovs-hw-offload.md -------------------------------------------------------------------------------- /doc/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/quickstart.md -------------------------------------------------------------------------------- /doc/supported-hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/supported-hardware.md -------------------------------------------------------------------------------- /doc/testing-kind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/testing-kind.md -------------------------------------------------------------------------------- /doc/testing-virtual-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/testing-virtual-machine.md -------------------------------------------------------------------------------- /doc/vdpa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/vdpa.md -------------------------------------------------------------------------------- /doc/vendor-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/doc/vendor-support.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/build-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/build-go.sh -------------------------------------------------------------------------------- /hack/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/common -------------------------------------------------------------------------------- /hack/deploy-operator-helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/deploy-operator-helm.sh -------------------------------------------------------------------------------- /hack/deploy-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/deploy-setup.sh -------------------------------------------------------------------------------- /hack/deploy-sriov-in-telco-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/deploy-sriov-in-telco-ci.sh -------------------------------------------------------------------------------- /hack/deploy-wait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/deploy-wait.sh -------------------------------------------------------------------------------- /hack/dummy.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hack/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/env.sh -------------------------------------------------------------------------------- /hack/get-e2e-kind-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/get-e2e-kind-tools.sh -------------------------------------------------------------------------------- /hack/go-fmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/go-fmt.sh -------------------------------------------------------------------------------- /hack/release/chart-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/release/chart-push.sh -------------------------------------------------------------------------------- /hack/release/chart-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/release/chart-update.sh -------------------------------------------------------------------------------- /hack/run-e2e-conformance-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/run-e2e-conformance-common -------------------------------------------------------------------------------- /hack/run-e2e-conformance-virtual-ocp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/run-e2e-conformance-virtual-ocp.sh -------------------------------------------------------------------------------- /hack/run-e2e-conformance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/run-e2e-conformance.sh -------------------------------------------------------------------------------- /hack/run-e2e-test-kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/run-e2e-test-kind.sh -------------------------------------------------------------------------------- /hack/run-e2e-test-locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/run-e2e-test-locally.sh -------------------------------------------------------------------------------- /hack/run-e2e-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/run-e2e-test.sh -------------------------------------------------------------------------------- /hack/run-locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/run-locally.sh -------------------------------------------------------------------------------- /hack/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/run-test.sh -------------------------------------------------------------------------------- /hack/teardown-e2e-kind-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/teardown-e2e-kind-cluster.sh -------------------------------------------------------------------------------- /hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/tools.go -------------------------------------------------------------------------------- /hack/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/undeploy.sh -------------------------------------------------------------------------------- /hack/vf-netns-switcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/vf-netns-switcher.sh -------------------------------------------------------------------------------- /hack/vf-switcher.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/vf-switcher.service -------------------------------------------------------------------------------- /hack/virtual-cluster-redeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/hack/virtual-cluster-redeploy.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/main.go -------------------------------------------------------------------------------- /manifests/art.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/manifests/art.yaml -------------------------------------------------------------------------------- /manifests/stable/image-references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/manifests/stable/image-references -------------------------------------------------------------------------------- /pkg/apply/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/apply/apply.go -------------------------------------------------------------------------------- /pkg/apply/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/apply/merge.go -------------------------------------------------------------------------------- /pkg/apply/merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/apply/merge_test.go -------------------------------------------------------------------------------- /pkg/consts/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/consts/constants.go -------------------------------------------------------------------------------- /pkg/consts/platforms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/consts/platforms.go -------------------------------------------------------------------------------- /pkg/daemon/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/daemon/config.go -------------------------------------------------------------------------------- /pkg/daemon/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/daemon/config_test.go -------------------------------------------------------------------------------- /pkg/daemon/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/daemon/daemon.go -------------------------------------------------------------------------------- /pkg/daemon/daemon_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/daemon/daemon_suite_test.go -------------------------------------------------------------------------------- /pkg/daemon/daemon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/daemon/daemon_test.go -------------------------------------------------------------------------------- /pkg/daemon/event_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/daemon/event_recorder.go -------------------------------------------------------------------------------- /pkg/daemon/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/daemon/plugin.go -------------------------------------------------------------------------------- /pkg/daemon/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/daemon/status.go -------------------------------------------------------------------------------- /pkg/drain/drainer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/drain/drainer.go -------------------------------------------------------------------------------- /pkg/drain/drainer_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/drain/drainer_suite_test.go -------------------------------------------------------------------------------- /pkg/drain/drainer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/drain/drainer_test.go -------------------------------------------------------------------------------- /pkg/featuregate/featuregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/featuregate/featuregate.go -------------------------------------------------------------------------------- /pkg/featuregate/featuregate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/featuregate/featuregate_test.go -------------------------------------------------------------------------------- /pkg/featuregate/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/featuregate/suite_test.go -------------------------------------------------------------------------------- /pkg/helper/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/helper/host.go -------------------------------------------------------------------------------- /pkg/helper/mock/mock_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/helper/mock/mock_helper.go -------------------------------------------------------------------------------- /pkg/host/internal/bridge/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/bridge/bridge.go -------------------------------------------------------------------------------- /pkg/host/internal/bridge/bridge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/bridge/bridge_test.go -------------------------------------------------------------------------------- /pkg/host/internal/bridge/ovs/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/bridge/ovs/models.go -------------------------------------------------------------------------------- /pkg/host/internal/bridge/ovs/ovs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/bridge/ovs/ovs.go -------------------------------------------------------------------------------- /pkg/host/internal/bridge/ovs/ovs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/bridge/ovs/ovs_test.go -------------------------------------------------------------------------------- /pkg/host/internal/bridge/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/bridge/suite_test.go -------------------------------------------------------------------------------- /pkg/host/internal/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/cpu/cpu.go -------------------------------------------------------------------------------- /pkg/host/internal/infiniband/guid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/infiniband/guid.go -------------------------------------------------------------------------------- /pkg/host/internal/kernel/kernel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/kernel/kernel.go -------------------------------------------------------------------------------- /pkg/host/internal/kernel/kernel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/kernel/kernel_test.go -------------------------------------------------------------------------------- /pkg/host/internal/kernel/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/kernel/suite_test.go -------------------------------------------------------------------------------- /pkg/host/internal/lib/dputils/dputils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/lib/dputils/dputils.go -------------------------------------------------------------------------------- /pkg/host/internal/lib/ethtool/ethtool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/lib/ethtool/ethtool.go -------------------------------------------------------------------------------- /pkg/host/internal/lib/ghw/ghw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/lib/ghw/ghw.go -------------------------------------------------------------------------------- /pkg/host/internal/lib/netlink/netlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/lib/netlink/netlink.go -------------------------------------------------------------------------------- /pkg/host/internal/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/network/network.go -------------------------------------------------------------------------------- /pkg/host/internal/network/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/network/suite_test.go -------------------------------------------------------------------------------- /pkg/host/internal/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/service/service.go -------------------------------------------------------------------------------- /pkg/host/internal/sriov/sriov.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/sriov/sriov.go -------------------------------------------------------------------------------- /pkg/host/internal/sriov/sriov_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/sriov/sriov_test.go -------------------------------------------------------------------------------- /pkg/host/internal/sriov/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/sriov/suite_test.go -------------------------------------------------------------------------------- /pkg/host/internal/systemd/systemd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/systemd/systemd.go -------------------------------------------------------------------------------- /pkg/host/internal/udev/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/udev/suite_test.go -------------------------------------------------------------------------------- /pkg/host/internal/udev/udev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/udev/udev.go -------------------------------------------------------------------------------- /pkg/host/internal/udev/udev_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/udev/udev_test.go -------------------------------------------------------------------------------- /pkg/host/internal/vdpa/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/vdpa/suite_test.go -------------------------------------------------------------------------------- /pkg/host/internal/vdpa/vdpa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/vdpa/vdpa.go -------------------------------------------------------------------------------- /pkg/host/internal/vdpa/vdpa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/internal/vdpa/vdpa_test.go -------------------------------------------------------------------------------- /pkg/host/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/manager.go -------------------------------------------------------------------------------- /pkg/host/mock/mock_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/mock/mock_host.go -------------------------------------------------------------------------------- /pkg/host/store/mock/mock_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/store/mock/mock_store.go -------------------------------------------------------------------------------- /pkg/host/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/store/store.go -------------------------------------------------------------------------------- /pkg/host/store/store_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/store/store_suite_test.go -------------------------------------------------------------------------------- /pkg/host/store/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/store/store_test.go -------------------------------------------------------------------------------- /pkg/host/types/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/types/interfaces.go -------------------------------------------------------------------------------- /pkg/host/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/host/types/types.go -------------------------------------------------------------------------------- /pkg/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/log/log.go -------------------------------------------------------------------------------- /pkg/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/log/log_test.go -------------------------------------------------------------------------------- /pkg/orchestrator/openshift/openshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/orchestrator/openshift/openshift.go -------------------------------------------------------------------------------- /pkg/orchestrator/orchestrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/orchestrator/orchestrator.go -------------------------------------------------------------------------------- /pkg/orchestrator/orchestrator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/orchestrator/orchestrator_test.go -------------------------------------------------------------------------------- /pkg/platform/baremetal/baremetal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/platform/baremetal/baremetal.go -------------------------------------------------------------------------------- /pkg/platform/baremetal/baremetal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/platform/baremetal/baremetal_test.go -------------------------------------------------------------------------------- /pkg/platform/mock/mock_platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/platform/mock/mock_platform.go -------------------------------------------------------------------------------- /pkg/platform/openstack/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/platform/openstack/helpers.go -------------------------------------------------------------------------------- /pkg/platform/openstack/openstack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/platform/openstack/openstack.go -------------------------------------------------------------------------------- /pkg/platform/openstack/openstack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/platform/openstack/openstack_test.go -------------------------------------------------------------------------------- /pkg/platform/openstack/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/platform/openstack/types.go -------------------------------------------------------------------------------- /pkg/platform/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/platform/platform.go -------------------------------------------------------------------------------- /pkg/plugins/generic/generic_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/plugins/generic/generic_plugin.go -------------------------------------------------------------------------------- /pkg/plugins/intel/intel_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/plugins/intel/intel_plugin.go -------------------------------------------------------------------------------- /pkg/plugins/k8s/k8s_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/plugins/k8s/k8s_plugin.go -------------------------------------------------------------------------------- /pkg/plugins/k8s/k8s_plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/plugins/k8s/k8s_plugin_test.go -------------------------------------------------------------------------------- /pkg/plugins/mellanox/mellanox_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/plugins/mellanox/mellanox_plugin.go -------------------------------------------------------------------------------- /pkg/plugins/mellanox/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/plugins/mellanox/suite_test.go -------------------------------------------------------------------------------- /pkg/plugins/mock/mock_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/plugins/mock/mock_plugin.go -------------------------------------------------------------------------------- /pkg/plugins/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/plugins/plugin.go -------------------------------------------------------------------------------- /pkg/plugins/virtual/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/plugins/virtual/suite_test.go -------------------------------------------------------------------------------- /pkg/plugins/virtual/virtual_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/plugins/virtual/virtual_plugin.go -------------------------------------------------------------------------------- /pkg/render/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/render/README.md -------------------------------------------------------------------------------- /pkg/render/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/render/funcs.go -------------------------------------------------------------------------------- /pkg/render/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/render/render.go -------------------------------------------------------------------------------- /pkg/render/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/render/render_test.go -------------------------------------------------------------------------------- /pkg/render/testdata/doc.txt: -------------------------------------------------------------------------------- 1 | Testing that documentation files are ignored. 2 | -------------------------------------------------------------------------------- /pkg/utils/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/utils/cluster.go -------------------------------------------------------------------------------- /pkg/utils/mock/mock_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/utils/mock/mock_utils.go -------------------------------------------------------------------------------- /pkg/utils/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/utils/shutdown.go -------------------------------------------------------------------------------- /pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/utils/utils.go -------------------------------------------------------------------------------- /pkg/vars/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/vars/vars.go -------------------------------------------------------------------------------- /pkg/vendors/mellanox/mellanox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/vendors/mellanox/mellanox.go -------------------------------------------------------------------------------- /pkg/vendors/mellanox/mellanox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/vendors/mellanox/mellanox_test.go -------------------------------------------------------------------------------- /pkg/vendors/mellanox/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/vendors/mellanox/suite_test.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /pkg/webhook/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/webhook/client.go -------------------------------------------------------------------------------- /pkg/webhook/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/webhook/config.go -------------------------------------------------------------------------------- /pkg/webhook/mutate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/webhook/mutate.go -------------------------------------------------------------------------------- /pkg/webhook/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/webhook/scheme.go -------------------------------------------------------------------------------- /pkg/webhook/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/webhook/validate.go -------------------------------------------------------------------------------- /pkg/webhook/validate_networks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/webhook/validate_networks.go -------------------------------------------------------------------------------- /pkg/webhook/validate_networks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/webhook/validate_networks_test.go -------------------------------------------------------------------------------- /pkg/webhook/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/webhook/validate_test.go -------------------------------------------------------------------------------- /pkg/webhook/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/pkg/webhook/webhook.go -------------------------------------------------------------------------------- /test/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/OWNERS -------------------------------------------------------------------------------- /test/conformance/test.go: -------------------------------------------------------------------------------- 1 | package conformance 2 | -------------------------------------------------------------------------------- /test/conformance/test_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/conformance/test_suite_test.go -------------------------------------------------------------------------------- /test/conformance/tests/fixtures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/conformance/tests/fixtures.go -------------------------------------------------------------------------------- /test/conformance/tests/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/conformance/tests/init.go -------------------------------------------------------------------------------- /test/conformance/tests/test_no_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/conformance/tests/test_no_policy.go -------------------------------------------------------------------------------- /test/conformance/tests/test_switchdev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/conformance/tests/test_switchdev.go -------------------------------------------------------------------------------- /test/e2e/e2e_tests_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/e2e/e2e_tests_suite_test.go -------------------------------------------------------------------------------- /test/e2e/sriovoperatornodepolicy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/e2e/sriovoperatornodepolicy_test.go -------------------------------------------------------------------------------- /test/scripts/kargs_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/scripts/kargs_test.sh -------------------------------------------------------------------------------- /test/scripts/rpm-ostree_mock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/scripts/rpm-ostree_mock -------------------------------------------------------------------------------- /test/scripts/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/scripts/shunit2 -------------------------------------------------------------------------------- /test/util/clean/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/clean/clean.go -------------------------------------------------------------------------------- /test/util/client/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/client/clients.go -------------------------------------------------------------------------------- /test/util/cluster/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/cluster/cluster.go -------------------------------------------------------------------------------- /test/util/cluster/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/cluster/cluster_test.go -------------------------------------------------------------------------------- /test/util/discovery/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/discovery/discovery.go -------------------------------------------------------------------------------- /test/util/execute/ginkgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/execute/ginkgo.go -------------------------------------------------------------------------------- /test/util/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/helpers/helpers.go -------------------------------------------------------------------------------- /test/util/images/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/images/images.go -------------------------------------------------------------------------------- /test/util/k8sreporter/descriptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/k8sreporter/descriptions.go -------------------------------------------------------------------------------- /test/util/k8sreporter/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/k8sreporter/reporter.go -------------------------------------------------------------------------------- /test/util/namespaces/namespaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/namespaces/namespaces.go -------------------------------------------------------------------------------- /test/util/netns/netns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/netns/netns.go -------------------------------------------------------------------------------- /test/util/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/network/network.go -------------------------------------------------------------------------------- /test/util/network/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/network/network_test.go -------------------------------------------------------------------------------- /test/util/nodes/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/nodes/nodes.go -------------------------------------------------------------------------------- /test/util/pod/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/pod/pod.go -------------------------------------------------------------------------------- /test/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/util/util.go -------------------------------------------------------------------------------- /test/validation/test_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/validation/test_suite_test.go -------------------------------------------------------------------------------- /test/validation/tests/test_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/test/validation/tests/test_validation.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/.gitignore: -------------------------------------------------------------------------------- 1 | _fuzz/ -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/v3/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/blang/semver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/blang/semver/README.md -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/blang/semver/json.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/blang/semver/range.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/blang/semver/semver.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/blang/semver/sort.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/blang/semver/sql.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/v4/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/blang/semver/v4/sql.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/hub/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/cenkalti/hub/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/hub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/cenkalti/hub/README.md -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/hub/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/cenkalti/hub/hub.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/rpc2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/cenkalti/rpc2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/rpc2/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/cenkalti/rpc2/codec.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/rpc2/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/cenkalti/rpc2/debug.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/rpc2/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/cenkalti/rpc2/state.go -------------------------------------------------------------------------------- /vendor/github.com/clarketm/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/clarketm/json/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/clarketm/json/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/clarketm/json/fold.go -------------------------------------------------------------------------------- /vendor/github.com/clarketm/json/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/clarketm/json/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/clarketm/json/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/clarketm/json/tags.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/fcct/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/coreos/fcct/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/coreos/go-json/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-json/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/coreos/go-json/PATENTS -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-json/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/coreos/go-json/fold.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-json/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/coreos/go-json/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-json/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/coreos/go-json/tags.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/ignition/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/coreos/ignition/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/gabriel-vasile/mimetype/.gitattributes: -------------------------------------------------------------------------------- 1 | testdata/* linguist-vendored 2 | -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/ghodss/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-logr/stdr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-logr/zapr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-logr/zapr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/zapr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-logr/zapr/zapr.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-ole/go-ole/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/com.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-ole/go-ole/com.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-ole/go-ole/error.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/guid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-ole/go-ole/guid.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/ole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-ole/go-ole/ole.go -------------------------------------------------------------------------------- /vendor/github.com/go-ole/go-ole/winrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-ole/go-ole/winrt.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/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/golang/glog/README.md -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/btree/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/btree/btree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/btree/btree.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/pprof/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/pprof/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/shlex/COPYING -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/shlex/README -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/shlex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/shlex/shlex.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | *.test 4 | .vscode/ -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/.go-version: -------------------------------------------------------------------------------- 1 | 1.22.2 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hashicorp/go-retryablehttp-maintainers 2 | -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/huandu/xstrings/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/imdario/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/jaypipes/ghw/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | coverage*.* 3 | *~ 4 | -------------------------------------------------------------------------------- /vendor/github.com/jaypipes/ghw/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/jaypipes/ghw/COPYING -------------------------------------------------------------------------------- /vendor/github.com/jaypipes/ghw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/jaypipes/ghw/Makefile -------------------------------------------------------------------------------- /vendor/github.com/jaypipes/ghw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/jaypipes/ghw/README.md -------------------------------------------------------------------------------- /vendor/github.com/jaypipes/ghw/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/jaypipes/ghw/alias.go -------------------------------------------------------------------------------- /vendor/github.com/jaypipes/ghw/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/jaypipes/ghw/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jaypipes/ghw/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/jaypipes/ghw/host.go -------------------------------------------------------------------------------- /vendor/github.com/jaypipes/pcidb/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | coverage*.* 3 | -------------------------------------------------------------------------------- /vendor/github.com/jaypipes/pcidb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/jaypipes/pcidb/COPYING -------------------------------------------------------------------------------- /vendor/github.com/jaypipes/pcidb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/jaypipes/pcidb/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jaypipes/pcidb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/jaypipes/pcidb/main.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/kr/pretty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | /.idea 6 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/kr/pretty/License -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/kr/pretty/Readme -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/kr/pretty/diff.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/kr/pretty/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/pretty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/kr/pretty/pretty.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/zero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/kr/pretty/zero.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/kr/text/License -------------------------------------------------------------------------------- /vendor/github.com/kr/text/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/kr/text/Readme -------------------------------------------------------------------------------- /vendor/github.com/kr/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/kr/text/doc.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/kr/text/indent.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/kr/text/wrap.go -------------------------------------------------------------------------------- /vendor/github.com/leodido/go-urn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/leodido/go-urn/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/leodido/go-urn/kind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/leodido/go-urn/kind.go -------------------------------------------------------------------------------- /vendor/github.com/leodido/go-urn/scim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/leodido/go-urn/scim.go -------------------------------------------------------------------------------- /vendor/github.com/leodido/go-urn/urn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/leodido/go-urn/urn.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/reflectwalk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/spdystream/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/moby/spdystream/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/moby/term/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/moby/term/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/moby/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/moby/term/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/moby/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/moby/term/README.md -------------------------------------------------------------------------------- /vendor/github.com/moby/term/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/moby/term/ascii.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/moby/term/doc.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/moby/term/proxy.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/moby/term/term.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/moby/term/term_unix.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/onsi/ginkgo/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/types/version.go: -------------------------------------------------------------------------------- 1 | package types 2 | 3 | const VERSION = "2.22.1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | TODO 7 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/onsi/gomega/README.md -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/openshift/api/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/openshift/api/Makefile -------------------------------------------------------------------------------- /vendor/github.com/openshift/api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/openshift/api/OWNERS -------------------------------------------------------------------------------- /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/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/ovn-kubernetes/libovsdb/ovsdb/serverdb/.gitignore: -------------------------------------------------------------------------------- 1 | *.ovsschema -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-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/sriov-network-operator/HEAD/vendor/github.com/robfig/cron/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/robfig/cron/README.md -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/robfig/cron/cron.go -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/robfig/cron/doc.go -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/robfig/cron/parser.go -------------------------------------------------------------------------------- /vendor/github.com/robfig/cron/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/robfig/cron/spec.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/Makefile -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/README.md -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/channel.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/condition.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/errors.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/find.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/func.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/intersect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/intersect.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/map.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/math.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/retry.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/slice.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/string.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/time.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/tuples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/tuples.go -------------------------------------------------------------------------------- /vendor/github.com/samber/lo/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/samber/lo/types.go -------------------------------------------------------------------------------- /vendor/github.com/shopspring/decimal/.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | *.swp 3 | 4 | # IntelliJ 5 | .idea/ 6 | *.iml 7 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/iofs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/iofs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/lstater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/lstater.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/symlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/symlink.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cobra/CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/vincent-petithory/dataurl/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/default -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 1.0.0 (2018-03-15) 4 | 5 | Initial release tagging -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netns/.golangci.yml: -------------------------------------------------------------------------------- 1 | run: 2 | timeout: 5m 3 | -------------------------------------------------------------------------------- /vendor/github.com/xlab/treeprint/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/** 2 | .idea 3 | **/**.iml 4 | -------------------------------------------------------------------------------- /vendor/go.uber.org/mock/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/mock/AUTHORS -------------------------------------------------------------------------------- /vendor/go.uber.org/mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/mock/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/mock/gomock/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/mock/gomock/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/go4.org/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go4.org/AUTHORS -------------------------------------------------------------------------------- /vendor/go4.org/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go4.org/LICENSE -------------------------------------------------------------------------------- /vendor/go4.org/errorutil/highlight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/go4.org/errorutil/highlight.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/html/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-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/sriov-network-operator/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/check.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go_import_path: gopkg.in/check.v1 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/check.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/check.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/TODO: -------------------------------------------------------------------------------- 1 | - Assert(slice, Contains, item) 2 | - Parallel test support 3 | -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/benchmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/check.v1/benchmark.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/check.v1/check.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/checkers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/check.v1/checkers.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/check.v1/helpers.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/check.v1/printer.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/check.v1/reporter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/check.v1/run.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/.gitignore -------------------------------------------------------------------------------- /vendor/howett.net/plist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/LICENSE -------------------------------------------------------------------------------- /vendor/howett.net/plist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/README.md -------------------------------------------------------------------------------- /vendor/howett.net/plist/bplist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/bplist.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/decode.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/doc.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/encode.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/fuzz.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/marshal.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/must.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/must.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/plist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/plist.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/typeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/typeinfo.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/unmarshal.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/util.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/xml_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/xml_parser.go -------------------------------------------------------------------------------- /vendor/howett.net/plist/zerocopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/howett.net/plist/zerocopy.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/admission/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/admission/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/discovery/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/node/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/policy/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/apiserver/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/cli-runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/cli-runtime/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/scale/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/client-go/scale/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/scale/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/client-go/scale/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - caesarxuchao 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/code-generator/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/code-generator/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/go-to-protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | go-to-protobuf 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/code-generator/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/code-generator/tools.go -------------------------------------------------------------------------------- /vendor/k8s.io/component-base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/component-base/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/gengo/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/gengo/v2/Makefile -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/gengo/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/comments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/gengo/v2/comments.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/gengo/v2/execute.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/gengo/v2/namer/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/namer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/gengo/v2/namer/namer.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/namer/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/gengo/v2/namer/order.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/parser/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/gengo/v2/parser/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/gengo/v2/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/v2/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/gengo/v2/types/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/.golangci.yaml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-aggregator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/kube-aggregator/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-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/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubectl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/kubectl/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubelet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/kubelet/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/exec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/exec/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/exec/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/exec/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/exec/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/lru/lru.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/pointer/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/pointer/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/ptr/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/sriov-network-operator/HEAD/vendor/sigs.k8s.io/yaml/yaml_go110.go --------------------------------------------------------------------------------