├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── become-an-octant-approver.md │ ├── bug_report.md │ └── feature-enhancement-request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── electron.yaml │ ├── lint.yaml │ ├── nightly.yaml │ ├── preflight-checks.yaml │ └── verify-generated.yaml ├── .gitignore ├── .gitmodules ├── .golangci.yml ├── .goreleaser-nightly.yml ├── .goreleaser.yml ├── .nvmrc ├── ADOPTERS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── COMMUNITY_MEMBERSHIP.md ├── CONTRIBUTING.md ├── HACKING.md ├── LICENSE ├── NOTICE ├── OWNERS ├── README.md ├── ROADMAP.md ├── SECURITY.md ├── changelogs ├── CHANGELOG-0.10.md ├── CHANGELOG-0.11.md ├── CHANGELOG-0.12.md ├── CHANGELOG-0.13.md ├── CHANGELOG-0.14.md ├── CHANGELOG-0.15.md ├── CHANGELOG-0.16.md ├── CHANGELOG-0.17.md ├── CHANGELOG-0.18.md ├── CHANGELOG-0.19.md ├── CHANGELOG-0.20.md ├── CHANGELOG-0.21.md ├── CHANGELOG-0.22.md ├── CHANGELOG-0.23.md ├── CHANGELOG-0.24.md ├── CHANGELOG-0.25.md ├── CHANGELOG-0.4.md ├── CHANGELOG-0.5.md ├── CHANGELOG-0.6.md ├── CHANGELOG-0.7.md ├── CHANGELOG-0.8.md ├── CHANGELOG-0.9.md └── unreleased │ └── .keep ├── choco ├── octant.nuspec ├── tools │ └── chocolateyinstall.ps1 └── update.sh ├── ci ├── check-generated-mocks.sh └── github-actions-tag-check.sh ├── cmd ├── octant-sample-plugin │ └── main.go ├── octant │ └── main.go └── ts-component-gen │ └── main.go ├── doc.go ├── examples ├── content │ ├── deployment.json │ ├── replicaset.json │ └── table.json └── resources │ ├── README.md │ ├── config-map.yaml │ ├── crd-crontab-resource.yaml │ ├── crd-crontab.yaml │ ├── cronjob.yaml │ ├── daemonset.yaml │ ├── deployment.yaml │ ├── generic-secret.yaml │ ├── horizontalpodautoscaler.yaml │ ├── ingress.yaml │ ├── job.yaml │ ├── job_fail.yaml │ ├── kuard-with-configmap-secret.yaml │ ├── log-pod.yaml │ ├── replicationcontroller.yaml │ ├── role1.yaml │ ├── rolebinding1.yaml │ └── statefulset.yaml ├── go.mod ├── go.sum ├── hacks ├── changelogs.sh ├── ci-linux.sh ├── ci-macos.sh └── functions.sh ├── internal ├── api │ ├── action_request_manager.go │ ├── action_request_manager_test.go │ ├── api.go │ ├── api_test.go │ ├── breadcrumb.go │ ├── breadcrumb_test.go │ ├── container_logs.go │ ├── container_logs_test.go │ ├── content_manager.go │ ├── content_manager_test.go │ ├── context_manager.go │ ├── context_manager_test.go │ ├── fake │ │ └── mock_service.go │ ├── filter_manager.go │ ├── filter_manager_test.go │ ├── helper_manager.go │ ├── helper_manager_test.go │ ├── loading_state.go │ ├── loading_state_test.go │ ├── middleware.go │ ├── middleware_test.go │ ├── namespaces_manager.go │ ├── namespaces_manager_test.go │ ├── navigation_manager.go │ ├── navigation_manager_test.go │ ├── poller.go │ ├── poller_test.go │ ├── state_manager.go │ ├── stream.go │ ├── stream_test.go │ ├── streaming_service.go │ ├── terminal_manager.go │ ├── terminal_manager_test.go │ ├── testdata │ │ ├── application_navigation.json │ │ ├── cluster_navigation.json │ │ └── namespace_navigation.json │ └── websocket_service_test.go ├── cluster │ ├── cluster.go │ ├── fake │ │ ├── mock_authorization.go │ │ ├── mock_client_interface.go │ │ ├── mock_discoveryinterface.go │ │ ├── mock_dynamic_client.go │ │ ├── mock_dynamicsharedinformerfactory.go │ │ ├── mock_genericinformer.go │ │ ├── mock_info_interface.go │ │ ├── mock_kubernetes_client.go │ │ ├── mock_namespace_interface.go │ │ └── mock_sharedindexinformer.go │ ├── info.go │ ├── info_test.go │ ├── namespace.go │ ├── namespace_test.go │ ├── options.go │ ├── resource_info.go │ └── resource_info_test.go ├── commands │ ├── dash.go │ ├── dash_test.go │ ├── root.go │ └── version.go ├── config │ ├── dash.go │ ├── dash_test.go │ └── fake │ │ ├── mock_dash.go │ │ └── mock_kubecontextdecorator.go ├── context │ └── context.go ├── conversion │ ├── conversion.go │ └── conversion_test.go ├── describer │ ├── crd.go │ ├── crd_list.go │ ├── crd_section.go │ ├── crd_watcher.go │ ├── crd_watcher_test.go │ ├── customresource.go │ ├── describer.go │ ├── describer_test.go │ ├── fake │ │ └── mock_tabs_generator.go │ ├── list.go │ ├── list_test.go │ ├── object.go │ ├── object_test.go │ ├── objects.go │ ├── path_filter.go │ ├── path_filter_test.go │ ├── path_matcher.go │ ├── resource.go │ ├── resource_loader.go │ ├── resource_loader_test.go │ ├── resource_test.go │ ├── section.go │ ├── section_test.go │ ├── tab.go │ ├── tab_generator.go │ ├── tab_generator_test.go │ └── test_helpers.go ├── errors │ ├── access_error.go │ ├── access_error_test.go │ ├── action_error.go │ ├── action_error_test.go │ ├── store.go │ ├── store_test.go │ └── types.go ├── event │ ├── context.go │ ├── context_test.go │ ├── errors.go │ ├── event.go │ └── helper.go ├── generator │ ├── generator.go │ └── generator_test.go ├── gvk │ └── gvk.go ├── kubeconfig │ ├── kubeconfig.go │ ├── kubeconfig_test.go │ └── testdata │ │ ├── kubeconfig-1.yaml │ │ ├── kubeconfig-2.yaml │ │ └── kubeconfig.yaml ├── link │ ├── fake │ │ └── mock_link.go │ ├── link.go │ └── link_test.go ├── loading │ └── loading.go ├── log │ ├── logger.go │ ├── logger_test.go │ ├── message_id_generator.go │ ├── message_id_generator_test.go │ ├── options.go │ ├── sink.go │ ├── sink_test.go │ ├── streamer.go │ └── streamer_test.go ├── manifest │ ├── manifest.go │ ├── manifest_test.go │ └── testdata │ │ ├── alpine_config.json │ │ ├── alpine_manifest.json │ │ ├── nginx_config.json │ │ └── nginx_manifest.json ├── mime │ └── mime.go ├── module │ ├── fake │ │ ├── mock_action_registrar.go │ │ ├── mock_manager.go │ │ └── mock_module.go │ ├── manager.go │ ├── manager_test.go │ ├── module.go │ └── route.go ├── modules │ ├── applications │ │ ├── application.go │ │ ├── application_describer.go │ │ ├── application_describer_test.go │ │ ├── application_test.go │ │ ├── fake │ │ │ └── mock_summarizer.go │ │ ├── home_describer.go │ │ ├── home_describer_test.go │ │ ├── module.go │ │ ├── objects.go │ │ ├── summarizer.go │ │ └── summarizer_test.go │ ├── clusteroverview │ │ ├── clusteroverview.go │ │ ├── objects.go │ │ ├── path.go │ │ ├── path_test.go │ │ └── port_forward_describer.go │ ├── configuration │ │ ├── configuration.go │ │ ├── delete_object.go │ │ ├── delete_object_test.go │ │ ├── objects.go │ │ ├── plugin_describer.go │ │ └── plugin_describer_test.go │ ├── localcontent │ │ ├── localcontent.go │ │ ├── localcontent_test.go │ │ └── localdata │ │ │ └── table.json │ ├── overview │ │ ├── container │ │ │ ├── logentry.go │ │ │ ├── logging.go │ │ │ └── logstreamer.go │ │ ├── content.go │ │ ├── content_handlers.go │ │ ├── content_handlers_test.go │ │ ├── logviewer │ │ │ ├── logviewer.go │ │ │ └── logviewer_test.go │ │ ├── navigation.go │ │ ├── overview.go │ │ ├── overview_test.go │ │ ├── path.go │ │ ├── path_test.go │ │ ├── portforward.go │ │ ├── terminalviewer │ │ │ ├── ephemeral_container.go │ │ │ ├── ephemeral_container_test.go │ │ │ ├── terminalviewer.go │ │ │ └── terminalviewer_test.go │ │ ├── testdata │ │ │ ├── configmap-1.yaml │ │ │ ├── cronjob-1.yaml │ │ │ ├── cronjob-scheduled.yaml │ │ │ ├── cronjob.yaml │ │ │ ├── deployment.yaml │ │ │ ├── event-1.yaml │ │ │ ├── event-2.yaml │ │ │ ├── ingress-1.yaml │ │ │ ├── job-1.yaml │ │ │ ├── replicaset-1.yaml │ │ │ ├── rs-pod-1.yaml │ │ │ └── secret-1.yaml │ │ └── yamlviewer │ │ │ ├── yamlviewer.go │ │ │ └── yamlviewer_test.go │ └── workloads │ │ ├── detail_describer.go │ │ ├── detail_describer_test.go │ │ ├── home_describer.go │ │ └── module.go ├── objectstatus │ ├── apiservice.go │ ├── apiservice_test.go │ ├── cronjob.go │ ├── daemonset.go │ ├── daemonset_test.go │ ├── deployment.go │ ├── deployment_test.go │ ├── ingress.go │ ├── ingress_test.go │ ├── job.go │ ├── job_test.go │ ├── objectstatus.go │ ├── objectstatus_test.go │ ├── persistent_volume.go │ ├── persistent_volume_claim.go │ ├── persistent_volume_claim_test.go │ ├── pod.go │ ├── pod_test.go │ ├── replicaset.go │ ├── replicaset_test.go │ ├── replicationcontroller.go │ ├── replicationcontroller_test.go │ ├── service.go │ ├── service_test.go │ ├── statefulset.go │ ├── statefulset_test.go │ └── testdata │ │ ├── apiservice_ok.yaml │ │ ├── apiservice_unavailable.yaml │ │ ├── apiservice_unknown.yaml │ │ ├── daemonset_misscheduled.yaml │ │ ├── daemonset_not_ready.yaml │ │ ├── daemonset_ok.yaml │ │ ├── deployment_no_replicas.yaml │ │ ├── deployment_not_available.yaml │ │ ├── deployment_ok.yaml │ │ ├── endpoints_no_subsets.yaml │ │ ├── endpoints_ok.yaml │ │ ├── ingress_ingress-bad-tls-host.yaml │ │ ├── ingress_mismatched_tls_host.yaml │ │ ├── ingress_multiple_port_service.yaml │ │ ├── ingress_no_matching_backend.yaml │ │ ├── ingress_no_matching_port.yaml │ │ ├── ingress_single_service.yaml │ │ ├── ingress_wildcard_tls_host.yaml │ │ ├── job_failed.yaml │ │ ├── job_in_progress.yaml │ │ ├── job_success.yaml │ │ ├── pod_ephemeral_container.yaml │ │ ├── pod_ok.yaml │ │ ├── pod_pending.yaml │ │ ├── pod_unknown.yaml │ │ ├── pvc_ok.yaml │ │ ├── pvc_pending.yaml │ │ ├── replicaset_no_replicas.yaml │ │ ├── replicaset_not_available.yaml │ │ ├── replicaset_ok.yaml │ │ ├── replicaset_zero_replicas.yaml │ │ ├── replicationcontroller_not_ready.yaml │ │ ├── replicationcontroller_ok.yaml │ │ ├── secret_testsecret-tls.yaml │ │ ├── service_external.yaml │ │ ├── service_multiple_port_service.yaml │ │ ├── service_my-service.yaml │ │ ├── service_ok.yaml │ │ ├── service_single_service.yaml │ │ ├── service_wrong_port.yaml │ │ ├── statefulset_not_ready.yaml │ │ └── statefulset_ok.yaml ├── objectstore │ ├── dynamic_cache.go │ ├── dynamic_cache_test.go │ └── informer.go ├── objectvisitor │ ├── apiservice.go │ ├── apiservice_test.go │ ├── fake │ │ ├── mock_default_typed_visitor.go │ │ ├── mock_object_handler.go │ │ ├── mock_typed_visitor.go │ │ └── mock_visitor.go │ ├── horizontalpodautoscaler.go │ ├── ingress.go │ ├── ingress_test.go │ ├── mutatingwebhookconfiguration.go │ ├── mutatingwebhookconfiguration_test.go │ ├── object.go │ ├── object_test.go │ ├── objectvisitor.go │ ├── objectvisitor_test.go │ ├── pod.go │ ├── pod_test.go │ ├── service.go │ ├── service_test.go │ ├── util_test.go │ ├── validatingwebhookconfiguration.go │ └── validatingwebhookconfiguration_test.go ├── octant │ ├── actions.go │ ├── actions_test.go │ ├── apply_yaml.go │ ├── apply_yaml_test.go │ ├── client_request.go │ ├── container_editor.go │ ├── container_editor_test.go │ ├── cordon.go │ ├── cordon_test.go │ ├── cronjob.go │ ├── cronjob_test.go │ ├── customresource.go │ ├── customresource_test.go │ ├── deployment_configuration_editor.go │ ├── deployment_configuration_editor_test.go │ ├── drain.go │ ├── factory.go │ ├── fake │ │ ├── mock_dashboard_client.go │ │ ├── mock_generator.go │ │ ├── mock_link_generator.go │ │ ├── mock_pod_metrics_crud.go │ │ ├── mock_pod_metrics_loader.go │ │ ├── mock_state.go │ │ └── mock_storage.go │ ├── filter.go │ ├── generator.go │ ├── javascript.go │ ├── link_generator.go │ ├── manifest.go │ ├── object.go │ ├── object_path.go │ ├── object_path_test.go │ ├── object_updater.go │ ├── object_updater_test.go │ ├── pod_metrics_loader.go │ ├── pod_metrics_loader_test.go │ ├── port_forward.go │ ├── service_configuration_editor.go │ ├── service_configuration_editor_test.go │ ├── state.go │ ├── storage.go │ ├── testdata │ │ ├── crd-v1.yaml │ │ ├── crd-v1beta1-versions.yaml │ │ └── crd-v1beta1.yaml │ ├── workload.go │ └── workload_test.go ├── portforward │ ├── default.go │ ├── fake │ │ └── mock_interface.go │ ├── portforward.go │ └── service.go ├── printer │ ├── admissionwebhookconfiguration.go │ ├── admissionwebhookconfiguration_test.go │ ├── affinity.go │ ├── affinity_test.go │ ├── apiservice.go │ ├── apiservice_test.go │ ├── clusterrole.go │ ├── clusterrole_test.go │ ├── clusterrolebinding.go │ ├── clusterrolebinding_test.go │ ├── conditions.go │ ├── conditions_test.go │ ├── configmap.go │ ├── configmap_test.go │ ├── container.go │ ├── container_test.go │ ├── cronjob.go │ ├── cronjob_test.go │ ├── customresource.go │ ├── customresource_test.go │ ├── customresourcedefinition.go │ ├── customresourcedefinition_test.go │ ├── daemonset.go │ ├── daemonset_test.go │ ├── deployment.go │ ├── deployment_test.go │ ├── double_setup_test.go │ ├── event.go │ ├── event_test.go │ ├── fake │ │ ├── mock_object_interface.go │ │ └── mock_printer.go │ ├── handler.go │ ├── helpers_test.go │ ├── horizontalpodautoscaler.go │ ├── horizontalpodautoscaler_test.go │ ├── ingress.go │ ├── ingress_test.go │ ├── job.go │ ├── job_template.go │ ├── job_template_test.go │ ├── job_test.go │ ├── label_selector.go │ ├── label_selector_test.go │ ├── metadata.go │ ├── metadata_test.go │ ├── mutatingwebhookconfiguration.go │ ├── mutatingwebhookconfiguration_test.go │ ├── namespace.go │ ├── namespace_test.go │ ├── networkpolicy.go │ ├── networkpolicy_test.go │ ├── node.go │ ├── node_test.go │ ├── object.go │ ├── object_factory.go │ ├── object_table.go │ ├── object_table_test.go │ ├── object_test.go │ ├── path.go │ ├── path_test.go │ ├── persistentvolume.go │ ├── persistentvolume_test.go │ ├── persistentvolumeclaim.go │ ├── persistentvolumeclaim_test.go │ ├── pod.go │ ├── pod_template.go │ ├── pod_template_test.go │ ├── pod_test.go │ ├── policyrules.go │ ├── printer.go │ ├── printer_test.go │ ├── replicaset.go │ ├── replicaset_test.go │ ├── replicationcontroller.go │ ├── replicationcontroller_test.go │ ├── role.go │ ├── role_test.go │ ├── rolebinding.go │ ├── rolebinding_test.go │ ├── secret.go │ ├── secret_test.go │ ├── selector.go │ ├── service.go │ ├── service_test.go │ ├── serviceaccount.go │ ├── serviceaccount_test.go │ ├── statefulset.go │ ├── statefulset_test.go │ ├── storageclass.go │ ├── storageclass_test.go │ ├── testdata │ │ ├── certificate.yaml │ │ ├── crd-additional-columns.yaml │ │ ├── crd-resource.yaml │ │ └── crd.yaml │ ├── tolerations.go │ ├── tolerations_test.go │ ├── validatingwebhookconfiguration.go │ ├── validatingwebhookconfiguration_test.go │ ├── volume.go │ └── volume_test.go ├── queryer │ ├── fake │ │ ├── mock_discovery.go │ │ └── mock_queryer.go │ ├── queryer.go │ └── queryer_test.go ├── resourceviewer │ ├── fake │ │ ├── mock_details.go │ │ └── mock_object_status.go │ ├── generator.go │ ├── generator_test.go │ ├── handler.go │ ├── handler_test.go │ ├── object_node.go │ ├── object_node_test.go │ ├── pod_group_node.go │ ├── pod_group_node_test.go │ ├── resourceviewer.go │ └── resourceviewer_test.go ├── terminal │ ├── fake │ │ └── mock_instance.go │ └── instance.go ├── testutil │ ├── assert.go │ ├── conversion.go │ ├── conversion_test.go │ ├── crd.go │ ├── generator.go │ └── testutil.go └── util │ ├── json │ ├── json.go │ └── json_test.go │ ├── kubernetes │ ├── customresource.go │ ├── customresource_test.go │ ├── object.go │ ├── object_test.go │ ├── print.go │ └── testdata │ │ ├── crd.yaml │ │ ├── deployment.yaml │ │ └── pod.yaml │ ├── path_util │ ├── path.go │ └── path_test.go │ ├── retry │ └── retry.go │ └── strings │ ├── strings.go │ └── strings_test.go ├── pkg ├── action │ ├── actions.go │ ├── doc.go │ ├── errors.go │ ├── fake │ │ └── mock_alert.go │ ├── manager.go │ ├── manager_test.go │ ├── payload.go │ └── payload_test.go ├── api │ ├── action.go │ ├── fake │ │ ├── mock_action_dispatcher.go │ │ ├── mock_client_factory.go │ │ ├── mock_client_manager.go │ │ ├── mock_octant_client.go │ │ ├── mock_state_manager.go │ │ └── mock_streaming_client.go │ ├── state_manager.go │ ├── streaming.go │ ├── streaming_connection_manager.go │ └── websockets │ │ ├── websocket_client.go │ │ ├── websocket_client_test.go │ │ ├── websocket_connection_factory.go │ │ ├── websocket_state.go │ │ └── websocket_state_test.go ├── cluster │ ├── client.go │ ├── info.go │ └── namespace.go ├── config │ └── dash.go ├── dash │ ├── config.go │ ├── dash.go │ ├── dash_test.go │ ├── fake │ │ ├── mock_file_watcher.go │ │ └── mock_watcher_config.go │ ├── options.go │ ├── plugin.go │ ├── watcher.go │ └── watcher_test.go ├── errors │ ├── errors.go │ ├── generic_error.go │ ├── generic_error_test.go │ ├── streaming_connection_error.go │ └── streaming_connection_error_test.go ├── event │ ├── event.go │ ├── event_test.go │ └── fake │ │ └── mock_event.go ├── icon │ └── icon.go ├── log │ └── logger.go ├── navigation │ ├── navigation.go │ ├── navigation_test.go │ └── object.go ├── octant │ ├── handler.go │ ├── handler_test.go │ └── options.go ├── plugin │ ├── api │ │ ├── api.go │ │ ├── api_test.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── conversion.go │ │ ├── fake │ │ │ ├── mock_dash_service.go │ │ │ ├── mock_dashboard_client.go │ │ │ └── mock_dashboard_connection.go │ │ ├── generate.go │ │ ├── proto │ │ │ ├── dashboard_api.pb.go │ │ │ ├── dashboard_api.proto │ │ │ ├── dashboard_api_grpc.pb.go │ │ │ ├── generate.ps1 │ │ │ └── generate.sh │ │ └── server.go │ ├── broker.go │ ├── client.go │ ├── client_state.go │ ├── client_test.go │ ├── console │ │ └── module.go │ ├── conversion.go │ ├── dashboard │ │ ├── dashboard.pb.go │ │ ├── dashboard.proto │ │ ├── dashboard_grpc.pb.go │ │ └── generate.sh │ ├── fake │ │ ├── fakes.go │ │ ├── mock_action_registrar.go │ │ ├── mock_client_protocol.go │ │ ├── mock_manager.go │ │ ├── mock_module_registrar.go │ │ └── mock_plugin_client.go │ ├── generate.go │ ├── grpc.go │ ├── grpc_test.go │ ├── javascript.go │ ├── javascript │ │ ├── conversion.go │ │ ├── dashboard_client.go │ │ ├── dashboard_client_test.go │ │ ├── dashboard_delete.go │ │ ├── dashboard_delete_test.go │ │ ├── dashboard_get.go │ │ ├── dashboard_get_test.go │ │ ├── dashboard_list.go │ │ ├── dashboard_list_test.go │ │ ├── dashboard_ref_path.go │ │ ├── dashboard_ref_path_test.go │ │ ├── dashboard_send_event.go │ │ ├── dashboard_send_event_test.go │ │ ├── dashboard_update.go │ │ ├── dashboard_update_test.go │ │ ├── helpers_test.go │ │ ├── httpclient.go │ │ └── runtime.go │ ├── loader.go │ ├── loader_test.go │ ├── logger.go │ ├── manager.go │ ├── manager_test.go │ ├── module_proxy.go │ ├── module_proxy_test.go │ ├── plugin.go │ ├── plugincmd_unix.go │ ├── plugincmd_windows.go │ ├── runner.go │ ├── runner_test.go │ ├── server.go │ └── service │ │ ├── dashboard.go │ │ ├── fake │ │ └── mock_dashboard.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── logger_helper.go │ │ ├── logger_helper_test.go │ │ ├── router.go │ │ ├── router_test.go │ │ ├── service.go │ │ └── service_test.go ├── store │ ├── fake │ │ └── mock_store.go │ ├── get_as.go │ ├── store.go │ ├── store_test.go │ └── utils.go └── view │ ├── component │ ├── accordion.go │ ├── accordion_test.go │ ├── action.go │ ├── alert.go │ ├── alert_test.go │ ├── annotations.go │ ├── annotations_test.go │ ├── base.go │ ├── button.go │ ├── button_group.go │ ├── button_group_test.go │ ├── button_test.go │ ├── card.go │ ├── card_test.go │ ├── code.go │ ├── code_test.go │ ├── component.go │ ├── component_test.go │ ├── container.go │ ├── container_test.go │ ├── donut_chart.go │ ├── donut_chart_test.go │ ├── dropdown.go │ ├── dropdown_test.go │ ├── editor.go │ ├── error.go │ ├── expression_selector.go │ ├── expression_selector_test.go │ ├── extension.go │ ├── flexlayout.go │ ├── form.go │ ├── form_test.go │ ├── graphviz.go │ ├── grid_actions.go │ ├── grid_actions_test.go │ ├── icon.go │ ├── icon_test.go │ ├── iframe.go │ ├── json_editor.go │ ├── json_editor_test.go │ ├── label_selector.go │ ├── label_test.go │ ├── labels.go │ ├── link.go │ ├── link_test.go │ ├── list.go │ ├── list_test.go │ ├── loading.go │ ├── logs.go │ ├── logs_test.go │ ├── modal.go │ ├── modal_test.go │ ├── pod_status.go │ ├── pod_status_test.go │ ├── port.go │ ├── quadrant.go │ ├── resource_viewer.go │ ├── resource_viewer_test.go │ ├── row_detail.go │ ├── row_detail_test.go │ ├── select_file.go │ ├── select_file_test.go │ ├── selectors.go │ ├── selectors_test.go │ ├── signpost.go │ ├── signpost_test.go │ ├── single_stat.go │ ├── stepper.go │ ├── stepper_test.go │ ├── summary.go │ ├── summary_test.go │ ├── table.go │ ├── table_test.go │ ├── tabs_view.go │ ├── tabs_view_test.go │ ├── terminal.go │ ├── terminal_test.go │ ├── testdata │ │ ├── accordion.json │ │ ├── annotations.json │ │ ├── button.json │ │ ├── button_group_empty.json │ │ ├── config_accordion.json │ │ ├── config_annotations.json │ │ ├── config_button.json │ │ ├── config_card_list.json │ │ ├── config_code.json │ │ ├── config_containers.json │ │ ├── config_detail_pane.json │ │ ├── config_donutchart.json │ │ ├── config_dropdown.json │ │ ├── config_editor.json │ │ ├── config_error.json │ │ ├── config_expandable_row_detail.json │ │ ├── config_flexlayout.json │ │ ├── config_form_checkbox.json │ │ ├── config_form_text.json │ │ ├── config_grid_actions.json │ │ ├── config_json_editor.json │ │ ├── config_labels.json │ │ ├── config_link.json │ │ ├── config_link_status.json │ │ ├── config_list.json │ │ ├── config_logs.json │ │ ├── config_modal.json │ │ ├── config_quadrant.json │ │ ├── config_resource_viewer.json │ │ ├── config_select_file.json │ │ ├── config_selectors.json │ │ ├── config_single_stat.json │ │ ├── config_stepper.json │ │ ├── config_summary.json │ │ ├── config_table.json │ │ ├── config_table_buttongroup.json │ │ ├── config_tabs.json │ │ ├── config_text.json │ │ ├── config_timeline.json │ │ ├── config_timestamp.json │ │ ├── container.json │ │ ├── donut.json │ │ ├── donut_with_colors.json │ │ ├── dropdown.json │ │ ├── expandable_row.json │ │ ├── expandable_row_per_column.json │ │ ├── icon.json │ │ ├── icon_with_svg.json │ │ ├── json_editor.json │ │ ├── labels.json │ │ ├── labels_filtered.json │ │ ├── list.json │ │ ├── logs.json │ │ ├── metadata.json │ │ ├── pod-status-marshal-general.json │ │ ├── resource_viewer.json │ │ ├── select_file.json │ │ ├── selector.json │ │ ├── signpost.json │ │ ├── stepper.json │ │ ├── summary.json │ │ ├── table.json │ │ ├── tabs.json │ │ ├── terminal.json │ │ ├── timeline.json │ │ ├── viewcompoents.json │ │ └── yaml1.json │ ├── testing.go │ ├── text.go │ ├── text_test.go │ ├── timeline.go │ ├── timeline_test.go │ ├── timestamp.go │ ├── timestamp_test.go │ ├── unmarshal.go │ ├── unmarshal_test.go │ ├── yaml.go │ └── yaml_test.go │ ├── doc.go │ ├── flexlayout │ ├── flexlayout.go │ ├── flexlayout_test.go │ └── section.go │ └── tsgen │ ├── converter.go │ ├── converter_test.go │ ├── model.go │ ├── model_test.go │ ├── options.go │ ├── testdata │ ├── link-config.ts │ └── reflect.go │ ├── ts-support │ ├── component-factory.ts │ ├── component.ts │ ├── reflect.go.tmpl │ └── type-config.ts.tmpl │ ├── ts_formatter.go │ ├── tsgen.go │ └── tsgen_test.go ├── proposals ├── .keep ├── 20191007-container-exec.md ├── 20200224-combined-logging.md └── 20200330-e2e-testing.md ├── site ├── .gitignore ├── README.md ├── archetypes │ └── default.md ├── config.yaml ├── content │ ├── community │ │ └── _index.html │ ├── contributors │ │ ├── 01-bryan-liles.md │ │ ├── 02-sam-foo.md │ │ ├── 03-luis-enriquez.md │ │ ├── 04-milan-klanjsek.md │ │ ├── 05-scott-andrews.md │ │ ├── 06-wayne-witzel-iii.md │ │ └── index.md │ ├── docs │ │ ├── _index.md │ │ ├── overview │ │ │ └── introduction.md │ │ └── tutorials │ │ │ └── running-an-action.md │ ├── emeritus │ │ ├── 01-andrew-thorburn.md │ │ ├── 02-mdaverde.md │ │ ├── 03-nana-asiedu-ampem.md │ │ ├── 04-oren-shomron.md │ │ └── index.md │ ├── plugins │ │ ├── _index.md │ │ └── list │ │ │ ├── 01-plugin-example.md │ │ │ ├── 02-plugin-example.md │ │ │ ├── 03-plugin-example.md │ │ │ ├── 04-plugin-example.md │ │ │ ├── 05-plugin-example.md │ │ │ ├── 06-plugin-example.md │ │ │ ├── 07-plugin-example.md │ │ │ ├── 08-plugin-example.md │ │ │ ├── 09-plugin-example.md │ │ │ ├── 10-plugin-example.md │ │ │ ├── 11-plugin-example.md │ │ │ ├── 12-plugin-example.md │ │ │ └── index.md │ ├── posts │ │ ├── 2019-08-12-octant-reveals-objects-running-in-kubernetes-clusters.md │ │ ├── 2020-01-24-octant-0.10-release.md │ │ ├── 2020-07-16-octant-0.14-release.md │ │ ├── 2020-10-19-octant-community-survey.md │ │ ├── 2020-11-19-octant-2020-community-survey-summary.md │ │ ├── 2021-02-19-octant-0.17-release.md │ │ ├── 2021-08-31-octant-0.23-release.md │ │ └── _index.md │ └── resources │ │ └── _index.html ├── data │ └── docs │ │ ├── main-toc.yml │ │ ├── toc-mapping.yml │ │ ├── v0-30-0-toc.yml │ │ └── v0-40-0-toc.yml ├── netlify.toml └── themes │ └── octant │ ├── archetypes │ └── default.md │ ├── assets │ └── scss │ │ ├── _base.scss │ │ ├── _components.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _mixins.scss │ │ ├── _variables.scss │ │ └── site.scss │ ├── layouts │ ├── _default │ │ ├── _markup │ │ │ ├── render-image.html │ │ │ └── render-link.html │ │ ├── baseof.html │ │ ├── docs.html │ │ ├── list.html │ │ ├── plugins.html │ │ ├── posts.html │ │ ├── search.html │ │ ├── section.html │ │ ├── single.html │ │ ├── summary.html │ │ ├── tag.html │ │ └── versions.html │ ├── index.html │ ├── index.redirects │ └── partials │ │ ├── blog-highlights.html │ │ ├── blog-post-card.html │ │ ├── docs-right-bar.html │ │ ├── docs-sidebar.html │ │ ├── footer.html │ │ ├── getting-started.html │ │ ├── header.html │ │ ├── hero.html │ │ ├── homepage-grid.html │ │ ├── pagination.html │ │ ├── plugins.html │ │ ├── team.html │ │ └── use-cases.html │ └── static │ ├── fonts │ ├── Metropolis-Bold.eot │ ├── Metropolis-Bold.woff │ ├── Metropolis-Bold.woff2 │ ├── Metropolis-BoldItalic.eot │ ├── Metropolis-BoldItalic.woff │ ├── Metropolis-BoldItalic.woff2 │ ├── Metropolis-Light.eot │ ├── Metropolis-Light.woff │ ├── Metropolis-Light.woff2 │ ├── Metropolis-LightItalic.eot │ ├── Metropolis-LightItalic.woff │ ├── Metropolis-LightItalic.woff2 │ ├── Metropolis-Medium.eot │ ├── Metropolis-Medium.woff │ ├── Metropolis-Medium.woff2 │ ├── Metropolis-MediumItalic.eot │ ├── Metropolis-MediumItalic.woff │ ├── Metropolis-MediumItalic.woff2 │ ├── Metropolis-Regular.eot │ ├── Metropolis-Regular.woff │ ├── Metropolis-Regular.woff2 │ ├── Metropolis-RegularItalic.eot │ ├── Metropolis-RegularItalic.woff │ ├── Metropolis-RegularItalic.woff2 │ ├── Metropolis-SemiBold.eot │ ├── Metropolis-SemiBold.woff │ ├── Metropolis-SemiBold.woff2 │ ├── Metropolis-SemiBoldItalic.eot │ ├── Metropolis-SemiBoldItalic.woff │ ├── Metropolis-SemiBoldItalic.woff2 │ ├── Open Font License.md │ └── README.md │ ├── img │ ├── LoftBlogPost.png │ ├── administration.svg │ ├── adopters │ │ └── TeraSky-Color.png │ ├── arrow.svg │ ├── authentication.svg │ ├── blog-placeholder.png │ ├── calendar.svg │ ├── case-study-icons │ │ ├── icon-kubernetes.svg │ │ ├── icon-plugins.svg │ │ └── icon-port-forward.svg │ ├── close.svg │ ├── cloud.svg │ ├── contributors │ │ ├── andrew-thorburn.jpg │ │ ├── bryan-liles.jpg │ │ ├── luis-enriquez.jpg │ │ ├── mdaverde.jpg │ │ ├── milan-klanjsek.jpg │ │ ├── nana-asiedu-ampem.jpg │ │ ├── oren-shomron.jpg │ │ ├── sam-foo.jpg │ │ ├── scott-andrews.jpg │ │ └── wayne-witzel-iii.jpg │ ├── docs-placeholder.png │ ├── down-arrow.svg │ ├── favicon.ico │ ├── frictionless.svg │ ├── github-blue.svg │ ├── github-image.svg │ ├── github.svg │ ├── hamburger.svg │ ├── heroes │ │ └── hero-octant.svg │ ├── hugophanpost.png │ ├── icon-extensibility.svg │ ├── icon-versatility.svg │ ├── icon-visualization.svg │ ├── left-arrow.svg │ ├── octant-logo.png │ ├── octant.svg │ ├── posts │ │ ├── 2019 │ │ │ └── 08 │ │ │ │ └── 12 │ │ │ │ ├── screenshot-1.png │ │ │ │ └── screenshot-2.png │ │ ├── 2020 │ │ │ ├── 10 │ │ │ │ └── 19 │ │ │ │ │ └── community-survey-banner.png │ │ │ ├── 11 │ │ │ │ └── 19 │ │ │ │ │ ├── alternative.png │ │ │ │ │ ├── infrastructure.png │ │ │ │ │ ├── k8s-prod.png │ │ │ │ │ ├── org-size.png │ │ │ │ │ ├── survey-results-banner.png │ │ │ │ │ └── value.png │ │ │ ├── 01 │ │ │ │ ├── container-exec.gif │ │ │ │ └── workload-viewer.png │ │ │ └── 07 │ │ │ │ └── 16 │ │ │ │ ├── apply-yaml.png │ │ │ │ ├── cronjob-actions.png │ │ │ │ ├── delete-namespace.png │ │ │ │ ├── no-kubeconfig.png │ │ │ │ ├── service-port-forward.png │ │ │ │ └── table-filter.png │ │ └── 2021 │ │ │ ├── 02 │ │ │ └── 19 │ │ │ │ ├── electron-applications.png │ │ │ │ ├── electron-breadcrumbs.png │ │ │ │ ├── electron-navigation.png │ │ │ │ ├── electron-preferences.png │ │ │ │ └── electron-system-tray.png │ │ │ └── 08 │ │ │ └── 18 │ │ │ ├── ObjectStatus-ContainerState.png │ │ │ ├── octantStatus01.png │ │ │ ├── octantStatus02.png │ │ │ ├── octantStatus03.png │ │ │ ├── octantStatus04.png │ │ │ ├── octantStatus05.png │ │ │ └── octantStatus06.png │ ├── right-arrow.svg │ ├── rss.png │ ├── seamless.svg │ ├── search-icon.svg │ ├── security.svg │ ├── simple.svg │ ├── slack.png │ ├── slack.svg │ ├── team-placeholder.png │ ├── twitter.png │ ├── twitter.svg │ ├── vm-logo.png │ └── vmware-logo.svg │ └── js │ └── main.js ├── tools └── tools.go ├── vendor ├── cloud.google.com │ └── go │ │ ├── LICENSE │ │ └── compute │ │ └── metadata │ │ └── metadata.go ├── contrib.go.opencensus.io │ └── exporter │ │ └── jaeger │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── agent.go │ │ └── jaeger.go ├── github.com │ ├── Azure │ │ └── go-autorest │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── GNUmakefile │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── autorest │ │ │ ├── LICENSE │ │ │ ├── adal │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── devicetoken.go │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ ├── persist.go │ │ │ │ ├── sender.go │ │ │ │ ├── token.go │ │ │ │ ├── token_1.13.go │ │ │ │ ├── token_legacy.go │ │ │ │ └── version.go │ │ │ ├── authorization.go │ │ │ ├── authorization_sas.go │ │ │ ├── authorization_storage.go │ │ │ ├── autorest.go │ │ │ ├── azure │ │ │ │ ├── async.go │ │ │ │ ├── azure.go │ │ │ │ ├── environments.go │ │ │ │ ├── metadata_environment.go │ │ │ │ └── rp.go │ │ │ ├── client.go │ │ │ ├── date │ │ │ │ ├── LICENSE │ │ │ │ ├── date.go │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ ├── time.go │ │ │ │ ├── timerfc1123.go │ │ │ │ ├── unixtime.go │ │ │ │ └── utility.go │ │ │ ├── error.go │ │ │ ├── go_mod_tidy_hack.go │ │ │ ├── preparer.go │ │ │ ├── responder.go │ │ │ ├── retriablerequest.go │ │ │ ├── retriablerequest_1.7.go │ │ │ ├── retriablerequest_1.8.go │ │ │ ├── sender.go │ │ │ ├── utility.go │ │ │ └── version.go │ │ │ ├── azure-pipelines.yml │ │ │ ├── doc.go │ │ │ ├── logger │ │ │ ├── LICENSE │ │ │ ├── go_mod_tidy_hack.go │ │ │ └── logger.go │ │ │ └── tracing │ │ │ ├── LICENSE │ │ │ ├── go_mod_tidy_hack.go │ │ │ └── tracing.go │ ├── BurntSushi │ │ └── toml │ │ │ ├── .gitignore │ │ │ ├── COMPATIBLE │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── decode_go116.go │ │ │ ├── decode_meta.go │ │ │ ├── deprecated.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── internal │ │ │ └── tz.go │ │ │ ├── lex.go │ │ │ ├── parse.go │ │ │ ├── type_check.go │ │ │ └── type_fields.go │ ├── Microsoft │ │ ├── go-winio │ │ │ ├── .gitignore │ │ │ ├── CODEOWNERS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backup.go │ │ │ ├── backuptar │ │ │ │ ├── noop.go │ │ │ │ ├── strconv.go │ │ │ │ └── tar.go │ │ │ ├── ea.go │ │ │ ├── file.go │ │ │ ├── fileinfo.go │ │ │ ├── hvsock.go │ │ │ ├── pipe.go │ │ │ ├── pkg │ │ │ │ ├── guid │ │ │ │ │ └── guid.go │ │ │ │ └── security │ │ │ │ │ ├── grantvmgroupaccess.go │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ └── zsyscall_windows.go │ │ │ ├── privilege.go │ │ │ ├── reparse.go │ │ │ ├── sd.go │ │ │ ├── syscall.go │ │ │ ├── vhd │ │ │ │ ├── vhd.go │ │ │ │ └── zvhd_windows.go │ │ │ └── zsyscall_windows.go │ │ └── hcsshim │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── CODEOWNERS │ │ │ ├── LICENSE │ │ │ ├── Protobuild.toml │ │ │ ├── README.md │ │ │ ├── computestorage │ │ │ ├── attach.go │ │ │ ├── destroy.go │ │ │ ├── detach.go │ │ │ ├── export.go │ │ │ ├── format.go │ │ │ ├── helpers.go │ │ │ ├── import.go │ │ │ ├── initialize.go │ │ │ ├── mount.go │ │ │ ├── setup.go │ │ │ ├── storage.go │ │ │ └── zsyscall_windows.go │ │ │ ├── container.go │ │ │ ├── errors.go │ │ │ ├── functional_tests.ps1 │ │ │ ├── hcsshim.go │ │ │ ├── hnsendpoint.go │ │ │ ├── hnsglobals.go │ │ │ ├── hnsnetwork.go │ │ │ ├── hnspolicy.go │ │ │ ├── hnspolicylist.go │ │ │ ├── hnssupport.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ ├── cow │ │ │ │ └── cow.go │ │ │ ├── hcs │ │ │ │ ├── callback.go │ │ │ │ ├── errors.go │ │ │ │ ├── process.go │ │ │ │ ├── schema1 │ │ │ │ │ └── schema1.go │ │ │ │ ├── schema2 │ │ │ │ │ ├── attachment.go │ │ │ │ │ ├── battery.go │ │ │ │ │ ├── cache_query_stats_response.go │ │ │ │ │ ├── chipset.go │ │ │ │ │ ├── close_handle.go │ │ │ │ │ ├── com_port.go │ │ │ │ │ ├── compute_system.go │ │ │ │ │ ├── configuration.go │ │ │ │ │ ├── console_size.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── container_credential_guard_add_instance_request.go │ │ │ │ │ ├── container_credential_guard_hv_socket_service_config.go │ │ │ │ │ ├── container_credential_guard_instance.go │ │ │ │ │ ├── container_credential_guard_modify_operation.go │ │ │ │ │ ├── container_credential_guard_operation_request.go │ │ │ │ │ ├── container_credential_guard_remove_instance_request.go │ │ │ │ │ ├── container_credential_guard_state.go │ │ │ │ │ ├── container_credential_guard_system_info.go │ │ │ │ │ ├── container_memory_information.go │ │ │ │ │ ├── cpu_group.go │ │ │ │ │ ├── cpu_group_affinity.go │ │ │ │ │ ├── cpu_group_config.go │ │ │ │ │ ├── cpu_group_configurations.go │ │ │ │ │ ├── cpu_group_operations.go │ │ │ │ │ ├── cpu_group_property.go │ │ │ │ │ ├── create_group_operation.go │ │ │ │ │ ├── delete_group_operation.go │ │ │ │ │ ├── device.go │ │ │ │ │ ├── devices.go │ │ │ │ │ ├── enhanced_mode_video.go │ │ │ │ │ ├── flexible_io_device.go │ │ │ │ │ ├── guest_connection.go │ │ │ │ │ ├── guest_connection_info.go │ │ │ │ │ ├── guest_crash_reporting.go │ │ │ │ │ ├── guest_os.go │ │ │ │ │ ├── guest_state.go │ │ │ │ │ ├── host_processor_modify_request.go │ │ │ │ │ ├── hosted_system.go │ │ │ │ │ ├── hv_socket.go │ │ │ │ │ ├── hv_socket_2.go │ │ │ │ │ ├── hv_socket_address.go │ │ │ │ │ ├── hv_socket_service_config.go │ │ │ │ │ ├── hv_socket_system_config.go │ │ │ │ │ ├── interrupt_moderation_mode.go │ │ │ │ │ ├── iov_settings.go │ │ │ │ │ ├── keyboard.go │ │ │ │ │ ├── layer.go │ │ │ │ │ ├── linux_kernel_direct.go │ │ │ │ │ ├── logical_processor.go │ │ │ │ │ ├── mapped_directory.go │ │ │ │ │ ├── mapped_pipe.go │ │ │ │ │ ├── memory.go │ │ │ │ │ ├── memory_2.go │ │ │ │ │ ├── memory_information_for_vm.go │ │ │ │ │ ├── memory_stats.go │ │ │ │ │ ├── modification_request.go │ │ │ │ │ ├── modify_setting_request.go │ │ │ │ │ ├── mouse.go │ │ │ │ │ ├── network_adapter.go │ │ │ │ │ ├── networking.go │ │ │ │ │ ├── pause_notification.go │ │ │ │ │ ├── pause_options.go │ │ │ │ │ ├── plan9.go │ │ │ │ │ ├── plan9_share.go │ │ │ │ │ ├── process_details.go │ │ │ │ │ ├── process_modify_request.go │ │ │ │ │ ├── process_parameters.go │ │ │ │ │ ├── process_status.go │ │ │ │ │ ├── processor.go │ │ │ │ │ ├── processor_2.go │ │ │ │ │ ├── processor_stats.go │ │ │ │ │ ├── processor_topology.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── property_query.go │ │ │ │ │ ├── property_type.go │ │ │ │ │ ├── rdp_connection_options.go │ │ │ │ │ ├── registry_changes.go │ │ │ │ │ ├── registry_key.go │ │ │ │ │ ├── registry_value.go │ │ │ │ │ ├── restore_state.go │ │ │ │ │ ├── save_options.go │ │ │ │ │ ├── scsi.go │ │ │ │ │ ├── service_properties.go │ │ │ │ │ ├── shared_memory_configuration.go │ │ │ │ │ ├── shared_memory_region.go │ │ │ │ │ ├── shared_memory_region_info.go │ │ │ │ │ ├── silo_properties.go │ │ │ │ │ ├── statistics.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── storage_qo_s.go │ │ │ │ │ ├── storage_stats.go │ │ │ │ │ ├── topology.go │ │ │ │ │ ├── uefi.go │ │ │ │ │ ├── uefi_boot_entry.go │ │ │ │ │ ├── version.go │ │ │ │ │ ├── video_monitor.go │ │ │ │ │ ├── virtual_machine.go │ │ │ │ │ ├── virtual_node_info.go │ │ │ │ │ ├── virtual_p_mem_controller.go │ │ │ │ │ ├── virtual_p_mem_device.go │ │ │ │ │ ├── virtual_pci_device.go │ │ │ │ │ ├── virtual_pci_function.go │ │ │ │ │ ├── virtual_smb.go │ │ │ │ │ ├── virtual_smb_share.go │ │ │ │ │ ├── virtual_smb_share_options.go │ │ │ │ │ ├── vm_memory.go │ │ │ │ │ ├── vm_processor_limits.go │ │ │ │ │ └── windows_crash_reporting.go │ │ │ │ ├── service.go │ │ │ │ ├── system.go │ │ │ │ ├── utils.go │ │ │ │ └── waithelper.go │ │ │ ├── hcserror │ │ │ │ └── hcserror.go │ │ │ ├── hns │ │ │ │ ├── hns.go │ │ │ │ ├── hnsendpoint.go │ │ │ │ ├── hnsfuncs.go │ │ │ │ ├── hnsglobals.go │ │ │ │ ├── hnsnetwork.go │ │ │ │ ├── hnspolicy.go │ │ │ │ ├── hnspolicylist.go │ │ │ │ ├── hnssupport.go │ │ │ │ ├── namespace.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── interop │ │ │ │ ├── interop.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── log │ │ │ │ └── g.go │ │ │ ├── logfields │ │ │ │ └── fields.go │ │ │ ├── longpath │ │ │ │ └── longpath.go │ │ │ ├── mergemaps │ │ │ │ └── merge.go │ │ │ ├── oc │ │ │ │ ├── exporter.go │ │ │ │ └── span.go │ │ │ ├── safefile │ │ │ │ └── safeopen.go │ │ │ ├── timeout │ │ │ │ └── timeout.go │ │ │ ├── vmcompute │ │ │ │ ├── vmcompute.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── wclayer │ │ │ │ ├── activatelayer.go │ │ │ │ ├── baselayer.go │ │ │ │ ├── createlayer.go │ │ │ │ ├── createscratchlayer.go │ │ │ │ ├── deactivatelayer.go │ │ │ │ ├── destroylayer.go │ │ │ │ ├── expandscratchsize.go │ │ │ │ ├── exportlayer.go │ │ │ │ ├── getlayermountpath.go │ │ │ │ ├── getsharedbaseimages.go │ │ │ │ ├── grantvmaccess.go │ │ │ │ ├── importlayer.go │ │ │ │ ├── layerexists.go │ │ │ │ ├── layerid.go │ │ │ │ ├── layerutils.go │ │ │ │ ├── legacy.go │ │ │ │ ├── nametoguid.go │ │ │ │ ├── preparelayer.go │ │ │ │ ├── processimage.go │ │ │ │ ├── unpreparelayer.go │ │ │ │ ├── wclayer.go │ │ │ │ └── zsyscall_windows.go │ │ │ └── winapi │ │ │ │ ├── devices.go │ │ │ │ ├── errors.go │ │ │ │ ├── filesystem.go │ │ │ │ ├── iocp.go │ │ │ │ ├── jobobject.go │ │ │ │ ├── logon.go │ │ │ │ ├── memory.go │ │ │ │ ├── net.go │ │ │ │ ├── path.go │ │ │ │ ├── process.go │ │ │ │ ├── processor.go │ │ │ │ ├── system.go │ │ │ │ ├── thread.go │ │ │ │ ├── utils.go │ │ │ │ ├── winapi.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── layer.go │ │ │ ├── osversion │ │ │ ├── osversion_windows.go │ │ │ └── windowsbuilds.go │ │ │ ├── process.go │ │ │ └── zsyscall_windows.go │ ├── beorn7 │ │ └── perks │ │ │ ├── LICENSE │ │ │ └── quantile │ │ │ ├── exampledata.txt │ │ │ └── stream.go │ ├── bits-and-blooms │ │ └── bitset │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── azure-pipelines.yml │ │ │ ├── bitset.go │ │ │ ├── popcnt.go │ │ │ ├── popcnt_19.go │ │ │ ├── popcnt_amd64.go │ │ │ ├── popcnt_amd64.s │ │ │ ├── popcnt_generic.go │ │ │ ├── trailing_zeros_18.go │ │ │ └── trailing_zeros_19.go │ ├── cespare │ │ └── xxhash │ │ │ └── v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_other.go │ │ │ ├── xxhash_safe.go │ │ │ └── xxhash_unsafe.go │ ├── containerd │ │ ├── cgroups │ │ │ ├── LICENSE │ │ │ └── stats │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── metrics.pb.go │ │ │ │ ├── metrics.pb.txt │ │ │ │ └── metrics.proto │ │ ├── containerd │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── errdefs │ │ │ │ ├── errors.go │ │ │ │ └── grpc.go │ │ │ ├── log │ │ │ │ └── context.go │ │ │ └── platforms │ │ │ │ ├── compare.go │ │ │ │ ├── cpuinfo.go │ │ │ │ ├── database.go │ │ │ │ ├── defaults.go │ │ │ │ ├── defaults_unix.go │ │ │ │ ├── defaults_windows.go │ │ │ │ └── platforms.go │ │ └── stargz-snapshotter │ │ │ └── estargz │ │ │ ├── LICENSE │ │ │ ├── build.go │ │ │ ├── errorutil │ │ │ └── errors.go │ │ │ ├── estargz.go │ │ │ ├── gzip.go │ │ │ ├── testutil.go │ │ │ └── types.go │ ├── containers │ │ ├── image │ │ │ └── v5 │ │ │ │ ├── LICENSE │ │ │ │ ├── directory │ │ │ │ ├── directory_dest.go │ │ │ │ ├── directory_src.go │ │ │ │ ├── directory_transport.go │ │ │ │ └── explicitfilepath │ │ │ │ │ └── path.go │ │ │ │ ├── docker │ │ │ │ ├── archive │ │ │ │ │ ├── dest.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── src.go │ │ │ │ │ ├── transport.go │ │ │ │ │ └── writer.go │ │ │ │ ├── cache.go │ │ │ │ ├── daemon │ │ │ │ │ ├── client.go │ │ │ │ │ ├── daemon_dest.go │ │ │ │ │ ├── daemon_src.go │ │ │ │ │ └── daemon_transport.go │ │ │ │ ├── docker_client.go │ │ │ │ ├── docker_image.go │ │ │ │ ├── docker_image_dest.go │ │ │ │ ├── docker_image_src.go │ │ │ │ ├── docker_transport.go │ │ │ │ ├── errors.go │ │ │ │ ├── internal │ │ │ │ │ └── tarfile │ │ │ │ │ │ ├── dest.go │ │ │ │ │ │ ├── reader.go │ │ │ │ │ │ ├── src.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ └── writer.go │ │ │ │ ├── lookaside.go │ │ │ │ ├── policyconfiguration │ │ │ │ │ └── naming.go │ │ │ │ ├── reference │ │ │ │ │ ├── README.md │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── normalize.go │ │ │ │ │ ├── reference.go │ │ │ │ │ └── regexp.go │ │ │ │ └── wwwauthenticate.go │ │ │ │ ├── image │ │ │ │ ├── docker_list.go │ │ │ │ ├── docker_schema1.go │ │ │ │ ├── docker_schema2.go │ │ │ │ ├── manifest.go │ │ │ │ ├── memory.go │ │ │ │ ├── oci.go │ │ │ │ ├── oci_index.go │ │ │ │ ├── sourced.go │ │ │ │ └── unparsed.go │ │ │ │ ├── internal │ │ │ │ ├── blobinfocache │ │ │ │ │ ├── blobinfocache.go │ │ │ │ │ └── types.go │ │ │ │ ├── iolimits │ │ │ │ │ └── iolimits.go │ │ │ │ ├── pkg │ │ │ │ │ ├── keyctl │ │ │ │ │ │ ├── key.go │ │ │ │ │ │ ├── keyring.go │ │ │ │ │ │ ├── perm.go │ │ │ │ │ │ └── sys_linux.go │ │ │ │ │ └── platform │ │ │ │ │ │ └── platform_matcher.go │ │ │ │ ├── putblobdigest │ │ │ │ │ └── put_blob_digest.go │ │ │ │ ├── rootless │ │ │ │ │ └── rootless.go │ │ │ │ ├── tmpdir │ │ │ │ │ └── tmpdir.go │ │ │ │ ├── types │ │ │ │ │ └── types.go │ │ │ │ └── uploadreader │ │ │ │ │ └── upload_reader.go │ │ │ │ ├── manifest │ │ │ │ ├── common.go │ │ │ │ ├── docker_schema1.go │ │ │ │ ├── docker_schema2.go │ │ │ │ ├── docker_schema2_list.go │ │ │ │ ├── list.go │ │ │ │ ├── manifest.go │ │ │ │ ├── oci.go │ │ │ │ └── oci_index.go │ │ │ │ ├── oci │ │ │ │ ├── archive │ │ │ │ │ ├── oci_dest.go │ │ │ │ │ ├── oci_src.go │ │ │ │ │ └── oci_transport.go │ │ │ │ ├── internal │ │ │ │ │ └── oci_util.go │ │ │ │ └── layout │ │ │ │ │ ├── oci_dest.go │ │ │ │ │ ├── oci_src.go │ │ │ │ │ └── oci_transport.go │ │ │ │ ├── openshift │ │ │ │ ├── openshift-copies.go │ │ │ │ ├── openshift.go │ │ │ │ └── openshift_transport.go │ │ │ │ ├── ostree │ │ │ │ ├── ostree_dest.go │ │ │ │ ├── ostree_src.go │ │ │ │ └── ostree_transport.go │ │ │ │ ├── pkg │ │ │ │ ├── blobinfocache │ │ │ │ │ └── none │ │ │ │ │ │ └── none.go │ │ │ │ ├── compression │ │ │ │ │ ├── compression.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── types │ │ │ │ │ │ └── types.go │ │ │ │ │ └── zstd.go │ │ │ │ ├── docker │ │ │ │ │ └── config │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── config_linux.go │ │ │ │ │ │ └── config_unsupported.go │ │ │ │ ├── strslice │ │ │ │ │ ├── README.md │ │ │ │ │ └── strslice.go │ │ │ │ ├── sysregistriesv2 │ │ │ │ │ ├── shortnames.go │ │ │ │ │ └── system_registries_v2.go │ │ │ │ └── tlsclientconfig │ │ │ │ │ └── tlsclientconfig.go │ │ │ │ ├── storage │ │ │ │ ├── storage_image.go │ │ │ │ ├── storage_reference.go │ │ │ │ └── storage_transport.go │ │ │ │ ├── tarball │ │ │ │ ├── doc.go │ │ │ │ ├── tarball_reference.go │ │ │ │ ├── tarball_src.go │ │ │ │ └── tarball_transport.go │ │ │ │ ├── transports │ │ │ │ ├── alltransports │ │ │ │ │ ├── alltransports.go │ │ │ │ │ ├── docker_daemon.go │ │ │ │ │ ├── docker_daemon_stub.go │ │ │ │ │ ├── ostree.go │ │ │ │ │ ├── ostree_stub.go │ │ │ │ │ ├── storage.go │ │ │ │ │ └── storage_stub.go │ │ │ │ ├── stub.go │ │ │ │ └── transports.go │ │ │ │ ├── types │ │ │ │ └── types.go │ │ │ │ └── version │ │ │ │ └── version.go │ │ ├── libtrust │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── certificates.go │ │ │ ├── doc.go │ │ │ ├── ec_key.go │ │ │ ├── ec_key_no_openssl.go │ │ │ ├── ec_key_openssl.go │ │ │ ├── filter.go │ │ │ ├── hash.go │ │ │ ├── jsonsign.go │ │ │ ├── key.go │ │ │ ├── key_files.go │ │ │ ├── key_manager.go │ │ │ ├── rsa_key.go │ │ │ └── util.go │ │ ├── ocicrypt │ │ │ ├── LICENSE │ │ │ └── spec │ │ │ │ └── spec.go │ │ └── storage │ │ │ ├── .cirrus.yml │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .mailmap │ │ │ ├── AUTHORS │ │ │ ├── CODE-OF-CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── VERSION │ │ │ ├── Vagrantfile │ │ │ ├── containers.go │ │ │ ├── drivers │ │ │ ├── aufs │ │ │ │ ├── aufs.go │ │ │ │ ├── dirs.go │ │ │ │ ├── mount.go │ │ │ │ ├── mount_linux.go │ │ │ │ └── mount_unsupported.go │ │ │ ├── btrfs │ │ │ │ ├── btrfs.go │ │ │ │ ├── dummy_unsupported.go │ │ │ │ ├── version.go │ │ │ │ └── version_none.go │ │ │ ├── chown.go │ │ │ ├── chown_unix.go │ │ │ ├── chown_windows.go │ │ │ ├── chroot_unix.go │ │ │ ├── chroot_windows.go │ │ │ ├── copy │ │ │ │ ├── copy_linux.go │ │ │ │ └── copy_unsupported.go │ │ │ ├── counter.go │ │ │ ├── devmapper │ │ │ │ ├── device_setup.go │ │ │ │ ├── deviceset.go │ │ │ │ ├── devmapper_doc.go │ │ │ │ ├── driver.go │ │ │ │ ├── jsoniter.go │ │ │ │ └── mount.go │ │ │ ├── driver.go │ │ │ ├── driver_freebsd.go │ │ │ ├── driver_linux.go │ │ │ ├── driver_solaris.go │ │ │ ├── driver_unsupported.go │ │ │ ├── driver_windows.go │ │ │ ├── fsdiff.go │ │ │ ├── jsoniter.go │ │ │ ├── overlay │ │ │ │ ├── check.go │ │ │ │ ├── check_115.go │ │ │ │ ├── check_116.go │ │ │ │ ├── jsoniter.go │ │ │ │ ├── mount.go │ │ │ │ ├── overlay.go │ │ │ │ ├── overlay_cgo.go │ │ │ │ ├── overlay_nocgo.go │ │ │ │ ├── overlay_unsupported.go │ │ │ │ └── randomid.go │ │ │ ├── overlayutils │ │ │ │ └── overlayutils.go │ │ │ ├── quota │ │ │ │ ├── projectquota.go │ │ │ │ └── projectquota_unsupported.go │ │ │ ├── register │ │ │ │ ├── register_aufs.go │ │ │ │ ├── register_btrfs.go │ │ │ │ ├── register_devicemapper.go │ │ │ │ ├── register_overlay.go │ │ │ │ ├── register_vfs.go │ │ │ │ ├── register_windows.go │ │ │ │ └── register_zfs.go │ │ │ ├── template.go │ │ │ ├── vfs │ │ │ │ ├── copy_linux.go │ │ │ │ ├── copy_unsupported.go │ │ │ │ └── driver.go │ │ │ ├── windows │ │ │ │ ├── jsoniter_windows.go │ │ │ │ └── windows.go │ │ │ └── zfs │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── zfs.go │ │ │ │ ├── zfs_freebsd.go │ │ │ │ ├── zfs_linux.go │ │ │ │ └── zfs_unsupported.go │ │ │ ├── errors.go │ │ │ ├── idset.go │ │ │ ├── images.go │ │ │ ├── jsoniter.go │ │ │ ├── layers.go │ │ │ ├── lockfile_compat.go │ │ │ ├── pkg │ │ │ ├── archive │ │ │ │ ├── README.md │ │ │ │ ├── archive.go │ │ │ │ ├── archive_110.go │ │ │ │ ├── archive_19.go │ │ │ │ ├── archive_freebsd.go │ │ │ │ ├── archive_linux.go │ │ │ │ ├── archive_other.go │ │ │ │ ├── archive_unix.go │ │ │ │ ├── archive_windows.go │ │ │ │ ├── archive_zstd.go │ │ │ │ ├── changes.go │ │ │ │ ├── changes_linux.go │ │ │ │ ├── changes_other.go │ │ │ │ ├── changes_unix.go │ │ │ │ ├── changes_windows.go │ │ │ │ ├── copy.go │ │ │ │ ├── copy_unix.go │ │ │ │ ├── copy_windows.go │ │ │ │ ├── diff.go │ │ │ │ ├── time_linux.go │ │ │ │ ├── time_unsupported.go │ │ │ │ ├── whiteouts.go │ │ │ │ └── wrap.go │ │ │ ├── chrootarchive │ │ │ │ ├── archive.go │ │ │ │ ├── archive_unix.go │ │ │ │ ├── archive_windows.go │ │ │ │ ├── chroot_linux.go │ │ │ │ ├── chroot_unix.go │ │ │ │ ├── diff.go │ │ │ │ ├── diff_unix.go │ │ │ │ ├── diff_windows.go │ │ │ │ ├── init_unix.go │ │ │ │ ├── init_windows.go │ │ │ │ └── jsoniter.go │ │ │ ├── chunked │ │ │ │ ├── compression.go │ │ │ │ ├── compressor │ │ │ │ │ └── compressor.go │ │ │ │ ├── internal │ │ │ │ │ └── compression.go │ │ │ │ ├── storage.go │ │ │ │ ├── storage_linux.go │ │ │ │ └── storage_unsupported.go │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── devicemapper │ │ │ │ ├── devmapper.go │ │ │ │ ├── devmapper_log.go │ │ │ │ ├── devmapper_wrapper.go │ │ │ │ ├── devmapper_wrapper_deferred_remove.go │ │ │ │ ├── devmapper_wrapper_dynamic.go │ │ │ │ ├── devmapper_wrapper_no_deferred_remove.go │ │ │ │ ├── devmapper_wrapper_static.go │ │ │ │ ├── ioctl.go │ │ │ │ └── log.go │ │ │ ├── directory │ │ │ │ ├── directory.go │ │ │ │ ├── directory_unix.go │ │ │ │ └── directory_windows.go │ │ │ ├── dmesg │ │ │ │ └── dmesg_linux.go │ │ │ ├── fileutils │ │ │ │ ├── fileutils.go │ │ │ │ ├── fileutils_darwin.go │ │ │ │ ├── fileutils_solaris.go │ │ │ │ ├── fileutils_unix.go │ │ │ │ └── fileutils_windows.go │ │ │ ├── fsutils │ │ │ │ └── fsutils_linux.go │ │ │ ├── homedir │ │ │ │ ├── homedir_others.go │ │ │ │ ├── homedir_unix.go │ │ │ │ └── homedir_windows.go │ │ │ ├── idtools │ │ │ │ ├── idtools.go │ │ │ │ ├── idtools_supported.go │ │ │ │ ├── idtools_unix.go │ │ │ │ ├── idtools_unsupported.go │ │ │ │ ├── idtools_windows.go │ │ │ │ ├── parser.go │ │ │ │ ├── usergroupadd_linux.go │ │ │ │ ├── usergroupadd_unsupported.go │ │ │ │ └── utils_unix.go │ │ │ ├── ioutils │ │ │ │ ├── buffer.go │ │ │ │ ├── bytespipe.go │ │ │ │ ├── fswriters.go │ │ │ │ ├── fswriters_linux.go │ │ │ │ ├── fswriters_unsupported.go │ │ │ │ ├── readers.go │ │ │ │ ├── temp_unix.go │ │ │ │ ├── temp_windows.go │ │ │ │ ├── writeflusher.go │ │ │ │ └── writers.go │ │ │ ├── locker │ │ │ │ ├── README.md │ │ │ │ └── locker.go │ │ │ ├── lockfile │ │ │ │ ├── lockfile.go │ │ │ │ ├── lockfile_unix.go │ │ │ │ └── lockfile_windows.go │ │ │ ├── longpath │ │ │ │ └── longpath.go │ │ │ ├── loopback │ │ │ │ ├── attach_loopback.go │ │ │ │ ├── ioctl.go │ │ │ │ ├── loop_wrapper.go │ │ │ │ ├── loopback.go │ │ │ │ └── loopback_unsupported.go │ │ │ ├── mount │ │ │ │ ├── flags.go │ │ │ │ ├── flags_linux.go │ │ │ │ ├── flags_unsupported.go │ │ │ │ ├── mount.go │ │ │ │ ├── mounter_freebsd.go │ │ │ │ ├── mounter_linux.go │ │ │ │ ├── mounter_unsupported.go │ │ │ │ ├── mountinfo.go │ │ │ │ ├── mountinfo_linux.go │ │ │ │ ├── sharedsubtree_linux.go │ │ │ │ ├── unmount_unix.go │ │ │ │ └── unmount_unsupported.go │ │ │ ├── parsers │ │ │ │ ├── kernel │ │ │ │ │ ├── kernel.go │ │ │ │ │ ├── kernel_darwin.go │ │ │ │ │ ├── kernel_unix.go │ │ │ │ │ ├── kernel_windows.go │ │ │ │ │ ├── uname_linux.go │ │ │ │ │ ├── uname_solaris.go │ │ │ │ │ └── uname_unsupported.go │ │ │ │ └── parsers.go │ │ │ ├── pools │ │ │ │ └── pools.go │ │ │ ├── promise │ │ │ │ └── promise.go │ │ │ ├── reexec │ │ │ │ ├── README.md │ │ │ │ ├── command_linux.go │ │ │ │ ├── command_unix.go │ │ │ │ ├── command_unsupported.go │ │ │ │ ├── command_windows.go │ │ │ │ └── reexec.go │ │ │ ├── stringid │ │ │ │ ├── README.md │ │ │ │ └── stringid.go │ │ │ ├── stringutils │ │ │ │ ├── README.md │ │ │ │ └── stringutils.go │ │ │ ├── system │ │ │ │ ├── chmod.go │ │ │ │ ├── chtimes.go │ │ │ │ ├── chtimes_unix.go │ │ │ │ ├── chtimes_windows.go │ │ │ │ ├── errors.go │ │ │ │ ├── exitcode.go │ │ │ │ ├── init.go │ │ │ │ ├── init_windows.go │ │ │ │ ├── lchown.go │ │ │ │ ├── lcow_unix.go │ │ │ │ ├── lcow_windows.go │ │ │ │ ├── lstat_unix.go │ │ │ │ ├── lstat_windows.go │ │ │ │ ├── meminfo.go │ │ │ │ ├── meminfo_linux.go │ │ │ │ ├── meminfo_solaris.go │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ ├── meminfo_windows.go │ │ │ │ ├── mknod.go │ │ │ │ ├── mknod_freebsd.go │ │ │ │ ├── mknod_windows.go │ │ │ │ ├── path.go │ │ │ │ ├── path_unix.go │ │ │ │ ├── path_windows.go │ │ │ │ ├── process_unix.go │ │ │ │ ├── rm.go │ │ │ │ ├── stat_darwin.go │ │ │ │ ├── stat_freebsd.go │ │ │ │ ├── stat_linux.go │ │ │ │ ├── stat_openbsd.go │ │ │ │ ├── stat_solaris.go │ │ │ │ ├── stat_unix.go │ │ │ │ ├── stat_windows.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── umask.go │ │ │ │ ├── umask_windows.go │ │ │ │ ├── utimes_freebsd.go │ │ │ │ ├── utimes_linux.go │ │ │ │ ├── utimes_unsupported.go │ │ │ │ ├── xattrs_linux.go │ │ │ │ └── xattrs_unsupported.go │ │ │ ├── tarlog │ │ │ │ └── tarlogger.go │ │ │ ├── truncindex │ │ │ │ └── truncindex.go │ │ │ └── unshare │ │ │ │ ├── getenv_linux_cgo.go │ │ │ │ ├── getenv_linux_nocgo.go │ │ │ │ ├── unshare.c │ │ │ │ ├── unshare.go │ │ │ │ ├── unshare_cgo.go │ │ │ │ ├── unshare_gccgo.go │ │ │ │ ├── unshare_linux.go │ │ │ │ ├── unshare_unsupported.go │ │ │ │ └── unshare_unsupported_cgo.go │ │ │ ├── storage.conf │ │ │ ├── store.go │ │ │ ├── types │ │ │ ├── default_override_test.conf │ │ │ ├── errors.go │ │ │ ├── idmappings.go │ │ │ ├── options.go │ │ │ ├── storage_broken.conf │ │ │ ├── storage_test.conf │ │ │ └── utils.go │ │ │ ├── userns.go │ │ │ └── utils.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── dlclark │ │ └── regexp2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── ATTRIB │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── match.go │ │ │ ├── regexp.go │ │ │ ├── replace.go │ │ │ ├── runner.go │ │ │ ├── syntax │ │ │ ├── charclass.go │ │ │ ├── code.go │ │ │ ├── escape.go │ │ │ ├── fuzz.go │ │ │ ├── parser.go │ │ │ ├── prefix.go │ │ │ ├── replacerdata.go │ │ │ ├── tree.go │ │ │ └── writer.go │ │ │ └── testoutput1 │ ├── docker │ │ ├── distribution │ │ │ ├── .gitignore │ │ │ ├── .gometalinter.json │ │ │ ├── .mailmap │ │ │ ├── .travis.yml │ │ │ ├── BUILDING.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ROADMAP.md │ │ │ ├── blobs.go │ │ │ ├── digestset │ │ │ │ └── set.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── manifests.go │ │ │ ├── metrics │ │ │ │ └── prometheus.go │ │ │ ├── reference │ │ │ │ ├── helpers.go │ │ │ │ ├── normalize.go │ │ │ │ ├── reference.go │ │ │ │ └── regexp.go │ │ │ ├── registry.go │ │ │ ├── registry │ │ │ │ ├── api │ │ │ │ │ ├── errcode │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── handler.go │ │ │ │ │ │ └── register.go │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── descriptors.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── headerparser.go │ │ │ │ │ │ ├── routes.go │ │ │ │ │ │ └── urls.go │ │ │ │ ├── client │ │ │ │ │ ├── auth │ │ │ │ │ │ └── challenge │ │ │ │ │ │ │ ├── addr.go │ │ │ │ │ │ │ └── authchallenge.go │ │ │ │ │ ├── blob_writer.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── repository.go │ │ │ │ │ └── transport │ │ │ │ │ │ ├── http_reader.go │ │ │ │ │ │ └── transport.go │ │ │ │ └── storage │ │ │ │ │ └── cache │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cachedblobdescriptorstore.go │ │ │ │ │ └── memory │ │ │ │ │ └── memory.go │ │ │ ├── tags.go │ │ │ └── vendor.conf │ │ ├── docker-credential-helpers │ │ │ ├── LICENSE │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ └── command.go │ │ │ └── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── error.go │ │ │ │ ├── helper.go │ │ │ │ └── version.go │ │ ├── docker │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── common.go │ │ │ │ ├── common_unix.go │ │ │ │ ├── common_windows.go │ │ │ │ ├── swagger-gen.yaml │ │ │ │ ├── swagger.yaml │ │ │ │ └── types │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── blkiodev │ │ │ │ │ └── blkio.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── configs.go │ │ │ │ │ ├── container │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container_changes.go │ │ │ │ │ ├── container_create.go │ │ │ │ │ ├── container_top.go │ │ │ │ │ ├── container_update.go │ │ │ │ │ ├── container_wait.go │ │ │ │ │ ├── host_config.go │ │ │ │ │ ├── hostconfig_unix.go │ │ │ │ │ ├── hostconfig_windows.go │ │ │ │ │ └── waitcondition.go │ │ │ │ │ ├── error_response.go │ │ │ │ │ ├── error_response_ext.go │ │ │ │ │ ├── events │ │ │ │ │ └── events.go │ │ │ │ │ ├── filters │ │ │ │ │ └── parse.go │ │ │ │ │ ├── graph_driver_data.go │ │ │ │ │ ├── id_response.go │ │ │ │ │ ├── image │ │ │ │ │ └── image_history.go │ │ │ │ │ ├── image_delete_response_item.go │ │ │ │ │ ├── image_summary.go │ │ │ │ │ ├── mount │ │ │ │ │ └── mount.go │ │ │ │ │ ├── network │ │ │ │ │ └── network.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_device.go │ │ │ │ │ ├── plugin_env.go │ │ │ │ │ ├── plugin_interface_type.go │ │ │ │ │ ├── plugin_mount.go │ │ │ │ │ ├── plugin_responses.go │ │ │ │ │ ├── port.go │ │ │ │ │ ├── registry │ │ │ │ │ ├── authenticate.go │ │ │ │ │ └── registry.go │ │ │ │ │ ├── service_update_response.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── strslice │ │ │ │ │ └── strslice.go │ │ │ │ │ ├── swarm │ │ │ │ │ ├── common.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── runtime.go │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ │ └── plugin.proto │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── swarm.go │ │ │ │ │ └── task.go │ │ │ │ │ ├── time │ │ │ │ │ ├── duration_convert.go │ │ │ │ │ └── timestamp.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── versions │ │ │ │ │ ├── README.md │ │ │ │ │ └── compare.go │ │ │ │ │ ├── volume.go │ │ │ │ │ └── volume │ │ │ │ │ ├── volume_create.go │ │ │ │ │ └── volume_list.go │ │ │ ├── client │ │ │ │ ├── README.md │ │ │ │ ├── build_cancel.go │ │ │ │ ├── build_prune.go │ │ │ │ ├── checkpoint_create.go │ │ │ │ ├── checkpoint_delete.go │ │ │ │ ├── checkpoint_list.go │ │ │ │ ├── client.go │ │ │ │ ├── client_deprecated.go │ │ │ │ ├── client_unix.go │ │ │ │ ├── client_windows.go │ │ │ │ ├── config_create.go │ │ │ │ ├── config_inspect.go │ │ │ │ ├── config_list.go │ │ │ │ ├── config_remove.go │ │ │ │ ├── config_update.go │ │ │ │ ├── container_attach.go │ │ │ │ ├── container_commit.go │ │ │ │ ├── container_copy.go │ │ │ │ ├── container_create.go │ │ │ │ ├── container_diff.go │ │ │ │ ├── container_exec.go │ │ │ │ ├── container_export.go │ │ │ │ ├── container_inspect.go │ │ │ │ ├── container_kill.go │ │ │ │ ├── container_list.go │ │ │ │ ├── container_logs.go │ │ │ │ ├── container_pause.go │ │ │ │ ├── container_prune.go │ │ │ │ ├── container_remove.go │ │ │ │ ├── container_rename.go │ │ │ │ ├── container_resize.go │ │ │ │ ├── container_restart.go │ │ │ │ ├── container_start.go │ │ │ │ ├── container_stats.go │ │ │ │ ├── container_stop.go │ │ │ │ ├── container_top.go │ │ │ │ ├── container_unpause.go │ │ │ │ ├── container_update.go │ │ │ │ ├── container_wait.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── distribution_inspect.go │ │ │ │ ├── errors.go │ │ │ │ ├── events.go │ │ │ │ ├── hijack.go │ │ │ │ ├── image_build.go │ │ │ │ ├── image_create.go │ │ │ │ ├── image_history.go │ │ │ │ ├── image_import.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── image_list.go │ │ │ │ ├── image_load.go │ │ │ │ ├── image_prune.go │ │ │ │ ├── image_pull.go │ │ │ │ ├── image_push.go │ │ │ │ ├── image_remove.go │ │ │ │ ├── image_save.go │ │ │ │ ├── image_search.go │ │ │ │ ├── image_tag.go │ │ │ │ ├── info.go │ │ │ │ ├── interface.go │ │ │ │ ├── interface_experimental.go │ │ │ │ ├── interface_stable.go │ │ │ │ ├── login.go │ │ │ │ ├── network_connect.go │ │ │ │ ├── network_create.go │ │ │ │ ├── network_disconnect.go │ │ │ │ ├── network_inspect.go │ │ │ │ ├── network_list.go │ │ │ │ ├── network_prune.go │ │ │ │ ├── network_remove.go │ │ │ │ ├── node_inspect.go │ │ │ │ ├── node_list.go │ │ │ │ ├── node_remove.go │ │ │ │ ├── node_update.go │ │ │ │ ├── options.go │ │ │ │ ├── ping.go │ │ │ │ ├── plugin_create.go │ │ │ │ ├── plugin_disable.go │ │ │ │ ├── plugin_enable.go │ │ │ │ ├── plugin_inspect.go │ │ │ │ ├── plugin_install.go │ │ │ │ ├── plugin_list.go │ │ │ │ ├── plugin_push.go │ │ │ │ ├── plugin_remove.go │ │ │ │ ├── plugin_set.go │ │ │ │ ├── plugin_upgrade.go │ │ │ │ ├── request.go │ │ │ │ ├── secret_create.go │ │ │ │ ├── secret_inspect.go │ │ │ │ ├── secret_list.go │ │ │ │ ├── secret_remove.go │ │ │ │ ├── secret_update.go │ │ │ │ ├── service_create.go │ │ │ │ ├── service_inspect.go │ │ │ │ ├── service_list.go │ │ │ │ ├── service_logs.go │ │ │ │ ├── service_remove.go │ │ │ │ ├── service_update.go │ │ │ │ ├── swarm_get_unlock_key.go │ │ │ │ ├── swarm_init.go │ │ │ │ ├── swarm_inspect.go │ │ │ │ ├── swarm_join.go │ │ │ │ ├── swarm_leave.go │ │ │ │ ├── swarm_unlock.go │ │ │ │ ├── swarm_update.go │ │ │ │ ├── task_inspect.go │ │ │ │ ├── task_list.go │ │ │ │ ├── task_logs.go │ │ │ │ ├── transport.go │ │ │ │ ├── utils.go │ │ │ │ ├── version.go │ │ │ │ ├── volume_create.go │ │ │ │ ├── volume_inspect.go │ │ │ │ ├── volume_list.go │ │ │ │ ├── volume_prune.go │ │ │ │ └── volume_remove.go │ │ │ └── errdefs │ │ │ │ ├── defs.go │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── http_helpers.go │ │ │ │ └── is.go │ │ ├── go-connections │ │ │ ├── LICENSE │ │ │ ├── nat │ │ │ │ ├── nat.go │ │ │ │ ├── parse.go │ │ │ │ └── sort.go │ │ │ ├── sockets │ │ │ │ ├── README.md │ │ │ │ ├── inmem_socket.go │ │ │ │ ├── proxy.go │ │ │ │ ├── sockets.go │ │ │ │ ├── sockets_unix.go │ │ │ │ ├── sockets_windows.go │ │ │ │ ├── tcp_socket.go │ │ │ │ └── unix_socket.go │ │ │ └── tlsconfig │ │ │ │ ├── certpool_go17.go │ │ │ │ ├── certpool_other.go │ │ │ │ ├── config.go │ │ │ │ ├── config_client_ciphers.go │ │ │ │ └── config_legacy_client_ciphers.go │ │ ├── go-metrics │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── LICENSE.docs │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── counter.go │ │ │ ├── docs.go │ │ │ ├── gauge.go │ │ │ ├── handler.go │ │ │ ├── helpers.go │ │ │ ├── namespace.go │ │ │ ├── register.go │ │ │ ├── timer.go │ │ │ └── unit.go │ │ └── go-units │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── duration.go │ │ │ ├── size.go │ │ │ └── ulimit.go │ ├── dop251 │ │ ├── goja │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── array.go │ │ │ ├── array_sparse.go │ │ │ ├── ast │ │ │ │ ├── README.markdown │ │ │ │ └── node.go │ │ │ ├── builtin_array.go │ │ │ ├── builtin_boolean.go │ │ │ ├── builtin_date.go │ │ │ ├── builtin_error.go │ │ │ ├── builtin_function.go │ │ │ ├── builtin_global.go │ │ │ ├── builtin_json.go │ │ │ ├── builtin_math.go │ │ │ ├── builtin_number.go │ │ │ ├── builtin_object.go │ │ │ ├── builtin_regexp.go │ │ │ ├── builtin_string.go │ │ │ ├── builtin_typedarrays.go │ │ │ ├── compiler.go │ │ │ ├── compiler_expr.go │ │ │ ├── compiler_stmt.go │ │ │ ├── date.go │ │ │ ├── date_parser.go │ │ │ ├── dtoa.go │ │ │ ├── file │ │ │ │ ├── README.markdown │ │ │ │ └── file.go │ │ │ ├── func.go │ │ │ ├── ipow.go │ │ │ ├── object.go │ │ │ ├── object_args.go │ │ │ ├── object_gomap.go │ │ │ ├── object_gomap_reflect.go │ │ │ ├── object_goreflect.go │ │ │ ├── object_goslice.go │ │ │ ├── object_goslice_reflect.go │ │ │ ├── object_lazy.go │ │ │ ├── parser │ │ │ │ ├── README.markdown │ │ │ │ ├── error.go │ │ │ │ ├── expression.go │ │ │ │ ├── lexer.go │ │ │ │ ├── parser.go │ │ │ │ ├── regexp.go │ │ │ │ ├── scope.go │ │ │ │ └── statement.go │ │ │ ├── regexp.go │ │ │ ├── runtime.go │ │ │ ├── srcfile.go │ │ │ ├── string.go │ │ │ ├── string_ascii.go │ │ │ ├── string_unicode.go │ │ │ ├── token │ │ │ │ ├── Makefile │ │ │ │ ├── README.markdown │ │ │ │ ├── token.go │ │ │ │ ├── token_const.go │ │ │ │ └── tokenfmt │ │ │ ├── value.go │ │ │ └── vm.go │ │ └── goja_nodejs │ │ │ ├── LICENSE │ │ │ ├── console │ │ │ └── module.go │ │ │ ├── eventloop │ │ │ └── eventloop.go │ │ │ ├── require │ │ │ └── module.go │ │ │ └── util │ │ │ └── module.go │ ├── evanphx │ │ └── json-patch │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── merge.go │ │ │ └── patch.go │ ├── fatih │ │ └── color │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── color.go │ │ │ └── doc.go │ ├── felixge │ │ └── httpsnoop │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── capture_metrics.go │ │ │ ├── docs.go │ │ │ ├── wrap_generated_gteq_1.8.go │ │ │ └── wrap_generated_lt_1.8.go │ ├── form3tech-oss │ │ └── jwt-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── MIGRATION_GUIDE.md │ │ │ ├── README.md │ │ │ ├── VERSION_HISTORY.md │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── ecdsa.go │ │ │ ├── ecdsa_utils.go │ │ │ ├── errors.go │ │ │ ├── hmac.go │ │ │ ├── map_claims.go │ │ │ ├── none.go │ │ │ ├── parser.go │ │ │ ├── rsa.go │ │ │ ├── rsa_pss.go │ │ │ ├── rsa_utils.go │ │ │ ├── signing_method.go │ │ │ └── token.go │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fen.go │ │ │ ├── fsnotify.go │ │ │ ├── inotify.go │ │ │ ├── inotify_poller.go │ │ │ ├── kqueue.go │ │ │ ├── open_mode_bsd.go │ │ │ ├── open_mode_darwin.go │ │ │ └── windows.go │ ├── ghodss │ │ └── yaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fields.go │ │ │ └── yaml.go │ ├── go-logr │ │ └── logr │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── discard.go │ │ │ └── logr.go │ ├── go-sourcemap │ │ └── sourcemap │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── consumer.go │ │ │ ├── internal │ │ │ └── base64vlq │ │ │ │ └── base64vlq.go │ │ │ └── mappings.go │ ├── gobwas │ │ └── glob │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── bench.sh │ │ │ ├── compiler │ │ │ └── compiler.go │ │ │ ├── glob.go │ │ │ ├── match │ │ │ ├── any.go │ │ │ ├── any_of.go │ │ │ ├── btree.go │ │ │ ├── contains.go │ │ │ ├── every_of.go │ │ │ ├── list.go │ │ │ ├── match.go │ │ │ ├── max.go │ │ │ ├── min.go │ │ │ ├── nothing.go │ │ │ ├── prefix.go │ │ │ ├── prefix_any.go │ │ │ ├── prefix_suffix.go │ │ │ ├── range.go │ │ │ ├── row.go │ │ │ ├── segments.go │ │ │ ├── single.go │ │ │ ├── suffix.go │ │ │ ├── suffix_any.go │ │ │ ├── super.go │ │ │ └── text.go │ │ │ ├── readme.md │ │ │ ├── syntax │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ └── parser.go │ │ │ ├── lexer │ │ │ │ ├── lexer.go │ │ │ │ └── token.go │ │ │ └── syntax.go │ │ │ └── util │ │ │ ├── runes │ │ │ └── runes.go │ │ │ └── strings │ │ │ └── strings.go │ ├── gogo │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── gogoproto │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ ├── gogo.pb.golden │ │ │ ├── gogo.proto │ │ │ └── helper.go │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── custom_gogo.go │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── table_marshal.go │ │ │ ├── table_marshal_gogo.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── table_unmarshal_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gogo.go │ │ │ ├── protoc-gen-gogo │ │ │ └── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.go │ │ │ │ ├── descriptor.pb.go │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ └── helper.go │ │ │ └── sortkeys │ │ │ └── sortkeys.go │ ├── golang │ │ ├── groupcache │ │ │ ├── LICENSE │ │ │ └── lru │ │ │ │ └── lru.go │ │ ├── mock │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── gomock │ │ │ │ ├── call.go │ │ │ │ ├── callset.go │ │ │ │ ├── controller.go │ │ │ │ └── matchers.go │ │ │ └── mockgen │ │ │ │ ├── mockgen.go │ │ │ │ ├── model │ │ │ │ └── model.go │ │ │ │ ├── parse.go │ │ │ │ ├── reflect.go │ │ │ │ ├── version.1.11.go │ │ │ │ └── version.1.12.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 │ │ │ ├── protoc-gen-go │ │ │ └── descriptor │ │ │ │ └── descriptor.pb.go │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ └── any.pb.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ └── duration.pb.go │ │ │ ├── empty │ │ │ └── empty.pb.go │ │ │ ├── timestamp.go │ │ │ └── timestamp │ │ │ └── timestamp.pb.go │ ├── google │ │ ├── btree │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── btree.go │ │ ├── go-cmp │ │ │ ├── LICENSE │ │ │ └── cmp │ │ │ │ ├── compare.go │ │ │ │ ├── export_panic.go │ │ │ │ ├── export_unsafe.go │ │ │ │ ├── internal │ │ │ │ ├── diff │ │ │ │ │ ├── debug_disable.go │ │ │ │ │ ├── debug_enable.go │ │ │ │ │ └── diff.go │ │ │ │ ├── flags │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── toolchain_legacy.go │ │ │ │ │ └── toolchain_recent.go │ │ │ │ ├── function │ │ │ │ │ └── func.go │ │ │ │ └── value │ │ │ │ │ ├── name.go │ │ │ │ │ ├── pointer_purego.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── sort.go │ │ │ │ │ └── zero.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 │ │ ├── go-intervals │ │ │ ├── LICENSE │ │ │ └── intervalset │ │ │ │ ├── intervalset.go │ │ │ │ └── intervalset_immutable.go │ │ ├── gofuzz │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bytesource │ │ │ │ └── bytesource.go │ │ │ ├── doc.go │ │ │ └── fuzz.go │ │ └── uuid │ │ │ ├── .travis.yml │ │ │ ├── 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 │ ├── googleapis │ │ └── gnostic │ │ │ ├── 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 │ ├── gorilla │ │ ├── handlers │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── canonical.go │ │ │ ├── compress.go │ │ │ ├── cors.go │ │ │ ├── doc.go │ │ │ ├── handlers.go │ │ │ ├── logging.go │ │ │ ├── proxy_headers.go │ │ │ └── recovery.go │ │ ├── mux │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── middleware.go │ │ │ ├── mux.go │ │ │ ├── regexp.go │ │ │ ├── route.go │ │ │ └── test_helpers.go │ │ └── websocket │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── client_clone.go │ │ │ ├── client_clone_legacy.go │ │ │ ├── compression.go │ │ │ ├── conn.go │ │ │ ├── conn_write.go │ │ │ ├── conn_write_legacy.go │ │ │ ├── doc.go │ │ │ ├── join.go │ │ │ ├── json.go │ │ │ ├── mask.go │ │ │ ├── mask_safe.go │ │ │ ├── prepared.go │ │ │ ├── proxy.go │ │ │ ├── server.go │ │ │ ├── trace.go │ │ │ ├── trace_17.go │ │ │ ├── util.go │ │ │ └── x_net_proxy.go │ ├── gregjones │ │ └── httpcache │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── diskcache │ │ │ └── diskcache.go │ │ │ └── httpcache.go │ ├── hashicorp │ │ ├── errwrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── errwrap.go │ │ ├── go-hclog │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorize_unix.go │ │ │ ├── colorize_windows.go │ │ │ ├── context.go │ │ │ ├── exclude.go │ │ │ ├── global.go │ │ │ ├── interceptlogger.go │ │ │ ├── intlogger.go │ │ │ ├── logger.go │ │ │ ├── nulllogger.go │ │ │ ├── stacktrace.go │ │ │ ├── stdlog.go │ │ │ └── writer.go │ │ ├── go-multierror │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── append.go │ │ │ ├── flatten.go │ │ │ ├── format.go │ │ │ ├── group.go │ │ │ ├── multierror.go │ │ │ ├── prefix.go │ │ │ └── sort.go │ │ ├── go-plugin │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── discover.go │ │ │ ├── error.go │ │ │ ├── grpc_broker.go │ │ │ ├── grpc_client.go │ │ │ ├── grpc_controller.go │ │ │ ├── grpc_server.go │ │ │ ├── grpc_stdio.go │ │ │ ├── internal │ │ │ │ └── plugin │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── grpc_broker.pb.go │ │ │ │ │ ├── grpc_broker.proto │ │ │ │ │ ├── grpc_controller.pb.go │ │ │ │ │ ├── grpc_controller.proto │ │ │ │ │ ├── grpc_stdio.pb.go │ │ │ │ │ └── grpc_stdio.proto │ │ │ ├── log_entry.go │ │ │ ├── mtls.go │ │ │ ├── mux_broker.go │ │ │ ├── plugin.go │ │ │ ├── process.go │ │ │ ├── process_posix.go │ │ │ ├── process_windows.go │ │ │ ├── protocol.go │ │ │ ├── rpc_client.go │ │ │ ├── rpc_server.go │ │ │ ├── server.go │ │ │ ├── server_mux.go │ │ │ ├── stream.go │ │ │ └── testing.go │ │ ├── golang-lru │ │ │ ├── .gitignore │ │ │ ├── 2q.go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arc.go │ │ │ ├── doc.go │ │ │ ├── lru.go │ │ │ └── simplelru │ │ │ │ ├── lru.go │ │ │ │ └── lru_interface.go │ │ ├── hcl │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── decoder.go │ │ │ ├── hcl.go │ │ │ ├── hcl │ │ │ │ ├── ast │ │ │ │ │ ├── ast.go │ │ │ │ │ └── walk.go │ │ │ │ ├── parser │ │ │ │ │ ├── error.go │ │ │ │ │ └── parser.go │ │ │ │ ├── printer │ │ │ │ │ ├── nodes.go │ │ │ │ │ └── printer.go │ │ │ │ ├── scanner │ │ │ │ │ └── scanner.go │ │ │ │ ├── strconv │ │ │ │ │ └── quote.go │ │ │ │ └── token │ │ │ │ │ ├── position.go │ │ │ │ │ └── token.go │ │ │ ├── json │ │ │ │ ├── parser │ │ │ │ │ ├── flatten.go │ │ │ │ │ └── parser.go │ │ │ │ ├── scanner │ │ │ │ │ └── scanner.go │ │ │ │ └── token │ │ │ │ │ ├── position.go │ │ │ │ │ └── token.go │ │ │ ├── lex.go │ │ │ └── parse.go │ │ └── yamux │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── addr.go │ │ │ ├── const.go │ │ │ ├── mux.go │ │ │ ├── session.go │ │ │ ├── spec.md │ │ │ ├── stream.go │ │ │ └── util.go │ ├── iancoleman │ │ └── strcase │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── acronyms.go │ │ │ ├── camel.go │ │ │ ├── doc.go │ │ │ └── snake.go │ ├── imdario │ │ └── mergo │ │ │ ├── .deepsource.toml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── merge.go │ │ │ └── mergo.go │ ├── inconshreveable │ │ └── mousetrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── trap_others.go │ │ │ ├── trap_windows.go │ │ │ └── trap_windows_1.4.go │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adapter.go │ │ │ ├── any.go │ │ │ ├── any_array.go │ │ │ ├── any_bool.go │ │ │ ├── any_float.go │ │ │ ├── any_int32.go │ │ │ ├── any_int64.go │ │ │ ├── any_invalid.go │ │ │ ├── any_nil.go │ │ │ ├── any_number.go │ │ │ ├── any_object.go │ │ │ ├── any_str.go │ │ │ ├── any_uint32.go │ │ │ ├── any_uint64.go │ │ │ ├── build.sh │ │ │ ├── config.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── iter.go │ │ │ ├── iter_array.go │ │ │ ├── iter_float.go │ │ │ ├── iter_int.go │ │ │ ├── iter_object.go │ │ │ ├── iter_skip.go │ │ │ ├── iter_skip_sloppy.go │ │ │ ├── iter_skip_strict.go │ │ │ ├── iter_str.go │ │ │ ├── jsoniter.go │ │ │ ├── pool.go │ │ │ ├── reflect.go │ │ │ ├── reflect_array.go │ │ │ ├── reflect_dynamic.go │ │ │ ├── reflect_extension.go │ │ │ ├── reflect_json_number.go │ │ │ ├── reflect_json_raw_message.go │ │ │ ├── reflect_map.go │ │ │ ├── reflect_marshaler.go │ │ │ ├── reflect_native.go │ │ │ ├── reflect_optional.go │ │ │ ├── reflect_slice.go │ │ │ ├── reflect_struct_decoder.go │ │ │ ├── reflect_struct_encoder.go │ │ │ ├── stream.go │ │ │ ├── stream_float.go │ │ │ ├── stream_int.go │ │ │ ├── stream_str.go │ │ │ └── test.sh │ ├── klauspost │ │ ├── compress │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── compressible.go │ │ │ ├── flate │ │ │ │ ├── deflate.go │ │ │ │ ├── dict_decoder.go │ │ │ │ ├── fast_encoder.go │ │ │ │ ├── huffman_bit_writer.go │ │ │ │ ├── huffman_code.go │ │ │ │ ├── huffman_sortByFreq.go │ │ │ │ ├── huffman_sortByLiteral.go │ │ │ │ ├── inflate.go │ │ │ │ ├── inflate_gen.go │ │ │ │ ├── level1.go │ │ │ │ ├── level2.go │ │ │ │ ├── level3.go │ │ │ │ ├── level4.go │ │ │ │ ├── level5.go │ │ │ │ ├── level6.go │ │ │ │ ├── regmask_amd64.go │ │ │ │ ├── regmask_other.go │ │ │ │ ├── stateless.go │ │ │ │ └── token.go │ │ │ ├── fse │ │ │ │ ├── README.md │ │ │ │ ├── bitreader.go │ │ │ │ ├── bitwriter.go │ │ │ │ ├── bytereader.go │ │ │ │ ├── compress.go │ │ │ │ ├── decompress.go │ │ │ │ └── fse.go │ │ │ ├── gen.sh │ │ │ ├── huff0 │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bitreader.go │ │ │ │ ├── bitwriter.go │ │ │ │ ├── bytereader.go │ │ │ │ ├── compress.go │ │ │ │ ├── decompress.go │ │ │ │ └── huff0.go │ │ │ ├── internal │ │ │ │ └── snapref │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_other.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encode_other.go │ │ │ │ │ └── snappy.go │ │ │ ├── s2sx.mod │ │ │ ├── s2sx.sum │ │ │ └── zstd │ │ │ │ ├── README.md │ │ │ │ ├── bitreader.go │ │ │ │ ├── bitwriter.go │ │ │ │ ├── blockdec.go │ │ │ │ ├── blockenc.go │ │ │ │ ├── blocktype_string.go │ │ │ │ ├── bytebuf.go │ │ │ │ ├── bytereader.go │ │ │ │ ├── decodeheader.go │ │ │ │ ├── decoder.go │ │ │ │ ├── decoder_options.go │ │ │ │ ├── dict.go │ │ │ │ ├── enc_base.go │ │ │ │ ├── enc_best.go │ │ │ │ ├── enc_better.go │ │ │ │ ├── enc_dfast.go │ │ │ │ ├── enc_fast.go │ │ │ │ ├── encoder.go │ │ │ │ ├── encoder_options.go │ │ │ │ ├── framedec.go │ │ │ │ ├── frameenc.go │ │ │ │ ├── fse_decoder.go │ │ │ │ ├── fse_encoder.go │ │ │ │ ├── fse_predefined.go │ │ │ │ ├── hash.go │ │ │ │ ├── history.go │ │ │ │ ├── internal │ │ │ │ └── xxhash │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── xxhash.go │ │ │ │ │ ├── xxhash_amd64.go │ │ │ │ │ ├── xxhash_amd64.s │ │ │ │ │ ├── xxhash_other.go │ │ │ │ │ └── xxhash_safe.go │ │ │ │ ├── seqdec.go │ │ │ │ ├── seqenc.go │ │ │ │ ├── snappy.go │ │ │ │ ├── zip.go │ │ │ │ └── zstd.go │ │ └── pgzip │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── GO_LICENSE │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gunzip.go │ │ │ └── gzip.go │ ├── magiconair │ │ └── properties │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── integrate.go │ │ │ ├── lex.go │ │ │ ├── load.go │ │ │ ├── parser.go │ │ │ ├── properties.go │ │ │ └── rangecheck.go │ ├── mattn │ │ ├── go-colorable │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorable_appengine.go │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ ├── go.test.sh │ │ │ └── noncolorable.go │ │ ├── go-isatty │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.test.sh │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_plan9.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_tcgets.go │ │ │ ├── isatty_windows.go │ │ │ └── renovate.json │ │ └── go-shellwords │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.test.sh │ │ │ ├── shellwords.go │ │ │ ├── util_posix.go │ │ │ └── util_windows.go │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── pbutil │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── mistifyio │ │ └── go-zfs │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Vagrantfile │ │ │ ├── error.go │ │ │ ├── utils.go │ │ │ ├── utils_notsolaris.go │ │ │ ├── utils_solaris.go │ │ │ ├── zfs.go │ │ │ └── zpool.go │ ├── mitchellh │ │ ├── go-testing-interface │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── testing.go │ │ │ └── testing_go19.go │ │ └── mapstructure │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ └── mapstructure.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 │ │ └── sys │ │ │ └── mountinfo │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── mounted_linux.go │ │ │ ├── mounted_unix.go │ │ │ ├── mountinfo.go │ │ │ ├── mountinfo_bsd.go │ │ │ ├── mountinfo_filters.go │ │ │ ├── mountinfo_linux.go │ │ │ ├── mountinfo_unsupported.go │ │ │ └── mountinfo_windows.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 │ ├── oklog │ │ └── run │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── group.go │ ├── opencontainers │ │ ├── go-digest │ │ │ ├── .mailmap │ │ │ ├── .pullapprove.yml │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── algorithm.go │ │ │ ├── digest.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ └── verifiers.go │ │ ├── image-spec │ │ │ ├── LICENSE │ │ │ └── specs-go │ │ │ │ ├── v1 │ │ │ │ ├── annotations.go │ │ │ │ ├── config.go │ │ │ │ ├── descriptor.go │ │ │ │ ├── index.go │ │ │ │ ├── layout.go │ │ │ │ ├── manifest.go │ │ │ │ └── mediatype.go │ │ │ │ ├── version.go │ │ │ │ └── versioned.go │ │ ├── runc │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── libcontainer │ │ │ │ ├── user │ │ │ │ ├── lookup_unix.go │ │ │ │ ├── user.go │ │ │ │ └── user_fuzzer.go │ │ │ │ └── userns │ │ │ │ ├── userns.go │ │ │ │ ├── userns_fuzzer.go │ │ │ │ ├── userns_linux.go │ │ │ │ └── userns_unsupported.go │ │ ├── runtime-spec │ │ │ ├── LICENSE │ │ │ └── specs-go │ │ │ │ ├── config.go │ │ │ │ ├── state.go │ │ │ │ └── version.go │ │ └── selinux │ │ │ ├── LICENSE │ │ │ ├── go-selinux │ │ │ ├── doc.go │ │ │ ├── label │ │ │ │ ├── label.go │ │ │ │ ├── label_linux.go │ │ │ │ └── label_stub.go │ │ │ ├── rchcon.go │ │ │ ├── rchcon_go115.go │ │ │ ├── selinux.go │ │ │ ├── selinux_linux.go │ │ │ ├── selinux_stub.go │ │ │ └── xattrs_linux.go │ │ │ └── pkg │ │ │ ├── pwalk │ │ │ ├── README.md │ │ │ └── pwalk.go │ │ │ └── pwalkdir │ │ │ ├── README.md │ │ │ └── pwalkdir.go │ ├── ostreedev │ │ └── ostree-go │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ ├── glibobject │ │ │ ├── gboolean.go │ │ │ ├── gcancellable.go │ │ │ ├── gerror.go │ │ │ ├── gfile.go │ │ │ ├── gfileinfo.go │ │ │ ├── ghashtable.go │ │ │ ├── ghashtableiter.go │ │ │ ├── glibobject.go │ │ │ ├── glibobject.go.h │ │ │ ├── gobject.go │ │ │ ├── goptioncontext.go │ │ │ └── gvariant.go │ │ │ └── otbuiltin │ │ │ ├── builtin.go │ │ │ ├── builtin.go.h │ │ │ ├── checkout.go │ │ │ ├── commit.go │ │ │ ├── init.go │ │ │ ├── log.go │ │ │ └── prune.go │ ├── pelletier │ │ └── go-toml │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── README.md │ │ │ ├── azure-pipelines.yml │ │ │ ├── benchmark.sh │ │ │ ├── doc.go │ │ │ ├── example-crlf.toml │ │ │ ├── example.toml │ │ │ ├── fuzz.go │ │ │ ├── fuzz.sh │ │ │ ├── keysparsing.go │ │ │ ├── lexer.go │ │ │ ├── localtime.go │ │ │ ├── marshal.go │ │ │ ├── marshal_OrderPreserve_test.toml │ │ │ ├── marshal_test.toml │ │ │ ├── parser.go │ │ │ ├── position.go │ │ │ ├── token.go │ │ │ ├── toml.go │ │ │ ├── tomlpub.go │ │ │ ├── tomltree_create.go │ │ │ ├── tomltree_write.go │ │ │ └── tomltree_writepub.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 │ │ ├── client_golang │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── prometheus │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── build_info.go │ │ │ │ ├── build_info_pre_1.12.go │ │ │ │ ├── collector.go │ │ │ │ ├── counter.go │ │ │ │ ├── desc.go │ │ │ │ ├── doc.go │ │ │ │ ├── expvar_collector.go │ │ │ │ ├── fnv.go │ │ │ │ ├── gauge.go │ │ │ │ ├── go_collector.go │ │ │ │ ├── histogram.go │ │ │ │ ├── internal │ │ │ │ └── metric.go │ │ │ │ ├── labels.go │ │ │ │ ├── metric.go │ │ │ │ ├── observer.go │ │ │ │ ├── process_collector.go │ │ │ │ ├── process_collector_other.go │ │ │ │ ├── process_collector_windows.go │ │ │ │ ├── promhttp │ │ │ │ ├── delegator.go │ │ │ │ ├── http.go │ │ │ │ ├── instrument_client.go │ │ │ │ └── instrument_server.go │ │ │ │ ├── registry.go │ │ │ │ ├── summary.go │ │ │ │ ├── timer.go │ │ │ │ ├── untyped.go │ │ │ │ ├── value.go │ │ │ │ ├── vec.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 │ │ │ ├── internal │ │ │ │ └── bitbucket.org │ │ │ │ │ └── ww │ │ │ │ │ └── goautoneg │ │ │ │ │ ├── README.txt │ │ │ │ │ └── autoneg.go │ │ │ └── model │ │ │ │ ├── alert.go │ │ │ │ ├── fingerprinting.go │ │ │ │ ├── fnv.go │ │ │ │ ├── labels.go │ │ │ │ ├── labelset.go │ │ │ │ ├── metric.go │ │ │ │ ├── model.go │ │ │ │ ├── signature.go │ │ │ │ ├── silence.go │ │ │ │ ├── time.go │ │ │ │ └── value.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 │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_armx.go │ │ │ ├── cpuinfo_mipsx.go │ │ │ ├── cpuinfo_others.go │ │ │ ├── cpuinfo_ppcx.go │ │ │ ├── cpuinfo_riscvx.go │ │ │ ├── cpuinfo_s390x.go │ │ │ ├── cpuinfo_x86.go │ │ │ ├── crypto.go │ │ │ ├── doc.go │ │ │ ├── fixtures.ttar │ │ │ ├── fs.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_sockstat.go │ │ │ ├── net_softnet.go │ │ │ ├── net_tcp.go │ │ │ ├── net_udp.go │ │ │ ├── net_unix.go │ │ │ ├── proc.go │ │ │ ├── proc_cgroup.go │ │ │ ├── proc_environ.go │ │ │ ├── proc_fdinfo.go │ │ │ ├── proc_io.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_maps.go │ │ │ ├── proc_ns.go │ │ │ ├── proc_psi.go │ │ │ ├── proc_smaps.go │ │ │ ├── proc_stat.go │ │ │ ├── proc_status.go │ │ │ ├── schedstat.go │ │ │ ├── slab.go │ │ │ ├── stat.go │ │ │ ├── swaps.go │ │ │ ├── ttar │ │ │ ├── vm.go │ │ │ ├── xfrm.go │ │ │ └── zoneinfo.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── buffer_pool.go │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_bsd.go │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_no_terminal.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_check_solaris.go │ │ │ ├── terminal_check_unix.go │ │ │ ├── terminal_check_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── skratchdot │ │ └── open-golang │ │ │ ├── LICENSE-MIT │ │ │ └── open │ │ │ ├── exec.go │ │ │ ├── exec_darwin.go │ │ │ ├── exec_windows.go │ │ │ └── open.go │ ├── soheilhy │ │ └── cmux │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── buffer.go │ │ │ ├── cmux.go │ │ │ ├── doc.go │ │ │ ├── matchers.go │ │ │ └── patricia.go │ ├── spf13 │ │ ├── afero │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── afero.go │ │ │ ├── appveyor.yml │ │ │ ├── basepath.go │ │ │ ├── cacheOnReadFs.go │ │ │ ├── const_bsds.go │ │ │ ├── const_win_unix.go │ │ │ ├── copyOnWriteFs.go │ │ │ ├── httpFs.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 │ │ │ ├── CHANGELOG.md │ │ │ ├── CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── args.go │ │ │ ├── bash_completions.go │ │ │ ├── bash_completions.md │ │ │ ├── bash_completionsV2.go │ │ │ ├── cobra.go │ │ │ ├── command.go │ │ │ ├── command_notwin.go │ │ │ ├── command_win.go │ │ │ ├── completions.go │ │ │ ├── fish_completions.go │ │ │ ├── fish_completions.md │ │ │ ├── powershell_completions.go │ │ │ ├── powershell_completions.md │ │ │ ├── projects_using_cobra.md │ │ │ ├── shell_completions.go │ │ │ ├── shell_completions.md │ │ │ ├── user_guide.md │ │ │ ├── zsh_completions.go │ │ │ └── zsh_completions.md │ │ ├── jwalterweatherman │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── default_notepad.go │ │ │ ├── log_counter.go │ │ │ └── notepad.go │ │ ├── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── bytes.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── duration_slice.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float32_slice.go │ │ │ ├── float64.go │ │ │ ├── float64_slice.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int16.go │ │ │ ├── int32.go │ │ │ ├── int32_slice.go │ │ │ ├── int64.go │ │ │ ├── int64_slice.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_slice.go │ │ │ ├── string_to_int.go │ │ │ ├── string_to_int64.go │ │ │ ├── string_to_string.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ └── uint_slice.go │ │ └── viper │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── TROUBLESHOOTING.md │ │ │ ├── flags.go │ │ │ ├── internal │ │ │ └── encoding │ │ │ │ ├── decoder.go │ │ │ │ ├── encoder.go │ │ │ │ ├── error.go │ │ │ │ ├── hcl │ │ │ │ └── codec.go │ │ │ │ ├── json │ │ │ │ └── codec.go │ │ │ │ ├── toml │ │ │ │ └── codec.go │ │ │ │ └── yaml │ │ │ │ └── codec.go │ │ │ ├── util.go │ │ │ ├── viper.go │ │ │ ├── watch.go │ │ │ └── watch_wasm.go │ ├── stoewer │ │ └── go-strcase │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── camel.go │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ ├── kebab.go │ │ │ └── snake.go │ ├── stretchr │ │ └── testify │ │ │ ├── LICENSE │ │ │ ├── assert │ │ │ ├── assertion_compare.go │ │ │ ├── assertion_format.go │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertion_order.go │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ └── http_assertions.go │ │ │ └── require │ │ │ ├── doc.go │ │ │ ├── forward_requirements.go │ │ │ ├── require.go │ │ │ ├── require.go.tmpl │ │ │ ├── require_forward.go │ │ │ ├── require_forward.go.tmpl │ │ │ └── requirements.go │ ├── subosito │ │ └── gotenv │ │ │ ├── .env │ │ │ ├── .env.invalid │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ └── gotenv.go │ ├── syndtr │ │ └── gocapability │ │ │ ├── LICENSE │ │ │ └── capability │ │ │ ├── capability.go │ │ │ ├── capability_linux.go │ │ │ ├── capability_noop.go │ │ │ ├── enum.go │ │ │ ├── enum_gen.go │ │ │ └── syscall_linux.go │ ├── tchap │ │ └── go-patricia │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ └── patricia │ │ │ ├── children.go │ │ │ └── patricia.go │ ├── uber │ │ └── jaeger-client-go │ │ │ ├── LICENSE │ │ │ ├── thrift-gen │ │ │ ├── agent │ │ │ │ ├── agent.go │ │ │ │ ├── constants.go │ │ │ │ └── ttypes.go │ │ │ ├── jaeger │ │ │ │ ├── agent.go │ │ │ │ ├── constants.go │ │ │ │ └── ttypes.go │ │ │ └── zipkincore │ │ │ │ ├── constants.go │ │ │ │ ├── ttypes.go │ │ │ │ └── zipkincollector.go │ │ │ └── thrift │ │ │ ├── .nocover │ │ │ ├── README.md │ │ │ ├── application_exception.go │ │ │ ├── binary_protocol.go │ │ │ ├── compact_protocol.go │ │ │ ├── exception.go │ │ │ ├── memory_buffer.go │ │ │ ├── messagetype.go │ │ │ ├── numeric.go │ │ │ ├── processor.go │ │ │ ├── protocol.go │ │ │ ├── protocol_exception.go │ │ │ ├── protocol_factory.go │ │ │ ├── rich_transport.go │ │ │ ├── serializer.go │ │ │ ├── simple_json_protocol.go │ │ │ ├── transport.go │ │ │ ├── transport_exception.go │ │ │ ├── transport_factory.go │ │ │ └── type.go │ ├── ulikunitz │ │ └── xz │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── TODO.md │ │ │ ├── bits.go │ │ │ ├── crc.go │ │ │ ├── format.go │ │ │ ├── fox-check-none.xz │ │ │ ├── fox.xz │ │ │ ├── internal │ │ │ ├── hash │ │ │ │ ├── cyclic_poly.go │ │ │ │ ├── doc.go │ │ │ │ ├── rabin_karp.go │ │ │ │ └── roller.go │ │ │ └── xlog │ │ │ │ └── xlog.go │ │ │ ├── lzma │ │ │ ├── bintree.go │ │ │ ├── bitops.go │ │ │ ├── breader.go │ │ │ ├── buffer.go │ │ │ ├── bytewriter.go │ │ │ ├── decoder.go │ │ │ ├── decoderdict.go │ │ │ ├── directcodec.go │ │ │ ├── distcodec.go │ │ │ ├── encoder.go │ │ │ ├── encoderdict.go │ │ │ ├── fox.lzma │ │ │ ├── hashtable.go │ │ │ ├── header.go │ │ │ ├── header2.go │ │ │ ├── lengthcodec.go │ │ │ ├── literalcodec.go │ │ │ ├── matchalgorithm.go │ │ │ ├── operation.go │ │ │ ├── prob.go │ │ │ ├── properties.go │ │ │ ├── rangecodec.go │ │ │ ├── reader.go │ │ │ ├── reader2.go │ │ │ ├── state.go │ │ │ ├── treecodecs.go │ │ │ ├── writer.go │ │ │ └── writer2.go │ │ │ ├── lzmafilter.go │ │ │ ├── make-docs │ │ │ ├── none-check.go │ │ │ ├── reader.go │ │ │ └── writer.go │ └── vbatts │ │ └── tar-split │ │ ├── LICENSE │ │ ├── archive │ │ └── tar │ │ │ ├── common.go │ │ │ ├── format.go │ │ │ ├── reader.go │ │ │ ├── stat_actime1.go │ │ │ ├── stat_actime2.go │ │ │ ├── stat_unix.go │ │ │ ├── strconv.go │ │ │ └── writer.go │ │ └── tar │ │ ├── asm │ │ ├── README.md │ │ ├── assemble.go │ │ ├── disassemble.go │ │ └── doc.go │ │ └── storage │ │ ├── doc.go │ │ ├── entry.go │ │ ├── getter.go │ │ └── packer.go ├── go.opencensus.io │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── appveyor.yml │ ├── internal │ │ ├── internal.go │ │ ├── sanitize.go │ │ └── traceinternals.go │ ├── opencensus.go │ └── trace │ │ ├── basetypes.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── evictedqueue.go │ │ ├── export.go │ │ ├── internal │ │ └── internal.go │ │ ├── lrumap.go │ │ ├── sampling.go │ │ ├── spanbucket.go │ │ ├── spanstore.go │ │ ├── status_codes.go │ │ ├── trace.go │ │ ├── trace_api.go │ │ ├── trace_go11.go │ │ ├── trace_nongo11.go │ │ └── tracestate │ │ └── tracestate.go ├── go.uber.org │ ├── atomic │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_ext.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration_ext.go │ │ ├── error.go │ │ ├── error_ext.go │ │ ├── float64.go │ │ ├── float64_ext.go │ │ ├── gen.go │ │ ├── int32.go │ │ ├── int64.go │ │ ├── nocmp.go │ │ ├── string.go │ │ ├── string_ext.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ └── value.go │ ├── multierr │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── error.go │ │ ├── glide.yaml │ │ └── go113.go │ └── zap │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .readme.tmpl │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── 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.go │ │ ├── logger.go │ │ ├── options.go │ │ ├── sink.go │ │ ├── stacktrace.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 │ │ ├── level.go │ │ ├── level_strings.go │ │ ├── marshaler.go │ │ ├── memory_encoder.go │ │ ├── reflected_encoder.go │ │ ├── sampler.go │ │ ├── tee.go │ │ └── write_syncer.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── pkcs12 │ │ │ ├── bmp-string.go │ │ │ ├── crypto.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ └── rc2 │ │ │ │ └── rc2.go │ │ │ ├── mac.go │ │ │ ├── pbkdf.go │ │ │ ├── pkcs12.go │ │ │ └── safebags.go │ │ ├── mod │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal │ │ │ └── lazyregexp │ │ │ │ └── lazyre.go │ │ ├── modfile │ │ │ ├── print.go │ │ │ ├── read.go │ │ │ └── rule.go │ │ ├── module │ │ │ └── module.go │ │ └── semver │ │ │ └── semver.go │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── context │ │ │ ├── context.go │ │ │ ├── ctxhttp │ │ │ │ └── ctxhttp.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ ├── http │ │ │ └── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── go111.go │ │ │ ├── gotrack.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── not_go111.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ └── writesched_random.go │ │ ├── idna │ │ │ ├── idna10.0.0.go │ │ │ ├── idna9.0.0.go │ │ │ ├── punycode.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── 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 │ │ ├── oauth2 │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── authhandler │ │ │ └── authhandler.go │ │ ├── google │ │ │ ├── appengine.go │ │ │ ├── appengine_gen1.go │ │ │ ├── appengine_gen2_flex.go │ │ │ ├── default.go │ │ │ ├── doc.go │ │ │ ├── google.go │ │ │ ├── internal │ │ │ │ └── externalaccount │ │ │ │ │ ├── aws.go │ │ │ │ │ ├── basecredentials.go │ │ │ │ │ ├── clientauth.go │ │ │ │ │ ├── err.go │ │ │ │ │ ├── filecredsource.go │ │ │ │ │ ├── impersonate.go │ │ │ │ │ ├── sts_exchange.go │ │ │ │ │ └── urlcredsource.go │ │ │ ├── jwt.go │ │ │ └── sdk.go │ │ ├── internal │ │ │ ├── client_appengine.go │ │ │ ├── doc.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ ├── jws │ │ │ └── jws.go │ │ ├── jwt │ │ │ └── jwt.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ │ ├── sync │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── errgroup │ │ │ └── errgroup.go │ │ └── semaphore │ │ │ └── semaphore.go │ │ ├── sys │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── execabs │ │ │ └── execabs.go │ │ ├── internal │ │ │ └── unsafeheader │ │ │ │ └── unsafeheader.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_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.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 │ │ │ ├── bluetooth_linux.go │ │ │ ├── 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 │ │ │ ├── epoll_zos.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── errors_freebsd_arm64.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── fstatfs_zos.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ifreq_linux.go │ │ │ ├── ioctl.go │ │ │ ├── ioctl_linux.go │ │ │ ├── ioctl_zos.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── 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 │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.1_12.go │ │ │ ├── syscall_darwin.1_13.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_illumos.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.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_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_mips64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── syscall_zos_s390x.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.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_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.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_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 │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_amd64.1_13.go │ │ │ ├── zsyscall_darwin_amd64.1_13.s │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm64.1_13.go │ │ │ ├── zsyscall_darwin_arm64.1_13.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_illumos_amd64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.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_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ ├── 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 │ │ │ ├── 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_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.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_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_illumos_amd64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.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_solaris_amd64.go │ │ │ └── ztypes_zos_s390x.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── dll_windows.go │ │ │ ├── empty.s │ │ │ ├── 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 │ │ │ ├── setupapierrors_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 │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── term.go │ │ ├── term_plan9.go │ │ ├── term_solaris.go │ │ ├── term_unix.go │ │ ├── term_unix_aix.go │ │ ├── term_unix_bsd.go │ │ ├── term_unix_linux.go │ │ ├── term_unix_zos.go │ │ ├── term_unsupported.go │ │ ├── term_windows.go │ │ └── terminal.go │ │ ├── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── 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 │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ ├── collate │ │ │ ├── collate.go │ │ │ ├── index.go │ │ │ ├── option.go │ │ │ ├── sort.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── colltab │ │ │ │ ├── collelem.go │ │ │ │ ├── colltab.go │ │ │ │ ├── contract.go │ │ │ │ ├── iter.go │ │ │ │ ├── numeric.go │ │ │ │ ├── table.go │ │ │ │ ├── trie.go │ │ │ │ └── weighter.go │ │ │ ├── internal.go │ │ │ ├── language │ │ │ │ ├── common.go │ │ │ │ ├── compact.go │ │ │ │ ├── compact │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── parents.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── compose.go │ │ │ │ ├── coverage.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── match.go │ │ │ └── tag │ │ │ │ └── tag.go │ │ ├── language │ │ │ ├── coverage.go │ │ │ ├── doc.go │ │ │ ├── go1_1.go │ │ │ ├── go1_2.go │ │ │ ├── language.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.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 │ │ │ ├── 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 │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ └── trie.go │ │ ├── time │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── rate │ │ │ └── rate.go │ │ ├── tools │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cmd │ │ │ └── goimports │ │ │ │ ├── doc.go │ │ │ │ ├── goimports.go │ │ │ │ ├── goimports_gc.go │ │ │ │ └── goimports_not_gc.go │ │ ├── go │ │ │ └── ast │ │ │ │ └── astutil │ │ │ │ ├── enclosing.go │ │ │ │ ├── imports.go │ │ │ │ ├── rewrite.go │ │ │ │ └── util.go │ │ ├── imports │ │ │ └── forward.go │ │ └── internal │ │ │ ├── event │ │ │ ├── core │ │ │ │ ├── event.go │ │ │ │ ├── export.go │ │ │ │ └── fast.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── keys │ │ │ │ ├── keys.go │ │ │ │ └── standard.go │ │ │ └── label │ │ │ │ └── label.go │ │ │ ├── fastwalk │ │ │ ├── fastwalk.go │ │ │ ├── fastwalk_dirent_fileno.go │ │ │ ├── fastwalk_dirent_ino.go │ │ │ ├── fastwalk_dirent_namlen_bsd.go │ │ │ ├── fastwalk_dirent_namlen_linux.go │ │ │ ├── fastwalk_portable.go │ │ │ └── fastwalk_unix.go │ │ │ ├── gocommand │ │ │ ├── invoke.go │ │ │ ├── vendor.go │ │ │ └── version.go │ │ │ ├── gopathwalk │ │ │ └── walk.go │ │ │ ├── imports │ │ │ ├── fix.go │ │ │ ├── imports.go │ │ │ ├── mod.go │ │ │ ├── mod_cache.go │ │ │ ├── sortimports.go │ │ │ └── zstdlib.go │ │ │ └── typeparams │ │ │ ├── doc.go │ │ │ ├── notypeparams.go │ │ │ └── typeparams.go │ │ └── xerrors │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── adaptor.go │ │ ├── codereview.cfg │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fmt.go │ │ ├── format.go │ │ ├── frame.go │ │ ├── internal │ │ └── internal.go │ │ └── wrap.go ├── google.golang.org │ ├── api │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── support │ │ │ └── bundler │ │ │ └── bundler.go │ ├── appengine │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appengine.go │ │ ├── appengine_vm.go │ │ ├── errors.go │ │ ├── identity.go │ │ ├── internal │ │ │ ├── api.go │ │ │ ├── api_classic.go │ │ │ ├── api_common.go │ │ │ ├── app_id.go │ │ │ ├── app_identity │ │ │ │ ├── app_identity_service.pb.go │ │ │ │ └── app_identity_service.proto │ │ │ ├── base │ │ │ │ ├── api_base.pb.go │ │ │ │ └── api_base.proto │ │ │ ├── datastore │ │ │ │ ├── datastore_v3.pb.go │ │ │ │ └── datastore_v3.proto │ │ │ ├── identity.go │ │ │ ├── identity_classic.go │ │ │ ├── identity_flex.go │ │ │ ├── identity_vm.go │ │ │ ├── internal.go │ │ │ ├── log │ │ │ │ ├── log_service.pb.go │ │ │ │ └── log_service.proto │ │ │ ├── main.go │ │ │ ├── main_common.go │ │ │ ├── main_vm.go │ │ │ ├── metadata.go │ │ │ ├── modules │ │ │ │ ├── modules_service.pb.go │ │ │ │ └── modules_service.proto │ │ │ ├── net.go │ │ │ ├── regen.sh │ │ │ ├── remote_api │ │ │ │ ├── remote_api.pb.go │ │ │ │ └── remote_api.proto │ │ │ ├── transaction.go │ │ │ └── urlfetch │ │ │ │ ├── urlfetch_service.pb.go │ │ │ │ └── urlfetch_service.proto │ │ ├── namespace.go │ │ ├── timeout.go │ │ ├── travis_install.sh │ │ ├── travis_test.sh │ │ └── urlfetch │ │ │ └── urlfetch.go │ ├── genproto │ │ ├── LICENSE │ │ └── googleapis │ │ │ └── rpc │ │ │ └── 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 │ │ │ ├── grpclb │ │ │ │ └── state │ │ │ │ │ └── state.go │ │ │ └── roundrobin │ │ │ │ └── roundrobin.go │ │ ├── balancer_conn_wrappers.go │ │ ├── binarylog │ │ │ └── grpc_binarylog_v1 │ │ │ │ └── binarylog.pb.go │ │ ├── call.go │ │ ├── clientconn.go │ │ ├── cmd │ │ │ └── protoc-gen-go-grpc │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── grpc.go │ │ │ │ └── main.go │ │ ├── codec.go │ │ ├── codegen.sh │ │ ├── codes │ │ │ ├── code_string.go │ │ │ └── codes.go │ │ ├── connectivity │ │ │ └── connectivity.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── insecure │ │ │ │ └── insecure.go │ │ │ └── tls.go │ │ ├── dialoptions.go │ │ ├── doc.go │ │ ├── encoding │ │ │ ├── encoding.go │ │ │ └── proto │ │ │ │ └── proto.go │ │ ├── grpclog │ │ │ ├── component.go │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── health │ │ │ ├── client.go │ │ │ ├── grpc_health_v1 │ │ │ │ ├── health.pb.go │ │ │ │ └── health_grpc.pb.go │ │ │ ├── logging.go │ │ │ └── server.go │ │ ├── interceptor.go │ │ ├── internal │ │ │ ├── backoff │ │ │ │ └── backoff.go │ │ │ ├── balancerload │ │ │ │ └── load.go │ │ │ ├── binarylog │ │ │ │ ├── binarylog.go │ │ │ │ ├── binarylog_testutil.go │ │ │ │ ├── env_config.go │ │ │ │ ├── method_logger.go │ │ │ │ └── sink.go │ │ │ ├── buffer │ │ │ │ └── unbounded.go │ │ │ ├── channelz │ │ │ │ ├── funcs.go │ │ │ │ ├── logging.go │ │ │ │ ├── types.go │ │ │ │ ├── types_linux.go │ │ │ │ ├── types_nonlinux.go │ │ │ │ ├── util_linux.go │ │ │ │ └── util_nonlinux.go │ │ │ ├── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── spiffe.go │ │ │ │ ├── syscallconn.go │ │ │ │ └── util.go │ │ │ ├── envconfig │ │ │ │ ├── envconfig.go │ │ │ │ └── xds.go │ │ │ ├── grpclog │ │ │ │ ├── grpclog.go │ │ │ │ └── prefixLogger.go │ │ │ ├── grpcrand │ │ │ │ └── grpcrand.go │ │ │ ├── grpcsync │ │ │ │ └── event.go │ │ │ ├── grpcutil │ │ │ │ ├── encode_duration.go │ │ │ │ ├── grpcutil.go │ │ │ │ ├── metadata.go │ │ │ │ ├── method.go │ │ │ │ └── regex.go │ │ │ ├── internal.go │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── resolver │ │ │ │ ├── config_selector.go │ │ │ │ ├── dns │ │ │ │ │ └── dns_resolver.go │ │ │ │ ├── passthrough │ │ │ │ │ └── passthrough.go │ │ │ │ └── unix │ │ │ │ │ └── unix.go │ │ │ ├── serviceconfig │ │ │ │ └── serviceconfig.go │ │ │ ├── status │ │ │ │ └── status.go │ │ │ ├── syscall │ │ │ │ ├── syscall_linux.go │ │ │ │ └── syscall_nonlinux.go │ │ │ ├── transport │ │ │ │ ├── bdp_estimator.go │ │ │ │ ├── controlbuf.go │ │ │ │ ├── defaults.go │ │ │ │ ├── flowcontrol.go │ │ │ │ ├── handler_server.go │ │ │ │ ├── http2_client.go │ │ │ │ ├── http2_server.go │ │ │ │ ├── http_util.go │ │ │ │ ├── networktype │ │ │ │ │ └── networktype.go │ │ │ │ ├── proxy.go │ │ │ │ └── transport.go │ │ │ └── xds_handshake_cluster.go │ │ ├── keepalive │ │ │ └── keepalive.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── peer │ │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── pickfirst.go │ │ ├── preloader.go │ │ ├── reflection │ │ │ ├── README.md │ │ │ ├── grpc_reflection_v1alpha │ │ │ │ ├── reflection.pb.go │ │ │ │ ├── reflection.proto │ │ │ │ └── reflection_grpc.pb.go │ │ │ └── serverreflection.go │ │ ├── regenerate.sh │ │ ├── resolver │ │ │ ├── map.go │ │ │ └── resolver.go │ │ ├── resolver_conn_wrapper.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── service_config.go │ │ ├── serviceconfig │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── handlers.go │ │ │ └── stats.go │ │ ├── status │ │ │ └── status.go │ │ ├── stream.go │ │ ├── tap │ │ │ └── tap.go │ │ ├── trace.go │ │ ├── version.go │ │ └── vet.sh │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cmd │ │ └── protoc-gen-go │ │ │ ├── internal_gengo │ │ │ ├── init.go │ │ │ ├── main.go │ │ │ ├── reflect.go │ │ │ └── well_known_types.go │ │ │ └── main.go │ │ ├── compiler │ │ └── protogen │ │ │ └── protogen.go │ │ ├── encoding │ │ ├── prototext │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ └── protowire │ │ │ └── wire.go │ │ ├── internal │ │ ├── descfmt │ │ │ └── stringer.go │ │ ├── descopts │ │ │ └── options.go │ │ ├── detrand │ │ │ └── rand.go │ │ ├── encoding │ │ │ ├── defval │ │ │ │ └── default.go │ │ │ ├── messageset │ │ │ │ └── messageset.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ └── text │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ ├── errors │ │ │ ├── errors.go │ │ │ ├── is_go112.go │ │ │ └── is_go113.go │ │ ├── filedesc │ │ │ ├── build.go │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_lazy.go │ │ │ ├── desc_list.go │ │ │ ├── desc_list_gen.go │ │ │ └── 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 │ │ │ ├── goname.go │ │ │ ├── map_entry.go │ │ │ ├── source_context_gen.go │ │ │ ├── struct_gen.go │ │ │ ├── timestamp_gen.go │ │ │ ├── type_gen.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gen.go │ │ ├── impl │ │ │ ├── api_export.go │ │ │ ├── checkinit.go │ │ │ ├── codec_extension.go │ │ │ ├── codec_field.go │ │ │ ├── codec_gen.go │ │ │ ├── codec_map.go │ │ │ ├── codec_map_go111.go │ │ │ ├── codec_map_go112.go │ │ │ ├── codec_message.go │ │ │ ├── codec_messageset.go │ │ │ ├── codec_reflect.go │ │ │ ├── codec_tables.go │ │ │ ├── codec_unsafe.go │ │ │ ├── convert.go │ │ │ ├── convert_list.go │ │ │ ├── convert_map.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── enum.go │ │ │ ├── extension.go │ │ │ ├── legacy_enum.go │ │ │ ├── legacy_export.go │ │ │ ├── legacy_extension.go │ │ │ ├── legacy_file.go │ │ │ ├── legacy_message.go │ │ │ ├── merge.go │ │ │ ├── merge_gen.go │ │ │ ├── message.go │ │ │ ├── message_reflect.go │ │ │ ├── message_reflect_field.go │ │ │ ├── message_reflect_gen.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── validate.go │ │ │ └── weak.go │ │ ├── order │ │ │ ├── order.go │ │ │ └── range.go │ │ ├── pragma │ │ │ └── pragma.go │ │ ├── set │ │ │ └── ints.go │ │ ├── strs │ │ │ ├── strings.go │ │ │ ├── strings_pure.go │ │ │ └── strings_unsafe.go │ │ └── version │ │ │ └── version.go │ │ ├── proto │ │ ├── checkinit.go │ │ ├── decode.go │ │ ├── decode_gen.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_gen.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── merge.go │ │ ├── messageset.go │ │ ├── proto.go │ │ ├── proto_methods.go │ │ ├── proto_reflect.go │ │ ├── reset.go │ │ ├── size.go │ │ ├── size_gen.go │ │ └── wrappers.go │ │ ├── reflect │ │ ├── protodesc │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_resolve.go │ │ │ ├── desc_validate.go │ │ │ └── proto.go │ │ ├── protoreflect │ │ │ ├── methods.go │ │ │ ├── proto.go │ │ │ ├── source.go │ │ │ ├── source_gen.go │ │ │ ├── type.go │ │ │ ├── value.go │ │ │ ├── value_pure.go │ │ │ ├── value_union.go │ │ │ └── value_unsafe.go │ │ └── protoregistry │ │ │ └── registry.go │ │ ├── runtime │ │ ├── protoiface │ │ │ ├── legacy.go │ │ │ └── methods.go │ │ └── protoimpl │ │ │ ├── impl.go │ │ │ └── version.go │ │ └── types │ │ ├── descriptorpb │ │ └── descriptor.pb.go │ │ ├── known │ │ ├── anypb │ │ │ └── any.pb.go │ │ ├── durationpb │ │ │ └── duration.pb.go │ │ ├── emptypb │ │ │ └── empty.pb.go │ │ ├── timestamppb │ │ │ └── timestamp.pb.go │ │ └── wrapperspb │ │ │ └── wrappers.pb.go │ │ └── pluginpb │ │ └── plugin.pb.go ├── gopkg.in │ ├── inf.v0 │ │ ├── LICENSE │ │ ├── dec.go │ │ └── rounder.go │ ├── ini.v1 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── codecov.yml │ │ ├── data_source.go │ │ ├── deprecated.go │ │ ├── error.go │ │ ├── file.go │ │ ├── helper.go │ │ ├── ini.go │ │ ├── key.go │ │ ├── parser.go │ │ ├── section.go │ │ └── struct.go │ ├── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── yaml.v3 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go ├── k8s.io │ ├── api │ │ ├── LICENSE │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── 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 │ │ ├── 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 │ │ │ ├── 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 │ │ │ └── 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 │ │ │ └── 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 │ │ │ ├── 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 │ │ │ └── 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 │ │ │ └── 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 │ │ │ └── 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 │ │ ├── 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 │ │ │ └── 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 │ │ │ └── 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 │ │ │ ├── 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 │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── 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 │ │ │ │ ├── well_known_annotations.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 │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── 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 │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.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 │ │ │ ├── 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 │ ├── apiextensions-apiserver │ │ ├── LICENSE │ │ └── pkg │ │ │ └── apis │ │ │ └── apiextensions │ │ │ ├── deepcopy.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── install │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── v1 │ │ │ ├── .import-restrictions │ │ │ ├── conversion.go │ │ │ ├── deepcopy.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── marshal.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_jsonschema.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ ├── 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 │ ├── 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 │ │ │ │ └── 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 │ │ │ ├── apis │ │ │ │ └── meta │ │ │ │ │ ├── internalversion │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── micro_time.go │ │ │ │ │ ├── micro_time_fuzz.go │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── time_fuzz.go │ │ │ │ │ ├── time_proto.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── unstructured │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── unstructured.go │ │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── clock │ │ │ │ │ └── clock.go │ │ │ │ ├── diff │ │ │ │ │ └── diff.go │ │ │ │ ├── duration │ │ │ │ │ └── duration.go │ │ │ │ ├── errors │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── framer │ │ │ │ │ └── framer.go │ │ │ │ ├── httpstream │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── httpstream.go │ │ │ │ │ └── spdy │ │ │ │ │ │ ├── connection.go │ │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ │ └── upgrade.go │ │ │ │ ├── intstr │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── instr_fuzz.go │ │ │ │ │ └── intstr.go │ │ │ │ ├── json │ │ │ │ │ └── json.go │ │ │ │ ├── managedfields │ │ │ │ │ └── extract.go │ │ │ │ ├── mergepatch │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── errors.go │ │ │ │ │ └── util.go │ │ │ │ ├── naming │ │ │ │ │ └── from_stack.go │ │ │ │ ├── net │ │ │ │ │ ├── http.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── port_range.go │ │ │ │ │ ├── port_split.go │ │ │ │ │ └── util.go │ │ │ │ ├── rand │ │ │ │ │ └── rand.go │ │ │ │ ├── remotecommand │ │ │ │ │ └── constants.go │ │ │ │ ├── runtime │ │ │ │ │ └── runtime.go │ │ │ │ ├── sets │ │ │ │ │ ├── byte.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int32.go │ │ │ │ │ ├── int64.go │ │ │ │ │ └── string.go │ │ │ │ ├── strategicpatch │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── patch.go │ │ │ │ │ └── types.go │ │ │ │ ├── validation │ │ │ │ │ ├── field │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── path.go │ │ │ │ │ └── validation.go │ │ │ │ ├── wait │ │ │ │ │ ├── doc.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 │ │ │ ├── json │ │ │ ├── OWNERS │ │ │ └── fields.go │ │ │ ├── netutil │ │ │ └── addr.go │ │ │ └── reflect │ │ │ └── deep_equal.go │ ├── client-go │ │ ├── LICENSE │ │ ├── applyconfigurations │ │ │ ├── admissionregistration │ │ │ │ ├── v1 │ │ │ │ │ ├── mutatingwebhook.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ ├── rule.go │ │ │ │ │ ├── rulewithoperations.go │ │ │ │ │ ├── servicereference.go │ │ │ │ │ ├── validatingwebhook.go │ │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ │ └── webhookclientconfig.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── mutatingwebhook.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ ├── rule.go │ │ │ │ │ ├── rulewithoperations.go │ │ │ │ │ ├── servicereference.go │ │ │ │ │ ├── validatingwebhook.go │ │ │ │ │ ├── validatingwebhookconfiguration.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── statefulset.go │ │ │ │ │ ├── statefulsetcondition.go │ │ │ │ │ ├── statefulsetspec.go │ │ │ │ │ ├── statefulsetstatus.go │ │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ │ └── horizontalpodautoscalerstatus.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 │ │ │ │ └── v1beta1 │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── cronjobspec.go │ │ │ │ │ ├── cronjobstatus.go │ │ │ │ │ └── jobtemplatespec.go │ │ │ ├── certificates │ │ │ │ ├── v1 │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ ├── coordination │ │ │ │ ├── v1 │ │ │ │ │ ├── lease.go │ │ │ │ │ └── leasespec.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── lease.go │ │ │ │ │ └── leasespec.go │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── affinity.go │ │ │ │ │ ├── attachedvolume.go │ │ │ │ │ ├── awselasticblockstorevolumesource.go │ │ │ │ │ ├── azurediskvolumesource.go │ │ │ │ │ ├── azurefilepersistentvolumesource.go │ │ │ │ │ ├── azurefilevolumesource.go │ │ │ │ │ ├── capabilities.go │ │ │ │ │ ├── cephfspersistentvolumesource.go │ │ │ │ │ ├── cephfsvolumesource.go │ │ │ │ │ ├── cinderpersistentvolumesource.go │ │ │ │ │ ├── cindervolumesource.go │ │ │ │ │ ├── clientipconfig.go │ │ │ │ │ ├── componentcondition.go │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── configmapenvsource.go │ │ │ │ │ ├── configmapkeyselector.go │ │ │ │ │ ├── configmapnodeconfigsource.go │ │ │ │ │ ├── configmapprojection.go │ │ │ │ │ ├── configmapvolumesource.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── containerimage.go │ │ │ │ │ ├── containerport.go │ │ │ │ │ ├── containerstate.go │ │ │ │ │ ├── containerstaterunning.go │ │ │ │ │ ├── containerstateterminated.go │ │ │ │ │ ├── containerstatewaiting.go │ │ │ │ │ ├── containerstatus.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 │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── hostalias.go │ │ │ │ │ ├── hostpathvolumesource.go │ │ │ │ │ ├── httpgetaction.go │ │ │ │ │ ├── httpheader.go │ │ │ │ │ ├── iscsipersistentvolumesource.go │ │ │ │ │ ├── iscsivolumesource.go │ │ │ │ │ ├── keytopath.go │ │ │ │ │ ├── lifecycle.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── limitrangeitem.go │ │ │ │ │ ├── limitrangespec.go │ │ │ │ │ ├── loadbalanceringress.go │ │ │ │ │ ├── loadbalancerstatus.go │ │ │ │ │ ├── localobjectreference.go │ │ │ │ │ ├── localvolumesource.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── podreadinessgate.go │ │ │ │ │ ├── podsecuritycontext.go │ │ │ │ │ ├── podspec.go │ │ │ │ │ ├── podstatus.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── podtemplatespec.go │ │ │ │ │ ├── portstatus.go │ │ │ │ │ ├── portworxvolumesource.go │ │ │ │ │ ├── preferredschedulingterm.go │ │ │ │ │ ├── probe.go │ │ │ │ │ ├── projectedvolumesource.go │ │ │ │ │ ├── quobytevolumesource.go │ │ │ │ │ ├── rbdpersistentvolumesource.go │ │ │ │ │ ├── rbdvolumesource.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── replicationcontrollercondition.go │ │ │ │ │ ├── replicationcontrollerspec.go │ │ │ │ │ ├── replicationcontrollerstatus.go │ │ │ │ │ ├── resourcefieldselector.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── resourcequotaspec.go │ │ │ │ │ ├── resourcequotastatus.go │ │ │ │ │ ├── resourcerequirements.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 │ │ │ │ │ ├── storageospersistentvolumesource.go │ │ │ │ │ ├── storageosvolumesource.go │ │ │ │ │ ├── sysctl.go │ │ │ │ │ ├── taint.go │ │ │ │ │ ├── tcpsocketaction.go │ │ │ │ │ ├── toleration.go │ │ │ │ │ ├── topologyselectorlabelrequirement.go │ │ │ │ │ ├── topologyselectorterm.go │ │ │ │ │ ├── topologyspreadconstraint.go │ │ │ │ │ ├── typedlocalobjectreference.go │ │ │ │ │ ├── volume.go │ │ │ │ │ ├── volumedevice.go │ │ │ │ │ ├── volumemount.go │ │ │ │ │ ├── volumenodeaffinity.go │ │ │ │ │ ├── volumeprojection.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 │ │ │ │ │ ├── allowedcsidriver.go │ │ │ │ │ ├── allowedflexvolume.go │ │ │ │ │ ├── allowedhostpath.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonsetcondition.go │ │ │ │ │ ├── daemonsetspec.go │ │ │ │ │ ├── daemonsetstatus.go │ │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deploymentcondition.go │ │ │ │ │ ├── deploymentspec.go │ │ │ │ │ ├── deploymentstatus.go │ │ │ │ │ ├── deploymentstrategy.go │ │ │ │ │ ├── fsgroupstrategyoptions.go │ │ │ │ │ ├── hostportrange.go │ │ │ │ │ ├── httpingresspath.go │ │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ │ ├── idrange.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressbackend.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 │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ ├── podsecuritypolicyspec.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicasetcondition.go │ │ │ │ │ ├── replicasetspec.go │ │ │ │ │ ├── replicasetstatus.go │ │ │ │ │ ├── rollbackconfig.go │ │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ │ ├── runasgroupstrategyoptions.go │ │ │ │ │ ├── runasuserstrategyoptions.go │ │ │ │ │ ├── runtimeclassstrategyoptions.go │ │ │ │ │ ├── selinuxstrategyoptions.go │ │ │ │ │ └── supplementalgroupsstrategyoptions.go │ │ │ ├── flowcontrol │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ ├── networking │ │ │ │ ├── v1 │ │ │ │ │ ├── httpingresspath.go │ │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressbackend.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ │ ├── ingressclassspec.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 │ │ │ │ └── v1beta1 │ │ │ │ │ ├── httpingresspath.go │ │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressbackend.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ │ ├── ingressclassspec.go │ │ │ │ │ ├── ingressrule.go │ │ │ │ │ ├── ingressrulevalue.go │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ ├── ingressstatus.go │ │ │ │ │ └── ingresstls.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 │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ │ └── poddisruptionbudgetstatus.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── allowedcsidriver.go │ │ │ │ │ ├── allowedflexvolume.go │ │ │ │ │ ├── allowedhostpath.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── fsgroupstrategyoptions.go │ │ │ │ │ ├── hostportrange.go │ │ │ │ │ ├── idrange.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ │ ├── poddisruptionbudgetstatus.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ ├── podsecuritypolicyspec.go │ │ │ │ │ ├── runasgroupstrategyoptions.go │ │ │ │ │ ├── runasuserstrategyoptions.go │ │ │ │ │ ├── runtimeclassstrategyoptions.go │ │ │ │ │ ├── selinuxstrategyoptions.go │ │ │ │ │ └── supplementalgroupsstrategyoptions.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 │ │ │ ├── scheduling │ │ │ │ ├── v1 │ │ │ │ │ └── priorityclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── priorityclass.go │ │ │ │ └── v1beta1 │ │ │ │ │ └── priorityclass.go │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.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 │ │ │ │ └── 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 │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ ├── discovery │ │ │ ├── cached │ │ │ │ └── disk │ │ │ │ │ ├── cached_discovery.go │ │ │ │ │ └── round_tripper.go │ │ │ ├── discovery_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ └── discovery.go │ │ │ └── helper.go │ │ ├── dynamic │ │ │ ├── dynamicinformer │ │ │ │ ├── informer.go │ │ │ │ └── interface.go │ │ │ ├── dynamiclister │ │ │ │ ├── interface.go │ │ │ │ ├── lister.go │ │ │ │ └── shim.go │ │ │ ├── fake │ │ │ │ └── simple.go │ │ │ ├── interface.go │ │ │ ├── scheme.go │ │ │ └── simple.go │ │ ├── informers │ │ │ ├── admissionregistration │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── mutatingwebhookconfiguration.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 │ │ │ │ ├── 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 │ │ │ │ └── v1beta1 │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ └── interface.go │ │ │ ├── coordination │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── interface.go │ │ │ │ │ └── lease.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 │ │ │ ├── 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 │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ └── replicaset.go │ │ │ ├── factory.go │ │ │ ├── flowcontrol │ │ │ │ ├── interface.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ │ ├── networking │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── networkpolicy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ └── interface.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 │ │ │ │ │ └── podsecuritypolicy.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 │ │ │ ├── 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 │ │ │ │ ├── interface.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ └── volumeattachment.go │ │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── interface.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ ├── kubernetes │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── import.go │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ └── typed │ │ │ │ ├── admissionregistration │ │ │ │ ├── v1 │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ ├── apiserverinternal │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apiserverinternal_client.go │ │ │ │ │ └── fake_storageversion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── storageversion.go │ │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── statefulset.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── authentication │ │ │ │ ├── v1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ │ └── fake_tokenreview.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── tokenreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ └── fake_tokenreview.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── tokenreview.go │ │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ └── fake_subjectaccessreview.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── v2beta1 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── v2beta2 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ │ ├── fake_cronjob.go │ │ │ │ │ │ └── fake_job.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── job.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ └── fake_cronjob.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── certificates │ │ │ │ ├── v1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ │ └── fake_certificatesigningrequest.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ │ └── fake_certificatesigningrequest_expansion.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── coordination │ │ │ │ ├── v1 │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ │ └── fake_lease.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── lease.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ └── fake_lease.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── lease.go │ │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── core_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_componentstatus.go │ │ │ │ │ ├── fake_configmap.go │ │ │ │ │ ├── fake_core_client.go │ │ │ │ │ ├── fake_endpoints.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ ├── fake_event_expansion.go │ │ │ │ │ ├── fake_limitrange.go │ │ │ │ │ ├── fake_namespace.go │ │ │ │ │ ├── fake_namespace_expansion.go │ │ │ │ │ ├── fake_node.go │ │ │ │ │ ├── fake_node_expansion.go │ │ │ │ │ ├── fake_persistentvolume.go │ │ │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ │ │ ├── fake_pod.go │ │ │ │ │ ├── fake_pod_expansion.go │ │ │ │ │ ├── fake_podtemplate.go │ │ │ │ │ ├── fake_replicationcontroller.go │ │ │ │ │ ├── fake_resourcequota.go │ │ │ │ │ ├── fake_secret.go │ │ │ │ │ ├── fake_service.go │ │ │ │ │ ├── fake_service_expansion.go │ │ │ │ │ └── fake_serviceaccount.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── namespace_expansion.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── node_expansion.go │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── pod_expansion.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_expansion.go │ │ │ │ │ └── serviceaccount.go │ │ │ │ ├── discovery │ │ │ │ ├── v1 │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_discovery_client.go │ │ │ │ │ │ └── fake_endpointslice.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_discovery_client.go │ │ │ │ │ └── fake_endpointslice.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── events │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_event.go │ │ │ │ │ │ └── fake_events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ ├── fake_event_expansion.go │ │ │ │ │ └── fake_events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── extensions_client.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ │ ├── fake_extensions_client.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_networkpolicy.go │ │ │ │ │ ├── fake_podsecuritypolicy.go │ │ │ │ │ └── fake_replicaset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ └── replicaset.go │ │ │ │ ├── flowcontrol │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ │ ├── fake_flowschema.go │ │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── networking │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ │ ├── fake_ingressclass.go │ │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ │ └── fake_networkpolicy.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── networking_client.go │ │ │ │ │ └── networkpolicy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_ingressclass.go │ │ │ │ │ └── fake_networking_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ └── networking_client.go │ │ │ │ ├── node │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── policy │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ │ └── fake_policy_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── policy_client.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_eviction.go │ │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ ├── fake_podsecuritypolicy.go │ │ │ │ │ └── fake_policy_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ └── policy_client.go │ │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── scheduling │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csidriver.go │ │ │ │ │ ├── fake_csinode.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ ├── fake_storageclass.go │ │ │ │ │ └── fake_volumeattachment.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ └── fake_volumeattachment.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ └── volumeattachment.go │ │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_csidriver.go │ │ │ │ ├── fake_csinode.go │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ ├── fake_storageclass.go │ │ │ │ └── fake_volumeattachment.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ ├── listers │ │ │ ├── admissionregistration │ │ │ │ ├── v1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── mutatingwebhookconfiguration.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 │ │ │ │ ├── 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 │ │ │ │ └── v1beta1 │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ └── expansion_generated.go │ │ │ ├── coordination │ │ │ │ ├── v1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── lease.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 │ │ │ ├── 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 │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── replicaset_expansion.go │ │ │ ├── flowcontrol │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── networking │ │ │ │ ├── v1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ └── networkpolicy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ └── ingressclass.go │ │ │ ├── node │ │ │ │ ├── v1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── runtimeclass.go │ │ │ ├── policy │ │ │ │ ├── v1 │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── poddisruptionbudget_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── poddisruptionbudget_expansion.go │ │ │ │ │ └── podsecuritypolicy.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 │ │ │ ├── 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 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ └── volumeattachment.go │ │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ ├── pkg │ │ │ ├── apis │ │ │ │ └── clientauthentication │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── version │ │ │ │ ├── .gitattributes │ │ │ │ ├── base.go │ │ │ │ ├── doc.go │ │ │ │ └── version.go │ │ ├── plugin │ │ │ └── pkg │ │ │ │ └── client │ │ │ │ └── auth │ │ │ │ ├── azure │ │ │ │ ├── README.md │ │ │ │ └── azure.go │ │ │ │ ├── exec │ │ │ │ ├── exec.go │ │ │ │ └── metrics.go │ │ │ │ ├── gcp │ │ │ │ ├── OWNERS │ │ │ │ └── gcp.go │ │ │ │ └── oidc │ │ │ │ ├── OWNERS │ │ │ │ └── oidc.go │ │ ├── rest │ │ │ ├── OWNERS │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── exec.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── plugin.go │ │ │ ├── request.go │ │ │ ├── transport.go │ │ │ ├── url_utils.go │ │ │ ├── urlbackoff.go │ │ │ ├── warnings.go │ │ │ ├── watch │ │ │ │ ├── decoder.go │ │ │ │ └── encoder.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── restmapper │ │ │ ├── category_expansion.go │ │ │ ├── discovery.go │ │ │ └── shortcut.go │ │ ├── testing │ │ │ ├── actions.go │ │ │ ├── fake.go │ │ │ └── fixture.go │ │ ├── third_party │ │ │ └── forked │ │ │ │ └── golang │ │ │ │ └── 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 │ │ │ │ ├── reflector.go │ │ │ │ ├── reflector_metrics.go │ │ │ │ ├── shared_informer.go │ │ │ │ ├── store.go │ │ │ │ ├── thread_safe_store.go │ │ │ │ └── undelta_store.go │ │ │ ├── clientcmd │ │ │ │ ├── api │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── latest │ │ │ │ │ │ └── latest.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── auth_loaders.go │ │ │ │ ├── client_config.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── flag.go │ │ │ │ ├── helpers.go │ │ │ │ ├── loader.go │ │ │ │ ├── merged_client_builder.go │ │ │ │ ├── overrides.go │ │ │ │ └── validation.go │ │ │ ├── metrics │ │ │ │ ├── OWNERS │ │ │ │ └── metrics.go │ │ │ ├── pager │ │ │ │ └── pager.go │ │ │ ├── portforward │ │ │ │ ├── doc.go │ │ │ │ └── portforward.go │ │ │ ├── reference │ │ │ │ └── ref.go │ │ │ └── remotecommand │ │ │ │ ├── doc.go │ │ │ │ ├── errorstream.go │ │ │ │ ├── reader.go │ │ │ │ ├── remotecommand.go │ │ │ │ ├── resize.go │ │ │ │ ├── v1.go │ │ │ │ ├── v2.go │ │ │ │ ├── v3.go │ │ │ │ └── v4.go │ │ ├── transport │ │ │ ├── OWNERS │ │ │ ├── cache.go │ │ │ ├── cert_rotation.go │ │ │ ├── config.go │ │ │ ├── round_trippers.go │ │ │ ├── spdy │ │ │ │ └── spdy.go │ │ │ ├── token_source.go │ │ │ └── transport.go │ │ └── util │ │ │ ├── cert │ │ │ ├── OWNERS │ │ │ ├── cert.go │ │ │ ├── csr.go │ │ │ ├── io.go │ │ │ ├── pem.go │ │ │ └── server_inspection.go │ │ │ ├── connrotation │ │ │ └── connrotation.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 │ │ │ └── workqueue │ │ │ ├── default_rate_limiters.go │ │ │ ├── delaying_queue.go │ │ │ ├── doc.go │ │ │ ├── metrics.go │ │ │ ├── parallelizer.go │ │ │ ├── queue.go │ │ │ └── rate_limiting_queue.go │ ├── klog │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── SECURITY_CONTACTS │ │ ├── code-of-conduct.md │ │ ├── klog.go │ │ ├── klog_file.go │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── RELEASE.md │ │ │ ├── SECURITY.md │ │ │ ├── SECURITY_CONTACTS │ │ │ ├── code-of-conduct.md │ │ │ ├── klog.go │ │ │ └── klog_file.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.deepcopy.go │ ├── kube-openapi │ │ ├── LICENSE │ │ └── pkg │ │ │ └── util │ │ │ └── proto │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ └── openapi.go │ ├── metrics │ │ ├── LICENSE │ │ └── pkg │ │ │ └── apis │ │ │ └── metrics │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ └── utils │ │ ├── LICENSE │ │ ├── buffer │ │ └── ring_growing.go │ │ ├── integer │ │ └── integer.go │ │ ├── pointer │ │ ├── OWNERS │ │ ├── README.md │ │ └── pointer.go │ │ └── trace │ │ ├── README.md │ │ └── trace.go ├── modules.txt └── sigs.k8s.io │ ├── 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 │ │ ├── schema │ │ ├── doc.go │ │ ├── elements.go │ │ ├── equals.go │ │ └── schemaschema.go │ │ ├── typed │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── merge.go │ │ ├── parser.go │ │ ├── reconcile_schema.go │ │ ├── remove.go │ │ ├── tofieldset.go │ │ ├── typed.go │ │ ├── union.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 │ ├── yaml.go │ └── yaml_go110.go └── web ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .nvmrc ├── .storybook ├── assets │ ├── favicon.ico │ └── octant-logo.png ├── main.js ├── manager-head.html ├── manager.js ├── preview-head.html ├── preview.js ├── theme.js ├── tsconfig.json ├── typings.d.ts └── webpack.config.js ├── README.md ├── angular.json ├── doc.go ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── electron-builder.json ├── electron ├── application-menu.ts ├── paths.ts ├── store.ts └── tray-menu.ts ├── main.ts ├── package-lock.json ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.module.ts │ ├── components │ │ └── smart │ │ │ └── home │ │ │ ├── home.component.html │ │ │ ├── home.component.sass │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ ├── data │ │ ├── data.module.ts │ │ └── services │ │ │ └── websocket │ │ │ ├── mock.ts │ │ │ ├── websocket.service.spec.ts │ │ │ └── websocket.service.ts │ ├── modules │ │ ├── denali │ │ │ ├── components │ │ │ │ └── smart │ │ │ │ │ └── home │ │ │ │ │ ├── home.component.html │ │ │ │ │ ├── home.component.scss │ │ │ │ │ ├── home.component.spec.ts │ │ │ │ │ └── home.component.ts │ │ │ └── denali.module.ts │ │ ├── shared │ │ │ ├── component-reuse.strategy.ts │ │ │ ├── components │ │ │ │ ├── abstract-view │ │ │ │ │ └── abstract-view.component.ts │ │ │ │ ├── fixPassiveEvents.ts │ │ │ │ ├── form-view-container │ │ │ │ │ ├── form-view-container.component.html │ │ │ │ │ ├── form-view-container.component.scss │ │ │ │ │ ├── form-view-container.component.spec.ts │ │ │ │ │ └── form-view-container.component.ts │ │ │ │ ├── missing-component │ │ │ │ │ ├── missing-component.component.html │ │ │ │ │ ├── missing-component.component.sass │ │ │ │ │ ├── missing-component.component.spec.ts │ │ │ │ │ └── missing-component.component.ts │ │ │ │ ├── presentation │ │ │ │ │ ├── accordion │ │ │ │ │ │ ├── accordion.component.html │ │ │ │ │ │ ├── accordion.component.scss │ │ │ │ │ │ ├── accordion.component.spec.ts │ │ │ │ │ │ └── accordion.component.ts │ │ │ │ │ ├── alert │ │ │ │ │ │ ├── alert.component.html │ │ │ │ │ │ ├── alert.component.scss │ │ │ │ │ │ ├── alert.component.spec.ts │ │ │ │ │ │ └── alert.component.ts │ │ │ │ │ ├── annotations │ │ │ │ │ │ ├── annotations.component.html │ │ │ │ │ │ ├── annotations.component.scss │ │ │ │ │ │ ├── annotations.component.spec.ts │ │ │ │ │ │ └── annotations.component.ts │ │ │ │ │ ├── breadcrumb │ │ │ │ │ │ ├── breadcrumb.component.html │ │ │ │ │ │ ├── breadcrumb.component.scss │ │ │ │ │ │ ├── breadcrumb.component.spec.ts │ │ │ │ │ │ └── breadcrumb.component.ts │ │ │ │ │ ├── button-group │ │ │ │ │ │ ├── button-group.component.html │ │ │ │ │ │ ├── button-group.component.scss │ │ │ │ │ │ ├── button-group.component.spec.ts │ │ │ │ │ │ └── button-group.component.ts │ │ │ │ │ ├── button │ │ │ │ │ │ ├── button.component.html │ │ │ │ │ │ ├── button.component.scss │ │ │ │ │ │ ├── button.component.spec.ts │ │ │ │ │ │ └── button.component.ts │ │ │ │ │ ├── card-list │ │ │ │ │ │ ├── card-list.component.html │ │ │ │ │ │ ├── card-list.component.scss │ │ │ │ │ │ ├── card-list.component.spec.ts │ │ │ │ │ │ └── card-list.component.ts │ │ │ │ │ ├── card │ │ │ │ │ │ ├── card.component.html │ │ │ │ │ │ ├── card.component.scss │ │ │ │ │ │ ├── card.component.spec.ts │ │ │ │ │ │ └── card.component.ts │ │ │ │ │ ├── code │ │ │ │ │ │ ├── code.component.html │ │ │ │ │ │ ├── code.component.scss │ │ │ │ │ │ ├── code.component.spec.ts │ │ │ │ │ │ └── code.component.ts │ │ │ │ │ ├── containers │ │ │ │ │ │ ├── containers.component.html │ │ │ │ │ │ ├── containers.component.scss │ │ │ │ │ │ ├── containers.component.spec.ts │ │ │ │ │ │ └── containers.component.ts │ │ │ │ │ ├── content-filter │ │ │ │ │ │ ├── content-filter.component.html │ │ │ │ │ │ ├── content-filter.component.scss │ │ │ │ │ │ └── content-filter.component.ts │ │ │ │ │ ├── content-text-filter │ │ │ │ │ │ ├── content-text-filter.component.html │ │ │ │ │ │ ├── content-text-filter.component.scss │ │ │ │ │ │ └── content-text-filter.component.ts │ │ │ │ │ ├── cytoscape │ │ │ │ │ │ ├── cytoscape.component.scss │ │ │ │ │ │ ├── cytoscape.component.spec.ts │ │ │ │ │ │ └── cytoscape.component.ts │ │ │ │ │ ├── cytoscape2 │ │ │ │ │ │ ├── cytoscape2.component.spec.ts │ │ │ │ │ │ ├── cytoscape2.component.ts │ │ │ │ │ │ ├── octant.layout.ts │ │ │ │ │ │ └── shape.ts │ │ │ │ │ ├── datagrid │ │ │ │ │ │ ├── datagrid.component.html │ │ │ │ │ │ ├── datagrid.component.scss │ │ │ │ │ │ ├── datagrid.component.spec.ts │ │ │ │ │ │ └── datagrid.component.ts │ │ │ │ │ ├── donut-chart │ │ │ │ │ │ ├── donut-chart.component.html │ │ │ │ │ │ ├── donut-chart.component.scss │ │ │ │ │ │ ├── donut-chart.component.spec.ts │ │ │ │ │ │ └── donut-chart.component.ts │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── dropdown.component.html │ │ │ │ │ │ ├── dropdown.component.scss │ │ │ │ │ │ ├── dropdown.component.spec.ts │ │ │ │ │ │ └── dropdown.component.ts │ │ │ │ │ ├── error │ │ │ │ │ │ ├── error.component.html │ │ │ │ │ │ ├── error.component.scss │ │ │ │ │ │ ├── error.component.spec.ts │ │ │ │ │ │ └── error.component.ts │ │ │ │ │ ├── expression-selector │ │ │ │ │ │ ├── expression-selector.component.html │ │ │ │ │ │ ├── expression-selector.component.scss │ │ │ │ │ │ ├── expression-selector.component.spec.ts │ │ │ │ │ │ └── expression-selector.component.ts │ │ │ │ │ ├── flexlayout │ │ │ │ │ │ ├── flexlayout.component.html │ │ │ │ │ │ ├── flexlayout.component.scss │ │ │ │ │ │ ├── flexlayout.component.spec.ts │ │ │ │ │ │ └── flexlayout.component.ts │ │ │ │ │ ├── form │ │ │ │ │ │ ├── form.component.html │ │ │ │ │ │ ├── form.component.scss │ │ │ │ │ │ ├── form.component.spec.ts │ │ │ │ │ │ └── form.component.ts │ │ │ │ │ ├── graphviz │ │ │ │ │ │ ├── graphviz.component.scss │ │ │ │ │ │ ├── graphviz.component.spec.ts │ │ │ │ │ │ └── graphviz.component.ts │ │ │ │ │ ├── heptagon-grid-row │ │ │ │ │ │ ├── heptagon-grid-row.component.html │ │ │ │ │ │ ├── heptagon-grid-row.component.scss │ │ │ │ │ │ ├── heptagon-grid-row.component.spec.ts │ │ │ │ │ │ └── heptagon-grid-row.component.ts │ │ │ │ │ ├── heptagon-grid │ │ │ │ │ │ ├── heptagon-grid.component.scss │ │ │ │ │ │ ├── heptagon-grid.component.spec.ts │ │ │ │ │ │ └── heptagon-grid.component.ts │ │ │ │ │ ├── heptagon-label │ │ │ │ │ │ ├── heptagon-label.component.scss │ │ │ │ │ │ ├── heptagon-label.component.spec.ts │ │ │ │ │ │ └── heptagon-label.component.ts │ │ │ │ │ ├── icon │ │ │ │ │ │ ├── icon.component.html │ │ │ │ │ │ ├── icon.component.scss │ │ │ │ │ │ ├── icon.component.spec.ts │ │ │ │ │ │ └── icon.component.ts │ │ │ │ │ ├── iframe │ │ │ │ │ │ ├── iframe.component.html │ │ │ │ │ │ ├── iframe.component.scss │ │ │ │ │ │ ├── iframe.component.spec.ts │ │ │ │ │ │ └── iframe.component.ts │ │ │ │ │ ├── indicator │ │ │ │ │ │ ├── indicator.component.html │ │ │ │ │ │ ├── indicator.component.spec.ts │ │ │ │ │ │ └── indicator.component.ts │ │ │ │ │ ├── json-editor │ │ │ │ │ │ ├── json-editor.component.html │ │ │ │ │ │ ├── json-editor.component.scss │ │ │ │ │ │ ├── json-editor.component.spec.ts │ │ │ │ │ │ └── json-editor.component.ts │ │ │ │ │ ├── label-selector │ │ │ │ │ │ ├── label-selector.component.html │ │ │ │ │ │ ├── label-selector.component.scss │ │ │ │ │ │ ├── label-selector.component.spec.ts │ │ │ │ │ │ └── label-selector.component.ts │ │ │ │ │ ├── labels │ │ │ │ │ │ ├── labels.component.html │ │ │ │ │ │ ├── labels.component.scss │ │ │ │ │ │ ├── labels.component.spec.ts │ │ │ │ │ │ └── labels.component.ts │ │ │ │ │ ├── link │ │ │ │ │ │ ├── link.component.html │ │ │ │ │ │ ├── link.component.scss │ │ │ │ │ │ ├── link.component.spec.ts │ │ │ │ │ │ └── link.component.ts │ │ │ │ │ ├── list │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ ├── list.component.scss │ │ │ │ │ │ ├── list.component.spec.ts │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ ├── loading │ │ │ │ │ │ ├── loading.component.html │ │ │ │ │ │ ├── loading.component.scss │ │ │ │ │ │ ├── loading.component.spec.ts │ │ │ │ │ │ └── loading.component.ts │ │ │ │ │ ├── modal │ │ │ │ │ │ ├── modal.component.html │ │ │ │ │ │ ├── modal.component.scss │ │ │ │ │ │ ├── modal.component.spec.ts │ │ │ │ │ │ └── modal.component.ts │ │ │ │ │ ├── object-status │ │ │ │ │ │ ├── object-status.component.html │ │ │ │ │ │ ├── object-status.component.scss │ │ │ │ │ │ ├── object-status.component.spec.ts │ │ │ │ │ │ └── object-status.component.ts │ │ │ │ │ ├── octant-tooltip │ │ │ │ │ │ ├── octant-tooltip.html │ │ │ │ │ │ ├── octant-tooltip.scss │ │ │ │ │ │ ├── octant-tooltip.spec.ts │ │ │ │ │ │ └── octant-tooltip.ts │ │ │ │ │ ├── overflow-labels │ │ │ │ │ │ ├── overflow-labels.component.html │ │ │ │ │ │ ├── overflow-labels.component.scss │ │ │ │ │ │ ├── overflow-labels.component.spec.ts │ │ │ │ │ │ └── overflow-labels.component.ts │ │ │ │ │ ├── overflow-selectors │ │ │ │ │ │ ├── overflow-selectors.component.html │ │ │ │ │ │ ├── overflow-selectors.component.scss │ │ │ │ │ │ ├── overflow-selectors.component.spec.ts │ │ │ │ │ │ └── overflow-selectors.component.ts │ │ │ │ │ ├── pod-status │ │ │ │ │ │ ├── pod-status.component.html │ │ │ │ │ │ ├── pod-status.component.scss │ │ │ │ │ │ ├── pod-status.component.spec.ts │ │ │ │ │ │ └── pod-status.component.ts │ │ │ │ │ ├── port-forward │ │ │ │ │ │ ├── port-forward.component.html │ │ │ │ │ │ ├── port-forward.component.scss │ │ │ │ │ │ ├── port-forward.component.spec.ts │ │ │ │ │ │ └── port-forward.component.ts │ │ │ │ │ ├── ports │ │ │ │ │ │ ├── ports.component.html │ │ │ │ │ │ ├── ports.component.scss │ │ │ │ │ │ ├── ports.component.spec.ts │ │ │ │ │ │ └── ports.component.ts │ │ │ │ │ ├── preferences │ │ │ │ │ │ ├── preferences.component.html │ │ │ │ │ │ ├── preferences.component.scss │ │ │ │ │ │ ├── preferences.component.spec.ts │ │ │ │ │ │ └── preferences.component.ts │ │ │ │ │ ├── quadrant │ │ │ │ │ │ ├── quadrant.component.html │ │ │ │ │ │ ├── quadrant.component.scss │ │ │ │ │ │ ├── quadrant.component.spec.ts │ │ │ │ │ │ └── quadrant.component.ts │ │ │ │ │ ├── resource-viewer │ │ │ │ │ │ ├── octant.style.ts │ │ │ │ │ │ ├── resource-viewer.component.html │ │ │ │ │ │ ├── resource-viewer.component.scss │ │ │ │ │ │ ├── resource-viewer.component.spec.ts │ │ │ │ │ │ └── resource-viewer.component.ts │ │ │ │ │ ├── select-file │ │ │ │ │ │ ├── select-file.component.html │ │ │ │ │ │ ├── select-file.component.scss │ │ │ │ │ │ ├── select-file.component.spec.ts │ │ │ │ │ │ └── select-file.component.ts │ │ │ │ │ ├── selectors │ │ │ │ │ │ ├── selectors.component.html │ │ │ │ │ │ ├── selectors.component.scss │ │ │ │ │ │ ├── selectors.component.spec.ts │ │ │ │ │ │ └── selectors.component.ts │ │ │ │ │ ├── signpost │ │ │ │ │ │ ├── signpost.component.html │ │ │ │ │ │ ├── signpost.component.scss │ │ │ │ │ │ ├── signpost.component.spec.ts │ │ │ │ │ │ └── signpost.component.ts │ │ │ │ │ ├── single-stat │ │ │ │ │ │ ├── single-stat.component.html │ │ │ │ │ │ ├── single-stat.component.scss │ │ │ │ │ │ ├── single-stat.component.spec.ts │ │ │ │ │ │ └── single-stat.component.ts │ │ │ │ │ ├── stepper │ │ │ │ │ │ ├── stepper.component.html │ │ │ │ │ │ ├── stepper.component.scss │ │ │ │ │ │ ├── stepper.component.spec.ts │ │ │ │ │ │ └── stepper.component.ts │ │ │ │ │ ├── summary │ │ │ │ │ │ ├── summary.component.html │ │ │ │ │ │ ├── summary.component.scss │ │ │ │ │ │ ├── summary.component.spec.ts │ │ │ │ │ │ └── summary.component.ts │ │ │ │ │ ├── table │ │ │ │ │ │ ├── table.component.html │ │ │ │ │ │ ├── table.component.scss │ │ │ │ │ │ ├── table.component.spec.ts │ │ │ │ │ │ └── table.component.ts │ │ │ │ │ ├── tabs-view │ │ │ │ │ │ ├── tabs-view.component.html │ │ │ │ │ │ ├── tabs-view.component.scss │ │ │ │ │ │ ├── tabs-view.component.spec.ts │ │ │ │ │ │ └── tabs-view.component.ts │ │ │ │ │ ├── tabs │ │ │ │ │ │ ├── tabs.component.html │ │ │ │ │ │ ├── tabs.component.scss │ │ │ │ │ │ ├── tabs.component.spec.ts │ │ │ │ │ │ └── tabs.component.ts │ │ │ │ │ ├── text │ │ │ │ │ │ ├── text.component.html │ │ │ │ │ │ ├── text.component.scss │ │ │ │ │ │ ├── text.component.spec.ts │ │ │ │ │ │ └── text.component.ts │ │ │ │ │ ├── timeline │ │ │ │ │ │ ├── timeline.component.html │ │ │ │ │ │ ├── timeline.component.scss │ │ │ │ │ │ ├── timeline.component.spec.ts │ │ │ │ │ │ └── timeline.component.ts │ │ │ │ │ ├── timestamp │ │ │ │ │ │ ├── timestamp.component.html │ │ │ │ │ │ ├── timestamp.component.scss │ │ │ │ │ │ ├── timestamp.component.spec.ts │ │ │ │ │ │ └── timestamp.component.ts │ │ │ │ │ ├── title │ │ │ │ │ │ ├── title.component.html │ │ │ │ │ │ ├── title.component.scss │ │ │ │ │ │ ├── title.component.spec.ts │ │ │ │ │ │ └── title.component.ts │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── yaml.component.html │ │ │ │ │ │ ├── yaml.component.scss │ │ │ │ │ │ ├── yaml.component.spec.ts │ │ │ │ │ │ └── yaml.component.ts │ │ │ │ ├── smart │ │ │ │ │ ├── bottom-panel │ │ │ │ │ │ ├── bottom-panel.component.html │ │ │ │ │ │ ├── bottom-panel.component.scss │ │ │ │ │ │ ├── bottom-panel.component.spec.ts │ │ │ │ │ │ └── bottom-panel.component.ts │ │ │ │ │ ├── context-selector │ │ │ │ │ │ ├── context-selector.component.html │ │ │ │ │ │ ├── context-selector.component.scss │ │ │ │ │ │ ├── context-selector.component.spec.ts │ │ │ │ │ │ └── context-selector.component.ts │ │ │ │ │ ├── editor │ │ │ │ │ │ ├── editor.component.html │ │ │ │ │ │ ├── editor.component.scss │ │ │ │ │ │ ├── editor.component.spec.ts │ │ │ │ │ │ └── editor.component.ts │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── filters.component.html │ │ │ │ │ │ ├── filters.component.scss │ │ │ │ │ │ ├── filters.component.spec.ts │ │ │ │ │ │ └── filters.component.ts │ │ │ │ │ ├── helper │ │ │ │ │ │ ├── helper.component.html │ │ │ │ │ │ ├── helper.component.scss │ │ │ │ │ │ ├── helper.component.spec.ts │ │ │ │ │ │ └── helper.component.ts │ │ │ │ │ ├── heptagon │ │ │ │ │ │ ├── heptagon.component.scss │ │ │ │ │ │ ├── heptagon.component.spec.ts │ │ │ │ │ │ └── heptagon.component.ts │ │ │ │ │ ├── logs │ │ │ │ │ │ ├── logs.component.html │ │ │ │ │ │ ├── logs.component.integration.spec.ts │ │ │ │ │ │ ├── logs.component.scss │ │ │ │ │ │ ├── logs.component.spec.ts │ │ │ │ │ │ └── logs.component.ts │ │ │ │ │ ├── slider-view │ │ │ │ │ │ ├── slide-in-out.animation.ts │ │ │ │ │ │ ├── slider-view.component.html │ │ │ │ │ │ ├── slider-view.component.scss │ │ │ │ │ │ ├── slider-view.component.spec.ts │ │ │ │ │ │ └── slider-view.component.ts │ │ │ │ │ └── terminal │ │ │ │ │ │ ├── terminal.component.html │ │ │ │ │ │ ├── terminal.component.scss │ │ │ │ │ │ ├── terminal.component.spec.ts │ │ │ │ │ │ └── terminal.component.ts │ │ │ │ └── view │ │ │ │ │ ├── view-container.component.spec.ts │ │ │ │ │ └── view-container.component.ts │ │ │ ├── directives │ │ │ │ └── view-host │ │ │ │ │ ├── view-host.directive.spec.ts │ │ │ │ │ └── view-host.directive.ts │ │ │ ├── dynamic-components.ts │ │ │ ├── highlight.ts │ │ │ ├── models │ │ │ │ ├── content.ts │ │ │ │ ├── form-helper.spec.ts │ │ │ │ ├── form-helper.ts │ │ │ │ ├── pod-status.ts │ │ │ │ ├── point.spec.ts │ │ │ │ ├── point.ts │ │ │ │ ├── preference.ts │ │ │ │ ├── resource-node.ts │ │ │ │ └── vector.ts │ │ │ ├── notifier │ │ │ │ ├── notifier.service.spec.ts │ │ │ │ └── notifier.service.ts │ │ │ ├── pipes │ │ │ │ ├── ansiPipe │ │ │ │ │ ├── ansi.pipe.spec.ts │ │ │ │ │ └── ansi.pipe.ts │ │ │ │ ├── default │ │ │ │ │ ├── default.pipe.spec.ts │ │ │ │ │ └── default.pipe.ts │ │ │ │ ├── filterDeletedDatagridRow │ │ │ │ │ ├── filter-deleted-datagrid-row.pipe.spec.ts │ │ │ │ │ └── filter-deleted-datagrid-row.pipe.ts │ │ │ │ ├── formatpath │ │ │ │ │ ├── formatpath.pipe.spec.ts │ │ │ │ │ └── formatpath.pipe.ts │ │ │ │ ├── join │ │ │ │ │ ├── join.pipe.spec.ts │ │ │ │ │ └── join.pipe.ts │ │ │ │ ├── relative │ │ │ │ │ ├── relative.pipe.spec.ts │ │ │ │ │ └── relative.pipe.ts │ │ │ │ ├── safe │ │ │ │ │ ├── safe.pipe.spec.ts │ │ │ │ │ └── safe.pipe.ts │ │ │ │ ├── stringEscape │ │ │ │ │ ├── string.escape.pipe.spec.ts │ │ │ │ │ └── string.escape.pipe.ts │ │ │ │ └── truncate │ │ │ │ │ ├── truncate.pipe.spec.ts │ │ │ │ │ └── truncate.pipe.ts │ │ │ ├── pod-logs │ │ │ │ ├── pod-logs.service.spec.ts │ │ │ │ └── pod-logs.service.ts │ │ │ ├── services │ │ │ │ ├── action │ │ │ │ │ ├── action.service.spec.ts │ │ │ │ │ └── action.service.ts │ │ │ │ ├── common │ │ │ │ │ └── getAPIBase.ts │ │ │ │ ├── content │ │ │ │ │ ├── content.service.spec.ts │ │ │ │ │ ├── content.service.ts │ │ │ │ │ └── mock.ts │ │ │ │ ├── d3 │ │ │ │ │ ├── d3graphviz.service.spec.ts │ │ │ │ │ └── d3graphviz.service.ts │ │ │ │ ├── electron │ │ │ │ │ ├── electron.service.spec.ts │ │ │ │ │ └── electron.service.ts │ │ │ │ ├── helper │ │ │ │ │ └── helper.service.ts │ │ │ │ ├── history │ │ │ │ │ ├── history.service.spec.ts │ │ │ │ │ ├── history.service.ts │ │ │ │ │ └── mock.ts │ │ │ │ ├── icon │ │ │ │ │ ├── icon.service.spec.ts │ │ │ │ │ └── icon.service.ts │ │ │ │ ├── kube-context │ │ │ │ │ ├── kube-context.service.spec.ts │ │ │ │ │ └── kube-context.service.ts │ │ │ │ ├── label-filter │ │ │ │ │ ├── label-filter.service.spec.ts │ │ │ │ │ └── label-filter.service.ts │ │ │ │ ├── loading │ │ │ │ │ ├── loading.service.spec.ts │ │ │ │ │ └── loading.service.ts │ │ │ │ ├── modal │ │ │ │ │ ├── modal.service.spec.ts │ │ │ │ │ └── modal.service.ts │ │ │ │ ├── namespace │ │ │ │ │ ├── namespace.service.spec.ts │ │ │ │ │ └── namespace.service.ts │ │ │ │ ├── navigation │ │ │ │ │ ├── navigation.service.spec.ts │ │ │ │ │ ├── navigation.service.ts │ │ │ │ │ └── navigation.test.data.ts │ │ │ │ ├── preferences │ │ │ │ │ ├── preferences.entry.ts │ │ │ │ │ ├── preferences.service.spec.ts │ │ │ │ │ └── preferences.service.ts │ │ │ │ ├── theme │ │ │ │ │ ├── theme.service.spec.ts │ │ │ │ │ └── theme.service.ts │ │ │ │ └── view │ │ │ │ │ ├── view.service.spec.ts │ │ │ │ │ └── view.service.ts │ │ │ ├── shared.module.ts │ │ │ ├── slider │ │ │ │ ├── slider.service.spec.ts │ │ │ │ └── slider.service.ts │ │ │ └── terminals │ │ │ │ ├── terminals.service.spec.ts │ │ │ │ └── terminals.service.ts │ │ └── sugarloaf │ │ │ ├── components │ │ │ └── smart │ │ │ │ ├── apply-yaml │ │ │ │ ├── apply-yaml.component.html │ │ │ │ ├── apply-yaml.component.scss │ │ │ │ ├── apply-yaml.component.spec.ts │ │ │ │ └── apply-yaml.component.ts │ │ │ │ ├── container │ │ │ │ ├── container.component.html │ │ │ │ ├── container.component.scss │ │ │ │ ├── container.component.spec.ts │ │ │ │ └── container.component.ts │ │ │ │ ├── content │ │ │ │ ├── content.component.html │ │ │ │ ├── content.component.scss │ │ │ │ ├── content.component.spec.ts │ │ │ │ └── content.component.ts │ │ │ │ ├── input-filter │ │ │ │ ├── input-filter.component.html │ │ │ │ ├── input-filter.component.scss │ │ │ │ ├── input-filter.component.spec.ts │ │ │ │ └── input-filter.component.ts │ │ │ │ ├── namespace │ │ │ │ ├── namespace.component.html │ │ │ │ ├── namespace.component.scss │ │ │ │ ├── namespace.component.spec.ts │ │ │ │ └── namespace.component.ts │ │ │ │ ├── navigation │ │ │ │ ├── navigation.component.html │ │ │ │ ├── navigation.component.scss │ │ │ │ ├── navigation.component.spec.ts │ │ │ │ └── navigation.component.ts │ │ │ │ ├── notifier │ │ │ │ ├── notifier.component.html │ │ │ │ ├── notifier.component.scss │ │ │ │ ├── notifier.component.spec.ts │ │ │ │ └── notifier.component.ts │ │ │ │ ├── page-not-found │ │ │ │ ├── page-not-found.component.html │ │ │ │ ├── page-not-found.component.scss │ │ │ │ ├── page-not-found.component.spec.ts │ │ │ │ └── page-not-found.component.ts │ │ │ │ ├── quick-switcher │ │ │ │ ├── quick-switcher.component.html │ │ │ │ ├── quick-switcher.component.scss │ │ │ │ ├── quick-switcher.component.spec.ts │ │ │ │ └── quick-switcher.component.ts │ │ │ │ ├── theme-switch │ │ │ │ ├── theme-switch-button.component.html │ │ │ │ ├── theme-switch-button.component.scss │ │ │ │ ├── theme-switch-button.component.spec.ts │ │ │ │ └── theme-switch-button.component.ts │ │ │ │ └── uploader │ │ │ │ ├── uploader.component.html │ │ │ │ ├── uploader.component.scss │ │ │ │ ├── uploader.component.spec.ts │ │ │ │ └── uploader.component.ts │ │ │ ├── models │ │ │ └── navigation.ts │ │ │ ├── pipes │ │ │ └── filtertext │ │ │ │ ├── filtertext.pipe.spec.ts │ │ │ │ └── filtertext.pipe.ts │ │ │ └── sugarloaf.module.ts │ ├── testing │ │ ├── activated-route-stub.ts │ │ ├── theme-service-stub.ts │ │ └── view-service.stub.ts │ ├── util │ │ ├── includesArray.spec.ts │ │ ├── includesArray.ts │ │ ├── isSvg.spec.ts │ │ ├── isSvg.ts │ │ ├── timestamp-comparator.ts │ │ └── trackBy │ │ │ ├── trackBy.spec.ts │ │ │ ├── trackByIdentity.ts │ │ │ └── trackByIndex.ts │ └── window.ts ├── assets │ ├── .gitkeep │ ├── favicon.ico │ ├── icons │ │ ├── icon-grey.png │ │ ├── icon.icns │ │ ├── icon.ico │ │ └── icon.png │ ├── octant-demo.gif │ ├── octant-logo.png │ └── plugins │ │ ├── kuard_deployment_config.png │ │ └── kuard_pod_config_status.png ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── sass │ ├── _links.scss │ ├── _mixins.scss │ └── _variables.scss ├── stories │ ├── accordion.stories.mdx │ ├── annotations.stories.mdx │ ├── button.group.stories.mdx │ ├── button.stories.mdx │ ├── card.stories.mdx │ ├── code.stories.mdx │ ├── containers.stories.mdx │ ├── docs │ │ ├── about │ │ │ ├── Intro.story.mdx │ │ │ ├── Roadmap.story.mdx │ │ │ └── Why.story.mdx │ │ ├── hacking │ │ │ ├── Electron.story.mdx │ │ │ ├── ReleaseProcess.story.mdx │ │ │ ├── Requirements.story.mdx │ │ │ └── TypeScriptGen.story.mdx │ │ └── plugins │ │ │ ├── AppxDebugging.story.mdx │ │ │ ├── AppxListKnownPlugins.story.mdx │ │ │ ├── AppxTerminology.story.mdx │ │ │ ├── GettingStarted.story.mdx │ │ │ └── GoPluginsIntro.story.mdx │ ├── donut.chart.stories.mdx │ ├── dropdown.stories.mdx │ ├── editor.stories.mdx │ ├── flex.layout.stories.mdx │ ├── graph.data.ts │ ├── graph.stories.ts │ ├── graph │ │ ├── graph.real.data.ts │ │ └── new.graph.stories.ts │ ├── graphviz.stories.mdx │ ├── helpers │ │ └── helpers.js │ ├── icon.stories.mdx │ ├── iframe.stories.mdx │ ├── labels.stories.mdx │ ├── link.stories.mdx │ ├── list.stories.mdx │ ├── logs.stories.mdx │ ├── modal.stories.mdx │ ├── other │ │ └── bottom-panel.stories.ts │ ├── overview.data.ts │ ├── pod.status.stories.mdx │ ├── ports.stories.mdx │ ├── preferences.stories.ts │ ├── quadrant.stories.mdx │ ├── sandbox.stories.ts │ ├── select.file.stories.mdx │ ├── signpost.stories.mdx │ ├── stepper.stories.mdx │ ├── summary.stories.mdx │ ├── table.stories.mdx │ ├── tabs.stories.mdx │ ├── terminal.stories.mdx │ ├── text.stories.mdx │ ├── timeline.stories.mdx │ └── timestamp.stories.mdx ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json ├── tslint.json └── types │ └── index.d.ts ├── tsconfig.base.json ├── tsconfig.compodoc.json ├── tsconfig.json ├── tsconfig.serve.json ├── tslint.json └── web.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js text eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/electron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/.github/workflows/electron.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/nightly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/.github/workflows/nightly.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser-nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/.goreleaser-nightly.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.9.1 2 | -------------------------------------------------------------------------------- /ADOPTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/ADOPTERS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMMUNITY_MEMBERSHIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/COMMUNITY_MEMBERSHIP.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/HACKING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/NOTICE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/SECURITY.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.10.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.11.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.12.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.13.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.14.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.15.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.16.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.17.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.18.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.19.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.20.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.21.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.22.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.23.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.24.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.25.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.4.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.5.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.6.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.7.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.8.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-0.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/changelogs/CHANGELOG-0.9.md -------------------------------------------------------------------------------- /changelogs/unreleased/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /choco/octant.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/choco/octant.nuspec -------------------------------------------------------------------------------- /choco/tools/chocolateyinstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/choco/tools/chocolateyinstall.ps1 -------------------------------------------------------------------------------- /choco/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/choco/update.sh -------------------------------------------------------------------------------- /ci/check-generated-mocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/ci/check-generated-mocks.sh -------------------------------------------------------------------------------- /ci/github-actions-tag-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/ci/github-actions-tag-check.sh -------------------------------------------------------------------------------- /cmd/octant-sample-plugin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/cmd/octant-sample-plugin/main.go -------------------------------------------------------------------------------- /cmd/octant/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/cmd/octant/main.go -------------------------------------------------------------------------------- /cmd/ts-component-gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/cmd/ts-component-gen/main.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- 1 | // +build ignore 2 | 3 | package octant 4 | -------------------------------------------------------------------------------- /examples/content/deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/content/deployment.json -------------------------------------------------------------------------------- /examples/content/replicaset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/content/replicaset.json -------------------------------------------------------------------------------- /examples/content/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/content/table.json -------------------------------------------------------------------------------- /examples/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/README.md -------------------------------------------------------------------------------- /examples/resources/config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/config-map.yaml -------------------------------------------------------------------------------- /examples/resources/crd-crontab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/crd-crontab.yaml -------------------------------------------------------------------------------- /examples/resources/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/cronjob.yaml -------------------------------------------------------------------------------- /examples/resources/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/daemonset.yaml -------------------------------------------------------------------------------- /examples/resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/deployment.yaml -------------------------------------------------------------------------------- /examples/resources/generic-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/generic-secret.yaml -------------------------------------------------------------------------------- /examples/resources/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/ingress.yaml -------------------------------------------------------------------------------- /examples/resources/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/job.yaml -------------------------------------------------------------------------------- /examples/resources/job_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/job_fail.yaml -------------------------------------------------------------------------------- /examples/resources/log-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/log-pod.yaml -------------------------------------------------------------------------------- /examples/resources/role1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/role1.yaml -------------------------------------------------------------------------------- /examples/resources/rolebinding1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/rolebinding1.yaml -------------------------------------------------------------------------------- /examples/resources/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/examples/resources/statefulset.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/go.sum -------------------------------------------------------------------------------- /hacks/changelogs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/hacks/changelogs.sh -------------------------------------------------------------------------------- /hacks/ci-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/hacks/ci-linux.sh -------------------------------------------------------------------------------- /hacks/ci-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/hacks/ci-macos.sh -------------------------------------------------------------------------------- /hacks/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/hacks/functions.sh -------------------------------------------------------------------------------- /internal/api/action_request_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/action_request_manager.go -------------------------------------------------------------------------------- /internal/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/api.go -------------------------------------------------------------------------------- /internal/api/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/api_test.go -------------------------------------------------------------------------------- /internal/api/breadcrumb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/breadcrumb.go -------------------------------------------------------------------------------- /internal/api/breadcrumb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/breadcrumb_test.go -------------------------------------------------------------------------------- /internal/api/container_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/container_logs.go -------------------------------------------------------------------------------- /internal/api/container_logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/container_logs_test.go -------------------------------------------------------------------------------- /internal/api/content_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/content_manager.go -------------------------------------------------------------------------------- /internal/api/content_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/content_manager_test.go -------------------------------------------------------------------------------- /internal/api/context_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/context_manager.go -------------------------------------------------------------------------------- /internal/api/context_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/context_manager_test.go -------------------------------------------------------------------------------- /internal/api/fake/mock_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/fake/mock_service.go -------------------------------------------------------------------------------- /internal/api/filter_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/filter_manager.go -------------------------------------------------------------------------------- /internal/api/filter_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/filter_manager_test.go -------------------------------------------------------------------------------- /internal/api/helper_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/helper_manager.go -------------------------------------------------------------------------------- /internal/api/helper_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/helper_manager_test.go -------------------------------------------------------------------------------- /internal/api/loading_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/loading_state.go -------------------------------------------------------------------------------- /internal/api/loading_state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/loading_state_test.go -------------------------------------------------------------------------------- /internal/api/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/middleware.go -------------------------------------------------------------------------------- /internal/api/middleware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/middleware_test.go -------------------------------------------------------------------------------- /internal/api/namespaces_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/namespaces_manager.go -------------------------------------------------------------------------------- /internal/api/navigation_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/navigation_manager.go -------------------------------------------------------------------------------- /internal/api/poller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/poller.go -------------------------------------------------------------------------------- /internal/api/poller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/poller_test.go -------------------------------------------------------------------------------- /internal/api/state_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/state_manager.go -------------------------------------------------------------------------------- /internal/api/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/stream.go -------------------------------------------------------------------------------- /internal/api/stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/stream_test.go -------------------------------------------------------------------------------- /internal/api/streaming_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/streaming_service.go -------------------------------------------------------------------------------- /internal/api/terminal_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/terminal_manager.go -------------------------------------------------------------------------------- /internal/api/terminal_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/terminal_manager_test.go -------------------------------------------------------------------------------- /internal/api/websocket_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/api/websocket_service_test.go -------------------------------------------------------------------------------- /internal/cluster/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/cluster/cluster.go -------------------------------------------------------------------------------- /internal/cluster/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/cluster/info.go -------------------------------------------------------------------------------- /internal/cluster/info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/cluster/info_test.go -------------------------------------------------------------------------------- /internal/cluster/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/cluster/namespace.go -------------------------------------------------------------------------------- /internal/cluster/namespace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/cluster/namespace_test.go -------------------------------------------------------------------------------- /internal/cluster/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/cluster/options.go -------------------------------------------------------------------------------- /internal/cluster/resource_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/cluster/resource_info.go -------------------------------------------------------------------------------- /internal/cluster/resource_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/cluster/resource_info_test.go -------------------------------------------------------------------------------- /internal/commands/dash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/commands/dash.go -------------------------------------------------------------------------------- /internal/commands/dash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/commands/dash_test.go -------------------------------------------------------------------------------- /internal/commands/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/commands/root.go -------------------------------------------------------------------------------- /internal/commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/commands/version.go -------------------------------------------------------------------------------- /internal/config/dash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/config/dash.go -------------------------------------------------------------------------------- /internal/config/dash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/config/dash_test.go -------------------------------------------------------------------------------- /internal/config/fake/mock_dash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/config/fake/mock_dash.go -------------------------------------------------------------------------------- /internal/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/context/context.go -------------------------------------------------------------------------------- /internal/conversion/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/conversion/conversion.go -------------------------------------------------------------------------------- /internal/conversion/conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/conversion/conversion_test.go -------------------------------------------------------------------------------- /internal/describer/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/crd.go -------------------------------------------------------------------------------- /internal/describer/crd_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/crd_list.go -------------------------------------------------------------------------------- /internal/describer/crd_section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/crd_section.go -------------------------------------------------------------------------------- /internal/describer/crd_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/crd_watcher.go -------------------------------------------------------------------------------- /internal/describer/crd_watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/crd_watcher_test.go -------------------------------------------------------------------------------- /internal/describer/customresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/customresource.go -------------------------------------------------------------------------------- /internal/describer/describer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/describer.go -------------------------------------------------------------------------------- /internal/describer/describer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/describer_test.go -------------------------------------------------------------------------------- /internal/describer/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/list.go -------------------------------------------------------------------------------- /internal/describer/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/list_test.go -------------------------------------------------------------------------------- /internal/describer/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/object.go -------------------------------------------------------------------------------- /internal/describer/object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/object_test.go -------------------------------------------------------------------------------- /internal/describer/objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/objects.go -------------------------------------------------------------------------------- /internal/describer/path_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/path_filter.go -------------------------------------------------------------------------------- /internal/describer/path_filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/path_filter_test.go -------------------------------------------------------------------------------- /internal/describer/path_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/path_matcher.go -------------------------------------------------------------------------------- /internal/describer/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/resource.go -------------------------------------------------------------------------------- /internal/describer/resource_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/resource_loader.go -------------------------------------------------------------------------------- /internal/describer/resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/resource_test.go -------------------------------------------------------------------------------- /internal/describer/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/section.go -------------------------------------------------------------------------------- /internal/describer/section_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/section_test.go -------------------------------------------------------------------------------- /internal/describer/tab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/tab.go -------------------------------------------------------------------------------- /internal/describer/tab_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/tab_generator.go -------------------------------------------------------------------------------- /internal/describer/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/describer/test_helpers.go -------------------------------------------------------------------------------- /internal/errors/access_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/errors/access_error.go -------------------------------------------------------------------------------- /internal/errors/access_error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/errors/access_error_test.go -------------------------------------------------------------------------------- /internal/errors/action_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/errors/action_error.go -------------------------------------------------------------------------------- /internal/errors/action_error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/errors/action_error_test.go -------------------------------------------------------------------------------- /internal/errors/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/errors/store.go -------------------------------------------------------------------------------- /internal/errors/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/errors/store_test.go -------------------------------------------------------------------------------- /internal/errors/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/errors/types.go -------------------------------------------------------------------------------- /internal/event/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/event/context.go -------------------------------------------------------------------------------- /internal/event/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/event/context_test.go -------------------------------------------------------------------------------- /internal/event/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/event/errors.go -------------------------------------------------------------------------------- /internal/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/event/event.go -------------------------------------------------------------------------------- /internal/event/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/event/helper.go -------------------------------------------------------------------------------- /internal/generator/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/generator/generator.go -------------------------------------------------------------------------------- /internal/generator/generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/generator/generator_test.go -------------------------------------------------------------------------------- /internal/gvk/gvk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/gvk/gvk.go -------------------------------------------------------------------------------- /internal/kubeconfig/kubeconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/kubeconfig/kubeconfig.go -------------------------------------------------------------------------------- /internal/kubeconfig/kubeconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/kubeconfig/kubeconfig_test.go -------------------------------------------------------------------------------- /internal/link/fake/mock_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/link/fake/mock_link.go -------------------------------------------------------------------------------- /internal/link/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/link/link.go -------------------------------------------------------------------------------- /internal/link/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/link/link_test.go -------------------------------------------------------------------------------- /internal/loading/loading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/loading/loading.go -------------------------------------------------------------------------------- /internal/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/log/logger.go -------------------------------------------------------------------------------- /internal/log/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/log/logger_test.go -------------------------------------------------------------------------------- /internal/log/message_id_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/log/message_id_generator.go -------------------------------------------------------------------------------- /internal/log/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/log/options.go -------------------------------------------------------------------------------- /internal/log/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/log/sink.go -------------------------------------------------------------------------------- /internal/log/sink_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/log/sink_test.go -------------------------------------------------------------------------------- /internal/log/streamer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/log/streamer.go -------------------------------------------------------------------------------- /internal/log/streamer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/log/streamer_test.go -------------------------------------------------------------------------------- /internal/manifest/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/manifest/manifest.go -------------------------------------------------------------------------------- /internal/manifest/manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/manifest/manifest_test.go -------------------------------------------------------------------------------- /internal/mime/mime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/mime/mime.go -------------------------------------------------------------------------------- /internal/module/fake/mock_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/module/fake/mock_manager.go -------------------------------------------------------------------------------- /internal/module/fake/mock_module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/module/fake/mock_module.go -------------------------------------------------------------------------------- /internal/module/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/module/manager.go -------------------------------------------------------------------------------- /internal/module/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/module/manager_test.go -------------------------------------------------------------------------------- /internal/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/module/module.go -------------------------------------------------------------------------------- /internal/module/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/module/route.go -------------------------------------------------------------------------------- /internal/modules/overview/content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/modules/overview/content.go -------------------------------------------------------------------------------- /internal/modules/overview/overview.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/modules/overview/overview.go -------------------------------------------------------------------------------- /internal/modules/overview/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/modules/overview/path.go -------------------------------------------------------------------------------- /internal/modules/overview/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/modules/overview/path_test.go -------------------------------------------------------------------------------- /internal/modules/workloads/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/modules/workloads/module.go -------------------------------------------------------------------------------- /internal/objectstatus/apiservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/apiservice.go -------------------------------------------------------------------------------- /internal/objectstatus/cronjob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/cronjob.go -------------------------------------------------------------------------------- /internal/objectstatus/daemonset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/daemonset.go -------------------------------------------------------------------------------- /internal/objectstatus/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/deployment.go -------------------------------------------------------------------------------- /internal/objectstatus/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/ingress.go -------------------------------------------------------------------------------- /internal/objectstatus/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/ingress_test.go -------------------------------------------------------------------------------- /internal/objectstatus/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/job.go -------------------------------------------------------------------------------- /internal/objectstatus/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/job_test.go -------------------------------------------------------------------------------- /internal/objectstatus/objectstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/objectstatus.go -------------------------------------------------------------------------------- /internal/objectstatus/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/pod.go -------------------------------------------------------------------------------- /internal/objectstatus/pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/pod_test.go -------------------------------------------------------------------------------- /internal/objectstatus/replicaset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/replicaset.go -------------------------------------------------------------------------------- /internal/objectstatus/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/service.go -------------------------------------------------------------------------------- /internal/objectstatus/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/service_test.go -------------------------------------------------------------------------------- /internal/objectstatus/statefulset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstatus/statefulset.go -------------------------------------------------------------------------------- /internal/objectstore/dynamic_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstore/dynamic_cache.go -------------------------------------------------------------------------------- /internal/objectstore/dynamic_cache_test.go: -------------------------------------------------------------------------------- 1 | package objectstore 2 | -------------------------------------------------------------------------------- /internal/objectstore/informer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectstore/informer.go -------------------------------------------------------------------------------- /internal/objectvisitor/apiservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectvisitor/apiservice.go -------------------------------------------------------------------------------- /internal/objectvisitor/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectvisitor/ingress.go -------------------------------------------------------------------------------- /internal/objectvisitor/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectvisitor/ingress_test.go -------------------------------------------------------------------------------- /internal/objectvisitor/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectvisitor/object.go -------------------------------------------------------------------------------- /internal/objectvisitor/object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectvisitor/object_test.go -------------------------------------------------------------------------------- /internal/objectvisitor/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectvisitor/pod.go -------------------------------------------------------------------------------- /internal/objectvisitor/pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectvisitor/pod_test.go -------------------------------------------------------------------------------- /internal/objectvisitor/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectvisitor/service.go -------------------------------------------------------------------------------- /internal/objectvisitor/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectvisitor/service_test.go -------------------------------------------------------------------------------- /internal/objectvisitor/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/objectvisitor/util_test.go -------------------------------------------------------------------------------- /internal/octant/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/actions.go -------------------------------------------------------------------------------- /internal/octant/actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/actions_test.go -------------------------------------------------------------------------------- /internal/octant/apply_yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/apply_yaml.go -------------------------------------------------------------------------------- /internal/octant/apply_yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/apply_yaml_test.go -------------------------------------------------------------------------------- /internal/octant/client_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/client_request.go -------------------------------------------------------------------------------- /internal/octant/container_editor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/container_editor.go -------------------------------------------------------------------------------- /internal/octant/cordon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/cordon.go -------------------------------------------------------------------------------- /internal/octant/cordon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/cordon_test.go -------------------------------------------------------------------------------- /internal/octant/cronjob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/cronjob.go -------------------------------------------------------------------------------- /internal/octant/cronjob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/cronjob_test.go -------------------------------------------------------------------------------- /internal/octant/customresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/customresource.go -------------------------------------------------------------------------------- /internal/octant/customresource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/customresource_test.go -------------------------------------------------------------------------------- /internal/octant/drain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/drain.go -------------------------------------------------------------------------------- /internal/octant/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/factory.go -------------------------------------------------------------------------------- /internal/octant/fake/mock_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/fake/mock_generator.go -------------------------------------------------------------------------------- /internal/octant/fake/mock_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/fake/mock_state.go -------------------------------------------------------------------------------- /internal/octant/fake/mock_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/fake/mock_storage.go -------------------------------------------------------------------------------- /internal/octant/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/filter.go -------------------------------------------------------------------------------- /internal/octant/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/generator.go -------------------------------------------------------------------------------- /internal/octant/javascript.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/javascript.go -------------------------------------------------------------------------------- /internal/octant/link_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/link_generator.go -------------------------------------------------------------------------------- /internal/octant/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/manifest.go -------------------------------------------------------------------------------- /internal/octant/object.go: -------------------------------------------------------------------------------- 1 | package octant 2 | -------------------------------------------------------------------------------- /internal/octant/object_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/object_path.go -------------------------------------------------------------------------------- /internal/octant/object_path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/object_path_test.go -------------------------------------------------------------------------------- /internal/octant/object_updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/object_updater.go -------------------------------------------------------------------------------- /internal/octant/object_updater_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/object_updater_test.go -------------------------------------------------------------------------------- /internal/octant/pod_metrics_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/pod_metrics_loader.go -------------------------------------------------------------------------------- /internal/octant/port_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/port_forward.go -------------------------------------------------------------------------------- /internal/octant/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/state.go -------------------------------------------------------------------------------- /internal/octant/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/storage.go -------------------------------------------------------------------------------- /internal/octant/testdata/crd-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/testdata/crd-v1.yaml -------------------------------------------------------------------------------- /internal/octant/workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/workload.go -------------------------------------------------------------------------------- /internal/octant/workload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/octant/workload_test.go -------------------------------------------------------------------------------- /internal/portforward/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/portforward/default.go -------------------------------------------------------------------------------- /internal/portforward/portforward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/portforward/portforward.go -------------------------------------------------------------------------------- /internal/portforward/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/portforward/service.go -------------------------------------------------------------------------------- /internal/printer/affinity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/affinity.go -------------------------------------------------------------------------------- /internal/printer/affinity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/affinity_test.go -------------------------------------------------------------------------------- /internal/printer/apiservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/apiservice.go -------------------------------------------------------------------------------- /internal/printer/apiservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/apiservice_test.go -------------------------------------------------------------------------------- /internal/printer/clusterrole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/clusterrole.go -------------------------------------------------------------------------------- /internal/printer/clusterrole_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/clusterrole_test.go -------------------------------------------------------------------------------- /internal/printer/clusterrolebinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/clusterrolebinding.go -------------------------------------------------------------------------------- /internal/printer/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/conditions.go -------------------------------------------------------------------------------- /internal/printer/conditions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/conditions_test.go -------------------------------------------------------------------------------- /internal/printer/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/configmap.go -------------------------------------------------------------------------------- /internal/printer/configmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/configmap_test.go -------------------------------------------------------------------------------- /internal/printer/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/container.go -------------------------------------------------------------------------------- /internal/printer/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/container_test.go -------------------------------------------------------------------------------- /internal/printer/cronjob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/cronjob.go -------------------------------------------------------------------------------- /internal/printer/cronjob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/cronjob_test.go -------------------------------------------------------------------------------- /internal/printer/customresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/customresource.go -------------------------------------------------------------------------------- /internal/printer/daemonset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/daemonset.go -------------------------------------------------------------------------------- /internal/printer/daemonset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/daemonset_test.go -------------------------------------------------------------------------------- /internal/printer/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/deployment.go -------------------------------------------------------------------------------- /internal/printer/deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/deployment_test.go -------------------------------------------------------------------------------- /internal/printer/double_setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/double_setup_test.go -------------------------------------------------------------------------------- /internal/printer/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/event.go -------------------------------------------------------------------------------- /internal/printer/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/event_test.go -------------------------------------------------------------------------------- /internal/printer/fake/mock_printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/fake/mock_printer.go -------------------------------------------------------------------------------- /internal/printer/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/handler.go -------------------------------------------------------------------------------- /internal/printer/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/helpers_test.go -------------------------------------------------------------------------------- /internal/printer/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/ingress.go -------------------------------------------------------------------------------- /internal/printer/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/ingress_test.go -------------------------------------------------------------------------------- /internal/printer/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/job.go -------------------------------------------------------------------------------- /internal/printer/job_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/job_template.go -------------------------------------------------------------------------------- /internal/printer/job_template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/job_template_test.go -------------------------------------------------------------------------------- /internal/printer/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/job_test.go -------------------------------------------------------------------------------- /internal/printer/label_selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/label_selector.go -------------------------------------------------------------------------------- /internal/printer/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/metadata.go -------------------------------------------------------------------------------- /internal/printer/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/metadata_test.go -------------------------------------------------------------------------------- /internal/printer/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/namespace.go -------------------------------------------------------------------------------- /internal/printer/namespace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/namespace_test.go -------------------------------------------------------------------------------- /internal/printer/networkpolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/networkpolicy.go -------------------------------------------------------------------------------- /internal/printer/networkpolicy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/networkpolicy_test.go -------------------------------------------------------------------------------- /internal/printer/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/node.go -------------------------------------------------------------------------------- /internal/printer/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/node_test.go -------------------------------------------------------------------------------- /internal/printer/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/object.go -------------------------------------------------------------------------------- /internal/printer/object_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/object_factory.go -------------------------------------------------------------------------------- /internal/printer/object_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/object_table.go -------------------------------------------------------------------------------- /internal/printer/object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/object_test.go -------------------------------------------------------------------------------- /internal/printer/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/path.go -------------------------------------------------------------------------------- /internal/printer/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/path_test.go -------------------------------------------------------------------------------- /internal/printer/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/pod.go -------------------------------------------------------------------------------- /internal/printer/pod_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/pod_template.go -------------------------------------------------------------------------------- /internal/printer/pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/pod_test.go -------------------------------------------------------------------------------- /internal/printer/policyrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/policyrules.go -------------------------------------------------------------------------------- /internal/printer/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/printer.go -------------------------------------------------------------------------------- /internal/printer/printer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/printer_test.go -------------------------------------------------------------------------------- /internal/printer/replicaset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/replicaset.go -------------------------------------------------------------------------------- /internal/printer/replicaset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/replicaset_test.go -------------------------------------------------------------------------------- /internal/printer/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/role.go -------------------------------------------------------------------------------- /internal/printer/role_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/role_test.go -------------------------------------------------------------------------------- /internal/printer/rolebinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/rolebinding.go -------------------------------------------------------------------------------- /internal/printer/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/secret.go -------------------------------------------------------------------------------- /internal/printer/secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/secret_test.go -------------------------------------------------------------------------------- /internal/printer/selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/selector.go -------------------------------------------------------------------------------- /internal/printer/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/service.go -------------------------------------------------------------------------------- /internal/printer/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/service_test.go -------------------------------------------------------------------------------- /internal/printer/serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/serviceaccount.go -------------------------------------------------------------------------------- /internal/printer/statefulset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/statefulset.go -------------------------------------------------------------------------------- /internal/printer/storageclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/storageclass.go -------------------------------------------------------------------------------- /internal/printer/testdata/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/testdata/crd.yaml -------------------------------------------------------------------------------- /internal/printer/tolerations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/tolerations.go -------------------------------------------------------------------------------- /internal/printer/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/volume.go -------------------------------------------------------------------------------- /internal/printer/volume_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/printer/volume_test.go -------------------------------------------------------------------------------- /internal/queryer/queryer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/queryer/queryer.go -------------------------------------------------------------------------------- /internal/queryer/queryer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/queryer/queryer_test.go -------------------------------------------------------------------------------- /internal/resourceviewer/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/resourceviewer/handler.go -------------------------------------------------------------------------------- /internal/terminal/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/terminal/instance.go -------------------------------------------------------------------------------- /internal/testutil/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/testutil/assert.go -------------------------------------------------------------------------------- /internal/testutil/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/testutil/conversion.go -------------------------------------------------------------------------------- /internal/testutil/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/testutil/crd.go -------------------------------------------------------------------------------- /internal/testutil/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/testutil/generator.go -------------------------------------------------------------------------------- /internal/testutil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/testutil/testutil.go -------------------------------------------------------------------------------- /internal/util/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/util/json/json.go -------------------------------------------------------------------------------- /internal/util/json/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/util/json/json_test.go -------------------------------------------------------------------------------- /internal/util/kubernetes/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/util/kubernetes/object.go -------------------------------------------------------------------------------- /internal/util/kubernetes/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/util/kubernetes/print.go -------------------------------------------------------------------------------- /internal/util/path_util/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/util/path_util/path.go -------------------------------------------------------------------------------- /internal/util/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/util/retry/retry.go -------------------------------------------------------------------------------- /internal/util/strings/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/internal/util/strings/strings.go -------------------------------------------------------------------------------- /pkg/action/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/action/actions.go -------------------------------------------------------------------------------- /pkg/action/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/action/doc.go -------------------------------------------------------------------------------- /pkg/action/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/action/errors.go -------------------------------------------------------------------------------- /pkg/action/fake/mock_alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/action/fake/mock_alert.go -------------------------------------------------------------------------------- /pkg/action/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/action/manager.go -------------------------------------------------------------------------------- /pkg/action/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/action/manager_test.go -------------------------------------------------------------------------------- /pkg/action/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/action/payload.go -------------------------------------------------------------------------------- /pkg/action/payload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/action/payload_test.go -------------------------------------------------------------------------------- /pkg/api/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/api/action.go -------------------------------------------------------------------------------- /pkg/api/fake/mock_client_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/api/fake/mock_client_factory.go -------------------------------------------------------------------------------- /pkg/api/fake/mock_client_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/api/fake/mock_client_manager.go -------------------------------------------------------------------------------- /pkg/api/fake/mock_octant_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/api/fake/mock_octant_client.go -------------------------------------------------------------------------------- /pkg/api/fake/mock_state_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/api/fake/mock_state_manager.go -------------------------------------------------------------------------------- /pkg/api/state_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/api/state_manager.go -------------------------------------------------------------------------------- /pkg/api/streaming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/api/streaming.go -------------------------------------------------------------------------------- /pkg/cluster/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/cluster/client.go -------------------------------------------------------------------------------- /pkg/cluster/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/cluster/info.go -------------------------------------------------------------------------------- /pkg/cluster/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/cluster/namespace.go -------------------------------------------------------------------------------- /pkg/config/dash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/config/dash.go -------------------------------------------------------------------------------- /pkg/dash/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/dash/config.go -------------------------------------------------------------------------------- /pkg/dash/dash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/dash/dash.go -------------------------------------------------------------------------------- /pkg/dash/dash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/dash/dash_test.go -------------------------------------------------------------------------------- /pkg/dash/fake/mock_file_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/dash/fake/mock_file_watcher.go -------------------------------------------------------------------------------- /pkg/dash/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/dash/options.go -------------------------------------------------------------------------------- /pkg/dash/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/dash/plugin.go -------------------------------------------------------------------------------- /pkg/dash/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/dash/watcher.go -------------------------------------------------------------------------------- /pkg/dash/watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/dash/watcher_test.go -------------------------------------------------------------------------------- /pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/errors/errors.go -------------------------------------------------------------------------------- /pkg/errors/generic_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/errors/generic_error.go -------------------------------------------------------------------------------- /pkg/errors/generic_error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/errors/generic_error_test.go -------------------------------------------------------------------------------- /pkg/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/event/event.go -------------------------------------------------------------------------------- /pkg/event/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/event/event_test.go -------------------------------------------------------------------------------- /pkg/event/fake/mock_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/event/fake/mock_event.go -------------------------------------------------------------------------------- /pkg/icon/icon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/icon/icon.go -------------------------------------------------------------------------------- /pkg/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/log/logger.go -------------------------------------------------------------------------------- /pkg/navigation/navigation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/navigation/navigation.go -------------------------------------------------------------------------------- /pkg/navigation/navigation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/navigation/navigation_test.go -------------------------------------------------------------------------------- /pkg/navigation/object.go: -------------------------------------------------------------------------------- 1 | package navigation 2 | -------------------------------------------------------------------------------- /pkg/octant/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/octant/handler.go -------------------------------------------------------------------------------- /pkg/octant/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/octant/handler_test.go -------------------------------------------------------------------------------- /pkg/octant/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/octant/options.go -------------------------------------------------------------------------------- /pkg/plugin/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/api/api.go -------------------------------------------------------------------------------- /pkg/plugin/api/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/api/api_test.go -------------------------------------------------------------------------------- /pkg/plugin/api/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/api/client.go -------------------------------------------------------------------------------- /pkg/plugin/api/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/api/client_test.go -------------------------------------------------------------------------------- /pkg/plugin/api/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/api/conversion.go -------------------------------------------------------------------------------- /pkg/plugin/api/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/api/generate.go -------------------------------------------------------------------------------- /pkg/plugin/api/proto/generate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/api/proto/generate.ps1 -------------------------------------------------------------------------------- /pkg/plugin/api/proto/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/api/proto/generate.sh -------------------------------------------------------------------------------- /pkg/plugin/api/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/api/server.go -------------------------------------------------------------------------------- /pkg/plugin/broker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/broker.go -------------------------------------------------------------------------------- /pkg/plugin/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/client.go -------------------------------------------------------------------------------- /pkg/plugin/client_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/client_state.go -------------------------------------------------------------------------------- /pkg/plugin/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/client_test.go -------------------------------------------------------------------------------- /pkg/plugin/console/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/console/module.go -------------------------------------------------------------------------------- /pkg/plugin/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/conversion.go -------------------------------------------------------------------------------- /pkg/plugin/dashboard/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/dashboard/generate.sh -------------------------------------------------------------------------------- /pkg/plugin/fake/fakes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/fake/fakes.go -------------------------------------------------------------------------------- /pkg/plugin/fake/mock_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/fake/mock_manager.go -------------------------------------------------------------------------------- /pkg/plugin/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/generate.go -------------------------------------------------------------------------------- /pkg/plugin/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/grpc.go -------------------------------------------------------------------------------- /pkg/plugin/grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/grpc_test.go -------------------------------------------------------------------------------- /pkg/plugin/javascript.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/javascript.go -------------------------------------------------------------------------------- /pkg/plugin/javascript/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/javascript/conversion.go -------------------------------------------------------------------------------- /pkg/plugin/javascript/httpclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/javascript/httpclient.go -------------------------------------------------------------------------------- /pkg/plugin/javascript/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/javascript/runtime.go -------------------------------------------------------------------------------- /pkg/plugin/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/loader.go -------------------------------------------------------------------------------- /pkg/plugin/loader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/loader_test.go -------------------------------------------------------------------------------- /pkg/plugin/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/logger.go -------------------------------------------------------------------------------- /pkg/plugin/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/manager.go -------------------------------------------------------------------------------- /pkg/plugin/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/manager_test.go -------------------------------------------------------------------------------- /pkg/plugin/module_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/module_proxy.go -------------------------------------------------------------------------------- /pkg/plugin/module_proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/module_proxy_test.go -------------------------------------------------------------------------------- /pkg/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/plugin.go -------------------------------------------------------------------------------- /pkg/plugin/plugincmd_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/plugincmd_unix.go -------------------------------------------------------------------------------- /pkg/plugin/plugincmd_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/plugincmd_windows.go -------------------------------------------------------------------------------- /pkg/plugin/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/runner.go -------------------------------------------------------------------------------- /pkg/plugin/runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/runner_test.go -------------------------------------------------------------------------------- /pkg/plugin/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/server.go -------------------------------------------------------------------------------- /pkg/plugin/service/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/service/dashboard.go -------------------------------------------------------------------------------- /pkg/plugin/service/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/service/handler.go -------------------------------------------------------------------------------- /pkg/plugin/service/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/service/handler_test.go -------------------------------------------------------------------------------- /pkg/plugin/service/logger_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/service/logger_helper.go -------------------------------------------------------------------------------- /pkg/plugin/service/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/service/router.go -------------------------------------------------------------------------------- /pkg/plugin/service/router_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/service/router_test.go -------------------------------------------------------------------------------- /pkg/plugin/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/service/service.go -------------------------------------------------------------------------------- /pkg/plugin/service/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/plugin/service/service_test.go -------------------------------------------------------------------------------- /pkg/store/fake/mock_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/store/fake/mock_store.go -------------------------------------------------------------------------------- /pkg/store/get_as.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/store/get_as.go -------------------------------------------------------------------------------- /pkg/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/store/store.go -------------------------------------------------------------------------------- /pkg/store/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/store/store_test.go -------------------------------------------------------------------------------- /pkg/store/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/store/utils.go -------------------------------------------------------------------------------- /pkg/view/component/accordion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/accordion.go -------------------------------------------------------------------------------- /pkg/view/component/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/action.go -------------------------------------------------------------------------------- /pkg/view/component/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/alert.go -------------------------------------------------------------------------------- /pkg/view/component/alert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/alert_test.go -------------------------------------------------------------------------------- /pkg/view/component/annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/annotations.go -------------------------------------------------------------------------------- /pkg/view/component/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/base.go -------------------------------------------------------------------------------- /pkg/view/component/button.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/button.go -------------------------------------------------------------------------------- /pkg/view/component/button_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/button_group.go -------------------------------------------------------------------------------- /pkg/view/component/button_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/button_test.go -------------------------------------------------------------------------------- /pkg/view/component/card.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/card.go -------------------------------------------------------------------------------- /pkg/view/component/card_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/card_test.go -------------------------------------------------------------------------------- /pkg/view/component/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/code.go -------------------------------------------------------------------------------- /pkg/view/component/code_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/code_test.go -------------------------------------------------------------------------------- /pkg/view/component/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/component.go -------------------------------------------------------------------------------- /pkg/view/component/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/container.go -------------------------------------------------------------------------------- /pkg/view/component/donut_chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/donut_chart.go -------------------------------------------------------------------------------- /pkg/view/component/dropdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/dropdown.go -------------------------------------------------------------------------------- /pkg/view/component/dropdown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/dropdown_test.go -------------------------------------------------------------------------------- /pkg/view/component/editor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/editor.go -------------------------------------------------------------------------------- /pkg/view/component/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/error.go -------------------------------------------------------------------------------- /pkg/view/component/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/extension.go -------------------------------------------------------------------------------- /pkg/view/component/flexlayout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/flexlayout.go -------------------------------------------------------------------------------- /pkg/view/component/form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/form.go -------------------------------------------------------------------------------- /pkg/view/component/form_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/form_test.go -------------------------------------------------------------------------------- /pkg/view/component/graphviz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/graphviz.go -------------------------------------------------------------------------------- /pkg/view/component/grid_actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/grid_actions.go -------------------------------------------------------------------------------- /pkg/view/component/icon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/icon.go -------------------------------------------------------------------------------- /pkg/view/component/icon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/icon_test.go -------------------------------------------------------------------------------- /pkg/view/component/iframe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/iframe.go -------------------------------------------------------------------------------- /pkg/view/component/json_editor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/json_editor.go -------------------------------------------------------------------------------- /pkg/view/component/label_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/label_test.go -------------------------------------------------------------------------------- /pkg/view/component/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/labels.go -------------------------------------------------------------------------------- /pkg/view/component/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/link.go -------------------------------------------------------------------------------- /pkg/view/component/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/link_test.go -------------------------------------------------------------------------------- /pkg/view/component/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/list.go -------------------------------------------------------------------------------- /pkg/view/component/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/list_test.go -------------------------------------------------------------------------------- /pkg/view/component/loading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/loading.go -------------------------------------------------------------------------------- /pkg/view/component/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/logs.go -------------------------------------------------------------------------------- /pkg/view/component/logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/logs_test.go -------------------------------------------------------------------------------- /pkg/view/component/modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/modal.go -------------------------------------------------------------------------------- /pkg/view/component/modal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/modal_test.go -------------------------------------------------------------------------------- /pkg/view/component/pod_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/pod_status.go -------------------------------------------------------------------------------- /pkg/view/component/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/port.go -------------------------------------------------------------------------------- /pkg/view/component/quadrant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/quadrant.go -------------------------------------------------------------------------------- /pkg/view/component/row_detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/row_detail.go -------------------------------------------------------------------------------- /pkg/view/component/select_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/select_file.go -------------------------------------------------------------------------------- /pkg/view/component/selectors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/selectors.go -------------------------------------------------------------------------------- /pkg/view/component/signpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/signpost.go -------------------------------------------------------------------------------- /pkg/view/component/signpost_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/signpost_test.go -------------------------------------------------------------------------------- /pkg/view/component/single_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/single_stat.go -------------------------------------------------------------------------------- /pkg/view/component/stepper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/stepper.go -------------------------------------------------------------------------------- /pkg/view/component/stepper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/stepper_test.go -------------------------------------------------------------------------------- /pkg/view/component/summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/summary.go -------------------------------------------------------------------------------- /pkg/view/component/summary_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/summary_test.go -------------------------------------------------------------------------------- /pkg/view/component/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/table.go -------------------------------------------------------------------------------- /pkg/view/component/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/table_test.go -------------------------------------------------------------------------------- /pkg/view/component/tabs_view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/tabs_view.go -------------------------------------------------------------------------------- /pkg/view/component/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/terminal.go -------------------------------------------------------------------------------- /pkg/view/component/terminal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/terminal_test.go -------------------------------------------------------------------------------- /pkg/view/component/testdata/config_code.json: -------------------------------------------------------------------------------- 1 | { 2 | "value": "echo HELLO_WORLD" 3 | } -------------------------------------------------------------------------------- /pkg/view/component/testdata/config_error.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": "error test" 3 | } -------------------------------------------------------------------------------- /pkg/view/component/testdata/config_labels.json: -------------------------------------------------------------------------------- 1 | { "labels": { "foo": "bar" } } 2 | -------------------------------------------------------------------------------- /pkg/view/component/testdata/config_text.json: -------------------------------------------------------------------------------- 1 | { "value": "text" } 2 | -------------------------------------------------------------------------------- /pkg/view/component/testdata/config_timestamp.json: -------------------------------------------------------------------------------- 1 | { "timestamp": 1548198349 } 2 | -------------------------------------------------------------------------------- /pkg/view/component/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/testing.go -------------------------------------------------------------------------------- /pkg/view/component/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/text.go -------------------------------------------------------------------------------- /pkg/view/component/text_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/text_test.go -------------------------------------------------------------------------------- /pkg/view/component/timeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/timeline.go -------------------------------------------------------------------------------- /pkg/view/component/timeline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/timeline_test.go -------------------------------------------------------------------------------- /pkg/view/component/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/timestamp.go -------------------------------------------------------------------------------- /pkg/view/component/unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/unmarshal.go -------------------------------------------------------------------------------- /pkg/view/component/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/yaml.go -------------------------------------------------------------------------------- /pkg/view/component/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/component/yaml_test.go -------------------------------------------------------------------------------- /pkg/view/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/doc.go -------------------------------------------------------------------------------- /pkg/view/flexlayout/flexlayout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/flexlayout/flexlayout.go -------------------------------------------------------------------------------- /pkg/view/flexlayout/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/flexlayout/section.go -------------------------------------------------------------------------------- /pkg/view/tsgen/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/tsgen/converter.go -------------------------------------------------------------------------------- /pkg/view/tsgen/converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/tsgen/converter_test.go -------------------------------------------------------------------------------- /pkg/view/tsgen/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/tsgen/model.go -------------------------------------------------------------------------------- /pkg/view/tsgen/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/tsgen/model_test.go -------------------------------------------------------------------------------- /pkg/view/tsgen/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/tsgen/options.go -------------------------------------------------------------------------------- /pkg/view/tsgen/testdata/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/tsgen/testdata/reflect.go -------------------------------------------------------------------------------- /pkg/view/tsgen/ts_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/tsgen/ts_formatter.go -------------------------------------------------------------------------------- /pkg/view/tsgen/tsgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/tsgen/tsgen.go -------------------------------------------------------------------------------- /pkg/view/tsgen/tsgen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/pkg/view/tsgen/tsgen_test.go -------------------------------------------------------------------------------- /proposals/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proposals/20200330-e2e-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/proposals/20200330-e2e-testing.md -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /public 3 | /resources 4 | /node_modules 5 | -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/README.md -------------------------------------------------------------------------------- /site/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/archetypes/default.md -------------------------------------------------------------------------------- /site/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/config.yaml -------------------------------------------------------------------------------- /site/content/community/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/content/community/_index.html -------------------------------------------------------------------------------- /site/content/contributors/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /site/content/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/content/docs/_index.md -------------------------------------------------------------------------------- /site/content/emeritus/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /site/content/plugins/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/content/plugins/_index.md -------------------------------------------------------------------------------- /site/content/plugins/list/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- -------------------------------------------------------------------------------- /site/content/posts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/content/posts/_index.md -------------------------------------------------------------------------------- /site/content/resources/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/content/resources/_index.html -------------------------------------------------------------------------------- /site/data/docs/main-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/data/docs/main-toc.yml -------------------------------------------------------------------------------- /site/data/docs/toc-mapping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/data/docs/toc-mapping.yml -------------------------------------------------------------------------------- /site/data/docs/v0-30-0-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/data/docs/v0-30-0-toc.yml -------------------------------------------------------------------------------- /site/data/docs/v0-40-0-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/data/docs/v0-40-0-toc.yml -------------------------------------------------------------------------------- /site/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/site/netlify.toml -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/tools/tools.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | .idea 3 | .vscode 4 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/.dockerignore: -------------------------------------------------------------------------------- 1 | bundles 2 | .gopath 3 | vendor/pkg 4 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/VERSION: -------------------------------------------------------------------------------- 1 | 1.37.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/drivers/btrfs/dummy_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux !cgo 2 | 3 | package btrfs 4 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/pkg/chrootarchive/init_windows.go: -------------------------------------------------------------------------------- 1 | package chrootarchive 2 | 3 | func init() { 4 | } 5 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/pkg/loopback/loopback_unsupported.go: -------------------------------------------------------------------------------- 1 | package loopback 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/dop251/goja/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/github.com/dop251/goja/vm.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/form3tech-oss/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/.gitignore: -------------------------------------------------------------------------------- 1 | .idea* -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-plugin/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.16 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/mistifyio/go-zfs/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | -------------------------------------------------------------------------------- /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/oklog/run/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/github.com/oklog/run/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env: -------------------------------------------------------------------------------- 1 | HELLO=world 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env.invalid: -------------------------------------------------------------------------------- 1 | lol$wut 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | annotate.json 4 | -------------------------------------------------------------------------------- /vendor/github.com/uber/jaeger-client-go/thrift/.nocover: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/bool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/gen.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/int32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/int64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/nocmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/nocmp.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/uint32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/uint64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/atomic/value.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/sync/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/term/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/tools/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/xerrors/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/xerrors/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/xerrors/README -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/xerrors/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/xerrors/fmt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/golang.org/x/xerrors/wrap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/codecov.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/helper.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/metrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/metrics/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/utils/pointer/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /web/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.browserslistrc -------------------------------------------------------------------------------- /web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.editorconfig -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.nvmrc: -------------------------------------------------------------------------------- 1 | v14.17.3 2 | -------------------------------------------------------------------------------- /web/.storybook/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.storybook/assets/favicon.ico -------------------------------------------------------------------------------- /web/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.storybook/main.js -------------------------------------------------------------------------------- /web/.storybook/manager-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.storybook/manager-head.html -------------------------------------------------------------------------------- /web/.storybook/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.storybook/manager.js -------------------------------------------------------------------------------- /web/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.storybook/preview-head.html -------------------------------------------------------------------------------- /web/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.storybook/preview.js -------------------------------------------------------------------------------- /web/.storybook/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.storybook/theme.js -------------------------------------------------------------------------------- /web/.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.storybook/tsconfig.json -------------------------------------------------------------------------------- /web/.storybook/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.storybook/typings.d.ts -------------------------------------------------------------------------------- /web/.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/.storybook/webpack.config.js -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/README.md -------------------------------------------------------------------------------- /web/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/angular.json -------------------------------------------------------------------------------- /web/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/doc.go -------------------------------------------------------------------------------- /web/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/e2e/protractor.conf.js -------------------------------------------------------------------------------- /web/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /web/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/e2e/src/app.po.ts -------------------------------------------------------------------------------- /web/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /web/electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/electron-builder.json -------------------------------------------------------------------------------- /web/electron/application-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/electron/application-menu.ts -------------------------------------------------------------------------------- /web/electron/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/electron/paths.ts -------------------------------------------------------------------------------- /web/electron/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/electron/store.ts -------------------------------------------------------------------------------- /web/electron/tray-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/electron/tray-menu.ts -------------------------------------------------------------------------------- /web/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/main.ts -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/package.json -------------------------------------------------------------------------------- /web/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /web/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/app/app.module.ts -------------------------------------------------------------------------------- /web/src/app/components/smart/home/home.component.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/data/data.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/app/data/data.module.ts -------------------------------------------------------------------------------- /web/src/app/modules/denali/components/smart/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/modules/shared/components/missing-component/missing-component.component.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/modules/shared/components/presentation/accordion/accordion.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/modules/shared/components/presentation/alert/alert.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/modules/shared/components/presentation/button/button.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/modules/shared/components/presentation/card-list/card-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/modules/shared/components/presentation/card/card.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/modules/shared/components/presentation/content-filter/content-filter.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/modules/shared/components/presentation/icon/icon.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/modules/shared/components/presentation/select-file/select-file.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/modules/shared/components/presentation/stepper/stepper.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/util/includesArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/app/util/includesArray.ts -------------------------------------------------------------------------------- /web/src/app/util/isSvg.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/app/util/isSvg.spec.ts -------------------------------------------------------------------------------- /web/src/app/util/isSvg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/app/util/isSvg.ts -------------------------------------------------------------------------------- /web/src/app/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/app/window.ts -------------------------------------------------------------------------------- /web/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/assets/favicon.ico -------------------------------------------------------------------------------- /web/src/assets/icons/icon-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/assets/icons/icon-grey.png -------------------------------------------------------------------------------- /web/src/assets/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/assets/icons/icon.icns -------------------------------------------------------------------------------- /web/src/assets/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/assets/icons/icon.ico -------------------------------------------------------------------------------- /web/src/assets/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/assets/icons/icon.png -------------------------------------------------------------------------------- /web/src/assets/octant-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/assets/octant-demo.gif -------------------------------------------------------------------------------- /web/src/assets/octant-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/assets/octant-logo.png -------------------------------------------------------------------------------- /web/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/environments/environment.ts -------------------------------------------------------------------------------- /web/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/favicon.ico -------------------------------------------------------------------------------- /web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/index.html -------------------------------------------------------------------------------- /web/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/karma.conf.js -------------------------------------------------------------------------------- /web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/main.ts -------------------------------------------------------------------------------- /web/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/polyfills.ts -------------------------------------------------------------------------------- /web/src/sass/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/sass/_links.scss -------------------------------------------------------------------------------- /web/src/sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/sass/_mixins.scss -------------------------------------------------------------------------------- /web/src/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/sass/_variables.scss -------------------------------------------------------------------------------- /web/src/stories/button.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/button.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/card.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/card.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/code.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/code.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/editor.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/editor.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/graph.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/graph.data.ts -------------------------------------------------------------------------------- /web/src/stories/graph.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/graph.stories.ts -------------------------------------------------------------------------------- /web/src/stories/helpers/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/helpers/helpers.js -------------------------------------------------------------------------------- /web/src/stories/icon.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/icon.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/iframe.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/iframe.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/labels.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/labels.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/link.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/link.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/list.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/list.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/logs.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/logs.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/modal.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/modal.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/overview.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/overview.data.ts -------------------------------------------------------------------------------- /web/src/stories/ports.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/ports.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/sandbox.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/sandbox.stories.ts -------------------------------------------------------------------------------- /web/src/stories/stepper.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/stepper.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/summary.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/summary.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/table.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/table.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/tabs.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/tabs.stories.mdx -------------------------------------------------------------------------------- /web/src/stories/text.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/stories/text.stories.mdx -------------------------------------------------------------------------------- /web/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/styles.scss -------------------------------------------------------------------------------- /web/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/test.ts -------------------------------------------------------------------------------- /web/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/tsconfig.app.json -------------------------------------------------------------------------------- /web/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/tsconfig.spec.json -------------------------------------------------------------------------------- /web/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/src/tslint.json -------------------------------------------------------------------------------- /web/src/types/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/tsconfig.base.json -------------------------------------------------------------------------------- /web/tsconfig.compodoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/tsconfig.compodoc.json -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/tsconfig.serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/tsconfig.serve.json -------------------------------------------------------------------------------- /web/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/tslint.json -------------------------------------------------------------------------------- /web/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/octant/HEAD/web/web.go --------------------------------------------------------------------------------