├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.cmdexecutor ├── Jenkinsfile ├── LICENSE ├── Makefile ├── README.md ├── STYLEGUIDE.md ├── _config.yml ├── cmd ├── cmdexecutor │ ├── cmdexecutor.go │ └── specs │ │ └── cmdexecutor.yaml ├── stork │ └── stork.go └── storkctl │ └── storkctl.go ├── codecov.yml ├── doc ├── snaps-3d.md └── snaps.md ├── drivers ├── drivers.go └── volume │ ├── aws │ └── aws.go │ ├── azure │ └── azure.go │ ├── csi │ └── csi.go │ ├── errors.go │ ├── gcp │ └── gcp.go │ ├── kdmp │ └── kdmp.go │ ├── linstor │ └── linstor.go │ ├── mock │ ├── mock.go │ └── volume │ │ └── driver.mock.go │ ├── portworx │ ├── errors.go │ ├── portworx.go │ ├── portworx_test.go │ └── px-statfs │ │ └── px_statfs.c │ └── volume.go ├── examples └── groupvolumesnapshots │ └── cassandra-e2e │ ├── cassandra-presnap-rule.yaml │ ├── cassandra-restore-pvcs.yaml │ ├── cassandra-ss.yaml │ └── group-cloud-snapshot.yaml ├── go.mod ├── go.sum ├── hack ├── custom-boilerplate.go.txt ├── tools.go └── update-codegen.sh ├── help-cmdexecutor.md ├── help.md ├── images └── stork.png ├── pkg ├── action │ ├── actioncontroller.go │ ├── drutils.go │ ├── drutils_test.go │ ├── failback.go │ └── failover.go ├── aetosutils │ └── dashboardutils.go ├── apis │ ├── apis.go │ ├── stork.go │ └── stork │ │ ├── register.go │ │ └── v1alpha1 │ │ ├── action.go │ │ ├── applicationbackup.go │ │ ├── applicationbackupschedule.go │ │ ├── applicationclone.go │ │ ├── applicationregistration.go │ │ ├── applicationrestore.go │ │ ├── backuplocation.go │ │ ├── clusterdomainsstatus.go │ │ ├── clusterdomainupdate.go │ │ ├── clusterpair.go │ │ ├── doc.go │ │ ├── groupvolumesnapshot.go │ │ ├── migration.go │ │ ├── migrationschedule.go │ │ ├── namespacedschedulepolicy.go │ │ ├── platformcredential.go │ │ ├── register.go │ │ ├── resourcetransformation.go │ │ ├── rule.go │ │ ├── schedulepolicy.go │ │ ├── volumeexport.go │ │ ├── volumesnapshotrestore.go │ │ ├── volumesnapshotschedule.go │ │ └── zz_generated.deepcopy.go ├── applicationmanager │ ├── applicationmanager.go │ └── controllers │ │ ├── applicationbackup.go │ │ ├── applicationbackupschedule.go │ │ ├── applicationclone.go │ │ ├── applicationregistration.go │ │ ├── applicationrestore.go │ │ └── backupsync.go ├── appregistration │ └── appregistration.go ├── buildinfo │ └── buildinfo.go ├── cache │ └── cache.go ├── client │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── stork │ │ │ └── v1alpha1 │ │ │ ├── action.go │ │ │ ├── applicationbackup.go │ │ │ ├── applicationbackupschedule.go │ │ │ ├── applicationclone.go │ │ │ ├── applicationregistration.go │ │ │ ├── applicationrestore.go │ │ │ ├── backuplocation.go │ │ │ ├── clusterdomainsstatus.go │ │ │ ├── clusterdomainupdate.go │ │ │ ├── clusterpair.go │ │ │ ├── dataexport.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_action.go │ │ │ ├── fake_applicationbackup.go │ │ │ ├── fake_applicationbackupschedule.go │ │ │ ├── fake_applicationclone.go │ │ │ ├── fake_applicationregistration.go │ │ │ ├── fake_applicationrestore.go │ │ │ ├── fake_backuplocation.go │ │ │ ├── fake_clusterdomainsstatus.go │ │ │ ├── fake_clusterdomainupdate.go │ │ │ ├── fake_clusterpair.go │ │ │ ├── fake_dataexport.go │ │ │ ├── fake_groupvolumesnapshot.go │ │ │ ├── fake_migration.go │ │ │ ├── fake_migrationschedule.go │ │ │ ├── fake_namespacedschedulepolicy.go │ │ │ ├── fake_platformcredential.go │ │ │ ├── fake_resourcetransformation.go │ │ │ ├── fake_rule.go │ │ │ ├── fake_schedulepolicy.go │ │ │ ├── fake_stork_client.go │ │ │ ├── fake_volumesnapshotrestore.go │ │ │ └── fake_volumesnapshotschedule.go │ │ │ ├── generated_expansion.go │ │ │ ├── groupvolumesnapshot.go │ │ │ ├── migration.go │ │ │ ├── migrationschedule.go │ │ │ ├── namespacedschedulepolicy.go │ │ │ ├── platformcredential.go │ │ │ ├── resourcetransformation.go │ │ │ ├── rule.go │ │ │ ├── schedulepolicy.go │ │ │ ├── stork_client.go │ │ │ ├── volumesnapshotrestore.go │ │ │ └── volumesnapshotschedule.go │ ├── informers │ │ └── externalversions │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ │ └── stork │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ ├── action.go │ │ │ ├── applicationbackup.go │ │ │ ├── applicationbackupschedule.go │ │ │ ├── applicationclone.go │ │ │ ├── applicationregistration.go │ │ │ ├── applicationrestore.go │ │ │ ├── backuplocation.go │ │ │ ├── clusterdomainsstatus.go │ │ │ ├── clusterdomainupdate.go │ │ │ ├── clusterpair.go │ │ │ ├── dataexport.go │ │ │ ├── groupvolumesnapshot.go │ │ │ ├── interface.go │ │ │ ├── migration.go │ │ │ ├── migrationschedule.go │ │ │ ├── namespacedschedulepolicy.go │ │ │ ├── platformcredential.go │ │ │ ├── resourcetransformation.go │ │ │ ├── rule.go │ │ │ ├── schedulepolicy.go │ │ │ ├── volumesnapshotrestore.go │ │ │ └── volumesnapshotschedule.go │ └── listers │ │ └── stork │ │ └── v1alpha1 │ │ ├── action.go │ │ ├── applicationbackup.go │ │ ├── applicationbackupschedule.go │ │ ├── applicationclone.go │ │ ├── applicationregistration.go │ │ ├── applicationrestore.go │ │ ├── backuplocation.go │ │ ├── clusterdomainsstatus.go │ │ ├── clusterdomainupdate.go │ │ ├── clusterpair.go │ │ ├── dataexport.go │ │ ├── expansion_generated.go │ │ ├── groupvolumesnapshot.go │ │ ├── migration.go │ │ ├── migrationschedule.go │ │ ├── namespacedschedulepolicy.go │ │ ├── platformcredential.go │ │ ├── resourcetransformation.go │ │ ├── rule.go │ │ ├── schedulepolicy.go │ │ ├── volumesnapshotrestore.go │ │ └── volumesnapshotschedule.go ├── clusterdomains │ ├── clusterdomains.go │ └── controllers │ │ ├── clusterdomainstatus.go │ │ └── clusterdomainupdate.go ├── cmdexecutor │ ├── cmdexecutor.go │ └── status │ │ └── status.go ├── controllers │ ├── controllers.go │ └── finalizers.go ├── crud │ ├── externalstorage │ │ ├── externalstorage.go │ │ └── snapshot.go │ └── stork │ │ ├── action.go │ │ ├── applicationbackuprestore.go │ │ ├── applicationclone.go │ │ ├── applicationregistration.go │ │ ├── backuplocation.go │ │ ├── clusterdomains.go │ │ ├── clusterpair.go │ │ ├── groupsnapshot.go │ │ ├── migration.go │ │ ├── namespacedschedulepolicy.go │ │ ├── platformcredential.go │ │ ├── resourcetransformation.go │ │ ├── rule.go │ │ ├── schedulepolicy.go │ │ ├── snapshotschedule.go │ │ ├── stork.go │ │ └── volumesnapshot.go ├── crypto │ ├── crypto.go │ └── crypto_test.go ├── dbg │ └── dbg.go ├── errors │ └── errors.go ├── extender │ ├── extender.go │ └── extender_test.go ├── groupsnapshot │ ├── controllers │ │ └── groupsnapshot.go │ └── groupsnapshot.go ├── k8sutils │ └── k8sutils.go ├── log │ ├── log.go │ └── log_test.go ├── metrics │ ├── applicationbackup.go │ ├── applicationbackup_test.go │ ├── applicationclone.go │ ├── applicationclone_test.go │ ├── applicationrestore.go │ ├── applicationrestore_test.go │ ├── clusterpair.go │ ├── clusterpair_test.go │ ├── metrics.go │ ├── metrics_test.go │ ├── migration.go │ ├── migration_test.go │ └── volumesnapshotschedule.go ├── migration │ ├── controllers │ │ ├── clusterpair.go │ │ ├── migration.go │ │ ├── migrationschedule.go │ │ ├── resourcetransformation.go │ │ └── resourcetransformation_test.go │ └── migration.go ├── mock │ ├── cache │ │ └── cache.mock.go │ ├── kubevirt │ │ └── kubevirt.ops.mock.go │ ├── kubevirtdynamic │ │ ├── kubevirt-dynamic.ops.mock.go │ │ └── kubevirt-dynamic.vmiops.mock.go │ └── osd │ │ └── driver.mock.go ├── monitor │ ├── monitor.go │ └── monitor_test.go ├── objectcontroller │ └── objectcontroller.go ├── objectstore │ ├── azure │ │ └── azure.go │ ├── common │ │ └── common.go │ ├── google │ │ └── google.go │ ├── nfs │ │ └── nfs.go │ ├── objectstore.go │ └── s3 │ │ └── s3.go ├── platform │ └── rancher │ │ └── rancher.go ├── pluralmap │ └── pluralmap.go ├── pvcwatcher │ └── pvcwatcher.go ├── resourcecollector │ ├── clusterrole.go │ ├── configmap.go │ ├── datavolume.go │ ├── endpoint.go │ ├── ingress.go │ ├── job.go │ ├── networkpolicy.go │ ├── persistentvolume.go │ ├── persistentvolumeclaim.go │ ├── pod.go │ ├── priorityclass.go │ ├── resourcecollector.go │ ├── resourcequota.go │ ├── resourcetransformation.go │ ├── role.go │ ├── secret.go │ ├── service.go │ ├── serviceaccount.go │ ├── virtualmachine.go │ ├── virtualmachineinstance.go │ └── webhook.go ├── resourceutils │ ├── listResources.go │ ├── scaledownduringdr.go │ ├── scaleupduringdr.go │ └── updatereplicas.go ├── restutil │ └── restutil.go ├── rule │ └── rule.go ├── schedule │ ├── cache.go │ ├── schedule.go │ └── schedule_test.go ├── snapshot │ ├── controllers │ │ ├── provisioner.go │ │ ├── snapshot.go │ │ ├── snapshot.mock.go │ │ ├── snapshotrestore.go │ │ ├── snapshotschedule.go │ │ └── snapshotschedule_test.go │ ├── rule.go │ └── snapshot.go ├── snapshotter │ ├── options.go │ ├── snapshotter.go │ └── snapshotter_csi.go ├── storkctl │ ├── action.go │ ├── action_test.go │ ├── actionstatus.go │ ├── actionstatus_test.go │ ├── activate.go │ ├── applicationbackup.go │ ├── applicationbackup_test.go │ ├── applicationbackupschedule.go │ ├── applicationbackupschedule_test.go │ ├── applicationclone.go │ ├── applicationclone_test.go │ ├── applicationregistration.go │ ├── applicationregistration_test.go │ ├── applicationrestore.go │ ├── applicationrestore_test.go │ ├── backuplocation.go │ ├── backuplocation_test.go │ ├── clusterdomainsstatus.go │ ├── clusterdomainsstatus_test.go │ ├── clusterdomainupdate.go │ ├── clusterdomainupdate_test.go │ ├── clusterpair.go │ ├── clusterpair_test.go │ ├── common.go │ ├── common_test.go │ ├── create.go │ ├── deactivate.go │ ├── delete.go │ ├── factory.go │ ├── factory_test.go │ ├── fake_api_server_test.go │ ├── generate.go │ ├── get.go │ ├── groupsnapshot.go │ ├── groupsnapshot_test.go │ ├── migration.go │ ├── migration_test.go │ ├── migrationschedule.go │ ├── migrationschedule_test.go │ ├── perform.go │ ├── pvc.go │ ├── pvc_test.go │ ├── resume.go │ ├── schedulepolicy.go │ ├── schedulepolicy_test.go │ ├── snapshot.go │ ├── snapshot_test.go │ ├── snapshotschedule.go │ ├── snapshotschedule_test.go │ ├── storkctl.go │ ├── suspend.go │ ├── version.go │ ├── version_test.go │ └── watch.go ├── utils │ └── utils.go ├── version │ └── version.go └── webhookadmission │ ├── utils.go │ └── webhook.go ├── specs ├── grafana │ ├── grafana.yaml │ ├── pvc.yaml │ ├── stork_application_metrics.json │ └── stork_migration_metrics.json ├── kafkacr.yaml ├── mongocr.yaml ├── mysql.yaml ├── prometheus │ ├── README.md │ ├── alert_manager │ │ ├── alert_manager.yaml │ │ └── service.yaml │ ├── prometheus.yaml │ ├── prometheus_opr.yaml │ ├── role.yaml │ ├── rule.yaml │ ├── sa.yaml │ ├── service.yaml │ └── service_monitor.yaml ├── stork-daemonset.yaml ├── stork-deployment-deprecated.yaml ├── stork-deployment.yaml ├── stork-initializer.yaml ├── stork-scheduler-deprecated.yaml ├── stork-scheduler.yaml └── stork-webhook.yaml ├── test └── integration_test │ ├── Dockerfile │ ├── action_test.go │ ├── applicationbackup_test.go │ ├── applicationclone_test.go │ ├── clusterdomain_test.go │ ├── cmdexecutor_test.go │ ├── common_test.go │ ├── dataexport_rsync_test.go │ ├── extender_test.go │ ├── health_monitor_test.go │ ├── kubevirt_hyperconv_test.go │ ├── kubevirt_test.go │ ├── migration_backup_test.go │ ├── migration_dr_actions_test.go │ ├── migration_failover_failback_test.go │ ├── migration_features_test.go │ ├── migration_stork_failures_test.go │ ├── migration_test.go │ ├── nearsync_application_test.go │ ├── operator_test.go │ ├── px_statfs_webhook_test.go │ ├── snapshot_restore_test.go │ ├── snapshot_test.go │ ├── specs │ ├── busybox-1-pvc │ │ ├── aws │ │ │ └── aws-sc.yaml │ │ ├── azure │ │ │ └── azure-sc.yaml │ │ ├── busbox.yaml │ │ ├── gce │ │ │ └── gke-sc.yaml │ │ ├── linstor │ │ │ └── linstor-sc.yaml │ │ └── portworx │ │ │ └── px-sc.yaml │ ├── busybox-job │ │ └── job.yaml │ ├── cassandra-clone-rule │ │ ├── appclone.yaml │ │ └── rule.yaml │ ├── cassandra-clone │ │ └── appclone.yaml │ ├── cassandra-clusterdomain-migration │ │ └── migration.yaml │ ├── cassandra-migration-rule │ │ ├── migration.yaml │ │ └── rule.yaml │ ├── cassandra-migration-startapps-false │ │ └── migration.yaml │ ├── cassandra-migration │ │ └── migration.yaml │ ├── cassandra │ │ ├── cassandra.yaml │ │ ├── gce │ │ │ └── gke-sc.yaml │ │ └── portworx │ │ │ └── px-sc.yaml │ ├── debug │ │ └── debug.yaml │ ├── elasticsearch │ │ ├── elasticsearch.yaml │ │ ├── linstor │ │ │ └── linstor-sc.yaml │ │ └── portworx │ │ │ └── sc.yaml │ ├── endpoint-migration-schedule-interval │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── endpoint │ │ ├── aws │ │ │ └── aws-sc.yaml │ │ ├── azure │ │ │ └── azure-sc.yaml │ │ ├── endpoints.yaml │ │ ├── gce │ │ │ └── gke-sc.yaml │ │ ├── linstor │ │ │ └── linstor-sc.yaml │ │ ├── mysql.yaml │ │ └── portworx │ │ │ └── px-sc.yaml │ ├── exclude-multiple-resourcetypes-migration │ │ └── migration.yaml │ ├── exclude-nonexisting-resourcetype-migration │ │ └── migration.yaml │ ├── exclude-resourcetype-deployment │ │ └── migration.yaml │ ├── exclude-resourcetype-pvc │ │ └── migration.yaml │ ├── exclude-resourcetype-selector │ │ └── migration.yaml │ ├── fio-dataexport │ │ ├── fio-config-map.yaml │ │ └── fio.yaml │ ├── fio-job │ │ ├── job.yaml │ │ └── pvc.yaml │ ├── group-cloud-snap-load │ │ ├── fio-pods.yaml │ │ ├── group-cloud-snap.yaml │ │ ├── pvcs.yaml │ │ └── sc.yaml │ ├── job-migration-template │ │ └── migration.yaml │ ├── kubevirt-datadisk-templates │ │ └── fedora-template-pvc-datadisk.yaml │ ├── kubevirt-fedora-multi-disks-wffc-no-ppltr │ │ └── fedora-multi-disks-wffc.yaml │ ├── kubevirt-fedora-multi-disks-wffc │ │ └── fedora-multi-disks-wffc.yaml │ ├── kubevirt-fedora-multiple-disks-datavol-only │ │ └── fedora-vm-multidisk-datavol-only.yaml │ ├── kubevirt-fedora-multiple-disks │ │ └── fedora-vm-multidisk.yaml │ ├── kubevirt-fedora-no-vps │ │ └── fedora-no-vps.yaml │ ├── kubevirt-fedora-wffc-no-ppltr │ │ └── fedora-vm-wait-first-consumer.yaml │ ├── kubevirt-fedora-wffc │ │ └── fedora-vm-wait-first-consumer.yaml │ ├── kubevirt-fedora-with-node-selector │ │ └── fedora-vm-wait-first-consumer.yaml │ ├── kubevirt-fedora │ │ └── fedora-vm.yaml │ ├── kubevirt-templates │ │ ├── fedora │ │ │ └── fedora-template-pvc-rootdisk.yaml │ │ ├── portworx │ │ │ ├── sc-sharedv4svc-nolock-wait-first-consumer.yaml │ │ │ ├── sc-sharedv4svc-nolock-wffc-no-clone.yaml │ │ │ └── sc-sharedv4svc-nolock.yaml │ │ └── windows │ │ │ └── windows-template-pvc.yaml │ ├── kubevirt-win-22k-wffc-no-ppltr │ │ └── windows-vm.yaml │ ├── kubevirt-win-22k-wffc │ │ └── windows-vm.yaml │ ├── kubevirt-windows-22k-server │ │ └── windows-vm.yaml │ ├── label-exclude-selector-migration │ │ └── migration.yaml │ ├── label-selector-applicationclone │ │ └── appclone.yaml │ ├── label-selector-migration │ │ └── migration.yaml │ ├── mongo-op-migration │ │ └── migration.yaml │ ├── mongo-operator │ │ ├── manager │ │ │ └── manager.yaml │ │ ├── mongodbcommunity.mongodb.com_mongodbcommunity.yaml │ │ └── rbac │ │ │ ├── role.yaml │ │ │ ├── role_binding.yaml │ │ │ ├── role_binding_database.yaml │ │ │ ├── role_database.yaml │ │ │ ├── service_account.yaml │ │ │ └── service_account_database.yaml │ ├── mysql-1-pvc-backup-sync │ │ └── applicationbackup.yaml │ ├── mysql-1-pvc-backup │ │ └── applicationbackup.yaml │ ├── mysql-1-pvc-label-selector-backup │ │ └── applicationbackup.yaml │ ├── mysql-1-pvc-post-exec-failing-rule-backup │ │ ├── applicationbackup.yaml │ │ └── rule.yaml │ ├── mysql-1-pvc-post-exec-missing-rule-backup │ │ └── applicationbackup.yaml │ ├── mysql-1-pvc-post-exec-rule-backup │ │ ├── applicationbackup.yaml │ │ └── mysql-post-backup-rule.yaml │ ├── mysql-1-pvc-pre-exec-failing-rule-backup │ │ ├── applicationbackup.yaml │ │ └── rule.yaml │ ├── mysql-1-pvc-pre-exec-missing-rule-backup │ │ └── applicationbackup.yaml │ ├── mysql-1-pvc-pre-exec-rule-backup │ │ ├── applicationbackup.yaml │ │ └── mysql-pre-backup-rule.yaml │ ├── mysql-1-pvc-simple-backup │ │ └── applicationbackup.yaml │ ├── mysql-1-pvc │ │ ├── aws │ │ │ └── aws-sc.yaml │ │ ├── azure │ │ │ └── azure-sc.yaml │ │ ├── gce │ │ │ └── gke-sc.yaml │ │ ├── linstor │ │ │ └── linstor-sc.yaml │ │ ├── mysql.yaml │ │ └── portworx │ │ │ └── px-sc.yaml │ ├── mysql-2-pvc │ │ ├── linstor │ │ │ └── linstor-sc.yaml │ │ ├── mysql.yaml │ │ └── portworx │ │ │ └── sc.yaml │ ├── mysql-clone-disallowed-ns │ │ └── appclone.yaml │ ├── mysql-clone-failing-post-exec │ │ ├── appclone.yaml │ │ └── rule.yaml │ ├── mysql-clone-failing-pre-exec │ │ ├── appclone.yaml │ │ └── rule.yaml │ ├── mysql-clone-post-exec-missing │ │ ├── appclone.yaml │ │ └── mysql-presnap-rule.yaml │ ├── mysql-clone-pre-exec-missing │ │ └── appclone.yaml │ ├── mysql-clone │ │ └── appclone.yaml │ ├── mysql-cloudsnap-group-restore │ │ ├── group-cloud-snapshot.yaml │ │ └── mysql.yaml │ ├── mysql-cloudsnap-group │ │ ├── group-cloud-snapshot.yaml │ │ └── mysql.yaml │ ├── mysql-cloudsnap-restore │ │ ├── mysql.yaml │ │ ├── snapshot-restore-pvc.yaml │ │ └── snapshot.yaml │ ├── mysql-clusterdomain-migration │ │ └── migration.yaml │ ├── mysql-enc-pvc-rancher │ │ ├── mysql.yaml │ │ └── portworx │ │ │ └── px-sc.yaml │ ├── mysql-enc-pvc │ │ ├── mysql.yaml │ │ └── portworx │ │ │ └── px-sc.yaml │ ├── mysql-fio │ │ ├── fio-config-map.yaml │ │ ├── fio.yaml │ │ ├── gce │ │ │ └── gke-storage-class.yaml │ │ └── pxd │ │ │ └── px-storage-class.yaml │ ├── mysql-groupsnap-inplace-cloud-restore │ │ └── mysql-groupsnap-inplace-restore.yml │ ├── mysql-label-selector-restore │ │ └── applicationrestore.yaml │ ├── mysql-localsnap-group │ │ └── group-local-snapshot.yaml │ ├── mysql-localsnap-rule │ │ ├── mysql-1.yaml │ │ ├── mysql-2.yaml │ │ ├── mysql-presnap-rule.yaml │ │ └── snapshot.yaml │ ├── mysql-migration-disallowed-ns │ │ └── migration.yaml │ ├── mysql-migration-failing-post-exec │ │ ├── migration.yaml │ │ └── rule.yaml │ ├── mysql-migration-failing-pre-exec │ │ ├── migration.yaml │ │ └── rule.yaml │ ├── mysql-migration-failover-failback-rancher │ │ └── migration.yaml │ ├── mysql-migration-failover-failback │ │ └── migration.yaml │ ├── mysql-migration-post-exec-missing │ │ ├── migration.yaml │ │ └── mysql-presnap-rule.yaml │ ├── mysql-migration-pre-exec-missing │ │ └── migration.yaml │ ├── mysql-migration-schedule-daily-invalid │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── mysql-migration-schedule-daily │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── mysql-migration-schedule-interval-autosuspend │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── mysql-migration-schedule-interval │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── mysql-migration-schedule-monthly-invalid │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── mysql-migration-schedule-monthly │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── mysql-migration-schedule-weekly-invalid │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── mysql-migration-schedule-weekly │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── mysql-migration-transform-interval │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── mysql-migration │ │ └── migration.yaml │ ├── mysql-nearsync │ │ ├── mysql.yaml │ │ └── portworx │ │ │ └── px-sc.yaml │ ├── mysql-no-persistence │ │ └── mysql.yaml │ ├── mysql-nopvc │ │ └── mysql-nopvc.yaml │ ├── mysql-post-exec-failing-rule-restore │ │ └── applicationrestore.yaml │ ├── mysql-post-exec-missing-rule-restore │ │ └── applicationrestore.yaml │ ├── mysql-post-exec-rule-restore │ │ └── applicationrestore.yaml │ ├── mysql-pre-exec-failing-rule-restore │ │ └── applicationrestore.yaml │ ├── mysql-pre-exec-missing-rule-restore │ │ └── applicationrestore.yaml │ ├── mysql-pre-exec-rule-backup-restore │ │ └── applicationrestore.yaml │ ├── mysql-pre-exec-rule-restore │ │ └── applicationrestore.yaml │ ├── mysql-repl-1 │ │ ├── linstor │ │ │ └── linstor-sc.yaml │ │ ├── mysql.yaml │ │ └── portworx │ │ │ └── sc.yaml │ ├── mysql-restore-backup-sync │ │ └── applicationrestore.yaml │ ├── mysql-restore │ │ └── applicationrestore.yaml │ ├── mysql-service-acc-migration-schedule │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── mysql-service-account │ │ ├── aws │ │ │ └── aws-sc.yaml │ │ ├── azure │ │ │ └── azure-sc.yaml │ │ ├── gce │ │ │ └── gke-sc.yaml │ │ ├── linstor │ │ │ └── linstor-sc.yaml │ │ ├── mysql.yaml │ │ └── portworx │ │ │ └── px-sc.yaml │ ├── mysql-simple-restore-without-nm │ │ └── applicationrestore.yaml │ ├── mysql-simple-restore │ │ └── applicationrestore.yaml │ ├── mysql-snap-group-fail │ │ ├── group-snapshot-fail-empty-spec.yaml │ │ ├── group-snapshot-fail-noexists-rule.yaml │ │ ├── group-snapshot-fail-nopvcs-exist.yaml │ │ ├── group-snapshot-invalid-type.yaml │ │ └── mysql.yaml │ ├── mysql-snap-inplace-cloud-restore │ │ └── mysql-snap-inplace-restore.yml │ ├── mysql-snap-inplace-group-restore │ │ └── mysql-snap-inplace-group-restore.yml │ ├── mysql-snap-inplace-restore │ │ └── mysql-snap-inplace-restore.yml │ ├── mysql-snap-restore │ │ ├── mysql.yaml │ │ ├── snapshot-restore-pvc.yaml │ │ └── snapshot.yaml │ ├── mysql-ss │ │ └── mysql-ss.yaml │ ├── namespace-selector-migration │ │ └── migration.yaml │ ├── nearsync-cassandra-stress │ │ └── cassandra-stress.yaml │ ├── nearsync-cassandra │ │ └── cassandra.yaml │ ├── nearsync-elasticsearch-rally │ │ └── elasticsearch-rally.yaml │ ├── nearsync-elasticsearch │ │ └── elasticsearch.yaml │ ├── nearsync-pgbench │ │ └── pgbench.yaml │ ├── nearsync-postgres │ │ └── postgres.yaml │ ├── networkpolicy-all-migration-schedule-interval │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── networkpolicy-migration-schedule-interval │ │ ├── migrationschedule.yaml │ │ └── schedulepolicy.yaml │ ├── networkpolicy │ │ ├── cidr-policy.yaml │ │ ├── mysql.yaml │ │ ├── networkpolicy-1.yaml │ │ ├── networkpolicy-2.yaml │ │ └── portworx │ │ │ └── px-sc.yaml │ ├── postgres │ │ ├── aws │ │ │ └── aws-storage-class.yaml │ │ ├── azure │ │ │ └── azure-storage-class.yaml │ │ ├── pure │ │ │ └── pure-storage-class.yaml │ │ ├── px-postgres-app.yaml │ │ └── pxd │ │ │ └── px-storage-class.yaml │ ├── rabbitmq-migration │ │ └── migration.yaml │ ├── rabbitmq-operator │ │ └── rabbitmq-operator.yaml │ ├── snapshot-storageclass │ │ └── autosnapsched.yaml │ ├── storkctl-specs │ │ ├── migrationschedule │ │ │ ├── custom-async-migration-schedule.yaml │ │ │ ├── custom-sync-migration-schedule.yaml │ │ │ ├── default-async-migration-schedule.yaml │ │ │ └── default-sync-migration-schedule.yaml │ │ └── schedulepolicy │ │ │ ├── custom-daily-policy.yaml │ │ │ ├── custom-interval-policy.yaml │ │ │ ├── custom-monthly-policy.yaml │ │ │ ├── custom-weekly-policy.yaml │ │ │ ├── daily-policy.yaml │ │ │ ├── interval-policy.yaml │ │ │ ├── monthly-policy.yaml │ │ │ └── weekly-policy.yaml │ ├── test-mysql-1-pvc-strong-hyperconvergence │ │ ├── mysql.yaml │ │ └── portworx │ │ │ └── px-sc.yaml │ ├── test-mysql-2-pvc-strong-hyperconvergence │ │ ├── mysql.yaml │ │ └── portworx │ │ │ └── sc.yaml │ ├── test-sv4-replica1-prefer-remote-only │ │ ├── portworx │ │ │ └── px-sc.yaml │ │ └── test-sv4-svc-repl1-prefer-remote-only.yaml │ ├── test-sv4-svc-enc │ │ ├── portworx │ │ │ └── px-sc.yaml │ │ └── test-sv4-svc-enc.yaml │ ├── test-sv4-svc-prefer-remote-node-false │ │ ├── portworx │ │ │ └── px-sc.yaml │ │ └── test-sv4-svc-repl1-prefer-remote-node-false.yaml │ ├── test-sv4-svc-repl1-prefer-remote-only │ │ ├── portworx │ │ │ └── px-sc.yaml │ │ └── test-sv4-svc-repl1-prefer-remote-only.yaml │ ├── test-sv4-svc-repl1 │ │ ├── portworx │ │ │ └── px-sc.yaml │ │ └── test-sv4-svc-repl1.yaml │ ├── test-sv4-svc │ │ ├── portworx │ │ │ └── px-sc.yaml │ │ └── test-sv4-svc.yaml │ ├── transform-mongodb-cr │ │ └── transform-cr.yaml │ ├── transform-service │ │ └── transform-service.yaml │ ├── vdbench-repl-2-app │ │ ├── px-vdbench-app.yml │ │ └── px-vdbench-storage.yml │ ├── virt-launcher-sim-enc │ │ ├── portworx │ │ │ └── px-sc.yaml │ │ └── virt-launcher-sim-enc.yaml │ └── virt-launcher-sim │ │ ├── portworx │ │ └── px-sc.yaml │ │ └── virt-launcher-sim.yaml │ ├── stork-test-pod.yaml │ ├── storkctl_dr_action_test.go │ ├── storkctl_migrationschedule_test.go │ ├── storkctl_schedulepolicy_test.go │ ├── test-deploy.sh │ └── webhook_test.go └── vendor ├── cloud.google.com └── go │ ├── LICENSE │ ├── compute │ ├── LICENSE │ ├── internal │ │ └── version.go │ └── metadata │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── metadata.go │ │ ├── retry.go │ │ ├── retry_linux.go │ │ └── tidyfix.go │ ├── iam │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── apiv1 │ │ └── iampb │ │ │ ├── iam_policy.pb.go │ │ │ ├── options.pb.go │ │ │ └── policy.pb.go │ ├── credentials │ │ └── apiv1 │ │ │ ├── credentialspb │ │ │ ├── common.pb.go │ │ │ └── iamcredentials.pb.go │ │ │ ├── doc.go │ │ │ ├── iam_credentials_client.go │ │ │ └── version.go │ ├── iam.go │ └── internal │ │ └── version.go │ ├── internal │ ├── .repo-metadata-full.json │ ├── README.md │ ├── annotate.go │ ├── optional │ │ └── optional.go │ ├── retry.go │ ├── trace │ │ └── trace.go │ └── version │ │ ├── update_version.sh │ │ └── version.go │ └── storage │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── acl.go │ ├── bucket.go │ ├── client.go │ ├── copy.go │ ├── doc.go │ ├── emulator_test.sh │ ├── grpc_client.go │ ├── hmac.go │ ├── http_client.go │ ├── iam.go │ ├── internal │ ├── apiv2 │ │ ├── auxiliary.go │ │ ├── doc.go │ │ ├── gapic_metadata.json │ │ ├── storage_client.go │ │ ├── storagepb │ │ │ └── storage.pb.go │ │ └── version.go │ └── version.go │ ├── invoke.go │ ├── notifications.go │ ├── option.go │ ├── post_policy_v4.go │ ├── reader.go │ ├── storage.go │ ├── storage.replay │ └── writer.go ├── contrib.go.opencensus.io └── exporter │ ├── ocagent │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── common.go │ ├── connection.go │ ├── nodeinfo.go │ ├── ocagent.go │ ├── options.go │ ├── span_config.go │ ├── transform_spans.go │ ├── transform_stats_to_metrics.go │ └── version.go │ └── prometheus │ ├── .gitignore │ ├── .golangci.yml │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── prometheus.go │ └── sanitize.go ├── github.com ├── AdaLogics │ └── go-fuzz-headers │ │ ├── LICENSE │ │ ├── README.md │ │ ├── consumer.go │ │ ├── funcs.go │ │ └── sql.go ├── Azure │ ├── azure-pipeline-go │ │ ├── LICENSE │ │ └── pipeline │ │ │ ├── core.go │ │ │ ├── defaultlog.go │ │ │ ├── defaultlog_syslog.go │ │ │ ├── defaultlog_windows.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── progress.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── version.go │ ├── azure-sdk-for-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── sdk │ │ │ ├── azcore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── arm │ │ │ │ │ ├── client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── resource │ │ │ │ │ │ │ ├── resource_identifier.go │ │ │ │ │ │ │ └── resource_type.go │ │ │ │ │ ├── policy │ │ │ │ │ │ └── policy.go │ │ │ │ │ ├── resource_identifier.go │ │ │ │ │ ├── resource_type.go │ │ │ │ │ └── runtime │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ ├── policy_bearer_token.go │ │ │ │ │ │ ├── policy_register_rp.go │ │ │ │ │ │ ├── policy_trace_namespace.go │ │ │ │ │ │ └── runtime.go │ │ │ │ ├── ci.yml │ │ │ │ ├── cloud │ │ │ │ │ ├── cloud.go │ │ │ │ │ └── doc.go │ │ │ │ ├── core.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── etag.go │ │ │ │ ├── internal │ │ │ │ │ ├── exported │ │ │ │ │ │ ├── exported.go │ │ │ │ │ │ ├── pipeline.go │ │ │ │ │ │ ├── request.go │ │ │ │ │ │ └── response_error.go │ │ │ │ │ ├── log │ │ │ │ │ │ └── log.go │ │ │ │ │ ├── pollers │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ └── async.go │ │ │ │ │ │ ├── body │ │ │ │ │ │ │ └── body.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ ├── loc │ │ │ │ │ │ │ └── loc.go │ │ │ │ │ │ ├── op │ │ │ │ │ │ │ └── op.go │ │ │ │ │ │ ├── poller.go │ │ │ │ │ │ └── util.go │ │ │ │ │ └── shared │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ └── shared.go │ │ │ │ ├── log │ │ │ │ │ ├── doc.go │ │ │ │ │ └── log.go │ │ │ │ ├── policy │ │ │ │ │ ├── doc.go │ │ │ │ │ └── policy.go │ │ │ │ ├── runtime │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── pager.go │ │ │ │ │ ├── pipeline.go │ │ │ │ │ ├── policy_api_version.go │ │ │ │ │ ├── policy_bearer_token.go │ │ │ │ │ ├── policy_body_download.go │ │ │ │ │ ├── policy_http_header.go │ │ │ │ │ ├── policy_http_trace.go │ │ │ │ │ ├── policy_include_response.go │ │ │ │ │ ├── policy_key_credential.go │ │ │ │ │ ├── policy_logging.go │ │ │ │ │ ├── policy_request_id.go │ │ │ │ │ ├── policy_retry.go │ │ │ │ │ ├── policy_sas_credential.go │ │ │ │ │ ├── policy_telemetry.go │ │ │ │ │ ├── poller.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── response.go │ │ │ │ │ ├── transport_default_dialer_other.go │ │ │ │ │ ├── transport_default_dialer_wasm.go │ │ │ │ │ └── transport_default_http_client.go │ │ │ │ ├── streaming │ │ │ │ │ ├── doc.go │ │ │ │ │ └── progress.go │ │ │ │ └── tracing │ │ │ │ │ ├── constants.go │ │ │ │ │ └── tracing.go │ │ │ ├── azidentity │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── MIGRATION.md │ │ │ │ ├── README.md │ │ │ │ ├── TROUBLESHOOTING.md │ │ │ │ ├── assets.json │ │ │ │ ├── azidentity.go │ │ │ │ ├── azure_cli_credential.go │ │ │ │ ├── chained_token_credential.go │ │ │ │ ├── ci.yml │ │ │ │ ├── client_assertion_credential.go │ │ │ │ ├── client_certificate_credential.go │ │ │ │ ├── client_secret_credential.go │ │ │ │ ├── confidential_client.go │ │ │ │ ├── default_azure_credential.go │ │ │ │ ├── device_code_credential.go │ │ │ │ ├── environment_credential.go │ │ │ │ ├── errors.go │ │ │ │ ├── interactive_browser_credential.go │ │ │ │ ├── logging.go │ │ │ │ ├── managed_identity_client.go │ │ │ │ ├── managed_identity_credential.go │ │ │ │ ├── on_behalf_of_credential.go │ │ │ │ ├── public_client.go │ │ │ │ ├── test-resources-pre.ps1 │ │ │ │ ├── test-resources.bicep │ │ │ │ ├── username_password_credential.go │ │ │ │ ├── version.go │ │ │ │ └── workload_identity.go │ │ │ ├── internal │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── diag │ │ │ │ │ ├── diag.go │ │ │ │ │ └── doc.go │ │ │ │ ├── errorinfo │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errorinfo.go │ │ │ │ ├── exported │ │ │ │ │ └── exported.go │ │ │ │ ├── log │ │ │ │ │ ├── doc.go │ │ │ │ │ └── log.go │ │ │ │ ├── poller │ │ │ │ │ └── util.go │ │ │ │ ├── temporal │ │ │ │ │ └── resource.go │ │ │ │ └── uuid │ │ │ │ │ ├── doc.go │ │ │ │ │ └── uuid.go │ │ │ └── resourcemanager │ │ │ │ └── storage │ │ │ │ └── armstorage │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── accounts_client.go │ │ │ │ ├── assets.json │ │ │ │ ├── autorest.md │ │ │ │ ├── blobcontainers_client.go │ │ │ │ ├── blobinventorypolicies_client.go │ │ │ │ ├── blobservices_client.go │ │ │ │ ├── build.go │ │ │ │ ├── ci.yml │ │ │ │ ├── client_factory.go │ │ │ │ ├── constants.go │ │ │ │ ├── deletedaccounts_client.go │ │ │ │ ├── encryptionscopes_client.go │ │ │ │ ├── fileservices_client.go │ │ │ │ ├── fileshares_client.go │ │ │ │ ├── localusers_client.go │ │ │ │ ├── managementpolicies_client.go │ │ │ │ ├── models.go │ │ │ │ ├── models_serde.go │ │ │ │ ├── objectreplicationpolicies_client.go │ │ │ │ ├── operations_client.go │ │ │ │ ├── options.go │ │ │ │ ├── privateendpointconnections_client.go │ │ │ │ ├── privatelinkresources_client.go │ │ │ │ ├── queue_client.go │ │ │ │ ├── queueservices_client.go │ │ │ │ ├── response_types.go │ │ │ │ ├── skus_client.go │ │ │ │ ├── table_client.go │ │ │ │ ├── tableservices_client.go │ │ │ │ ├── time_rfc3339.go │ │ │ │ └── usages_client.go │ │ ├── services │ │ │ └── compute │ │ │ │ └── mgmt │ │ │ │ └── 2019-03-01 │ │ │ │ └── compute │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── _meta.json │ │ │ │ ├── availabilitysets.go │ │ │ │ ├── client.go │ │ │ │ ├── containerservices.go │ │ │ │ ├── dedicatedhostgroups.go │ │ │ │ ├── dedicatedhosts.go │ │ │ │ ├── disks.go │ │ │ │ ├── enums.go │ │ │ │ ├── galleries.go │ │ │ │ ├── galleryapplications.go │ │ │ │ ├── galleryapplicationversions.go │ │ │ │ ├── galleryimages.go │ │ │ │ ├── galleryimageversions.go │ │ │ │ ├── images.go │ │ │ │ ├── loganalytics.go │ │ │ │ ├── models.go │ │ │ │ ├── operations.go │ │ │ │ ├── proximityplacementgroups.go │ │ │ │ ├── resourceskus.go │ │ │ │ ├── snapshots.go │ │ │ │ ├── usage.go │ │ │ │ ├── version.go │ │ │ │ ├── virtualmachineextensionimages.go │ │ │ │ ├── virtualmachineextensions.go │ │ │ │ ├── virtualmachineimages.go │ │ │ │ ├── virtualmachineruncommands.go │ │ │ │ ├── virtualmachines.go │ │ │ │ ├── virtualmachinescalesetextensions.go │ │ │ │ ├── virtualmachinescalesetrollingupgrades.go │ │ │ │ ├── virtualmachinescalesets.go │ │ │ │ ├── virtualmachinescalesetvms.go │ │ │ │ └── virtualmachinesizes.go │ │ └── version │ │ │ └── version.go │ ├── azure-storage-blob-go │ │ ├── LICENSE │ │ └── azblob │ │ │ ├── access_conditions.go │ │ │ ├── bytes_writer.go │ │ │ ├── chunkwriting.go │ │ │ ├── common_utils.go │ │ │ ├── highlevel.go │ │ │ ├── parsing_urls.go │ │ │ ├── request_common.go │ │ │ ├── sas_service.go │ │ │ ├── section_writer.go │ │ │ ├── service_codes_blob.go │ │ │ ├── storage_account_credential.go │ │ │ ├── url_append_blob.go │ │ │ ├── url_blob.go │ │ │ ├── url_block_blob.go │ │ │ ├── url_container.go │ │ │ ├── url_page_blob.go │ │ │ ├── url_service.go │ │ │ ├── user_delegation_credential.go │ │ │ ├── version.go │ │ │ ├── zc_credential_anonymous.go │ │ │ ├── zc_credential_shared_key.go │ │ │ ├── zc_credential_token.go │ │ │ ├── zc_pipeline.go │ │ │ ├── zc_policy_request_log.go │ │ │ ├── zc_policy_retry.go │ │ │ ├── zc_policy_telemetry.go │ │ │ ├── zc_policy_unique_request_id.go │ │ │ ├── zc_retry_reader.go │ │ │ ├── zc_sas_account.go │ │ │ ├── zc_sas_query_params.go │ │ │ ├── zc_service_codes_common.go │ │ │ ├── zc_storage_error.go │ │ │ ├── zc_util_validate.go │ │ │ ├── zc_uuid.go │ │ │ ├── zt_doc.go │ │ │ ├── zz_generated_append_blob.go │ │ │ ├── zz_generated_blob.go │ │ │ ├── zz_generated_block_blob.go │ │ │ ├── zz_generated_client.go │ │ │ ├── zz_generated_container.go │ │ │ ├── zz_generated_models.go │ │ │ ├── zz_generated_page_blob.go │ │ │ ├── zz_generated_responder_policy.go │ │ │ ├── zz_generated_response_error.go │ │ │ ├── zz_generated_service.go │ │ │ ├── zz_generated_validation.go │ │ │ ├── zz_generated_version.go │ │ │ └── zz_response_helpers.go │ ├── go-ansiterm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constants.go │ │ ├── context.go │ │ ├── csi_entry_state.go │ │ ├── csi_param_state.go │ │ ├── escape_intermediate_state.go │ │ ├── escape_state.go │ │ ├── event_handler.go │ │ ├── ground_state.go │ │ ├── osc_string_state.go │ │ ├── parser.go │ │ ├── parser_action_helpers.go │ │ ├── parser_actions.go │ │ ├── states.go │ │ ├── utilities.go │ │ └── winterm │ │ │ ├── ansi.go │ │ │ ├── api.go │ │ │ ├── attr_translation.go │ │ │ ├── cursor_helpers.go │ │ │ ├── erase_helpers.go │ │ │ ├── scroll_helper.go │ │ │ ├── utilities.go │ │ │ └── win_event_handler.go │ └── 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 │ │ │ ├── auth │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── auth.go │ │ │ │ └── go_mod_tidy_hack.go │ │ │ ├── azure.go │ │ │ ├── cli │ │ │ │ ├── LICENSE │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ ├── profile.go │ │ │ │ └── token.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 │ │ ├── to │ │ │ ├── LICENSE │ │ │ ├── convert.go │ │ │ └── go_mod_tidy_hack.go │ │ ├── utility.go │ │ ├── utility_1.13.go │ │ ├── utility_legacy.go │ │ ├── validation │ │ │ ├── LICENSE │ │ │ ├── error.go │ │ │ ├── go_mod_tidy_hack.go │ │ │ └── validation.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 ├── AzureAD │ └── microsoft-authentication-library-for-go │ │ ├── LICENSE │ │ └── apps │ │ ├── cache │ │ └── cache.go │ │ ├── confidential │ │ └── confidential.go │ │ ├── errors │ │ ├── error_design.md │ │ └── errors.go │ │ ├── internal │ │ ├── base │ │ │ ├── base.go │ │ │ └── internal │ │ │ │ └── storage │ │ │ │ ├── items.go │ │ │ │ ├── partitioned_storage.go │ │ │ │ └── storage.go │ │ ├── exported │ │ │ └── exported.go │ │ ├── json │ │ │ ├── design.md │ │ │ ├── json.go │ │ │ ├── mapslice.go │ │ │ ├── marshal.go │ │ │ ├── struct.go │ │ │ └── types │ │ │ │ └── time │ │ │ │ └── time.go │ │ ├── local │ │ │ └── server.go │ │ ├── oauth │ │ │ ├── oauth.go │ │ │ ├── ops │ │ │ │ ├── accesstokens │ │ │ │ │ ├── accesstokens.go │ │ │ │ │ ├── apptype_string.go │ │ │ │ │ └── tokens.go │ │ │ │ ├── authority │ │ │ │ │ ├── authority.go │ │ │ │ │ └── authorizetype_string.go │ │ │ │ ├── internal │ │ │ │ │ ├── comm │ │ │ │ │ │ ├── comm.go │ │ │ │ │ │ └── compress.go │ │ │ │ │ └── grant │ │ │ │ │ │ └── grant.go │ │ │ │ ├── ops.go │ │ │ │ └── wstrust │ │ │ │ │ ├── defs │ │ │ │ │ ├── endpointtype_string.go │ │ │ │ │ ├── mex_document_definitions.go │ │ │ │ │ ├── saml_assertion_definitions.go │ │ │ │ │ ├── version_string.go │ │ │ │ │ ├── wstrust_endpoint.go │ │ │ │ │ └── wstrust_mex_document.go │ │ │ │ │ └── wstrust.go │ │ │ └── resolvers.go │ │ ├── options │ │ │ └── options.go │ │ ├── shared │ │ │ └── shared.go │ │ └── version │ │ │ └── version.go │ │ └── public │ │ └── public.go ├── BurntSushi │ └── toml │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── README.md │ │ ├── decode.go │ │ ├── decode_go116.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── internal │ │ └── tz.go │ │ ├── lex.go │ │ ├── meta.go │ │ ├── parse.go │ │ ├── type_fields.go │ │ └── type_toml.go ├── GoogleCloudPlatform │ └── k8s-cloud-provider │ │ ├── LICENSE │ │ └── pkg │ │ └── cloud │ │ └── meta │ │ ├── doc.go │ │ ├── key.go │ │ ├── meta.go │ │ ├── method.go │ │ └── service.go ├── LINBIT │ └── golinstor │ │ ├── .gitlab-ci.yml │ │ ├── .gitmodules │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── apiconsts.go │ │ ├── client │ │ ├── apicallerror.go │ │ ├── backup.go │ │ ├── cache.go │ │ ├── client.go │ │ ├── controller.go │ │ ├── controllerconfig.go │ │ ├── encryption.go │ │ ├── node.go │ │ ├── openflex.go │ │ ├── option.go │ │ ├── physicalstorage.go │ │ ├── remote.go │ │ ├── resource.go │ │ ├── resourcedefinition.go │ │ ├── resourcegroup.go │ │ ├── sse.go │ │ ├── storagepooldefinition.go │ │ ├── timestamp.go │ │ └── vendor.go │ │ ├── clonestatus │ │ └── clonestatus.go │ │ ├── connectionstatus │ │ └── connectionstatus.go │ │ ├── devicelayerkind │ │ └── devicelayerkind.go │ │ ├── golinstor-e2e.toml.example │ │ ├── linstor.go │ │ └── snapshotshipstatus │ │ └── snapshotshipstatus.go ├── MakeNowJust │ └── heredoc │ │ ├── LICENSE │ │ ├── README.md │ │ └── heredoc.go ├── Masterminds │ ├── goutils │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── cryptorandomstringutils.go │ │ ├── randomstringutils.go │ │ ├── stringutils.go │ │ └── wordutils.go │ ├── semver │ │ └── v3 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── collection.go │ │ │ ├── constraints.go │ │ │ ├── doc.go │ │ │ ├── fuzz.go │ │ │ └── version.go │ ├── sprig │ │ └── v3 │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── crypto.go │ │ │ ├── date.go │ │ │ ├── defaults.go │ │ │ ├── dict.go │ │ │ ├── doc.go │ │ │ ├── functions.go │ │ │ ├── list.go │ │ │ ├── network.go │ │ │ ├── numeric.go │ │ │ ├── reflect.go │ │ │ ├── regex.go │ │ │ ├── semver.go │ │ │ ├── strings.go │ │ │ └── url.go │ └── squirrel │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── case.go │ │ ├── delete.go │ │ ├── delete_ctx.go │ │ ├── expr.go │ │ ├── insert.go │ │ ├── insert_ctx.go │ │ ├── part.go │ │ ├── placeholder.go │ │ ├── row.go │ │ ├── select.go │ │ ├── select_ctx.go │ │ ├── squirrel.go │ │ ├── squirrel_ctx.go │ │ ├── statement.go │ │ ├── stmtcacher.go │ │ ├── stmtcacher_ctx.go │ │ ├── stmtcacher_noctx.go │ │ ├── update.go │ │ ├── update_ctx.go │ │ └── where.go ├── Microsoft │ ├── go-winio │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── backup.go │ │ ├── doc.go │ │ ├── ea.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── hvsock.go │ │ ├── internal │ │ │ ├── fs │ │ │ │ ├── doc.go │ │ │ │ ├── fs.go │ │ │ │ ├── security.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── socket │ │ │ │ ├── rawaddr.go │ │ │ │ ├── socket.go │ │ │ │ └── zsyscall_windows.go │ │ │ └── stringbuffer │ │ │ │ └── wstring.go │ │ ├── pipe.go │ │ ├── pkg │ │ │ └── guid │ │ │ │ ├── guid.go │ │ │ │ ├── guid_nonwindows.go │ │ │ │ ├── guid_windows.go │ │ │ │ └── variant_string.go │ │ ├── privilege.go │ │ ├── reparse.go │ │ ├── sd.go │ │ ├── syscall.go │ │ ├── tools.go │ │ └── zsyscall_windows.go │ └── hcsshim │ │ ├── LICENSE │ │ └── osversion │ │ ├── osversion_windows.go │ │ ├── platform_compat_windows.go │ │ └── windowsbuilds.go ├── antlr │ └── antlr4 │ │ └── runtime │ │ └── Go │ │ └── antlr │ │ └── v4 │ │ ├── LICENSE │ │ ├── antlrdoc.go │ │ ├── atn.go │ │ ├── atn_config.go │ │ ├── atn_config_set.go │ │ ├── atn_deserialization_options.go │ │ ├── atn_deserializer.go │ │ ├── atn_simulator.go │ │ ├── atn_state.go │ │ ├── atn_type.go │ │ ├── char_stream.go │ │ ├── common_token_factory.go │ │ ├── common_token_stream.go │ │ ├── comparators.go │ │ ├── dfa.go │ │ ├── dfa_serializer.go │ │ ├── dfa_state.go │ │ ├── diagnostic_error_listener.go │ │ ├── error_listener.go │ │ ├── error_strategy.go │ │ ├── errors.go │ │ ├── file_stream.go │ │ ├── input_stream.go │ │ ├── int_stream.go │ │ ├── interval_set.go │ │ ├── jcollect.go │ │ ├── lexer.go │ │ ├── lexer_action.go │ │ ├── lexer_action_executor.go │ │ ├── lexer_atn_simulator.go │ │ ├── ll1_analyzer.go │ │ ├── parser.go │ │ ├── parser_atn_simulator.go │ │ ├── parser_rule_context.go │ │ ├── prediction_context.go │ │ ├── prediction_mode.go │ │ ├── recognizer.go │ │ ├── rule_context.go │ │ ├── semantic_context.go │ │ ├── token.go │ │ ├── token_source.go │ │ ├── token_stream.go │ │ ├── tokenstream_rewriter.go │ │ ├── trace_listener.go │ │ ├── transition.go │ │ ├── tree.go │ │ ├── trees.go │ │ ├── utils.go │ │ └── utils_set.go ├── aquilax │ └── truncate │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── truncate.go ├── armon │ └── go-metrics │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── const_unix.go │ │ ├── const_windows.go │ │ ├── inmem.go │ │ ├── inmem_endpoint.go │ │ ├── inmem_signal.go │ │ ├── metrics.go │ │ ├── sink.go │ │ ├── start.go │ │ ├── statsd.go │ │ └── statsite.go ├── asaskevich │ └── govalidator │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arrays.go │ │ ├── converter.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── numerics.go │ │ ├── patterns.go │ │ ├── types.go │ │ ├── utils.go │ │ ├── validator.go │ │ └── wercker.yml ├── aws │ └── aws-sdk-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── aws │ │ ├── arn │ │ │ └── arn.go │ │ ├── auth │ │ │ └── bearer │ │ │ │ └── token.go │ │ ├── awserr │ │ │ ├── error.go │ │ │ └── types.go │ │ ├── awsutil │ │ │ ├── copy.go │ │ │ ├── equal.go │ │ │ ├── path_value.go │ │ │ ├── prettify.go │ │ │ └── string_value.go │ │ ├── client │ │ │ ├── client.go │ │ │ ├── default_retryer.go │ │ │ ├── logger.go │ │ │ ├── metadata │ │ │ │ └── client_info.go │ │ │ └── no_op_retryer.go │ │ ├── config.go │ │ ├── context_1_5.go │ │ ├── context_1_9.go │ │ ├── context_background_1_5.go │ │ ├── context_background_1_7.go │ │ ├── context_sleep.go │ │ ├── convert_types.go │ │ ├── corehandlers │ │ │ ├── awsinternal.go │ │ │ ├── handlers.go │ │ │ ├── param_validator.go │ │ │ └── user_agent.go │ │ ├── credentials │ │ │ ├── chain_provider.go │ │ │ ├── context_background_go1.5.go │ │ │ ├── context_background_go1.7.go │ │ │ ├── context_go1.5.go │ │ │ ├── context_go1.9.go │ │ │ ├── credentials.go │ │ │ ├── ec2rolecreds │ │ │ │ └── ec2_role_provider.go │ │ │ ├── endpointcreds │ │ │ │ └── provider.go │ │ │ ├── env_provider.go │ │ │ ├── example.ini │ │ │ ├── processcreds │ │ │ │ └── provider.go │ │ │ ├── shared_credentials_provider.go │ │ │ ├── ssocreds │ │ │ │ ├── doc.go │ │ │ │ ├── os.go │ │ │ │ ├── os_windows.go │ │ │ │ ├── provider.go │ │ │ │ ├── sso_cached_token.go │ │ │ │ └── token_provider.go │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.go │ │ ├── csm │ │ │ ├── doc.go │ │ │ ├── enable.go │ │ │ ├── metric.go │ │ │ ├── metric_chan.go │ │ │ ├── metric_exception.go │ │ │ └── reporter.go │ │ ├── defaults │ │ │ ├── defaults.go │ │ │ └── shared_config.go │ │ ├── doc.go │ │ ├── ec2metadata │ │ │ ├── api.go │ │ │ ├── service.go │ │ │ └── token_provider.go │ │ ├── endpoints │ │ │ ├── decode.go │ │ │ ├── defaults.go │ │ │ ├── dep_service_ids.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── legacy_regions.go │ │ │ ├── v3model.go │ │ │ └── v3model_codegen.go │ │ ├── errors.go │ │ ├── jsonvalue.go │ │ ├── logger.go │ │ ├── request │ │ │ ├── connection_reset_error.go │ │ │ ├── handlers.go │ │ │ ├── http_request.go │ │ │ ├── offset_reader.go │ │ │ ├── request.go │ │ │ ├── request_1_7.go │ │ │ ├── request_1_8.go │ │ │ ├── request_context.go │ │ │ ├── request_context_1_6.go │ │ │ ├── request_pagination.go │ │ │ ├── retryer.go │ │ │ ├── timeout_read_closer.go │ │ │ ├── validation.go │ │ │ └── waiter.go │ │ ├── session │ │ │ ├── credentials.go │ │ │ ├── custom_transport.go │ │ │ ├── custom_transport_go1.12.go │ │ │ ├── custom_transport_go1.5.go │ │ │ ├── custom_transport_go1.6.go │ │ │ ├── doc.go │ │ │ ├── env_config.go │ │ │ ├── session.go │ │ │ └── shared_config.go │ │ ├── signer │ │ │ └── v4 │ │ │ │ ├── header_rules.go │ │ │ │ ├── options.go │ │ │ │ ├── request_context_go1.5.go │ │ │ │ ├── request_context_go1.7.go │ │ │ │ ├── stream.go │ │ │ │ ├── uri_path.go │ │ │ │ └── v4.go │ │ ├── types.go │ │ ├── url.go │ │ ├── url_1_7.go │ │ └── version.go │ │ ├── internal │ │ ├── context │ │ │ └── background_go1.5.go │ │ ├── ini │ │ │ ├── ast.go │ │ │ ├── comma_token.go │ │ │ ├── comment_token.go │ │ │ ├── doc.go │ │ │ ├── empty_token.go │ │ │ ├── expression.go │ │ │ ├── fuzz.go │ │ │ ├── ini.go │ │ │ ├── ini_lexer.go │ │ │ ├── ini_parser.go │ │ │ ├── literal_tokens.go │ │ │ ├── newline_token.go │ │ │ ├── number_helper.go │ │ │ ├── op_tokens.go │ │ │ ├── parse_error.go │ │ │ ├── parse_stack.go │ │ │ ├── sep_tokens.go │ │ │ ├── skipper.go │ │ │ ├── statement.go │ │ │ ├── value_util.go │ │ │ ├── visitor.go │ │ │ ├── walker.go │ │ │ └── ws_token.go │ │ ├── s3shared │ │ │ ├── arn │ │ │ │ ├── accesspoint_arn.go │ │ │ │ ├── arn.go │ │ │ │ ├── outpost_arn.go │ │ │ │ └── s3_object_lambda_arn.go │ │ │ ├── endpoint_errors.go │ │ │ ├── resource_request.go │ │ │ └── s3err │ │ │ │ └── error.go │ │ ├── sdkio │ │ │ ├── byte.go │ │ │ ├── io_go1.6.go │ │ │ └── io_go1.7.go │ │ ├── sdkmath │ │ │ ├── floor.go │ │ │ └── floor_go1.9.go │ │ ├── sdkrand │ │ │ ├── locked_source.go │ │ │ ├── read.go │ │ │ └── read_1_5.go │ │ ├── sdkuri │ │ │ └── path.go │ │ ├── shareddefaults │ │ │ ├── ecs_container.go │ │ │ ├── shared_config.go │ │ │ ├── shared_config_resolve_home.go │ │ │ └── shared_config_resolve_home_go1.12.go │ │ ├── strings │ │ │ └── strings.go │ │ └── sync │ │ │ └── singleflight │ │ │ ├── LICENSE │ │ │ └── singleflight.go │ │ ├── private │ │ ├── checksum │ │ │ └── content_md5.go │ │ └── protocol │ │ │ ├── ec2query │ │ │ ├── build.go │ │ │ └── unmarshal.go │ │ │ ├── eventstream │ │ │ ├── debug.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── error.go │ │ │ ├── eventstreamapi │ │ │ │ ├── error.go │ │ │ │ ├── reader.go │ │ │ │ ├── shared.go │ │ │ │ ├── signer.go │ │ │ │ ├── stream_writer.go │ │ │ │ ├── transport.go │ │ │ │ ├── transport_go1.17.go │ │ │ │ └── writer.go │ │ │ ├── header.go │ │ │ ├── header_value.go │ │ │ └── message.go │ │ │ ├── host.go │ │ │ ├── host_prefix.go │ │ │ ├── idempotency.go │ │ │ ├── json │ │ │ └── jsonutil │ │ │ │ ├── build.go │ │ │ │ └── unmarshal.go │ │ │ ├── jsonrpc │ │ │ ├── jsonrpc.go │ │ │ └── unmarshal_error.go │ │ │ ├── jsonvalue.go │ │ │ ├── payload.go │ │ │ ├── protocol.go │ │ │ ├── query │ │ │ ├── build.go │ │ │ ├── queryutil │ │ │ │ └── queryutil.go │ │ │ ├── unmarshal.go │ │ │ └── unmarshal_error.go │ │ │ ├── rest │ │ │ ├── build.go │ │ │ ├── payload.go │ │ │ └── unmarshal.go │ │ │ ├── restjson │ │ │ ├── restjson.go │ │ │ └── unmarshal_error.go │ │ │ ├── restxml │ │ │ └── restxml.go │ │ │ ├── timestamp.go │ │ │ ├── unmarshal.go │ │ │ ├── unmarshal_error.go │ │ │ └── xml │ │ │ └── xmlutil │ │ │ ├── build.go │ │ │ ├── sort.go │ │ │ ├── unmarshal.go │ │ │ └── xml_to_struct.go │ │ └── service │ │ ├── ec2 │ │ ├── api.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── service.go │ │ └── waiters.go │ │ ├── s3 │ │ ├── api.go │ │ ├── body_hash.go │ │ ├── bucket_location.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── doc_custom.go │ │ ├── endpoint.go │ │ ├── endpoint_builder.go │ │ ├── errors.go │ │ ├── host_style_bucket.go │ │ ├── platform_handlers.go │ │ ├── platform_handlers_go1.6.go │ │ ├── s3iface │ │ │ └── interface.go │ │ ├── s3manager │ │ │ ├── arn.go │ │ │ ├── batch.go │ │ │ ├── bucket_region.go │ │ │ ├── buffered_read_seeker.go │ │ │ ├── default_read_seeker_write_to.go │ │ │ ├── default_read_seeker_write_to_windows.go │ │ │ ├── default_writer_read_from.go │ │ │ ├── default_writer_read_from_windows.go │ │ │ ├── doc.go │ │ │ ├── download.go │ │ │ ├── pool.go │ │ │ ├── read_seeker_write_to.go │ │ │ ├── upload.go │ │ │ ├── upload_input.go │ │ │ └── writer_read_from.go │ │ ├── service.go │ │ ├── sse.go │ │ ├── statusok_error.go │ │ ├── unmarshal_error.go │ │ └── waiters.go │ │ ├── sso │ │ ├── api.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── service.go │ │ └── ssoiface │ │ │ └── interface.go │ │ ├── ssooidc │ │ ├── api.go │ │ ├── doc.go │ │ ├── errors.go │ │ └── service.go │ │ └── sts │ │ ├── api.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── service.go │ │ └── stsiface │ │ └── interface.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── blendle │ └── zapdriver │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.go │ │ ├── core.go │ │ ├── encoder.go │ │ ├── http.go │ │ ├── label.go │ │ ├── logger.go │ │ ├── operation.go │ │ ├── report.go │ │ ├── service.go │ │ ├── source.go │ │ └── trace.go ├── cenkalti │ └── backoff │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── context.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ ├── tries.go │ │ └── v3 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backoff.go │ │ ├── context.go │ │ ├── exponential.go │ │ ├── retry.go │ │ ├── ticker.go │ │ ├── timer.go │ │ └── tries.go ├── census-instrumentation │ └── opencensus-proto │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── gen-go │ │ ├── agent │ │ ├── common │ │ │ └── v1 │ │ │ │ └── common.pb.go │ │ ├── metrics │ │ │ └── v1 │ │ │ │ ├── metrics_service.pb.go │ │ │ │ ├── metrics_service.pb.gw.go │ │ │ │ └── metrics_service_grpc.pb.go │ │ └── trace │ │ │ └── v1 │ │ │ ├── trace_service.pb.go │ │ │ ├── trace_service.pb.gw.go │ │ │ └── trace_service_grpc.pb.go │ │ ├── metrics │ │ └── v1 │ │ │ └── metrics.pb.go │ │ ├── resource │ │ └── v1 │ │ │ └── resource.pb.go │ │ └── trace │ │ └── v1 │ │ ├── trace.pb.go │ │ └── trace_config.pb.go ├── cespare │ └── xxhash │ │ └── v2 │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── testall.sh │ │ ├── xxhash.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_arm64.s │ │ ├── xxhash_asm.go │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go ├── chai2010 │ └── gettext-go │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_json.go │ │ ├── fs_os.go │ │ ├── fs_zip.go │ │ ├── gettext.go │ │ ├── locale.go │ │ ├── mo │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── file.go │ │ ├── header.go │ │ ├── message.go │ │ └── util.go │ │ ├── plural │ │ ├── doc.go │ │ ├── formula.go │ │ └── table.go │ │ ├── po │ │ ├── comment.go │ │ ├── doc.go │ │ ├── file.go │ │ ├── header.go │ │ ├── line_reader.go │ │ ├── message.go │ │ ├── re.go │ │ └── util.go │ │ ├── tr.go │ │ └── util.go ├── cloudfoundry │ └── gosigar │ │ ├── .gitignore │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── Vagrantfile │ │ ├── concrete_sigar.go │ │ ├── sigar_darwin.go │ │ ├── sigar_format.go │ │ ├── sigar_interface.go │ │ ├── sigar_linux.go │ │ ├── sigar_shared.go │ │ ├── sigar_unix.go │ │ ├── sigar_util.go │ │ ├── sigar_windows.go │ │ └── sys │ │ └── windows │ │ ├── doc.go │ │ ├── ntquery.go │ │ ├── privileges.go │ │ ├── syscall_windows.go │ │ ├── version.go │ │ └── zsyscall_windows.go ├── container-storage-interface │ └── spec │ │ ├── LICENSE │ │ └── lib │ │ └── go │ │ └── csi │ │ └── csi.pb.go ├── containerd │ ├── containerd │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── archive │ │ │ └── compression │ │ │ │ ├── compression.go │ │ │ │ └── compression_fuzzer.go │ │ ├── content │ │ │ ├── adaptor.go │ │ │ ├── content.go │ │ │ ├── helpers.go │ │ │ └── local │ │ │ │ ├── content_local_fuzzer.go │ │ │ │ ├── locks.go │ │ │ │ ├── readerat.go │ │ │ │ ├── store.go │ │ │ │ ├── store_bsd.go │ │ │ │ ├── store_openbsd.go │ │ │ │ ├── store_unix.go │ │ │ │ ├── store_windows.go │ │ │ │ ├── test_helper.go │ │ │ │ └── writer.go │ │ ├── errdefs │ │ │ ├── errors.go │ │ │ └── grpc.go │ │ ├── filters │ │ │ ├── adaptor.go │ │ │ ├── filter.go │ │ │ ├── parser.go │ │ │ ├── quote.go │ │ │ └── scanner.go │ │ ├── images │ │ │ ├── annotations.go │ │ │ ├── diffid.go │ │ │ ├── handlers.go │ │ │ ├── image.go │ │ │ ├── importexport.go │ │ │ ├── labels.go │ │ │ └── mediatypes.go │ │ ├── labels │ │ │ ├── labels.go │ │ │ └── validate.go │ │ ├── log │ │ │ └── context_deprecated.go │ │ ├── pkg │ │ │ ├── randutil │ │ │ │ └── randutil.go │ │ │ └── userns │ │ │ │ ├── userns_linux.go │ │ │ │ └── userns_unsupported.go │ │ ├── platforms │ │ │ ├── compare.go │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_linux.go │ │ │ ├── cpuinfo_other.go │ │ │ ├── database.go │ │ │ ├── defaults.go │ │ │ ├── defaults_darwin.go │ │ │ ├── defaults_freebsd.go │ │ │ ├── defaults_unix.go │ │ │ ├── defaults_windows.go │ │ │ ├── platforms.go │ │ │ ├── platforms_other.go │ │ │ └── platforms_windows.go │ │ ├── reference │ │ │ ├── docker │ │ │ │ ├── helpers.go │ │ │ │ ├── normalize.go │ │ │ │ ├── reference.go │ │ │ │ ├── regexp.go │ │ │ │ └── sort.go │ │ │ └── reference.go │ │ ├── remotes │ │ │ ├── docker │ │ │ │ ├── auth │ │ │ │ │ ├── fetch.go │ │ │ │ │ └── parse.go │ │ │ │ ├── authorizer.go │ │ │ │ ├── converter.go │ │ │ │ ├── converter_fuzz.go │ │ │ │ ├── errcode.go │ │ │ │ ├── errdesc.go │ │ │ │ ├── fetcher.go │ │ │ │ ├── fetcher_fuzz.go │ │ │ │ ├── handler.go │ │ │ │ ├── httpreadseeker.go │ │ │ │ ├── pusher.go │ │ │ │ ├── registry.go │ │ │ │ ├── resolver.go │ │ │ │ ├── schema1 │ │ │ │ │ └── converter.go │ │ │ │ ├── scope.go │ │ │ │ └── status.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── handlers.go │ │ │ └── resolver.go │ │ ├── sys │ │ │ ├── filesys_deprecated_windows.go │ │ │ ├── filesys_unix.go │ │ │ ├── filesys_windows.go │ │ │ ├── oom_linux.go │ │ │ ├── oom_unsupported.go │ │ │ ├── socket_unix.go │ │ │ └── socket_windows.go │ │ ├── tracing │ │ │ ├── helpers.go │ │ │ ├── log.go │ │ │ └── tracing.go │ │ └── version │ │ │ └── version.go │ ├── continuity │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── devices │ │ │ ├── devices.go │ │ │ ├── devices_unix.go │ │ │ ├── devices_windows.go │ │ │ ├── mknod_freebsd.go │ │ │ └── mknod_unix.go │ │ ├── driver │ │ │ ├── driver.go │ │ │ ├── driver_unix.go │ │ │ ├── driver_windows.go │ │ │ ├── lchmod_linux.go │ │ │ ├── lchmod_unix.go │ │ │ └── utils.go │ │ ├── pathdriver │ │ │ └── path_driver.go │ │ └── sysx │ │ │ ├── README.md │ │ │ ├── nodata_linux.go │ │ │ ├── nodata_solaris.go │ │ │ ├── nodata_unix.go │ │ │ ├── xattr.go │ │ │ └── xattr_unsupported.go │ └── log │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── context.go ├── coreos │ ├── go-oidc │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── DCO │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── NOTICE │ │ ├── README.md │ │ ├── code-of-conduct.md │ │ ├── jose.go │ │ ├── jwks.go │ │ ├── oidc.go │ │ ├── test │ │ └── verify.go │ ├── go-systemd │ │ └── v22 │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── dbus │ │ │ ├── dbus.go │ │ │ ├── methods.go │ │ │ ├── properties.go │ │ │ ├── set.go │ │ │ ├── subscription.go │ │ │ └── subscription_set.go │ └── prometheus-operator │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pkg │ │ └── apis │ │ └── monitoring │ │ ├── register.go │ │ └── v1 │ │ ├── bindata.go │ │ ├── crd_kinds.go │ │ ├── doc.go │ │ ├── register.go │ │ ├── thanos_types.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go ├── cpuguy83 │ └── go-md2man │ │ └── v2 │ │ ├── LICENSE.md │ │ └── md2man │ │ ├── md2man.go │ │ └── roff.go ├── cyphar │ └── filepath-securejoin │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── join.go │ │ └── vfs.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── devans10 │ └── pugo │ │ └── flasharray │ │ ├── LICENSE │ │ ├── alert.go │ │ ├── alertType.go │ │ ├── array.go │ │ ├── arrayTypes.go │ │ ├── cert.go │ │ ├── certTypes.go │ │ ├── dirsrv.go │ │ ├── dirsrvTypes.go │ │ ├── flasharray.go │ │ ├── hardware.go │ │ ├── hardwareTypes.go │ │ ├── hgroup.go │ │ ├── hgroupTypes.go │ │ ├── host.go │ │ ├── hostTypes.go │ │ ├── message.go │ │ ├── messageType.go │ │ ├── network.go │ │ ├── networkTypes.go │ │ ├── offload.go │ │ ├── offloadTypes.go │ │ ├── pgroup.go │ │ ├── pgroupTypes.go │ │ ├── pod.go │ │ ├── podTypes.go │ │ ├── smtp.go │ │ ├── smtpTypes.go │ │ ├── snmp.go │ │ ├── snmpTypes.go │ │ ├── user.go │ │ ├── userTypes.go │ │ ├── vgroup.go │ │ ├── vgroupTypes.go │ │ ├── volume.go │ │ └── volumeTypes.go ├── dimchansky │ └── utfbom │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── utfbom.go ├── docker │ ├── cli │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── cli │ │ │ └── config │ │ │ ├── config.go │ │ │ ├── configfile │ │ │ ├── file.go │ │ │ ├── file_unix.go │ │ │ └── file_windows.go │ │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── default_store.go │ │ │ ├── default_store_darwin.go │ │ │ ├── default_store_linux.go │ │ │ ├── default_store_unsupported.go │ │ │ ├── default_store_windows.go │ │ │ ├── file_store.go │ │ │ └── native_store.go │ │ │ └── types │ │ │ └── authconfig.go │ ├── 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 │ │ │ │ │ ├── api_version.go │ │ │ │ │ ├── challenge │ │ │ │ │ │ ├── addr.go │ │ │ │ │ │ └── authchallenge.go │ │ │ │ │ └── session.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 │ │ │ └── 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 │ │ │ │ ├── filters │ │ │ │ └── parse.go │ │ │ │ ├── graph_driver_data.go │ │ │ │ ├── id_response.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 │ │ │ │ ├── types.go │ │ │ │ ├── versions │ │ │ │ ├── README.md │ │ │ │ └── compare.go │ │ │ │ └── volume.go │ │ ├── daemon │ │ │ └── graphdriver │ │ │ │ ├── btrfs │ │ │ │ ├── btrfs.go │ │ │ │ ├── dummy_unsupported.go │ │ │ │ └── version.go │ │ │ │ ├── counter.go │ │ │ │ ├── driver.go │ │ │ │ ├── driver_freebsd.go │ │ │ │ ├── driver_linux.go │ │ │ │ ├── driver_unsupported.go │ │ │ │ ├── driver_windows.go │ │ │ │ ├── errors.go │ │ │ │ ├── fsdiff.go │ │ │ │ ├── plugin.go │ │ │ │ └── proxy.go │ │ ├── errdefs │ │ │ ├── defs.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── http_helpers.go │ │ │ └── is.go │ │ ├── oci │ │ │ ├── caps │ │ │ │ ├── defaults.go │ │ │ │ └── utils.go │ │ │ ├── defaults.go │ │ │ ├── devices_linux.go │ │ │ ├── devices_unsupported.go │ │ │ ├── namespaces.go │ │ │ └── oci.go │ │ ├── pkg │ │ │ ├── archive │ │ │ │ ├── README.md │ │ │ │ ├── archive.go │ │ │ │ ├── archive_linux.go │ │ │ │ ├── archive_other.go │ │ │ │ ├── archive_unix.go │ │ │ │ ├── archive_windows.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 │ │ │ ├── containerfs │ │ │ │ ├── archiver.go │ │ │ │ ├── containerfs.go │ │ │ │ ├── containerfs_unix.go │ │ │ │ └── containerfs_windows.go │ │ │ ├── fileutils │ │ │ │ ├── fileutils.go │ │ │ │ ├── fileutils_darwin.go │ │ │ │ ├── fileutils_unix.go │ │ │ │ └── fileutils_windows.go │ │ │ ├── homedir │ │ │ │ ├── homedir_linux.go │ │ │ │ ├── homedir_others.go │ │ │ │ ├── homedir_unix.go │ │ │ │ └── homedir_windows.go │ │ │ ├── idtools │ │ │ │ ├── idtools.go │ │ │ │ ├── idtools_unix.go │ │ │ │ ├── idtools_windows.go │ │ │ │ ├── usergroupadd_linux.go │ │ │ │ ├── usergroupadd_unsupported.go │ │ │ │ └── utils_unix.go │ │ │ ├── ioutils │ │ │ │ ├── buffer.go │ │ │ │ ├── bytespipe.go │ │ │ │ ├── fswriters.go │ │ │ │ ├── readers.go │ │ │ │ ├── temp_unix.go │ │ │ │ ├── temp_windows.go │ │ │ │ ├── writeflusher.go │ │ │ │ └── writers.go │ │ │ ├── jsonmessage │ │ │ │ └── jsonmessage.go │ │ │ ├── longpath │ │ │ │ └── longpath.go │ │ │ ├── parsers │ │ │ │ └── parsers.go │ │ │ ├── plugingetter │ │ │ │ └── getter.go │ │ │ ├── plugins │ │ │ │ ├── client.go │ │ │ │ ├── discovery.go │ │ │ │ ├── discovery_unix.go │ │ │ │ ├── discovery_windows.go │ │ │ │ ├── errors.go │ │ │ │ ├── plugins.go │ │ │ │ ├── plugins_unix.go │ │ │ │ ├── plugins_windows.go │ │ │ │ └── transport │ │ │ │ │ ├── http.go │ │ │ │ │ └── transport.go │ │ │ ├── pools │ │ │ │ └── pools.go │ │ │ ├── reexec │ │ │ │ ├── README.md │ │ │ │ ├── command_linux.go │ │ │ │ ├── command_unix.go │ │ │ │ ├── command_unsupported.go │ │ │ │ ├── command_windows.go │ │ │ │ └── reexec.go │ │ │ ├── stringid │ │ │ │ ├── README.md │ │ │ │ └── stringid.go │ │ │ └── system │ │ │ │ ├── args_windows.go │ │ │ │ ├── chtimes.go │ │ │ │ ├── chtimes_nowindows.go │ │ │ │ ├── chtimes_windows.go │ │ │ │ ├── errors.go │ │ │ │ ├── exitcode.go │ │ │ │ ├── filesys_unix.go │ │ │ │ ├── filesys_windows.go │ │ │ │ ├── init.go │ │ │ │ ├── init_windows.go │ │ │ │ ├── lcow.go │ │ │ │ ├── lcow_unsupported.go │ │ │ │ ├── lstat_unix.go │ │ │ │ ├── lstat_windows.go │ │ │ │ ├── meminfo.go │ │ │ │ ├── meminfo_linux.go │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ ├── meminfo_windows.go │ │ │ │ ├── mknod.go │ │ │ │ ├── mknod_freebsd.go │ │ │ │ ├── mknod_unix.go │ │ │ │ ├── mknod_windows.go │ │ │ │ ├── path.go │ │ │ │ ├── path_unix.go │ │ │ │ ├── path_windows.go │ │ │ │ ├── process_unix.go │ │ │ │ ├── process_windows.go │ │ │ │ ├── rm.go │ │ │ │ ├── rm_windows.go │ │ │ │ ├── stat_bsd.go │ │ │ │ ├── stat_darwin.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_unix.go │ │ │ │ ├── utimes_unsupported.go │ │ │ │ ├── xattrs_linux.go │ │ │ │ └── xattrs_unsupported.go │ │ ├── plugin │ │ │ └── v2 │ │ │ │ ├── plugin.go │ │ │ │ ├── plugin_linux.go │ │ │ │ ├── plugin_unsupported.go │ │ │ │ └── settable.go │ │ ├── registry │ │ │ ├── auth.go │ │ │ ├── config.go │ │ │ ├── config_unix.go │ │ │ ├── config_windows.go │ │ │ ├── endpoint_v1.go │ │ │ ├── errors.go │ │ │ ├── registry.go │ │ │ ├── service.go │ │ │ ├── service_v2.go │ │ │ ├── session.go │ │ │ └── types.go │ │ └── rootless │ │ │ └── rootless.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 ├── donovanhide │ └── eventsource │ │ ├── README.md │ │ ├── decoder.go │ │ ├── encoder.go │ │ ├── interface.go │ │ ├── normalise.go │ │ ├── repository.go │ │ ├── server.go │ │ └── stream.go ├── educlos │ └── testrail │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── case.go │ │ ├── caseType.go │ │ ├── casefield.go │ │ ├── client.go │ │ ├── configuration.go │ │ ├── custom_types.go │ │ ├── custom_types.tmpl │ │ ├── custom_types_generate.go │ │ ├── milestone.go │ │ ├── plan.go │ │ ├── priority.go │ │ ├── project.go │ │ ├── result.go │ │ ├── resultfield.go │ │ ├── run.go │ │ ├── section.go │ │ ├── status.go │ │ ├── suite.go │ │ ├── test.go │ │ ├── timespan.go │ │ ├── timestamp.go │ │ ├── user.go │ │ └── utils.go ├── emicklei │ └── go-restful │ │ └── v3 │ │ ├── .gitignore │ │ ├── .goconvey │ │ ├── .travis.yml │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── Srcfile │ │ ├── bench_test.sh │ │ ├── compress.go │ │ ├── compressor_cache.go │ │ ├── compressor_pools.go │ │ ├── compressors.go │ │ ├── constants.go │ │ ├── container.go │ │ ├── cors_filter.go │ │ ├── coverage.sh │ │ ├── curly.go │ │ ├── curly_route.go │ │ ├── custom_verb.go │ │ ├── doc.go │ │ ├── entity_accessors.go │ │ ├── extensions.go │ │ ├── filter.go │ │ ├── filter_adapter.go │ │ ├── json.go │ │ ├── jsoniter.go │ │ ├── jsr311.go │ │ ├── log │ │ └── log.go │ │ ├── logger.go │ │ ├── mime.go │ │ ├── options_filter.go │ │ ├── parameter.go │ │ ├── path_expression.go │ │ ├── path_processor.go │ │ ├── request.go │ │ ├── response.go │ │ ├── route.go │ │ ├── route_builder.go │ │ ├── route_reader.go │ │ ├── router.go │ │ ├── service_error.go │ │ ├── web_service.go │ │ └── web_service_container.go ├── evanphx │ └── json-patch │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ ├── patch.go │ │ └── v5 │ │ ├── LICENSE │ │ ├── errors.go │ │ ├── merge.go │ │ └── patch.go ├── exponent-io │ └── jsonpath │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decoder.go │ │ ├── path.go │ │ └── pathaction.go ├── fatih │ └── color │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ ├── color_windows.go │ │ └── doc.go ├── felixge │ └── httpsnoop │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go ├── fsnotify │ └── fsnotify │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── mkdoc.zsh │ │ ├── system_bsd.go │ │ └── system_darwin.go ├── ghodss │ └── yaml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fields.go │ │ ├── yaml.go │ │ └── yaml_go110.go ├── go-errors │ └── errors │ │ ├── .travis.yml │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── error.go │ │ ├── error_1_13.go │ │ ├── error_backward.go │ │ ├── parse_panic.go │ │ └── stackframe.go ├── go-gorp │ └── gorp │ │ └── v3 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── column.go │ │ ├── db.go │ │ ├── dialect.go │ │ ├── dialect_mysql.go │ │ ├── dialect_oracle.go │ │ ├── dialect_postgres.go │ │ ├── dialect_snowflake.go │ │ ├── dialect_sqlite.go │ │ ├── dialect_sqlserver.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── gorp.go │ │ ├── hooks.go │ │ ├── index.go │ │ ├── lockerror.go │ │ ├── logging.go │ │ ├── nulltypes.go │ │ ├── select.go │ │ ├── table.go │ │ ├── table_bindings.go │ │ ├── test_all.sh │ │ └── transaction.go ├── go-jose │ └── go-jose │ │ └── v3 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── BUG-BOUNTY.md │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asymmetric.go │ │ ├── cipher │ │ ├── cbc_hmac.go │ │ ├── concat_kdf.go │ │ ├── ecdh_es.go │ │ └── key_wrap.go │ │ ├── crypter.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── encode.go │ │ ├── indent.go │ │ ├── scanner.go │ │ ├── stream.go │ │ └── tags.go │ │ ├── jwe.go │ │ ├── jwk.go │ │ ├── jws.go │ │ ├── jwt │ │ ├── builder.go │ │ ├── claims.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── jwt.go │ │ └── validation.go │ │ ├── opaque.go │ │ ├── shared.go │ │ ├── signing.go │ │ └── symmetric.go ├── go-kit │ ├── kit │ │ ├── LICENSE │ │ └── log │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── json_logger.go │ │ │ ├── log.go │ │ │ ├── logfmt_logger.go │ │ │ ├── nop_logger.go │ │ │ ├── stdlib.go │ │ │ ├── sync.go │ │ │ └── value.go │ └── log │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── json_logger.go │ │ ├── level │ │ ├── doc.go │ │ └── level.go │ │ ├── log.go │ │ ├── logfmt_logger.go │ │ ├── nop_logger.go │ │ ├── staticcheck.conf │ │ ├── stdlib.go │ │ ├── sync.go │ │ └── value.go ├── go-logfmt │ └── logfmt │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── jsonstring.go ├── go-logr │ ├── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── context.go │ │ ├── context_noslog.go │ │ ├── context_slog.go │ │ ├── discard.go │ │ ├── funcr │ │ │ ├── funcr.go │ │ │ └── slogsink.go │ │ ├── logr.go │ │ ├── sloghandler.go │ │ ├── slogr.go │ │ └── slogsink.go │ └── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go ├── go-openapi │ ├── inflect │ │ ├── .hgignore │ │ ├── LICENCE │ │ ├── README │ │ └── inflect.go │ ├── jsonpointer │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── pointer.go │ ├── jsonreference │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ │ └── normalize_url.go │ │ └── reference.go │ └── swag │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── convert.go │ │ ├── convert_types.go │ │ ├── doc.go │ │ ├── file.go │ │ ├── json.go │ │ ├── loading.go │ │ ├── name_lexem.go │ │ ├── net.go │ │ ├── path.go │ │ ├── post_go18.go │ │ ├── post_go19.go │ │ ├── pre_go18.go │ │ ├── pre_go19.go │ │ ├── split.go │ │ ├── util.go │ │ └── yaml.go ├── go-task │ └── slim-sprig │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── Taskfile.yml │ │ ├── crypto.go │ │ ├── date.go │ │ ├── defaults.go │ │ ├── dict.go │ │ ├── doc.go │ │ ├── functions.go │ │ ├── list.go │ │ ├── network.go │ │ ├── numeric.go │ │ ├── reflect.go │ │ ├── regex.go │ │ ├── strings.go │ │ └── url.go ├── gobuffalo │ ├── envy │ │ ├── .env │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── SHOULDERS.md │ │ ├── env │ │ ├── envy.go │ │ └── version.go │ ├── packd │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SHOULDERS.md │ │ ├── file.go │ │ ├── file_info.go │ │ ├── interfaces.go │ │ ├── internal │ │ │ └── takeon │ │ │ │ └── github.com │ │ │ │ └── markbates │ │ │ │ └── errx │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── SHOULDERS.md │ │ │ │ ├── azure-pipelines.yml │ │ │ │ ├── azure-tests.yml │ │ │ │ ├── errx.go │ │ │ │ └── version.go │ │ ├── map.go │ │ ├── memory_box.go │ │ ├── skip_walker.go │ │ └── version.go │ └── packr │ │ ├── .codeclimate.yml │ │ ├── .gitignore │ │ ├── .gometalinter.json │ │ ├── .goreleaser.yml │ │ ├── .goreleaser.yml.plush │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── SHOULDERS.md │ │ ├── azure-pipelines.yml │ │ ├── azure-tests.yml │ │ ├── box.go │ │ ├── env.go │ │ ├── file.go │ │ ├── packr.go │ │ ├── version.go │ │ └── walk.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 ├── godbus │ └── dbus │ │ └── v5 │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── auth.go │ │ ├── auth_anonymous.go │ │ ├── auth_external.go │ │ ├── auth_sha1.go │ │ ├── call.go │ │ ├── conn.go │ │ ├── conn_darwin.go │ │ ├── conn_other.go │ │ ├── conn_unix.go │ │ ├── conn_windows.go │ │ ├── dbus.go │ │ ├── decoder.go │ │ ├── default_handler.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── escape.go │ │ ├── export.go │ │ ├── homedir.go │ │ ├── match.go │ │ ├── message.go │ │ ├── object.go │ │ ├── sequence.go │ │ ├── sequential_handler.go │ │ ├── server_interfaces.go │ │ ├── sig.go │ │ ├── transport_darwin.go │ │ ├── transport_generic.go │ │ ├── transport_nonce_tcp.go │ │ ├── transport_tcp.go │ │ ├── transport_unix.go │ │ ├── transport_unixcred_dragonfly.go │ │ ├── transport_unixcred_freebsd.go │ │ ├── transport_unixcred_linux.go │ │ ├── transport_unixcred_netbsd.go │ │ ├── transport_unixcred_openbsd.go │ │ ├── transport_zos.go │ │ ├── variant.go │ │ ├── variant_lexer.go │ │ └── variant_parser.go ├── gofrs │ └── flock │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── flock.go │ │ ├── flock_aix.go │ │ ├── flock_unix.go │ │ ├── flock_winapi.go │ │ └── flock_windows.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── 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 │ │ └── sortkeys │ │ └── sortkeys.go ├── golang-jwt │ └── jwt │ │ ├── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── ed25519.go │ │ ├── ed25519_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── parser_option.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ ├── staticcheck.conf │ │ ├── token.go │ │ └── types.go │ │ └── v5 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── ed25519.go │ │ ├── ed25519_utils.go │ │ ├── errors.go │ │ ├── errors_go1_20.go │ │ ├── errors_go_other.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── parser_option.go │ │ ├── registered_claims.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ ├── staticcheck.conf │ │ ├── token.go │ │ ├── token_option.go │ │ ├── types.go │ │ └── validator.go ├── golang │ ├── glog │ │ ├── LICENSE │ │ ├── README.md │ │ ├── glog.go │ │ ├── glog_file.go │ │ ├── glog_file_linux.go │ │ ├── glog_file_other.go │ │ ├── glog_file_posix.go │ │ ├── glog_flags.go │ │ └── internal │ │ │ ├── logsink │ │ │ ├── logsink.go │ │ │ └── logsink_fatal.go │ │ │ └── stackdump │ │ │ └── stackdump.go │ ├── groupcache │ │ ├── LICENSE │ │ └── lru │ │ │ └── lru.go │ ├── mock │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── gomock │ │ │ ├── call.go │ │ │ ├── callset.go │ │ │ ├── controller.go │ │ │ └── matchers.go │ │ └── mockgen │ │ │ └── model │ │ │ └── model.go │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── descriptor │ │ └── descriptor.go │ │ ├── jsonpb │ │ ├── decode.go │ │ ├── encode.go │ │ └── json.go │ │ ├── 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 │ │ ├── timestamp.go │ │ ├── timestamp │ │ └── timestamp.pb.go │ │ └── wrappers │ │ └── wrappers.pb.go ├── google │ ├── btree │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ └── btree_generic.go │ ├── cel-go │ │ ├── LICENSE │ │ ├── cel │ │ │ ├── BUILD.bazel │ │ │ ├── cel.go │ │ │ ├── decls.go │ │ │ ├── env.go │ │ │ ├── folding.go │ │ │ ├── inlining.go │ │ │ ├── io.go │ │ │ ├── library.go │ │ │ ├── macro.go │ │ │ ├── optimizer.go │ │ │ ├── options.go │ │ │ ├── program.go │ │ │ └── validator.go │ │ ├── checker │ │ │ ├── BUILD.bazel │ │ │ ├── checker.go │ │ │ ├── cost.go │ │ │ ├── decls │ │ │ │ ├── BUILD.bazel │ │ │ │ └── decls.go │ │ │ ├── env.go │ │ │ ├── errors.go │ │ │ ├── format.go │ │ │ ├── mapping.go │ │ │ ├── options.go │ │ │ ├── printer.go │ │ │ ├── scopes.go │ │ │ ├── standard.go │ │ │ └── types.go │ │ ├── common │ │ │ ├── BUILD.bazel │ │ │ ├── ast │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── ast.go │ │ │ │ ├── conversion.go │ │ │ │ ├── expr.go │ │ │ │ ├── factory.go │ │ │ │ └── navigable.go │ │ │ ├── containers │ │ │ │ ├── BUILD.bazel │ │ │ │ └── container.go │ │ │ ├── cost.go │ │ │ ├── debug │ │ │ │ ├── BUILD.bazel │ │ │ │ └── debug.go │ │ │ ├── decls │ │ │ │ ├── BUILD.bazel │ │ │ │ └── decls.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── errors.go │ │ │ ├── functions │ │ │ │ ├── BUILD.bazel │ │ │ │ └── functions.go │ │ │ ├── location.go │ │ │ ├── operators │ │ │ │ ├── BUILD.bazel │ │ │ │ └── operators.go │ │ │ ├── overloads │ │ │ │ ├── BUILD.bazel │ │ │ │ └── overloads.go │ │ │ ├── runes │ │ │ │ ├── BUILD.bazel │ │ │ │ └── buffer.go │ │ │ ├── source.go │ │ │ ├── stdlib │ │ │ │ ├── BUILD.bazel │ │ │ │ └── standard.go │ │ │ └── types │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── any_value.go │ │ │ │ ├── bool.go │ │ │ │ ├── bytes.go │ │ │ │ ├── compare.go │ │ │ │ ├── doc.go │ │ │ │ ├── double.go │ │ │ │ ├── duration.go │ │ │ │ ├── err.go │ │ │ │ ├── int.go │ │ │ │ ├── iterator.go │ │ │ │ ├── json_value.go │ │ │ │ ├── list.go │ │ │ │ ├── map.go │ │ │ │ ├── null.go │ │ │ │ ├── object.go │ │ │ │ ├── optional.go │ │ │ │ ├── overflow.go │ │ │ │ ├── pb │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── checked.go │ │ │ │ ├── enum.go │ │ │ │ ├── equal.go │ │ │ │ ├── file.go │ │ │ │ ├── pb.go │ │ │ │ └── type.go │ │ │ │ ├── provider.go │ │ │ │ ├── ref │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── provider.go │ │ │ │ └── reference.go │ │ │ │ ├── string.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── traits │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── comparer.go │ │ │ │ ├── container.go │ │ │ │ ├── field_tester.go │ │ │ │ ├── indexer.go │ │ │ │ ├── iterator.go │ │ │ │ ├── lister.go │ │ │ │ ├── mapper.go │ │ │ │ ├── matcher.go │ │ │ │ ├── math.go │ │ │ │ ├── receiver.go │ │ │ │ ├── sizer.go │ │ │ │ ├── traits.go │ │ │ │ └── zeroer.go │ │ │ │ ├── types.go │ │ │ │ ├── uint.go │ │ │ │ ├── unknown.go │ │ │ │ └── util.go │ │ ├── interpreter │ │ │ ├── BUILD.bazel │ │ │ ├── activation.go │ │ │ ├── attribute_patterns.go │ │ │ ├── attributes.go │ │ │ ├── decorators.go │ │ │ ├── dispatcher.go │ │ │ ├── evalstate.go │ │ │ ├── interpretable.go │ │ │ ├── interpreter.go │ │ │ ├── optimizations.go │ │ │ ├── planner.go │ │ │ ├── prune.go │ │ │ └── runtimecost.go │ │ └── parser │ │ │ ├── BUILD.bazel │ │ │ ├── errors.go │ │ │ ├── gen │ │ │ ├── BUILD.bazel │ │ │ ├── CEL.g4 │ │ │ ├── CEL.interp │ │ │ ├── CEL.tokens │ │ │ ├── CELLexer.interp │ │ │ ├── CELLexer.tokens │ │ │ ├── cel_base_listener.go │ │ │ ├── cel_base_visitor.go │ │ │ ├── cel_lexer.go │ │ │ ├── cel_listener.go │ │ │ ├── cel_parser.go │ │ │ ├── cel_visitor.go │ │ │ ├── doc.go │ │ │ └── generate.sh │ │ │ ├── helper.go │ │ │ ├── input.go │ │ │ ├── macro.go │ │ │ ├── options.go │ │ │ ├── parser.go │ │ │ ├── unescape.go │ │ │ └── unparser.go │ ├── gnostic │ │ ├── LICENSE │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extensions.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ ├── extensions │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ └── extensions.go │ │ ├── jsonschema │ │ │ ├── README.md │ │ │ ├── base.go │ │ │ ├── display.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── reader.go │ │ │ ├── schema.json │ │ │ └── writer.go │ │ ├── openapiv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ ├── document.go │ │ │ └── openapi-2.0.json │ │ └── openapiv3 │ │ │ ├── OpenAPIv3.go │ │ │ ├── OpenAPIv3.pb.go │ │ │ ├── OpenAPIv3.proto │ │ │ ├── README.md │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ ├── document.go │ │ │ ├── openapi-3.0.json │ │ │ └── openapi-3.1.json │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ ├── go-containerregistry │ │ ├── LICENSE │ │ └── pkg │ │ │ └── name │ │ │ ├── README.md │ │ │ ├── check.go │ │ │ ├── digest.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── options.go │ │ │ ├── ref.go │ │ │ ├── registry.go │ │ │ ├── repository.go │ │ │ └── tag.go │ ├── go-querystring │ │ ├── LICENSE │ │ └── query │ │ │ └── encode.go │ ├── gofuzz │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bytesource │ │ │ └── bytesource.go │ │ ├── doc.go │ │ └── fuzz.go │ ├── pprof │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── profile │ │ │ ├── encode.go │ │ │ ├── filter.go │ │ │ ├── index.go │ │ │ ├── legacy_java_profile.go │ │ │ ├── legacy_profile.go │ │ │ ├── merge.go │ │ │ ├── profile.go │ │ │ ├── proto.go │ │ │ └── prune.go │ ├── s2a-go │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── fallback │ │ │ └── s2a_fallback.go │ │ ├── internal │ │ │ ├── authinfo │ │ │ │ └── authinfo.go │ │ │ ├── handshaker │ │ │ │ ├── handshaker.go │ │ │ │ └── service │ │ │ │ │ └── service.go │ │ │ ├── proto │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ ├── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── common_go_proto │ │ │ │ │ └── common.pb.go │ │ │ │ │ ├── s2a_context_go_proto │ │ │ │ │ └── s2a_context.pb.go │ │ │ │ │ └── s2a_go_proto │ │ │ │ │ ├── s2a.pb.go │ │ │ │ │ └── s2a_grpc.pb.go │ │ │ ├── record │ │ │ │ ├── internal │ │ │ │ │ ├── aeadcrypter │ │ │ │ │ │ ├── aeadcrypter.go │ │ │ │ │ │ ├── aesgcm.go │ │ │ │ │ │ ├── chachapoly.go │ │ │ │ │ │ └── common.go │ │ │ │ │ └── halfconn │ │ │ │ │ │ ├── ciphersuite.go │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ ├── expander.go │ │ │ │ │ │ └── halfconn.go │ │ │ │ ├── record.go │ │ │ │ └── ticketsender.go │ │ │ ├── tokenmanager │ │ │ │ └── tokenmanager.go │ │ │ └── v2 │ │ │ │ ├── README.md │ │ │ │ ├── certverifier │ │ │ │ ├── certverifier.go │ │ │ │ └── testdata │ │ │ │ │ ├── client_intermediate_cert.der │ │ │ │ │ ├── client_leaf_cert.der │ │ │ │ │ ├── client_root_cert.der │ │ │ │ │ ├── server_intermediate_cert.der │ │ │ │ │ ├── server_leaf_cert.der │ │ │ │ │ └── server_root_cert.der │ │ │ │ ├── remotesigner │ │ │ │ ├── remotesigner.go │ │ │ │ └── testdata │ │ │ │ │ ├── client_cert.der │ │ │ │ │ ├── client_cert.pem │ │ │ │ │ ├── client_key.pem │ │ │ │ │ ├── server_cert.der │ │ │ │ │ ├── server_cert.pem │ │ │ │ │ └── server_key.pem │ │ │ │ ├── s2av2.go │ │ │ │ ├── testdata │ │ │ │ ├── client_cert.pem │ │ │ │ ├── client_key.pem │ │ │ │ ├── server_cert.pem │ │ │ │ └── server_key.pem │ │ │ │ └── tlsconfigstore │ │ │ │ ├── testdata │ │ │ │ ├── client_cert.pem │ │ │ │ ├── client_key.pem │ │ │ │ ├── server_cert.pem │ │ │ │ └── server_key.pem │ │ │ │ └── tlsconfigstore.go │ │ ├── retry │ │ │ └── retry.go │ │ ├── s2a.go │ │ ├── s2a_options.go │ │ ├── s2a_utils.go │ │ ├── stream │ │ │ └── s2a_stream.go │ │ └── testdata │ │ │ ├── client_cert.pem │ │ │ ├── client_key.pem │ │ │ ├── mds_client_cert.pem │ │ │ ├── mds_client_key.pem │ │ │ ├── mds_root_cert.pem │ │ │ ├── mds_server_cert.pem │ │ │ ├── mds_server_key.pem │ │ │ ├── self_signed_cert.pem │ │ │ ├── self_signed_key.pem │ │ │ ├── server_cert.pem │ │ │ └── server_key.pem │ ├── shlex │ │ ├── COPYING │ │ ├── README │ │ └── shlex.go │ ├── uuid │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go │ └── wire │ │ ├── .codecov.yml │ │ ├── .contributebot │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ └── wire.go ├── googleapis │ ├── enterprise-certificate-proxy │ │ ├── LICENSE │ │ └── client │ │ │ ├── client.go │ │ │ └── util │ │ │ └── util.go │ └── gax-go │ │ └── v2 │ │ ├── .release-please-manifest.json │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── apierror │ │ ├── apierror.go │ │ └── internal │ │ │ └── proto │ │ │ ├── README.md │ │ │ ├── custom_error.pb.go │ │ │ ├── custom_error.proto │ │ │ ├── error.pb.go │ │ │ └── error.proto │ │ ├── call_option.go │ │ ├── callctx │ │ └── callctx.go │ │ ├── content_type.go │ │ ├── gax.go │ │ ├── header.go │ │ ├── internal │ │ └── version.go │ │ ├── invoke.go │ │ ├── proto_json_stream.go │ │ └── release-please-config.json ├── gorilla │ ├── 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 │ │ ├── compression.go │ │ ├── conn.go │ │ ├── doc.go │ │ ├── join.go │ │ ├── json.go │ │ ├── mask.go │ │ ├── mask_safe.go │ │ ├── prepared.go │ │ ├── proxy.go │ │ ├── server.go │ │ ├── tls_handshake.go │ │ ├── tls_handshake_116.go │ │ ├── util.go │ │ └── x_net_proxy.go ├── gosuri │ └── uitable │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── table.go │ │ └── util │ │ ├── strutil │ │ └── strutil.go │ │ └── wordwrap │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── wordwrap.go ├── gregjones │ └── httpcache │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── httpcache.go ├── grpc-ecosystem │ ├── go-grpc-middleware │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auth │ │ │ ├── auth.go │ │ │ ├── doc.go │ │ │ └── metadata.go │ │ ├── chain.go │ │ ├── doc.go │ │ ├── makefile │ │ ├── slack.png │ │ ├── util │ │ │ └── metautils │ │ │ │ ├── doc.go │ │ │ │ └── nicemd.go │ │ └── wrappers.go │ ├── go-grpc-prometheus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_metrics.go │ │ ├── client_reporter.go │ │ ├── makefile │ │ ├── metric_options.go │ │ ├── server.go │ │ ├── server_metrics.go │ │ ├── server_reporter.go │ │ └── util.go │ └── grpc-gateway │ │ ├── LICENSE.txt │ │ ├── internal │ │ ├── BUILD.bazel │ │ ├── errors.pb.go │ │ └── errors.proto │ │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── context.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fieldmask.go │ │ ├── handler.go │ │ ├── marshal_httpbodyproto.go │ │ ├── marshal_json.go │ │ ├── marshal_jsonpb.go │ │ ├── marshal_proto.go │ │ ├── marshaler.go │ │ ├── marshaler_registry.go │ │ ├── mux.go │ │ ├── pattern.go │ │ ├── proto2_convert.go │ │ ├── proto_errors.go │ │ └── query.go │ │ └── utilities │ │ ├── BUILD.bazel │ │ ├── doc.go │ │ ├── pattern.go │ │ ├── readerfactory.go │ │ └── trie.go ├── hashicorp │ ├── errwrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── errwrap.go │ ├── go-cleanhttp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cleanhttp.go │ │ ├── doc.go │ │ └── handlers.go │ ├── go-immutable-radix │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── edges.go │ │ ├── iradix.go │ │ ├── iter.go │ │ ├── node.go │ │ ├── raw_iter.go │ │ └── reverse_iter.go │ ├── go-msgpack │ │ ├── LICENSE │ │ └── codec │ │ │ ├── binc.go │ │ │ ├── build.sh │ │ │ ├── cbor.go │ │ │ ├── codecgen.go │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── fast-path.generated.go │ │ │ ├── fast-path.go.tmpl │ │ │ ├── fast-path.not.go │ │ │ ├── gen-dec-array.go.tmpl │ │ │ ├── gen-dec-map.go.tmpl │ │ │ ├── gen-enc-chan.go.tmpl │ │ │ ├── gen-helper.generated.go │ │ │ ├── gen-helper.go.tmpl │ │ │ ├── gen.generated.go │ │ │ ├── gen.go │ │ │ ├── goversion_arrayof_gte_go15.go │ │ │ ├── goversion_arrayof_lt_go15.go │ │ │ ├── goversion_makemap_gte_go19.go │ │ │ ├── goversion_makemap_lt_go19.go │ │ │ ├── goversion_unexportedembeddedptr_gte_go110.go │ │ │ ├── goversion_unexportedembeddedptr_lt_go110.go │ │ │ ├── goversion_unsupported_lt_go14.go │ │ │ ├── goversion_vendor_eq_go15.go │ │ │ ├── goversion_vendor_eq_go16.go │ │ │ ├── goversion_vendor_gte_go17.go │ │ │ ├── goversion_vendor_lt_go15.go │ │ │ ├── helper.go │ │ │ ├── helper_internal.go │ │ │ ├── helper_not_unsafe.go │ │ │ ├── helper_unsafe.go │ │ │ ├── json.go │ │ │ ├── mammoth-test.go.tmpl │ │ │ ├── mammoth2-test.go.tmpl │ │ │ ├── msgpack.go │ │ │ ├── rpc.go │ │ │ ├── simple.go │ │ │ ├── test-cbor-goldens.json │ │ │ └── test.py │ ├── go-multierror │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── group.go │ │ ├── multierror.go │ │ ├── prefix.go │ │ └── sort.go │ ├── go-retryablehttp │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── client.go │ │ └── roundtripper.go │ ├── go-rootcerts │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── rootcerts.go │ │ ├── rootcerts_base.go │ │ └── rootcerts_darwin.go │ ├── go-secure-stdlib │ │ ├── parseutil │ │ │ ├── LICENSE │ │ │ ├── parsepath.go │ │ │ └── parseutil.go │ │ └── strutil │ │ │ ├── LICENSE │ │ │ └── strutil.go │ ├── go-sockaddr │ │ ├── .gitignore │ │ ├── GNUmakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── ifaddr.go │ │ ├── ifaddrs.go │ │ ├── ifattr.go │ │ ├── ipaddr.go │ │ ├── ipaddrs.go │ │ ├── ipv4addr.go │ │ ├── ipv6addr.go │ │ ├── rfc.go │ │ ├── route_info.go │ │ ├── route_info_android.go │ │ ├── route_info_bsd.go │ │ ├── route_info_default.go │ │ ├── route_info_linux.go │ │ ├── route_info_solaris.go │ │ ├── route_info_windows.go │ │ ├── sockaddr.go │ │ ├── sockaddrs.go │ │ └── unixsock.go │ ├── go-version │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constraint.go │ │ ├── version.go │ │ └── version_collection.go │ ├── golang-lru │ │ ├── LICENSE │ │ └── 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 │ │ │ ├── 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 │ ├── logutils │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── level.go │ ├── memberlist │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── alive_delegate.go │ │ ├── awareness.go │ │ ├── broadcast.go │ │ ├── config.go │ │ ├── conflict_delegate.go │ │ ├── delegate.go │ │ ├── event_delegate.go │ │ ├── keyring.go │ │ ├── label.go │ │ ├── logging.go │ │ ├── memberlist.go │ │ ├── merge_delegate.go │ │ ├── mock_transport.go │ │ ├── net.go │ │ ├── net_transport.go │ │ ├── peeked_conn.go │ │ ├── ping_delegate.go │ │ ├── queue.go │ │ ├── security.go │ │ ├── state.go │ │ ├── suspicion.go │ │ ├── tag.sh │ │ ├── todo.md │ │ ├── transport.go │ │ └── util.go │ └── vault │ │ └── api │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auth.go │ │ ├── auth_token.go │ │ ├── client.go │ │ ├── help.go │ │ ├── kv.go │ │ ├── kv_v1.go │ │ ├── kv_v2.go │ │ ├── lifetime_watcher.go │ │ ├── logical.go │ │ ├── output_policy.go │ │ ├── output_string.go │ │ ├── plugin_helpers.go │ │ ├── plugin_runtime_types.go │ │ ├── plugin_types.go │ │ ├── replication_status.go │ │ ├── request.go │ │ ├── response.go │ │ ├── secret.go │ │ ├── ssh.go │ │ ├── ssh_agent.go │ │ ├── sudo_paths.go │ │ ├── sys.go │ │ ├── sys_audit.go │ │ ├── sys_auth.go │ │ ├── sys_capabilities.go │ │ ├── sys_config_cors.go │ │ ├── sys_generate_root.go │ │ ├── sys_hastatus.go │ │ ├── sys_health.go │ │ ├── sys_init.go │ │ ├── sys_leader.go │ │ ├── sys_leases.go │ │ ├── sys_mfa.go │ │ ├── sys_monitor.go │ │ ├── sys_mounts.go │ │ ├── sys_plugins.go │ │ ├── sys_plugins_runtimes.go │ │ ├── sys_policy.go │ │ ├── sys_raft.go │ │ ├── sys_rekey.go │ │ ├── sys_rotate.go │ │ ├── sys_seal.go │ │ └── sys_stepdown.go ├── heptio │ ├── ark │ │ ├── LICENSE │ │ └── pkg │ │ │ └── discovery │ │ │ └── helper.go │ └── velero │ │ ├── LICENSE │ │ └── third_party │ │ └── kubernetes │ │ └── pkg │ │ └── kubectl │ │ └── cmd │ │ └── util │ │ └── shortcut_expander.go ├── huandu │ └── xstrings │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── common.go │ │ ├── convert.go │ │ ├── count.go │ │ ├── doc.go │ │ ├── format.go │ │ ├── manipulate.go │ │ ├── stringbuilder.go │ │ ├── stringbuilder_go110.go │ │ └── translate.go ├── imdario │ └── mergo │ │ ├── .deepsource.toml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ └── mergo.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go ├── jmespath │ └── go-jmespath │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── api.go │ │ ├── astnodetype_string.go │ │ ├── functions.go │ │ ├── interpreter.go │ │ ├── lexer.go │ │ ├── parser.go │ │ ├── toktype_string.go │ │ └── util.go ├── jmoiron │ └── sqlx │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bind.go │ │ ├── doc.go │ │ ├── named.go │ │ ├── named_context.go │ │ ├── reflectx │ │ ├── README.md │ │ └── reflect.go │ │ ├── sqlx.go │ │ └── sqlx_context.go ├── joho │ └── godotenv │ │ ├── .gitignore │ │ ├── LICENCE │ │ ├── README.md │ │ ├── godotenv.go │ │ └── renovate.json ├── josharian │ └── intern │ │ ├── README.md │ │ ├── intern.go │ │ └── license.md ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── k8snetworkplumbingwg │ └── network-attachment-definition-client │ │ ├── LICENSE │ │ └── pkg │ │ └── apis │ │ └── k8s.cni.cncf.io │ │ ├── register.go │ │ └── v1 │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go ├── klauspost │ └── compress │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── compressible.go │ │ ├── fse │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── bytereader.go │ │ ├── compress.go │ │ ├── decompress.go │ │ └── fse.go │ │ ├── gen.sh │ │ ├── huff0 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── compress.go │ │ ├── decompress.go │ │ ├── decompress_amd64.go │ │ ├── decompress_amd64.s │ │ ├── decompress_generic.go │ │ └── huff0.go │ │ ├── internal │ │ ├── cpuinfo │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_amd64.go │ │ │ └── cpuinfo_amd64.s │ │ └── snapref │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ │ ├── s2sx.mod │ │ ├── s2sx.sum │ │ └── zstd │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── blockdec.go │ │ ├── blockenc.go │ │ ├── blocktype_string.go │ │ ├── bytebuf.go │ │ ├── bytereader.go │ │ ├── decodeheader.go │ │ ├── decoder.go │ │ ├── decoder_options.go │ │ ├── dict.go │ │ ├── enc_base.go │ │ ├── enc_best.go │ │ ├── enc_better.go │ │ ├── enc_dfast.go │ │ ├── enc_fast.go │ │ ├── encoder.go │ │ ├── encoder_options.go │ │ ├── framedec.go │ │ ├── frameenc.go │ │ ├── fse_decoder.go │ │ ├── fse_decoder_amd64.go │ │ ├── fse_decoder_amd64.s │ │ ├── fse_decoder_generic.go │ │ ├── fse_encoder.go │ │ ├── fse_predefined.go │ │ ├── hash.go │ │ ├── history.go │ │ ├── internal │ │ └── xxhash │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_arm64.s │ │ │ ├── xxhash_asm.go │ │ │ ├── xxhash_other.go │ │ │ └── xxhash_safe.go │ │ ├── matchlen_amd64.go │ │ ├── matchlen_amd64.s │ │ ├── matchlen_generic.go │ │ ├── seqdec.go │ │ ├── seqdec_amd64.go │ │ ├── seqdec_amd64.s │ │ ├── seqdec_generic.go │ │ ├── seqenc.go │ │ ├── snappy.go │ │ ├── zip.go │ │ └── zstd.go ├── kubernetes-csi │ └── external-snapshotter │ │ └── client │ │ ├── v4 │ │ ├── LICENSE │ │ ├── apis │ │ │ └── volumesnapshot │ │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── clientset │ │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── volumesnapshot │ │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── volumesnapshot.go │ │ │ ├── volumesnapshot_client.go │ │ │ ├── volumesnapshotclass.go │ │ │ └── volumesnapshotcontent.go │ │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── volumesnapshot.go │ │ │ ├── volumesnapshot_client.go │ │ │ ├── volumesnapshotclass.go │ │ │ └── volumesnapshotcontent.go │ │ └── v6 │ │ ├── LICENSE │ │ ├── apis │ │ └── volumesnapshot │ │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── clientset │ │ └── versioned │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── volumesnapshot │ │ └── v1 │ │ ├── doc.go │ │ ├── generated_expansion.go │ │ ├── volumesnapshot.go │ │ ├── volumesnapshot_client.go │ │ ├── volumesnapshotclass.go │ │ └── volumesnapshotcontent.go ├── kubernetes-incubator │ └── external-storage │ │ ├── LICENSE │ │ └── snapshot │ │ ├── LICENSE │ │ └── pkg │ │ ├── apis │ │ └── crd │ │ │ └── v1 │ │ │ ├── deepcopy.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── client │ │ └── client.go │ │ ├── controller │ │ ├── cache │ │ │ ├── actual_state_of_world.go │ │ │ ├── desired_state_of_world.go │ │ │ └── util.go │ │ ├── populator │ │ │ └── desired_state_of_world_populator.go │ │ ├── reconciler │ │ │ └── reconciler.go │ │ ├── snapshot-controller │ │ │ └── snapshot-controller.go │ │ └── snapshotter │ │ │ └── snapshotter.go │ │ └── volume │ │ └── interface.go ├── kubernetes-sigs │ └── aws-ebs-csi-driver │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pkg │ │ ├── cloud │ │ ├── cloud.go │ │ ├── devicemanager │ │ │ ├── allocator.go │ │ │ └── manager.go │ │ └── metadata.go │ │ └── util │ │ └── util.go ├── kylelemons │ └── godebug │ │ ├── LICENSE │ │ ├── diff │ │ └── diff.go │ │ └── pretty │ │ ├── .gitignore │ │ ├── doc.go │ │ ├── public.go │ │ ├── reflect.go │ │ └── structure.go ├── lann │ ├── builder │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── builder.go │ │ ├── reflect.go │ │ └── registry.go │ └── ps │ │ ├── LICENSE │ │ ├── README.md │ │ ├── list.go │ │ ├── map.go │ │ └── profile.sh ├── lib │ └── pq │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── TESTS.md │ │ ├── array.go │ │ ├── buf.go │ │ ├── conn.go │ │ ├── conn_go115.go │ │ ├── conn_go18.go │ │ ├── connector.go │ │ ├── copy.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── krb.go │ │ ├── notice.go │ │ ├── notify.go │ │ ├── oid │ │ ├── doc.go │ │ └── types.go │ │ ├── rows.go │ │ ├── scram │ │ └── scram.go │ │ ├── ssl.go │ │ ├── ssl_permissions.go │ │ ├── ssl_windows.go │ │ ├── url.go │ │ ├── user_other.go │ │ ├── user_posix.go │ │ ├── user_windows.go │ │ └── uuid.go ├── libopenstorage │ ├── autopilot-api │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── apis │ │ │ └── autopilot │ │ │ │ ├── register.go │ │ │ │ └── v1alpha1 │ │ │ │ ├── actionapproval.go │ │ │ │ ├── autopilotrule.go │ │ │ │ ├── constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── client │ │ │ └── clientset │ │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── autopilot │ │ │ └── v1alpha1 │ │ │ ├── actionapproval.go │ │ │ ├── autopilot_client.go │ │ │ ├── autopilotrule.go │ │ │ ├── autopilotruleobject.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ ├── cloudops │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Dockerfile.osd-dev │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cloud_storage_management.go │ │ ├── cloudops.go │ │ ├── codecov.yml │ │ ├── errors.go │ │ ├── tools.go │ │ └── utils.go │ ├── gossip │ │ ├── .travis.yml │ │ ├── Dockerfile.osd-gossip │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── api.go │ │ ├── pkg │ │ │ └── probation │ │ │ │ └── probation.go │ │ ├── proto │ │ │ ├── gossip.go │ │ │ ├── gossip_delegates.go │ │ │ ├── gossip_store.go │ │ │ └── state │ │ │ │ ├── quorum.go │ │ │ │ ├── quorum_failure_domains.go │ │ │ │ ├── state.go │ │ │ │ ├── state_down.go │ │ │ │ ├── state_not_in_quorum.go │ │ │ │ ├── state_suspect_not_in_quorum.go │ │ │ │ └── state_up.go │ │ └── types │ │ │ └── types.go │ ├── openstorage │ │ ├── LICENSE │ │ ├── alerts │ │ │ ├── README.md │ │ │ ├── action.go │ │ │ ├── alerts.go │ │ │ ├── api.go │ │ │ ├── filter.go │ │ │ ├── opt.go │ │ │ └── rule.go │ │ ├── api │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── api.pb.go │ │ │ ├── api.pb.gw.go │ │ │ ├── api.proto │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ ├── cluster │ │ │ │ │ ├── client.go │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── objectstore.go │ │ │ │ │ └── osdconfig.go │ │ │ │ ├── request.go │ │ │ │ └── volume │ │ │ │ │ ├── client.go │ │ │ │ │ └── volume.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── group.go │ │ │ ├── ownership.go │ │ │ ├── server │ │ │ │ └── sdk │ │ │ │ │ ├── alerts.go │ │ │ │ │ ├── bucket_ops.go │ │ │ │ │ ├── cloud_backup.go │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── cluster_domains.go │ │ │ │ │ ├── cluster_pair.go │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── diags.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── filesystem_check.go │ │ │ │ │ ├── filesystem_defrag.go │ │ │ │ │ ├── filesystem_trim.go │ │ │ │ │ ├── identity.go │ │ │ │ │ ├── job.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── objectstore.go │ │ │ │ │ ├── rest_gateway.go │ │ │ │ │ ├── schedule.go │ │ │ │ │ ├── schedule_policy.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── server_interceptors.go │ │ │ │ │ ├── storagepool.go │ │ │ │ │ ├── utils.go │ │ │ │ │ ├── verify_checksum.go │ │ │ │ │ ├── volume.go │ │ │ │ │ ├── volume_migrate.go │ │ │ │ │ ├── volume_node_ops.go │ │ │ │ │ ├── volume_ops.go │ │ │ │ │ ├── volume_snapshot.go │ │ │ │ │ └── watcher.go │ │ │ ├── spec │ │ │ │ └── spec_handler.go │ │ │ └── status.go │ │ ├── bucket │ │ │ └── bucket.go │ │ ├── cluster │ │ │ ├── cluster.go │ │ │ ├── cluster_not_supported.go │ │ │ └── manager │ │ │ │ ├── database.go │ │ │ │ ├── manager.go │ │ │ │ └── pair.go │ │ ├── config │ │ │ └── config.go │ │ ├── objectstore │ │ │ ├── fake.go │ │ │ └── objectstore.go │ │ ├── osdconfig │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── callback.go │ │ │ ├── constants.go │ │ │ ├── helper.go │ │ │ ├── interface.go │ │ │ ├── interface_not_supported.go │ │ │ ├── new.go │ │ │ ├── struct.go │ │ │ └── types.go │ │ ├── pkg │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── claims.go │ │ │ │ ├── duration.go │ │ │ │ ├── oidc.go │ │ │ │ ├── secrets │ │ │ │ │ └── secrets.go │ │ │ │ ├── selfsigned.go │ │ │ │ ├── signature.go │ │ │ │ ├── token.go │ │ │ │ ├── tokengenerator.go │ │ │ │ └── userinfo.go │ │ │ ├── chaos │ │ │ │ └── chaos.go │ │ │ ├── chattr │ │ │ │ └── chattr.go │ │ │ ├── clusterdomain │ │ │ │ └── clusterdomain.go │ │ │ ├── correlation │ │ │ │ ├── README.md │ │ │ │ ├── context.go │ │ │ │ ├── hook.go │ │ │ │ └── interceptor.go │ │ │ ├── dbg │ │ │ │ ├── log.go │ │ │ │ └── profile_dump.go │ │ │ ├── defaultcontext │ │ │ │ └── default.go │ │ │ ├── defrag │ │ │ │ └── defrag.go │ │ │ ├── diags │ │ │ │ └── diags.go │ │ │ ├── grpcserver │ │ │ │ ├── creds_injector.go │ │ │ │ ├── grpcserver.go │ │ │ │ ├── grpcutil.go │ │ │ │ └── server.go │ │ │ ├── grpcutil │ │ │ │ └── context.go │ │ │ ├── job │ │ │ │ └── job.go │ │ │ ├── keylock │ │ │ │ └── keylock.go │ │ │ ├── loadbalancer │ │ │ │ ├── balancer.go │ │ │ │ └── roundrobin.go │ │ │ ├── mount │ │ │ │ ├── bind_mount.go │ │ │ │ ├── consistent_read.go │ │ │ │ ├── custom_mount.go │ │ │ │ ├── deleted_mount.go │ │ │ │ ├── device.go │ │ │ │ ├── mount.go │ │ │ │ ├── nfs.go │ │ │ │ └── raw_mount.go │ │ │ ├── nodedrain │ │ │ │ └── nodedrain.go │ │ │ ├── options │ │ │ │ └── options.go │ │ │ ├── parser │ │ │ │ └── labels.go │ │ │ ├── proto │ │ │ │ └── time │ │ │ │ │ └── prototime.go │ │ │ ├── role │ │ │ │ ├── role.go │ │ │ │ └── sdkserviceapi.go │ │ │ ├── sched │ │ │ │ ├── intervals.go │ │ │ │ └── sched.go │ │ │ ├── schedule │ │ │ │ └── schedule.go │ │ │ ├── seed │ │ │ │ ├── git.go │ │ │ │ └── seed.go │ │ │ ├── storagepolicy │ │ │ │ ├── sdkstoragepolicy.go │ │ │ │ └── storage_policy.go │ │ │ ├── storagepool │ │ │ │ └── storagepool.go │ │ │ ├── units │ │ │ │ └── units.go │ │ │ └── util │ │ │ │ ├── volume.go │ │ │ │ └── wait.go │ │ ├── schedpolicy │ │ │ ├── fake.go │ │ │ ├── sched_policy.go │ │ │ └── struct.go │ │ ├── secrets │ │ │ ├── secrets.go │ │ │ └── struct.go │ │ └── volume │ │ │ ├── README.md │ │ │ ├── cloudbackup.go │ │ │ ├── drivers │ │ │ ├── btrfs │ │ │ │ ├── btrfs.go │ │ │ │ └── unsupported.go │ │ │ ├── buse │ │ │ │ ├── README.md │ │ │ │ ├── buse.go │ │ │ │ └── nbd.go │ │ │ ├── common │ │ │ │ ├── common.go │ │ │ │ └── default_store_enumerator.go │ │ │ ├── drivers.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── nfs │ │ │ │ └── nfs.go │ │ │ ├── pwx │ │ │ │ ├── connection.go │ │ │ │ └── pwx.go │ │ │ └── vfs │ │ │ │ └── vfs.go │ │ │ ├── errors.go │ │ │ ├── volume.go │ │ │ ├── volume_driver_registry.go │ │ │ └── volume_not_supported.go │ ├── operator │ │ ├── api │ │ │ └── px │ │ │ │ └── api.pb.go │ │ ├── drivers │ │ │ └── storage │ │ │ │ ├── portworx │ │ │ │ └── util │ │ │ │ │ ├── csi_generator.go │ │ │ │ │ ├── feature.go │ │ │ │ │ └── util.go │ │ │ │ └── storage.go │ │ └── pkg │ │ │ ├── apis │ │ │ ├── addtoscheme_core_v1.go │ │ │ ├── addtoscheme_portworx_v1.go │ │ │ ├── apis.go │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── storagecluster.go │ │ │ │ │ ├── storagenode.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── portworx │ │ │ │ ├── portworx.go │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── portworxdiag.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── client │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── core_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── storagecluster.go │ │ │ │ │ └── storagenode.go │ │ │ │ └── portworx │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── portworx_client.go │ │ │ │ └── portworxdiag.go │ │ │ ├── constants │ │ │ ├── constants.go │ │ │ ├── metadata.go │ │ │ └── migration.go │ │ │ ├── errors │ │ │ └── errors.go │ │ │ ├── mock │ │ │ ├── controller.mock.go │ │ │ ├── controllercache.mock.go │ │ │ ├── controllermanager.mock.go │ │ │ ├── kubevirtmanager.mock.go │ │ │ ├── openstoragesdk.mock.go │ │ │ ├── portworxsdk.mock.go │ │ │ ├── preflight.mock.go │ │ │ ├── sdkserver.go │ │ │ └── storagedriver.mock.go │ │ │ └── util │ │ │ ├── k8s │ │ │ ├── cluster.go │ │ │ ├── events.go │ │ │ ├── k8s.go │ │ │ ├── node.go │ │ │ └── pod.go │ │ │ ├── maps │ │ │ └── syncmap.go │ │ │ ├── test │ │ │ └── util.go │ │ │ └── util.go │ ├── secrets │ │ ├── .travis.yml │ │ ├── DCO │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── aws │ │ │ └── credentials │ │ │ │ └── credentials.go │ │ ├── k8s │ │ │ ├── README.md │ │ │ └── k8s.go │ │ ├── secrets.go │ │ └── secrets_manager.go │ └── systemutils │ │ ├── README.md │ │ ├── api.go │ │ └── system.go ├── liggitt │ └── tabwriter │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── tabwriter.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.go ├── mattn │ ├── go-colorable │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_appengine.go │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ ├── go.test.sh │ │ └── noncolorable.go │ ├── go-ieproxy │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ieproxy.go │ │ ├── ieproxy_unix.go │ │ ├── ieproxy_windows.go │ │ ├── kernel32_data_windows.go │ │ ├── pac_unix.go │ │ ├── pac_windows.go │ │ ├── proxy_middleman.go │ │ ├── proxy_middleman_unix.go │ │ ├── proxy_middleman_windows.go │ │ ├── utils.go │ │ └── winhttp_data_windows.go │ ├── go-isatty │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── go.test.sh │ │ ├── isatty_bsd.go │ │ ├── isatty_others.go │ │ ├── isatty_plan9.go │ │ ├── isatty_solaris.go │ │ ├── isatty_tcgets.go │ │ └── isatty_windows.go │ └── go-runewidth │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.test.sh │ │ ├── runewidth.go │ │ ├── runewidth_appengine.go │ │ ├── runewidth_js.go │ │ ├── runewidth_posix.go │ │ ├── runewidth_table.go │ │ └── runewidth_windows.go ├── matttproud │ └── golang_protobuf_extensions │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pbutil │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go ├── miekg │ └── dns │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTORS │ │ ├── COPYRIGHT │ │ ├── LICENSE │ │ ├── Makefile.fuzz │ │ ├── Makefile.release │ │ ├── README.md │ │ ├── acceptfunc.go │ │ ├── client.go │ │ ├── clientconfig.go │ │ ├── dane.go │ │ ├── defaults.go │ │ ├── dns.go │ │ ├── dnssec.go │ │ ├── dnssec_keygen.go │ │ ├── dnssec_keyscan.go │ │ ├── dnssec_privkey.go │ │ ├── doc.go │ │ ├── duplicate.go │ │ ├── edns.go │ │ ├── format.go │ │ ├── fuzz.go │ │ ├── generate.go │ │ ├── hash.go │ │ ├── labels.go │ │ ├── listen_no_reuseport.go │ │ ├── listen_reuseport.go │ │ ├── msg.go │ │ ├── msg_helpers.go │ │ ├── msg_truncate.go │ │ ├── nsecx.go │ │ ├── privaterr.go │ │ ├── reverse.go │ │ ├── sanitize.go │ │ ├── scan.go │ │ ├── scan_rr.go │ │ ├── serve_mux.go │ │ ├── server.go │ │ ├── sig0.go │ │ ├── smimea.go │ │ ├── svcb.go │ │ ├── tlsa.go │ │ ├── tools.go │ │ ├── tsig.go │ │ ├── types.go │ │ ├── udp.go │ │ ├── udp_windows.go │ │ ├── update.go │ │ ├── version.go │ │ ├── xfr.go │ │ ├── zduplicate.go │ │ ├── zmsg.go │ │ └── ztypes.go ├── mitchellh │ ├── copystructure │ │ ├── LICENSE │ │ ├── README.md │ │ ├── copier_time.go │ │ └── copystructure.go │ ├── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ └── homedir.go │ ├── go-wordwrap │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── wordwrap.go │ ├── hashstructure │ │ ├── LICENSE │ │ ├── README.md │ │ ├── hashstructure.go │ │ └── include.go │ ├── mapstructure │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ └── mapstructure.go │ └── reflectwalk │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── location.go │ │ ├── location_string.go │ │ └── reflectwalk.go ├── moby │ ├── locker │ │ ├── LICENSE │ │ ├── README.md │ │ └── locker.go │ ├── 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 │ │ ├── mount │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── flags_bsd.go │ │ │ ├── flags_linux.go │ │ │ ├── flags_unix.go │ │ │ ├── mount_errors.go │ │ │ ├── mount_unix.go │ │ │ ├── mounter_bsd.go │ │ │ ├── mounter_linux.go │ │ │ ├── mounter_unsupported.go │ │ │ └── sharedsubtree_linux.go │ │ ├── mountinfo │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── mounted_linux.go │ │ │ ├── mounted_unix.go │ │ │ ├── mountinfo.go │ │ │ ├── mountinfo_bsd.go │ │ │ ├── mountinfo_filters.go │ │ │ ├── mountinfo_freebsdlike.go │ │ │ ├── mountinfo_linux.go │ │ │ ├── mountinfo_openbsd.go │ │ │ ├── mountinfo_unsupported.go │ │ │ └── mountinfo_windows.go │ │ ├── sequential │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── sequential_unix.go │ │ │ └── sequential_windows.go │ │ └── symlink │ │ │ ├── LICENSE │ │ │ ├── LICENSE.APACHE │ │ │ ├── LICENSE.BSD │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── fs.go │ │ │ ├── fs_unix.go │ │ │ └── fs_windows.go │ └── term │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ascii.go │ │ ├── proxy.go │ │ ├── tc.go │ │ ├── term.go │ │ ├── term_windows.go │ │ ├── termios.go │ │ ├── termios_bsd.go │ │ ├── termios_nonbsd.go │ │ ├── windows │ │ ├── ansi_reader.go │ │ ├── ansi_writer.go │ │ ├── console.go │ │ └── doc.go │ │ └── winsize.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 ├── mohae │ └── deepcopy │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── deepcopy.go ├── monochromegane │ └── go-gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── depth_holder.go │ │ ├── full_scan_patterns.go │ │ ├── gitignore.go │ │ ├── index_scan_patterns.go │ │ ├── initial_holder.go │ │ ├── match.go │ │ ├── pattern.go │ │ ├── patterns.go │ │ └── util.go ├── morikuni │ └── aec │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aec.go │ │ ├── ansi.go │ │ ├── builder.go │ │ ├── sample.gif │ │ └── sgr.go ├── moul │ └── http2curl │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── http2curl.go ├── munnerz │ └── goautoneg │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go ├── onsi │ ├── ginkgo │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RELEASING.md │ │ │ ├── config │ │ │ └── deprecated.go │ │ │ ├── core_dsl.go │ │ │ ├── decorator_dsl.go │ │ │ ├── deprecated_dsl.go │ │ │ ├── formatter │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ └── formatter.go │ │ │ ├── ginkgo │ │ │ ├── build │ │ │ │ └── build_command.go │ │ │ ├── command │ │ │ │ ├── abort.go │ │ │ │ ├── command.go │ │ │ │ └── program.go │ │ │ ├── generators │ │ │ │ ├── boostrap_templates.go │ │ │ │ ├── bootstrap_command.go │ │ │ │ ├── generate_command.go │ │ │ │ ├── generate_templates.go │ │ │ │ └── generators_common.go │ │ │ ├── internal │ │ │ │ ├── compile.go │ │ │ │ ├── profiles_and_reports.go │ │ │ │ ├── run.go │ │ │ │ ├── test_suite.go │ │ │ │ ├── utils.go │ │ │ │ └── verify_version.go │ │ │ ├── labels │ │ │ │ └── labels_command.go │ │ │ ├── main.go │ │ │ ├── outline │ │ │ │ ├── ginkgo.go │ │ │ │ ├── import.go │ │ │ │ ├── outline.go │ │ │ │ └── outline_command.go │ │ │ ├── run │ │ │ │ └── run_command.go │ │ │ ├── unfocus │ │ │ │ └── unfocus_command.go │ │ │ └── watch │ │ │ │ ├── delta.go │ │ │ │ ├── delta_tracker.go │ │ │ │ ├── dependencies.go │ │ │ │ ├── package_hash.go │ │ │ │ ├── package_hashes.go │ │ │ │ ├── suite.go │ │ │ │ └── watch_command.go │ │ │ ├── ginkgo_cli_dependencies.go │ │ │ ├── ginkgo_t_dsl.go │ │ │ ├── internal │ │ │ ├── counter.go │ │ │ ├── failer.go │ │ │ ├── focus.go │ │ │ ├── global │ │ │ │ └── init.go │ │ │ ├── group.go │ │ │ ├── interrupt_handler │ │ │ │ ├── interrupt_handler.go │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ └── sigquit_swallower_windows.go │ │ │ ├── node.go │ │ │ ├── ordering.go │ │ │ ├── output_interceptor.go │ │ │ ├── output_interceptor_unix.go │ │ │ ├── output_interceptor_wasm.go │ │ │ ├── output_interceptor_win.go │ │ │ ├── parallel_support │ │ │ │ ├── client_server.go │ │ │ │ ├── http_client.go │ │ │ │ ├── http_server.go │ │ │ │ ├── rpc_client.go │ │ │ │ ├── rpc_server.go │ │ │ │ └── server_handler.go │ │ │ ├── progress_report.go │ │ │ ├── progress_report_bsd.go │ │ │ ├── progress_report_unix.go │ │ │ ├── progress_report_wasm.go │ │ │ ├── progress_report_win.go │ │ │ ├── progress_reporter_manager.go │ │ │ ├── report_entry.go │ │ │ ├── spec.go │ │ │ ├── spec_context.go │ │ │ ├── suite.go │ │ │ ├── testingtproxy │ │ │ │ └── testing_t_proxy.go │ │ │ ├── tree.go │ │ │ └── writer.go │ │ │ ├── reporters │ │ │ ├── default_reporter.go │ │ │ ├── deprecated_reporter.go │ │ │ ├── json_report.go │ │ │ ├── junit_report.go │ │ │ ├── reporter.go │ │ │ └── teamcity_report.go │ │ │ ├── reporting_dsl.go │ │ │ ├── table_dsl.go │ │ │ └── types │ │ │ ├── code_location.go │ │ │ ├── config.go │ │ │ ├── deprecated_types.go │ │ │ ├── deprecation_support.go │ │ │ ├── enum_support.go │ │ │ ├── errors.go │ │ │ ├── file_filter.go │ │ │ ├── flags.go │ │ │ ├── label_filter.go │ │ │ ├── report_entry.go │ │ │ ├── types.go │ │ │ └── version.go │ └── gomega │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── format │ │ └── format.go │ │ ├── gomega_dsl.go │ │ ├── internal │ │ ├── assertion.go │ │ ├── async_assertion.go │ │ ├── duration_bundle.go │ │ ├── gomega.go │ │ ├── gutil │ │ │ ├── post_ioutil.go │ │ │ └── using_ioutil.go │ │ ├── polling_signal_error.go │ │ └── vetoptdesc.go │ │ ├── matchers.go │ │ ├── matchers │ │ ├── and.go │ │ ├── assignable_to_type_of_matcher.go │ │ ├── attributes_slice.go │ │ ├── be_a_directory.go │ │ ├── be_a_regular_file.go │ │ ├── be_an_existing_file.go │ │ ├── be_closed_matcher.go │ │ ├── be_comparable_to_matcher.go │ │ ├── be_element_of_matcher.go │ │ ├── be_empty_matcher.go │ │ ├── be_equivalent_to_matcher.go │ │ ├── be_false_matcher.go │ │ ├── be_identical_to.go │ │ ├── be_key_of_matcher.go │ │ ├── be_nil_matcher.go │ │ ├── be_numerically_matcher.go │ │ ├── be_sent_matcher.go │ │ ├── be_temporally_matcher.go │ │ ├── be_true_matcher.go │ │ ├── be_zero_matcher.go │ │ ├── consist_of.go │ │ ├── contain_element_matcher.go │ │ ├── contain_elements_matcher.go │ │ ├── contain_substring_matcher.go │ │ ├── equal_matcher.go │ │ ├── have_cap_matcher.go │ │ ├── have_each_matcher.go │ │ ├── have_exact_elements.go │ │ ├── have_existing_field_matcher.go │ │ ├── have_field.go │ │ ├── have_http_body_matcher.go │ │ ├── have_http_header_with_value_matcher.go │ │ ├── have_http_status_matcher.go │ │ ├── have_key_matcher.go │ │ ├── have_key_with_value_matcher.go │ │ ├── have_len_matcher.go │ │ ├── have_occurred_matcher.go │ │ ├── have_prefix_matcher.go │ │ ├── have_suffix_matcher.go │ │ ├── have_value.go │ │ ├── match_error_matcher.go │ │ ├── match_json_matcher.go │ │ ├── match_regexp_matcher.go │ │ ├── match_xml_matcher.go │ │ ├── match_yaml_matcher.go │ │ ├── not.go │ │ ├── or.go │ │ ├── panic_matcher.go │ │ ├── receive_matcher.go │ │ ├── satisfy_matcher.go │ │ ├── semi_structured_data_support.go │ │ ├── succeed_matcher.go │ │ ├── support │ │ │ └── goraph │ │ │ │ ├── bipartitegraph │ │ │ │ ├── bipartitegraph.go │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ │ ├── node │ │ │ │ └── node.go │ │ │ │ └── util │ │ │ │ └── util.go │ │ ├── type_support.go │ │ └── with_transform.go │ │ └── types │ │ └── types.go ├── opencontainers │ ├── go-digest │ │ ├── .mailmap │ │ ├── .pullapprove.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── LICENSE.docs │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── algorithm.go │ │ ├── digest.go │ │ ├── digester.go │ │ ├── doc.go │ │ └── verifiers.go │ ├── image-spec │ │ ├── LICENSE │ │ └── specs-go │ │ │ ├── v1 │ │ │ ├── annotations.go │ │ │ ├── config.go │ │ │ ├── descriptor.go │ │ │ ├── index.go │ │ │ ├── layout.go │ │ │ ├── manifest.go │ │ │ └── mediatype.go │ │ │ ├── version.go │ │ │ └── versioned.go │ ├── runc │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── libcontainer │ │ │ ├── configs │ │ │ ├── blkio_device.go │ │ │ ├── cgroup_linux.go │ │ │ ├── cgroup_unsupported.go │ │ │ ├── config.go │ │ │ ├── config_linux.go │ │ │ ├── configs_fuzzer.go │ │ │ ├── hugepage_limit.go │ │ │ ├── intelrdt.go │ │ │ ├── interface_priority_map.go │ │ │ ├── mount.go │ │ │ ├── namespaces.go │ │ │ ├── namespaces_linux.go │ │ │ ├── namespaces_syscall.go │ │ │ ├── namespaces_syscall_unsupported.go │ │ │ ├── namespaces_unsupported.go │ │ │ ├── network.go │ │ │ └── rdma.go │ │ │ ├── devices │ │ │ ├── device.go │ │ │ └── device_unix.go │ │ │ └── user │ │ │ ├── lookup_unix.go │ │ │ ├── user.go │ │ │ └── user_fuzzer.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 │ │ ├── selinux.go │ │ ├── selinux_linux.go │ │ ├── selinux_stub.go │ │ └── xattrs_linux.go │ │ └── pkg │ │ └── pwalkdir │ │ ├── README.md │ │ └── pwalkdir.go ├── openshift │ ├── api │ │ ├── LICENSE │ │ ├── apps │ │ │ └── v1 │ │ │ │ ├── consts.go │ │ │ │ ├── deprecated_consts.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── config │ │ │ └── v1 │ │ │ │ ├── 0000_00_cluster-version-operator_01_clusteroperator.crd.yaml │ │ │ │ ├── 0000_00_cluster-version-operator_01_clusterversion.crd.yaml │ │ │ │ ├── 0000_03_config-operator_01_proxy.crd.yaml │ │ │ │ ├── 0000_03_marketplace-operator_01_operatorhub.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_apiserver-Default.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_apiserver-TechPreviewNoUpgrade.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_authentication.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_build.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_console.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_dns.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_featuregate.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_image.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_imagecontentpolicy.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_imagedigestmirrorset.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_imagetagmirrorset.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_infrastructure-Default.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_infrastructure-Default.crd.yaml-patch │ │ │ │ ├── 0000_10_config-operator_01_infrastructure-TechPreviewNoUpgrade.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_infrastructure-TechPreviewNoUpgrade.crd.yaml-patch │ │ │ │ ├── 0000_10_config-operator_01_ingress.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_network.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_node.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_oauth.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_project.crd.yaml │ │ │ │ ├── 0000_10_config-operator_01_scheduler.crd.yaml │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── feature_gates.go │ │ │ │ ├── register.go │ │ │ │ ├── stable.apiserver.testsuite.yaml │ │ │ │ ├── stable.authentication.testsuite.yaml │ │ │ │ ├── stable.build.testsuite.yaml │ │ │ │ ├── stable.clusteroperator.testsuite.yaml │ │ │ │ ├── stable.clusterversion.testsuite.yaml │ │ │ │ ├── stable.console.testsuite.yaml │ │ │ │ ├── stable.dns.testsuite.yaml │ │ │ │ ├── stable.featuregate.testsuite.yaml │ │ │ │ ├── stable.image.testsuite.yaml │ │ │ │ ├── stable.imagecontentpolicy.testsuite.yaml │ │ │ │ ├── stable.imagedigestmirrorset.testsuite.yaml │ │ │ │ ├── stable.imagetagmirrorset.testsuite.yaml │ │ │ │ ├── stable.infrastructure.testsuite.yaml │ │ │ │ ├── stable.ingress.testsuite.yaml │ │ │ │ ├── stable.network.testsuite.yaml │ │ │ │ ├── stable.node.testsuite.yaml │ │ │ │ ├── stable.oauth.testsuite.yaml │ │ │ │ ├── stable.operatorhub.testsuite.yaml │ │ │ │ ├── stable.project.testsuite.yaml │ │ │ │ ├── stable.proxy.testsuite.yaml │ │ │ │ ├── stable.scheduler.testsuite.yaml │ │ │ │ ├── stringsource.go │ │ │ │ ├── techpreview.apiserver.testsuite.yaml │ │ │ │ ├── techpreview.infrastructure.testsuite.yaml │ │ │ │ ├── types.go │ │ │ │ ├── types_apiserver.go │ │ │ │ ├── types_authentication.go │ │ │ │ ├── types_build.go │ │ │ │ ├── types_cluster_operator.go │ │ │ │ ├── types_cluster_version.go │ │ │ │ ├── types_console.go │ │ │ │ ├── types_dns.go │ │ │ │ ├── types_feature.go │ │ │ │ ├── types_image.go │ │ │ │ ├── types_image_content_policy.go │ │ │ │ ├── types_image_digest_mirror_set.go │ │ │ │ ├── types_image_tag_mirror_set.go │ │ │ │ ├── types_infrastructure.go │ │ │ │ ├── types_ingress.go │ │ │ │ ├── types_network.go │ │ │ │ ├── types_node.go │ │ │ │ ├── types_oauth.go │ │ │ │ ├── types_operatorhub.go │ │ │ │ ├── types_project.go │ │ │ │ ├── types_proxy.go │ │ │ │ ├── types_scheduling.go │ │ │ │ ├── types_tlssecurityprofile.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── console │ │ │ └── v1 │ │ │ │ ├── 0000_10_consoleclidownload.crd.yaml │ │ │ │ ├── 0000_10_consoleexternalloglink.crd.yaml │ │ │ │ ├── 0000_10_consolelink.crd.yaml │ │ │ │ ├── 0000_10_consolenotification.crd.yaml │ │ │ │ ├── 0000_10_consoleplugin.crd.yaml │ │ │ │ ├── 0000_10_consolequickstart.crd.yaml │ │ │ │ ├── 0000_10_consoleyamlsample.crd.yaml │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── stable.consoleclidownload.testsuite.yaml │ │ │ │ ├── stable.consoleexternalloglink.testsuite.yaml │ │ │ │ ├── stable.consolelink.testsuite.yaml │ │ │ │ ├── stable.consolenotification.testsuite.yaml │ │ │ │ ├── stable.consoleplugin.testsuite.yaml │ │ │ │ ├── stable.consolequickstart.testsuite.yaml │ │ │ │ ├── stable.consoleyamlsample.testsuite.yaml │ │ │ │ ├── types.go │ │ │ │ ├── types_console_cli_download.go │ │ │ │ ├── types_console_external_log_links.go │ │ │ │ ├── types_console_link.go │ │ │ │ ├── types_console_notification.go │ │ │ │ ├── types_console_plugin.go │ │ │ │ ├── types_console_quick_start.go │ │ │ │ ├── types_console_yaml_sample.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ ├── route │ │ │ └── v1 │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── legacy.go │ │ │ │ ├── register.go │ │ │ │ ├── route.crd.yaml │ │ │ │ ├── route.crd.yaml-patch │ │ │ │ ├── stable.route.testsuite.yaml │ │ │ │ ├── test-route-validation.sh │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ └── security │ │ │ └── v1 │ │ │ ├── 0000_03_security-openshift_01_scc.crd.yaml │ │ │ ├── Makefile │ │ │ ├── consts.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── legacy.go │ │ │ ├── register.go │ │ │ ├── stable.securitycontextconstraints.testsuite.yaml │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.swagger_doc_generated.go │ ├── client-go │ │ ├── LICENSE │ │ ├── apps │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── apps │ │ │ │ └── v1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── deploymentconfig.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apps_client.go │ │ │ │ └── fake_deploymentconfig.go │ │ │ │ └── generated_expansion.go │ │ ├── config │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── config │ │ │ │ └── v1 │ │ │ │ ├── apiserver.go │ │ │ │ ├── authentication.go │ │ │ │ ├── build.go │ │ │ │ ├── clusteroperator.go │ │ │ │ ├── clusterversion.go │ │ │ │ ├── config_client.go │ │ │ │ ├── console.go │ │ │ │ ├── dns.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apiserver.go │ │ │ │ ├── fake_authentication.go │ │ │ │ ├── fake_build.go │ │ │ │ ├── fake_clusteroperator.go │ │ │ │ ├── fake_clusterversion.go │ │ │ │ ├── fake_config_client.go │ │ │ │ ├── fake_console.go │ │ │ │ ├── fake_dns.go │ │ │ │ ├── fake_featuregate.go │ │ │ │ ├── fake_image.go │ │ │ │ ├── fake_infrastructure.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_network.go │ │ │ │ ├── fake_oauth.go │ │ │ │ ├── fake_operatorhub.go │ │ │ │ ├── fake_project.go │ │ │ │ ├── fake_proxy.go │ │ │ │ └── fake_scheduler.go │ │ │ │ ├── featuregate.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── image.go │ │ │ │ ├── infrastructure.go │ │ │ │ ├── ingress.go │ │ │ │ ├── network.go │ │ │ │ ├── oauth.go │ │ │ │ ├── operatorhub.go │ │ │ │ ├── project.go │ │ │ │ ├── proxy.go │ │ │ │ └── scheduler.go │ │ ├── route │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── route │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── route.go │ │ │ │ └── route_client.go │ │ └── security │ │ │ └── clientset │ │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── security │ │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_podsecuritypolicyreview.go │ │ │ ├── fake_podsecuritypolicyselfsubjectreview.go │ │ │ ├── fake_podsecuritypolicysubjectreview.go │ │ │ ├── fake_rangeallocation.go │ │ │ ├── fake_security_client.go │ │ │ └── fake_securitycontextconstraints.go │ │ │ ├── generated_expansion.go │ │ │ ├── podsecuritypolicyreview.go │ │ │ ├── podsecuritypolicyselfsubjectreview.go │ │ │ ├── podsecuritypolicysubjectreview.go │ │ │ ├── rangeallocation.go │ │ │ ├── security_client.go │ │ │ └── securitycontextconstraints.go │ └── custom-resource-status │ │ ├── LICENSE │ │ └── conditions │ │ └── v1 │ │ ├── conditions.go │ │ ├── doc.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go ├── pborman │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── peterbourgon │ └── diskv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compression.go │ │ ├── diskv.go │ │ └── index.go ├── pkg │ ├── browser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser.go │ │ ├── browser_darwin.go │ │ ├── browser_freebsd.go │ │ ├── browser_linux.go │ │ ├── browser_netbsd.go │ │ ├── browser_openbsd.go │ │ ├── browser_unsupported.go │ │ └── browser_windows.go │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── portworx │ ├── kdmp │ │ └── pkg │ │ │ ├── apis │ │ │ └── kdmp │ │ │ │ ├── register.go │ │ │ │ └── v1alpha1 │ │ │ │ ├── backuplocationmaintenance.go │ │ │ │ ├── dataexport.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── resourcebackup.go │ │ │ │ ├── resourceexport.go │ │ │ │ ├── volumebackup.go │ │ │ │ ├── volumebackupdelete.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── client │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── kdmp │ │ │ │ └── v1alpha1 │ │ │ │ ├── backuplocationmaintenance.go │ │ │ │ ├── dataexport.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── kdmp_client.go │ │ │ │ ├── resourcebackup.go │ │ │ │ ├── resourceexport.go │ │ │ │ ├── volumebackup.go │ │ │ │ └── volumebackupdelete.go │ │ │ ├── controllers │ │ │ ├── common.go │ │ │ ├── dataexport │ │ │ │ ├── dataexport.go │ │ │ │ └── reconcile.go │ │ │ └── resourceexport │ │ │ │ ├── reconcile.go │ │ │ │ └── resourceexport.go │ │ │ ├── drivers │ │ │ ├── drivers.go │ │ │ ├── driversinstance │ │ │ │ └── driversinstance.go │ │ │ ├── kopiabackup │ │ │ │ └── kopiabackup.go │ │ │ ├── kopiadelete │ │ │ │ └── kopiadelete.go │ │ │ ├── kopiamaintenance │ │ │ │ └── kopiamaintenance.go │ │ │ ├── kopiarestore │ │ │ │ └── kopiarestore.go │ │ │ ├── nfsbackup │ │ │ │ └── nfsbackup.go │ │ │ ├── nfscsirestore │ │ │ │ └── nfscsirestore.go │ │ │ ├── nfsdelete │ │ │ │ └── nfsdelete.go │ │ │ ├── nfsrestore │ │ │ │ └── nfsrestore.go │ │ │ ├── options.go │ │ │ ├── resticbackup │ │ │ │ ├── resticbackup.go │ │ │ │ └── resticbackuplive.go │ │ │ ├── resticrestore │ │ │ │ └── resticrestore.go │ │ │ ├── rsync │ │ │ │ └── rsync.go │ │ │ └── utils │ │ │ │ ├── common.go │ │ │ │ └── utils.go │ │ │ ├── executor │ │ │ └── common.go │ │ │ ├── jobratelimit │ │ │ └── jobratelimit.go │ │ │ ├── util │ │ │ └── ops │ │ │ │ ├── dataexport.go │ │ │ │ ├── kdmp.go │ │ │ │ └── volumebackup.go │ │ │ ├── utils │ │ │ ├── crd.go │ │ │ └── schedops.go │ │ │ └── version │ │ │ └── version.go │ ├── kvdb │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── DCO │ │ ├── Dockerfile.kvdb │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── api │ │ │ └── bootstrap │ │ │ │ └── bootstrap.go │ │ ├── common │ │ │ └── common.go │ │ ├── kvdb.go │ │ ├── kvdb_controller_not_supported.go │ │ ├── kvdb_mgr.go │ │ ├── mem │ │ │ └── kv_mem.go │ │ └── updates_collector.go │ ├── pds-api-go-client │ │ ├── LICENSE │ │ └── pds │ │ │ └── v1alpha1 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── api_account_role_bindings.go │ │ │ ├── api_accounts.go │ │ │ ├── api_accounts_dns.go │ │ │ ├── api_accounts_maas_details.go │ │ │ ├── api_accounts_role_invitations.go │ │ │ ├── api_api_version.go │ │ │ ├── api_application_configuration_templates.go │ │ │ ├── api_authentication.go │ │ │ ├── api_authorizer.go │ │ │ ├── api_backup_credentials.go │ │ │ ├── api_backup_jobs.go │ │ │ ├── api_backup_policies.go │ │ │ ├── api_backup_targets.go │ │ │ ├── api_backups.go │ │ │ ├── api_copilot.go │ │ │ ├── api_data_services.go │ │ │ ├── api_deployment_manifests.go │ │ │ ├── api_deployment_targets.go │ │ │ ├── api_deployments.go │ │ │ ├── api_events.go │ │ │ ├── api_global_role_bindings.go │ │ │ ├── api_iam.go │ │ │ ├── api_images.go │ │ │ ├── api_metadata.go │ │ │ ├── api_namespaces.go │ │ │ ├── api_project_role_bindings.go │ │ │ ├── api_projects.go │ │ │ ├── api_resource_settings_templates.go │ │ │ ├── api_restores.go │ │ │ ├── api_roles.go │ │ │ ├── api_sample_templates.go │ │ │ ├── api_service_accounts.go │ │ │ ├── api_service_identity.go │ │ │ ├── api_storage_options_templates.go │ │ │ ├── api_tasks.go │ │ │ ├── api_teams.go │ │ │ ├── api_tenant_role_bindings.go │ │ │ ├── api_tenants.go │ │ │ ├── api_user_api_key.go │ │ │ ├── api_users.go │ │ │ ├── api_versions.go │ │ │ ├── api_who_am_i.go │ │ │ ├── client.go │ │ │ ├── configuration.go │ │ │ ├── model_auth_claims.go │ │ │ ├── model_compatibility_compatible_version.go │ │ │ ├── model_compatibility_compatible_versions.go │ │ │ ├── model_constraint_pagination.go │ │ │ ├── model_controllers_accept_eula_request.go │ │ │ ├── model_controllers_api_metadata_response.go │ │ │ ├── model_controllers_api_version_response.go │ │ │ ├── model_controllers_application_configuration_samples.go │ │ │ ├── model_controllers_authorization_code_request.go │ │ │ ├── model_controllers_backup_policy_samples.go │ │ │ ├── model_controllers_compatible_versions_response.go │ │ │ ├── model_controllers_create_account_request.go │ │ │ ├── model_controllers_create_application_configuration_template_request.go │ │ │ ├── model_controllers_create_backup_credentials_request.go │ │ │ ├── model_controllers_create_backup_policy_request.go │ │ │ ├── model_controllers_create_deployment_backup.go │ │ │ ├── model_controllers_create_namespace.go │ │ │ ├── model_controllers_create_resource_settings_template_request.go │ │ │ ├── model_controllers_create_service_account_request.go │ │ │ ├── model_controllers_create_storage_options_template_request.go │ │ │ ├── model_controllers_create_tenant_backup_target.go │ │ │ ├── model_controllers_credentials.go │ │ │ ├── model_controllers_deployment_target_credentials_response.go │ │ │ ├── model_controllers_deployment_target_heartbeat_request.go │ │ │ ├── model_controllers_deployment_target_heartbeat_response.go │ │ │ ├── model_controllers_deployment_target_metadata_request.go │ │ │ ├── model_controllers_generate_token_request.go │ │ │ ├── model_controllers_generate_token_response.go │ │ │ ├── model_controllers_list_backup_jobs_status_response.go │ │ │ ├── model_controllers_oidc_info_response.go │ │ │ ├── model_controllers_oidc_token_response.go │ │ │ ├── model_controllers_paginated_account_role_bindings.go │ │ │ ├── model_controllers_paginated_backup_target_states.go │ │ │ ├── model_controllers_paginated_global_role_bindings.go │ │ │ ├── model_controllers_paginated_project_role_bindings.go │ │ │ ├── model_controllers_paginated_roles.go │ │ │ ├── model_controllers_paginated_tenant_role_bindings.go │ │ │ ├── model_controllers_partial_azure_credentials.go │ │ │ ├── model_controllers_partial_credentials.go │ │ │ ├── model_controllers_partial_google_credentials.go │ │ │ ├── model_controllers_partial_s3_compatible_credentials.go │ │ │ ├── model_controllers_partial_s3_credentials.go │ │ │ ├── model_controllers_refresh_token_request.go │ │ │ ├── model_controllers_resource_settings_samples.go │ │ │ ├── model_controllers_service_account_response.go │ │ │ ├── model_controllers_service_account_token_response.go │ │ │ ├── model_controllers_storage_options_samples.go │ │ │ ├── model_controllers_target_cluster_config_response.go │ │ │ ├── model_controllers_update_account_request.go │ │ │ ├── model_controllers_update_application_configuration_template_request.go │ │ │ ├── model_controllers_update_backup_credentials_request.go │ │ │ ├── model_controllers_update_backup_policy_request.go │ │ │ ├── model_controllers_update_backup_request.go │ │ │ ├── model_controllers_update_backup_target_request.go │ │ │ ├── model_controllers_update_deployment_target_request.go │ │ │ ├── model_controllers_update_global_config_request.go │ │ │ ├── model_controllers_update_namespace_request.go │ │ │ ├── model_controllers_update_resource_settings_template_request.go │ │ │ ├── model_controllers_update_storage_options_template_request.go │ │ │ ├── model_controllers_who_am_i_response.go │ │ │ ├── model_controllers_who_am_i_service_account.go │ │ │ ├── model_controllers_who_am_i_service_identity.go │ │ │ ├── model_controllers_who_am_i_user.go │ │ │ ├── model_deployments_condition.go │ │ │ ├── model_deployments_connection_details.go │ │ │ ├── model_deployments_connection_info.go │ │ │ ├── model_deployments_credentials.go │ │ │ ├── model_deployments_pod_info.go │ │ │ ├── model_deployments_resource_conditions.go │ │ │ ├── model_models_access_policy.go │ │ │ ├── model_models_access_policy_with_account_id.go │ │ │ ├── model_models_account.go │ │ │ ├── model_models_account_global_config.go │ │ │ ├── model_models_account_role_invitation.go │ │ │ ├── model_models_application_configuration_sample.go │ │ │ ├── model_models_application_configuration_template.go │ │ │ ├── model_models_authorizer_request.go │ │ │ ├── model_models_authorizer_response.go │ │ │ ├── model_models_aws_details.go │ │ │ ├── model_models_azure_credentials.go │ │ │ ├── model_models_backup.go │ │ │ ├── model_models_backup_credentials.go │ │ │ ├── model_models_backup_job.go │ │ │ ├── model_models_backup_job_status_response.go │ │ │ ├── model_models_backup_policy.go │ │ │ ├── model_models_backup_policy_sample.go │ │ │ ├── model_models_backup_schedule.go │ │ │ ├── model_models_backup_target.go │ │ │ ├── model_models_backup_target_state.go │ │ │ ├── model_models_binding.go │ │ │ ├── model_models_config_item.go │ │ │ ├── model_models_copilot_search_response.go │ │ │ ├── model_models_data_service.go │ │ │ ├── model_models_deployment.go │ │ │ ├── model_models_deployment_manifest.go │ │ │ ├── model_models_deployment_resources.go │ │ │ ├── model_models_deployment_storage_options.go │ │ │ ├── model_models_deployment_target.go │ │ │ ├── model_models_deployment_target_capabilities.go │ │ │ ├── model_models_deployment_target_deployment_event.go │ │ │ ├── model_models_deployment_target_last_synced_event.go │ │ │ ├── model_models_deployment_target_metadata.go │ │ │ ├── model_models_dns_details.go │ │ │ ├── model_models_error_data.go │ │ │ ├── model_models_eula_details.go │ │ │ ├── model_models_google_credentials.go │ │ │ ├── model_models_iam.go │ │ │ ├── model_models_image.go │ │ │ ├── model_models_legacy_account_binding.go │ │ │ ├── model_models_legacy_global_binding.go │ │ │ ├── model_models_legacy_project_binding.go │ │ │ ├── model_models_legacy_tenant_binding.go │ │ │ ├── model_models_maas_details.go │ │ │ ├── model_models_namespace.go │ │ │ ├── model_models_node_restrictions.go │ │ │ ├── model_models_paginated_result_models_account.go │ │ │ ├── model_models_paginated_result_models_account_role_invitation.go │ │ │ ├── model_models_paginated_result_models_application_configuration_template.go │ │ │ ├── model_models_paginated_result_models_backup.go │ │ │ ├── model_models_paginated_result_models_backup_credentials.go │ │ │ ├── model_models_paginated_result_models_backup_job.go │ │ │ ├── model_models_paginated_result_models_backup_policy.go │ │ │ ├── model_models_paginated_result_models_backup_target.go │ │ │ ├── model_models_paginated_result_models_data_service.go │ │ │ ├── model_models_paginated_result_models_deployment.go │ │ │ ├── model_models_paginated_result_models_deployment_target.go │ │ │ ├── model_models_paginated_result_models_image.go │ │ │ ├── model_models_paginated_result_models_namespace.go │ │ │ ├── model_models_paginated_result_models_project.go │ │ │ ├── model_models_paginated_result_models_resource_settings_template.go │ │ │ ├── model_models_paginated_result_models_service_account.go │ │ │ ├── model_models_paginated_result_models_service_identity.go │ │ │ ├── model_models_paginated_result_models_storage_options_template.go │ │ │ ├── model_models_paginated_result_models_tenant.go │ │ │ ├── model_models_paginated_result_models_user.go │ │ │ ├── model_models_paginated_result_models_user_api_key.go │ │ │ ├── model_models_paginated_result_models_version.go │ │ │ ├── model_models_project.go │ │ │ ├── model_models_resource_settings_sample.go │ │ │ ├── model_models_resource_settings_template.go │ │ │ ├── model_models_restore.go │ │ │ ├── model_models_s3_compatible_credentials.go │ │ │ ├── model_models_s3_credentials.go │ │ │ ├── model_models_service_account.go │ │ │ ├── model_models_service_identity.go │ │ │ ├── model_models_service_identity_with_token.go │ │ │ ├── model_models_storage_options_sample.go │ │ │ ├── model_models_storage_options_template.go │ │ │ ├── model_models_task.go │ │ │ ├── model_models_team.go │ │ │ ├── model_models_tenant.go │ │ │ ├── model_models_user.go │ │ │ ├── model_models_user_api_key.go │ │ │ ├── model_models_version.go │ │ │ ├── model_policy_role.go │ │ │ ├── model_requests_create_copilot_search_request.go │ │ │ ├── model_requests_create_deployment_events_request.go │ │ │ ├── model_requests_create_deployment_target_request.go │ │ │ ├── model_requests_create_project_deployment_request.go │ │ │ ├── model_requests_create_restore_request.go │ │ │ ├── model_requests_create_user_api_key_request.go │ │ │ ├── model_requests_delete_role_binding_request.go │ │ │ ├── model_requests_deployment_event.go │ │ │ ├── model_requests_deployment_scheduled_backup.go │ │ │ ├── model_requests_iam_request.go │ │ │ ├── model_requests_invitation_account_request.go │ │ │ ├── model_requests_k8s_event.go │ │ │ ├── model_requests_patch_account_role_invitation_request.go │ │ │ ├── model_requests_patch_deployment_target_request.go │ │ │ ├── model_requests_patch_deployment_targets_agent_metadata_request.go │ │ │ ├── model_requests_patch_user_api_key_request.go │ │ │ ├── model_requests_put_backup_job_request.go │ │ │ ├── model_requests_put_legacy_binding_request.go │ │ │ ├── model_requests_service_identity_request.go │ │ │ ├── model_requests_update_deployment_request.go │ │ │ ├── model_requests_update_deployment_scheduled_backup.go │ │ │ ├── model_requests_update_operator_metadata_request.go │ │ │ ├── model_requests_update_restore_request.go │ │ │ ├── model_requests_upsert_deployment_manifest_request.go │ │ │ ├── model_service_deployment_status.go │ │ │ ├── model_service_restore_compatibility_condition.go │ │ │ ├── model_v1_typed_local_object_reference.go │ │ │ ├── response.go │ │ │ └── utils.go │ ├── px-object-controller │ │ ├── LICENSE │ │ ├── client │ │ │ ├── apis │ │ │ │ └── objectservice │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── clientset │ │ │ │ └── versioned │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── objectservice │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── objectservice_client.go │ │ │ │ │ ├── pxbucketaccess.go │ │ │ │ │ ├── pxbucketclaim.go │ │ │ │ │ └── pxbucketclass.go │ │ │ ├── informers │ │ │ │ └── externalversions │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ └── objectservice │ │ │ │ │ ├── interface.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── pxbucketaccess.go │ │ │ │ │ ├── pxbucketclaim.go │ │ │ │ │ └── pxbucketclass.go │ │ │ └── listers │ │ │ │ └── objectservice │ │ │ │ └── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── pxbucketaccess.go │ │ │ │ ├── pxbucketclaim.go │ │ │ │ └── pxbucketclass.go │ │ └── pkg │ │ │ ├── client │ │ │ ├── bucket.go │ │ │ └── client.go │ │ │ ├── controller │ │ │ ├── controller.go │ │ │ └── operation.go │ │ │ └── utils │ │ │ └── utils.go │ └── sched-ops │ │ ├── LICENSE │ │ ├── k8s │ │ ├── admissionregistration │ │ │ ├── admissionregistration.go │ │ │ ├── mutationwebhooks.go │ │ │ ├── mutationwebhooks_v1beta1.go │ │ │ ├── validatingwebhooks.go │ │ │ └── validatingwebhooks_v1beta1.go │ │ ├── apiextensions │ │ │ ├── apiextensions.go │ │ │ ├── crds.go │ │ │ └── crds_v1beta1.go │ │ ├── apps │ │ │ ├── apps.go │ │ │ ├── daemonsets.go │ │ │ ├── deployments.go │ │ │ ├── replicasets.go │ │ │ └── statefulsets.go │ │ ├── autopilot │ │ │ ├── actionaproval.go │ │ │ ├── autopilot.go │ │ │ ├── autopilotrule.go │ │ │ └── autopilotruleobject.go │ │ ├── batch │ │ │ ├── batch.go │ │ │ ├── cron.go │ │ │ ├── cron_v1beta1.go │ │ │ └── jobs.go │ │ ├── common │ │ │ ├── pod.go │ │ │ ├── pvc.go │ │ │ └── utils.go │ │ ├── core │ │ │ ├── configmaps.go │ │ │ ├── core.go │ │ │ ├── csr.go │ │ │ ├── endpoints.go │ │ │ ├── events.go │ │ │ ├── limitrange.go │ │ │ ├── namespaces.go │ │ │ ├── networkpolicy.go │ │ │ ├── nodes.go │ │ │ ├── persistentvolumeclaims.go │ │ │ ├── pods.go │ │ │ ├── secrets.go │ │ │ ├── serviceaccounts.go │ │ │ ├── services.go │ │ │ └── util.go │ │ ├── dynamic │ │ │ └── dynamic.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── externalsnapshotter │ │ │ ├── externalsnapshotter.go │ │ │ ├── volumesnapshotclasses.go │ │ │ ├── volumesnapshotcontents.go │ │ │ └── volumesnapshots.go │ │ ├── externalstorage │ │ │ ├── externalstorage.go │ │ │ └── snapshot.go │ │ ├── kdmp │ │ │ ├── backuplocationmaintenance.go │ │ │ ├── dataexport.go │ │ │ ├── kdmp.go │ │ │ ├── resourcebackup.go │ │ │ ├── resourceexport.go │ │ │ ├── volumebackup.go │ │ │ └── volumebackupdelete.go │ │ ├── kubevirt-dynamic │ │ │ ├── datavolume.go │ │ │ ├── kubevirt.go │ │ │ ├── virtualmachine.go │ │ │ ├── virtualmachineinstance.go │ │ │ └── virtualmachineinstancemigration.go │ │ ├── kubevirt │ │ │ ├── kubevirt.go │ │ │ ├── virtualmachine.go │ │ │ └── virtualmachineinstance.go │ │ ├── networking │ │ │ ├── ingress.go │ │ │ └── networking.go │ │ ├── openshift │ │ │ ├── config.go │ │ │ ├── deploymentconfig.go │ │ │ ├── openshift.go │ │ │ └── securitycontextconstraints.go │ │ ├── operator │ │ │ ├── operator.go │ │ │ ├── portworxdiag.go │ │ │ ├── storagecluster.go │ │ │ └── storagenode.go │ │ ├── policy │ │ │ ├── poddisruptionbudget.go │ │ │ ├── poddisruptionbudget_v1beta1.go │ │ │ ├── podsecuritypolicy.go │ │ │ └── policy.go │ │ ├── prometheus │ │ │ ├── alertmanager.go │ │ │ ├── alertmanagerconfig.go │ │ │ ├── prometheus.go │ │ │ ├── prometheuspods.go │ │ │ ├── prometheusrules.go │ │ │ └── servicemonitor.go │ │ ├── rbac │ │ │ ├── clusterrolebindings.go │ │ │ ├── clusterroles.go │ │ │ ├── rbac.go │ │ │ ├── rolebindings.go │ │ │ └── roles.go │ │ ├── storage │ │ │ ├── csidriver.go │ │ │ ├── storage.go │ │ │ ├── storageclass.go │ │ │ └── volumeattachments.go │ │ ├── stork │ │ │ ├── action.go │ │ │ ├── applicationbackuprestore.go │ │ │ ├── applicationclone.go │ │ │ ├── applicationregistration.go │ │ │ ├── backuplocation.go │ │ │ ├── clusterdomains.go │ │ │ ├── clusterpair.go │ │ │ ├── groupsnapshot.go │ │ │ ├── migration.go │ │ │ ├── namespacedschedulepolicy.go │ │ │ ├── platformcredential.go │ │ │ ├── resourcetransformation.go │ │ │ ├── rule.go │ │ │ ├── schedulepolicy.go │ │ │ ├── snapshotschedule.go │ │ │ ├── stork.go │ │ │ └── volumesnapshot.go │ │ └── tektoncd │ │ │ ├── pipeline.go │ │ │ ├── task.go │ │ │ └── tektoncd.go │ │ └── task │ │ └── task.go ├── pquerna │ └── cachecontrol │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api.go │ │ ├── cacheobject │ │ ├── directive.go │ │ ├── lex.go │ │ ├── object.go │ │ ├── reasons.go │ │ └── warning.go │ │ └── doc.go ├── prometheus-operator │ └── prometheus-operator │ │ └── pkg │ │ ├── apis │ │ └── monitoring │ │ │ ├── LICENSE │ │ │ ├── register.go │ │ │ ├── v1 │ │ │ ├── alertmanager_types.go │ │ │ ├── doc.go │ │ │ ├── podmonitor_types.go │ │ │ ├── probe_types.go │ │ │ ├── prometheus_types.go │ │ │ ├── prometheusrule_types.go │ │ │ ├── register.go │ │ │ ├── servicemonitor_types.go │ │ │ ├── thanos_types.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1alpha1 │ │ │ ├── alertmanager_config_conversion.go │ │ │ ├── alertmanager_config_types.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── validation.go │ │ │ └── zz_generated.deepcopy.go │ │ └── client │ │ ├── LICENSE │ │ └── versioned │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── monitoring │ │ ├── v1 │ │ ├── alertmanager.go │ │ ├── doc.go │ │ ├── generated_expansion.go │ │ ├── monitoring_client.go │ │ ├── podmonitor.go │ │ ├── probe.go │ │ ├── prometheus.go │ │ ├── prometheusrule.go │ │ ├── servicemonitor.go │ │ └── thanosruler.go │ │ └── v1alpha1 │ │ ├── alertmanagerconfig.go │ │ ├── doc.go │ │ ├── generated_expansion.go │ │ └── monitoring_client.go ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── collectors │ │ │ ├── collectors.go │ │ │ ├── dbstats_collector.go │ │ │ ├── expvar_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ └── process_collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_js.go │ │ │ ├── process_collector_other.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ └── option.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── testutil │ │ │ ├── lint.go │ │ │ ├── promlint │ │ │ │ └── promlint.go │ │ │ └── testutil.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ ├── vnext.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ ├── 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 │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ ├── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_statfs_notype.go │ │ ├── fs_statfs_type.go │ │ ├── fscache.go │ │ ├── internal │ │ │ ├── fs │ │ │ │ └── fs.go │ │ │ └── util │ │ │ │ ├── parse.go │ │ │ │ ├── readfile.go │ │ │ │ ├── sysreadfile.go │ │ │ │ ├── sysreadfile_compat.go │ │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_route.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_wireless.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go │ └── statsd_exporter │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pkg │ │ └── mapper │ │ ├── action.go │ │ ├── escape.go │ │ ├── fsm │ │ ├── README.md │ │ ├── dump.go │ │ ├── formatter.go │ │ ├── fsm.go │ │ ├── fsm.png │ │ └── minmax.go │ │ ├── mapper.go │ │ ├── mapper_cache.go │ │ ├── mapper_defaults.go │ │ ├── mapping.go │ │ ├── match.go │ │ ├── metric_type.go │ │ └── observer.go ├── pure-px │ └── torpedo │ │ ├── LICENSE │ │ ├── drivers │ │ ├── api │ │ │ └── api.go │ │ ├── node │ │ │ ├── errors.go │ │ │ ├── node.go │ │ │ ├── node_registry.go │ │ │ └── ssh │ │ │ │ └── ssh.go │ │ ├── objectstore │ │ │ ├── common.go │ │ │ └── objectstore.go │ │ ├── pure │ │ │ ├── flasharray │ │ │ │ ├── fa.go │ │ │ │ ├── network.go │ │ │ │ ├── networkInterfaces.go │ │ │ │ ├── pods.go │ │ │ │ ├── podsTypes.go │ │ │ │ ├── realms.go │ │ │ │ ├── realmsTypes.go │ │ │ │ ├── volumeTypes.go │ │ │ │ └── volumes.go │ │ │ └── flashblade │ │ │ │ ├── NetworkInterfaceTypes.go │ │ │ │ ├── alertTypes.go │ │ │ │ ├── alerts.go │ │ │ │ ├── bladeTypes.go │ │ │ │ ├── blades.go │ │ │ │ ├── fb.go │ │ │ │ ├── filesystemTypes.go │ │ │ │ ├── filesystems.go │ │ │ │ └── networkinterfaces.go │ │ ├── scheduler │ │ │ ├── errors.go │ │ │ ├── k8s │ │ │ │ ├── helm.go │ │ │ │ └── k8s.go │ │ │ ├── scheduler.go │ │ │ └── spec │ │ │ │ ├── factory.go │ │ │ │ └── spec.go │ │ └── volume │ │ │ ├── aws │ │ │ └── aws.go │ │ │ ├── azure │ │ │ └── azure.go │ │ │ ├── common.go │ │ │ ├── gce │ │ │ └── gce.go │ │ │ ├── generic_csi │ │ │ └── generic_csi.go │ │ │ ├── linstor │ │ │ └── linstor.go │ │ │ ├── portworx │ │ │ ├── errors.go │ │ │ ├── portworx.go │ │ │ ├── pure.go │ │ │ └── schedops │ │ │ │ ├── aks-schedops.go │ │ │ │ ├── anthos-schedops.go │ │ │ │ ├── dcos-schedops.go │ │ │ │ ├── eks-schedops.go │ │ │ │ ├── errors.go │ │ │ │ ├── gke-schedops.go │ │ │ │ ├── iks-schedops.go │ │ │ │ ├── k8s-schedops.go │ │ │ │ ├── ocp-schedops.go │ │ │ │ ├── oke-schedops.go │ │ │ │ ├── rke-schedops.go │ │ │ │ └── schedops.go │ │ │ └── volume.go │ │ └── pkg │ │ ├── aetosutil │ │ └── dashboardutil.go │ │ ├── asyncdr │ │ └── asyncdr.go │ │ ├── aututils │ │ └── aututils.go │ │ ├── errors │ │ └── errors.go │ │ ├── log │ │ └── log.go │ │ ├── netutil │ │ └── netutil.go │ │ ├── osutils │ │ └── osutils.go │ │ ├── pureutils │ │ ├── pure_types.go │ │ ├── purefa.go │ │ ├── purefa_rest2x.go │ │ └── purefb.go │ │ ├── restutil │ │ └── restutil.go │ │ ├── s3utils │ │ └── s3utils.go │ │ ├── stats │ │ └── stats.go │ │ ├── task │ │ └── task.go │ │ ├── testrailuttils │ │ └── testrailutils.go │ │ └── units │ │ └── units.go ├── rancher │ ├── norman │ │ ├── LICENSE │ │ ├── clientbase │ │ │ ├── common.go │ │ │ └── ops.go │ │ ├── httperror │ │ │ └── error.go │ │ └── types │ │ │ ├── condition.go │ │ │ ├── convert │ │ │ ├── convert.go │ │ │ ├── ref.go │ │ │ ├── transform.go │ │ │ └── value_set_string.go │ │ │ ├── definition │ │ │ └── definition.go │ │ │ ├── encoder.go │ │ │ ├── id.go │ │ │ ├── mapper.go │ │ │ ├── reflection.go │ │ │ ├── schema_funcs.go │ │ │ ├── schemas.go │ │ │ ├── server_types.go │ │ │ ├── slice │ │ │ └── contains.go │ │ │ ├── types.go │ │ │ └── values │ │ │ └── values.go │ ├── rancher │ │ └── pkg │ │ │ └── client │ │ │ ├── LICENSE │ │ │ └── generated │ │ │ └── management │ │ │ └── v3 │ │ │ ├── zz_generated_aci_network_provider.go │ │ │ ├── zz_generated_action.go │ │ │ ├── zz_generated_active_directory_config.go │ │ │ ├── zz_generated_active_directory_test_and_apply_input.go │ │ │ ├── zz_generated_adfs_config.go │ │ │ ├── zz_generated_aes_configuration.go │ │ │ ├── zz_generated_aks_cluster_config_spec.go │ │ │ ├── zz_generated_aks_node_pool.go │ │ │ ├── zz_generated_aks_status.go │ │ │ ├── zz_generated_alert_status.go │ │ │ ├── zz_generated_alidns_provider_config.go │ │ │ ├── zz_generated_allowed_csidriver.go │ │ │ ├── zz_generated_allowed_flex_volume.go │ │ │ ├── zz_generated_allowed_host_path.go │ │ │ ├── zz_generated_answer.go │ │ │ ├── zz_generated_app_condition.go │ │ │ ├── zz_generated_attached_volume.go │ │ │ ├── zz_generated_audit_log.go │ │ │ ├── zz_generated_audit_log_config.go │ │ │ ├── zz_generated_auth_config.go │ │ │ ├── zz_generated_auth_webhook_config.go │ │ │ ├── zz_generated_authn_config.go │ │ │ ├── zz_generated_authz_config.go │ │ │ ├── zz_generated_aws_cloud_provider.go │ │ │ ├── zz_generated_aws_elastic_block_store_volume_source.go │ │ │ ├── zz_generated_azure_adconfig.go │ │ │ ├── zz_generated_azure_adconfig_apply_input.go │ │ │ ├── zz_generated_azure_adconfig_test_output.go │ │ │ ├── zz_generated_azure_cloud_provider.go │ │ │ ├── zz_generated_azure_disk_volume_source.go │ │ │ ├── zz_generated_azure_file_volume_source.go │ │ │ ├── zz_generated_backup_config.go │ │ │ ├── zz_generated_bastion_host.go │ │ │ ├── zz_generated_block_storage_openstack_opts.go │ │ │ ├── zz_generated_calico_network_provider.go │ │ │ ├── zz_generated_canal_network_provider.go │ │ │ ├── zz_generated_capabilities.go │ │ │ ├── zz_generated_catalog.go │ │ │ ├── zz_generated_catalog_condition.go │ │ │ ├── zz_generated_catalog_refresh.go │ │ │ ├── zz_generated_catalog_secrets.go │ │ │ ├── zz_generated_catalog_spec.go │ │ │ ├── zz_generated_catalog_status.go │ │ │ ├── zz_generated_catalog_template.go │ │ │ ├── zz_generated_catalog_template_version.go │ │ │ ├── zz_generated_ceph_fsvolume_source.go │ │ │ ├── zz_generated_cert_expiration.go │ │ │ ├── zz_generated_change_password_input.go │ │ │ ├── zz_generated_cinder_volume_source.go │ │ │ ├── zz_generated_client.go │ │ │ ├── zz_generated_cloud_credential.go │ │ │ ├── zz_generated_cloud_credential_spec.go │ │ │ ├── zz_generated_cloud_provider.go │ │ │ ├── zz_generated_cloudflare_provider_config.go │ │ │ ├── zz_generated_cluster.go │ │ │ ├── zz_generated_cluster_alert.go │ │ │ ├── zz_generated_cluster_alert_group.go │ │ │ ├── zz_generated_cluster_alert_rule.go │ │ │ ├── zz_generated_cluster_alert_rule_spec.go │ │ │ ├── zz_generated_cluster_alert_spec.go │ │ │ ├── zz_generated_cluster_catalog.go │ │ │ ├── zz_generated_cluster_component_status.go │ │ │ ├── zz_generated_cluster_condition.go │ │ │ ├── zz_generated_cluster_group_spec.go │ │ │ ├── zz_generated_cluster_metric_names_input.go │ │ │ ├── zz_generated_cluster_monitor_graph.go │ │ │ ├── zz_generated_cluster_monitor_graph_spec.go │ │ │ ├── zz_generated_cluster_registration_token.go │ │ │ ├── zz_generated_cluster_registration_token_spec.go │ │ │ ├── zz_generated_cluster_registration_token_status.go │ │ │ ├── zz_generated_cluster_role_template_binding.go │ │ │ ├── zz_generated_cluster_scan_rule.go │ │ │ ├── zz_generated_cluster_secrets.go │ │ │ ├── zz_generated_cluster_spec.go │ │ │ ├── zz_generated_cluster_spec_base.go │ │ │ ├── zz_generated_cluster_status.go │ │ │ ├── zz_generated_cluster_template.go │ │ │ ├── zz_generated_cluster_template_questions_output.go │ │ │ ├── zz_generated_cluster_template_revision.go │ │ │ ├── zz_generated_cluster_template_revision_condition.go │ │ │ ├── zz_generated_cluster_template_revision_spec.go │ │ │ ├── zz_generated_cluster_template_revision_status.go │ │ │ ├── zz_generated_cluster_template_spec.go │ │ │ ├── zz_generated_cluster_upgrade_strategy.go │ │ │ ├── zz_generated_component_condition.go │ │ │ ├── zz_generated_compose_condition.go │ │ │ ├── zz_generated_compose_config.go │ │ │ ├── zz_generated_compose_spec.go │ │ │ ├── zz_generated_compose_status.go │ │ │ ├── zz_generated_condition.go │ │ │ ├── zz_generated_config_map_key_selector.go │ │ │ ├── zz_generated_config_map_node_config_source.go │ │ │ ├── zz_generated_config_map_projection.go │ │ │ ├── zz_generated_config_map_volume_source.go │ │ │ ├── zz_generated_container_image.go │ │ │ ├── zz_generated_container_resource_limit.go │ │ │ ├── zz_generated_cpu_info.go │ │ │ ├── zz_generated_csi_volume_source.go │ │ │ ├── zz_generated_custom_config.go │ │ │ ├── zz_generated_daemon_endpoint.go │ │ │ ├── zz_generated_daemon_set_update_strategy.go │ │ │ ├── zz_generated_deployment_strategy.go │ │ │ ├── zz_generated_dingtalk_config.go │ │ │ ├── zz_generated_disk_vsphere_opts.go │ │ │ ├── zz_generated_dns_config.go │ │ │ ├── zz_generated_docker_info.go │ │ │ ├── zz_generated_downward_apiprojection.go │ │ │ ├── zz_generated_downward_apivolume_file.go │ │ │ ├── zz_generated_downward_apivolume_source.go │ │ │ ├── zz_generated_duration.go │ │ │ ├── zz_generated_dynamic_schema.go │ │ │ ├── zz_generated_dynamic_schema_spec.go │ │ │ ├── zz_generated_dynamic_schema_status.go │ │ │ ├── zz_generated_ecr_credential_plugin.go │ │ │ ├── zz_generated_eks_cluster_config_spec.go │ │ │ ├── zz_generated_eks_status.go │ │ │ ├── zz_generated_empty_dir_volume_source.go │ │ │ ├── zz_generated_encryption_configuration.go │ │ │ ├── zz_generated_env_var.go │ │ │ ├── zz_generated_env_var_source.go │ │ │ ├── zz_generated_ephemeral_volume_source.go │ │ │ ├── zz_generated_etcd_backup.go │ │ │ ├── zz_generated_etcd_backup_condition.go │ │ │ ├── zz_generated_etcd_backup_spec.go │ │ │ ├── zz_generated_etcd_backup_status.go │ │ │ ├── zz_generated_etcd_service.go │ │ │ ├── zz_generated_event_rate_limit.go │ │ │ ├── zz_generated_event_rule.go │ │ │ ├── zz_generated_export_output.go │ │ │ ├── zz_generated_extra_env.go │ │ │ ├── zz_generated_extra_volume.go │ │ │ ├── zz_generated_extra_volume_mount.go │ │ │ ├── zz_generated_fc_volume_source.go │ │ │ ├── zz_generated_feature.go │ │ │ ├── zz_generated_feature_spec.go │ │ │ ├── zz_generated_feature_status.go │ │ │ ├── zz_generated_field.go │ │ │ ├── zz_generated_file.go │ │ │ ├── zz_generated_filter.go │ │ │ ├── zz_generated_flannel_network_provider.go │ │ │ ├── zz_generated_fleet_workspace.go │ │ │ ├── zz_generated_fleet_workspace_status.go │ │ │ ├── zz_generated_flex_volume_source.go │ │ │ ├── zz_generated_flocker_volume_source.go │ │ │ ├── zz_generated_free_ipa_config.go │ │ │ ├── zz_generated_free_ipa_test_and_apply_input.go │ │ │ ├── zz_generated_fs_group_strategy_options.go │ │ │ ├── zz_generated_gce_persistent_disk_volume_source.go │ │ │ ├── zz_generated_generate_kube_config_output.go │ │ │ ├── zz_generated_git_repo_volume_source.go │ │ │ ├── zz_generated_github_config.go │ │ │ ├── zz_generated_github_config_apply_input.go │ │ │ ├── zz_generated_github_config_test_output.go │ │ │ ├── zz_generated_gke_cidr_block.go │ │ │ ├── zz_generated_gke_cluster_addons.go │ │ │ ├── zz_generated_gke_cluster_config_spec.go │ │ │ ├── zz_generated_gke_master_authorized_networks_config.go │ │ │ ├── zz_generated_gke_node_config.go │ │ │ ├── zz_generated_gke_node_pool_autoscaling.go │ │ │ ├── zz_generated_gke_node_pool_config.go │ │ │ ├── zz_generated_gke_node_pool_management.go │ │ │ ├── zz_generated_gke_node_taint_config.go │ │ │ ├── zz_generated_gke_private_cluster_config.go │ │ │ ├── zz_generated_gke_status.go │ │ │ ├── zz_generated_gkeip_allocation_policy.go │ │ │ ├── zz_generated_global_aws_opts.go │ │ │ ├── zz_generated_global_dns.go │ │ │ ├── zz_generated_global_dns_provider.go │ │ │ ├── zz_generated_global_dns_provider_spec.go │ │ │ ├── zz_generated_global_dns_spec.go │ │ │ ├── zz_generated_global_dns_status.go │ │ │ ├── zz_generated_global_openstack_opts.go │ │ │ ├── zz_generated_global_role.go │ │ │ ├── zz_generated_global_role_binding.go │ │ │ ├── zz_generated_global_vsphere_opts.go │ │ │ ├── zz_generated_glusterfs_volume_source.go │ │ │ ├── zz_generated_google_oauth_config.go │ │ │ ├── zz_generated_google_oauth_config_apply_input.go │ │ │ ├── zz_generated_google_oauth_config_test_output.go │ │ │ ├── zz_generated_group.go │ │ │ ├── zz_generated_group_member.go │ │ │ ├── zz_generated_harvester_cloud_provider.go │ │ │ ├── zz_generated_health_check.go │ │ │ ├── zz_generated_host_path_volume_source.go │ │ │ ├── zz_generated_host_port_range.go │ │ │ ├── zz_generated_id_range.go │ │ │ ├── zz_generated_identity_configuration.go │ │ │ ├── zz_generated_import_cluster_yaml_input.go │ │ │ ├── zz_generated_import_yaml_output.go │ │ │ ├── zz_generated_imported_config.go │ │ │ ├── zz_generated_info.go │ │ │ ├── zz_generated_ingress_capabilities.go │ │ │ ├── zz_generated_ingress_config.go │ │ │ ├── zz_generated_internal_node_spec.go │ │ │ ├── zz_generated_internal_node_status.go │ │ │ ├── zz_generated_iscsi_volume_source.go │ │ │ ├── zz_generated_k3s_config.go │ │ │ ├── zz_generated_key.go │ │ │ ├── zz_generated_key_cloak_config.go │ │ │ ├── zz_generated_key_cloak_oidcconfig.go │ │ │ ├── zz_generated_key_to_path.go │ │ │ ├── zz_generated_kms_configuration.go │ │ │ ├── zz_generated_kontainer_driver.go │ │ │ ├── zz_generated_kontainer_driver_spec.go │ │ │ ├── zz_generated_kontainer_driver_status.go │ │ │ ├── zz_generated_kube_apiservice.go │ │ │ ├── zz_generated_kube_controller_service.go │ │ │ ├── zz_generated_kubelet_service.go │ │ │ ├── zz_generated_kubeproxy_service.go │ │ │ ├── zz_generated_kubernetes_info.go │ │ │ ├── zz_generated_kubernetes_services_options.go │ │ │ ├── zz_generated_label_selector.go │ │ │ ├── zz_generated_label_selector_requirement.go │ │ │ ├── zz_generated_launch_template.go │ │ │ ├── zz_generated_ldap_config.go │ │ │ ├── zz_generated_ldap_fields.go │ │ │ ├── zz_generated_linear_autoscaler_params.go │ │ │ ├── zz_generated_load_balancer_capabilities.go │ │ │ ├── zz_generated_load_balancer_openstack_opts.go │ │ │ ├── zz_generated_local_cluster_auth_endpoint.go │ │ │ ├── zz_generated_local_config.go │ │ │ ├── zz_generated_local_object_reference.go │ │ │ ├── zz_generated_management_secret.go │ │ │ ├── zz_generated_map_delta.go │ │ │ ├── zz_generated_member.go │ │ │ ├── zz_generated_memory_info.go │ │ │ ├── zz_generated_metadata_openstack_opts.go │ │ │ ├── zz_generated_metadata_update.go │ │ │ ├── zz_generated_metric_names_output.go │ │ │ ├── zz_generated_metric_rule.go │ │ │ ├── zz_generated_monitor_metric.go │ │ │ ├── zz_generated_monitor_metric_spec.go │ │ │ ├── zz_generated_monitoring_condition.go │ │ │ ├── zz_generated_monitoring_config.go │ │ │ ├── zz_generated_monitoring_input.go │ │ │ ├── zz_generated_monitoring_output.go │ │ │ ├── zz_generated_monitoring_status.go │ │ │ ├── zz_generated_ms_teams_config.go │ │ │ ├── zz_generated_multi_cluster_app.go │ │ │ ├── zz_generated_multi_cluster_app_revision.go │ │ │ ├── zz_generated_multi_cluster_app_rollback_input.go │ │ │ ├── zz_generated_multi_cluster_app_spec.go │ │ │ ├── zz_generated_multi_cluster_app_status.go │ │ │ ├── zz_generated_namespace_resource_quota.go │ │ │ ├── zz_generated_network_config.go │ │ │ ├── zz_generated_network_vshpere_opts.go │ │ │ ├── zz_generated_nfs_volume_source.go │ │ │ ├── zz_generated_node.go │ │ │ ├── zz_generated_node_address.go │ │ │ ├── zz_generated_node_condition.go │ │ │ ├── zz_generated_node_config_source.go │ │ │ ├── zz_generated_node_config_status.go │ │ │ ├── zz_generated_node_daemon_endpoints.go │ │ │ ├── zz_generated_node_drain_input.go │ │ │ ├── zz_generated_node_driver.go │ │ │ ├── zz_generated_node_driver_spec.go │ │ │ ├── zz_generated_node_driver_status.go │ │ │ ├── zz_generated_node_group.go │ │ │ ├── zz_generated_node_info.go │ │ │ ├── zz_generated_node_plan.go │ │ │ ├── zz_generated_node_pool.go │ │ │ ├── zz_generated_node_pool_spec.go │ │ │ ├── zz_generated_node_pool_status.go │ │ │ ├── zz_generated_node_rule.go │ │ │ ├── zz_generated_node_spec.go │ │ │ ├── zz_generated_node_status.go │ │ │ ├── zz_generated_node_system_info.go │ │ │ ├── zz_generated_node_template.go │ │ │ ├── zz_generated_node_template_condition.go │ │ │ ├── zz_generated_node_template_spec.go │ │ │ ├── zz_generated_node_template_status.go │ │ │ ├── zz_generated_node_upgrade_strategy.go │ │ │ ├── zz_generated_nodelocal.go │ │ │ ├── zz_generated_notification.go │ │ │ ├── zz_generated_notifier.go │ │ │ ├── zz_generated_notifier_spec.go │ │ │ ├── zz_generated_notifier_status.go │ │ │ ├── zz_generated_object_field_selector.go │ │ │ ├── zz_generated_object_meta.go │ │ │ ├── zz_generated_oidc_apply_input.go │ │ │ ├── zz_generated_oidc_config.go │ │ │ ├── zz_generated_oidc_test_output.go │ │ │ ├── zz_generated_okta_config.go │ │ │ ├── zz_generated_open_ldap_config.go │ │ │ ├── zz_generated_open_ldap_test_and_apply_input.go │ │ │ ├── zz_generated_openstack_cloud_provider.go │ │ │ ├── zz_generated_os_info.go │ │ │ ├── zz_generated_owner_reference.go │ │ │ ├── zz_generated_pagerduty_config.go │ │ │ ├── zz_generated_persistent_volume_claim_spec.go │ │ │ ├── zz_generated_persistent_volume_claim_template.go │ │ │ ├── zz_generated_persistent_volume_claim_volume_source.go │ │ │ ├── zz_generated_photon_persistent_disk_volume_source.go │ │ │ ├── zz_generated_ping_config.go │ │ │ ├── zz_generated_pod_rule.go │ │ │ ├── zz_generated_pod_security_admission_configuration_template.go │ │ │ ├── zz_generated_pod_security_admission_configuration_template_defaults.go │ │ │ ├── zz_generated_pod_security_admission_configuration_template_exemptions.go │ │ │ ├── zz_generated_pod_security_admission_configuration_template_spec.go │ │ │ ├── zz_generated_pod_security_policy_spec.go │ │ │ ├── zz_generated_pod_security_policy_template.go │ │ │ ├── zz_generated_pod_security_policy_template_project_binding.go │ │ │ ├── zz_generated_policy_rule.go │ │ │ ├── zz_generated_port_check.go │ │ │ ├── zz_generated_portworx_volume_source.go │ │ │ ├── zz_generated_preference.go │ │ │ ├── zz_generated_principal.go │ │ │ ├── zz_generated_private_registry.go │ │ │ ├── zz_generated_process.go │ │ │ ├── zz_generated_project.go │ │ │ ├── zz_generated_project_alert.go │ │ │ ├── zz_generated_project_alert_group.go │ │ │ ├── zz_generated_project_alert_rule.go │ │ │ ├── zz_generated_project_alert_rule_spec.go │ │ │ ├── zz_generated_project_alert_spec.go │ │ │ ├── zz_generated_project_catalog.go │ │ │ ├── zz_generated_project_condition.go │ │ │ ├── zz_generated_project_group_spec.go │ │ │ ├── zz_generated_project_metric_names_input.go │ │ │ ├── zz_generated_project_monitor_graph.go │ │ │ ├── zz_generated_project_monitor_graph_spec.go │ │ │ ├── zz_generated_project_network_policy.go │ │ │ ├── zz_generated_project_network_policy_spec.go │ │ │ ├── zz_generated_project_network_policy_status.go │ │ │ ├── zz_generated_project_resource_quota.go │ │ │ ├── zz_generated_project_role_template_binding.go │ │ │ ├── zz_generated_project_spec.go │ │ │ ├── zz_generated_project_status.go │ │ │ ├── zz_generated_projected_volume_source.go │ │ │ ├── zz_generated_provider_configuration.go │ │ │ ├── zz_generated_public_endpoint.go │ │ │ ├── zz_generated_query_cluster_graph.go │ │ │ ├── zz_generated_query_cluster_graph_output.go │ │ │ ├── zz_generated_query_cluster_metric_input.go │ │ │ ├── zz_generated_query_graph_input.go │ │ │ ├── zz_generated_query_metric_output.go │ │ │ ├── zz_generated_query_project_graph.go │ │ │ ├── zz_generated_query_project_graph_output.go │ │ │ ├── zz_generated_query_project_metric_input.go │ │ │ ├── zz_generated_question.go │ │ │ ├── zz_generated_quobyte_volume_source.go │ │ │ ├── zz_generated_rancher_kubernetes_engine_config.go │ │ │ ├── zz_generated_rancher_user_notification.go │ │ │ ├── zz_generated_rbd_volume_source.go │ │ │ ├── zz_generated_recipient.go │ │ │ ├── zz_generated_resource_configuration.go │ │ │ ├── zz_generated_resource_field_selector.go │ │ │ ├── zz_generated_resource_quota_limit.go │ │ │ ├── zz_generated_resource_requirements.go │ │ │ ├── zz_generated_restore_config.go │ │ │ ├── zz_generated_restore_from_etcd_backup_input.go │ │ │ ├── zz_generated_rke2config.go │ │ │ ├── zz_generated_rke_addon.go │ │ │ ├── zz_generated_rke_config_node.go │ │ │ ├── zz_generated_rke_config_node_plan.go │ │ │ ├── zz_generated_rke_config_services.go │ │ │ ├── zz_generated_rke_k8s_service_option.go │ │ │ ├── zz_generated_rke_k8s_system_image.go │ │ │ ├── zz_generated_rke_system_images.go │ │ │ ├── zz_generated_rke_taint.go │ │ │ ├── zz_generated_role_template.go │ │ │ ├── zz_generated_rolling_update.go │ │ │ ├── zz_generated_rolling_update_daemon_set.go │ │ │ ├── zz_generated_rolling_update_deployment.go │ │ │ ├── zz_generated_rotate_certificate_input.go │ │ │ ├── zz_generated_rotate_certificate_output.go │ │ │ ├── zz_generated_rotate_certificates.go │ │ │ ├── zz_generated_rotate_encryption_key_output.go │ │ │ ├── zz_generated_route53provider_config.go │ │ │ ├── zz_generated_route_openstack_opts.go │ │ │ ├── zz_generated_run_as_group_strategy_options.go │ │ │ ├── zz_generated_run_as_user_strategy_options.go │ │ │ ├── zz_generated_runtime_class_strategy_options.go │ │ │ ├── zz_generated_s3backup_config.go │ │ │ ├── zz_generated_s3credential_config.go │ │ │ ├── zz_generated_saml_config_test_input.go │ │ │ ├── zz_generated_saml_config_test_output.go │ │ │ ├── zz_generated_saml_token.go │ │ │ ├── zz_generated_save_as_template_input.go │ │ │ ├── zz_generated_save_as_template_output.go │ │ │ ├── zz_generated_scale_iovolume_source.go │ │ │ ├── zz_generated_scheduler_service.go │ │ │ ├── zz_generated_se_linux_options.go │ │ │ ├── zz_generated_se_linux_strategy_options.go │ │ │ ├── zz_generated_search_principals_input.go │ │ │ ├── zz_generated_secret_key_selector.go │ │ │ ├── zz_generated_secret_projection.go │ │ │ ├── zz_generated_secret_volume_source.go │ │ │ ├── zz_generated_secretbox_configuration.go │ │ │ ├── zz_generated_secrets_encryption_config.go │ │ │ ├── zz_generated_service_account_token_projection.go │ │ │ ├── zz_generated_service_override.go │ │ │ ├── zz_generated_set_password_input.go │ │ │ ├── zz_generated_set_pod_security_policy_template_input.go │ │ │ ├── zz_generated_setting.go │ │ │ ├── zz_generated_shibboleth_config.go │ │ │ ├── zz_generated_slack_config.go │ │ │ ├── zz_generated_smtp_config.go │ │ │ ├── zz_generated_storage_osvolume_source.go │ │ │ ├── zz_generated_sub_question.go │ │ │ ├── zz_generated_supplemental_groups_strategy_options.go │ │ │ ├── zz_generated_system_service_rule.go │ │ │ ├── zz_generated_taint.go │ │ │ ├── zz_generated_target.go │ │ │ ├── zz_generated_target_event.go │ │ │ ├── zz_generated_target_node.go │ │ │ ├── zz_generated_target_pod.go │ │ │ ├── zz_generated_target_system_service.go │ │ │ ├── zz_generated_target_workload.go │ │ │ ├── zz_generated_template.go │ │ │ ├── zz_generated_template_content.go │ │ │ ├── zz_generated_template_spec.go │ │ │ ├── zz_generated_template_status.go │ │ │ ├── zz_generated_template_version.go │ │ │ ├── zz_generated_template_version_spec.go │ │ │ ├── zz_generated_template_version_status.go │ │ │ ├── zz_generated_time_series.go │ │ │ ├── zz_generated_token.go │ │ │ ├── zz_generated_toleration.go │ │ │ ├── zz_generated_typed_local_object_reference.go │ │ │ ├── zz_generated_update_global_dnstargets_input.go │ │ │ ├── zz_generated_update_multi_cluster_app_targets_input.go │ │ │ ├── zz_generated_upgrade_strategy.go │ │ │ ├── zz_generated_user.go │ │ │ ├── zz_generated_user_attribute.go │ │ │ ├── zz_generated_user_condition.go │ │ │ ├── zz_generated_user_spec.go │ │ │ ├── zz_generated_user_status.go │ │ │ ├── zz_generated_values.go │ │ │ ├── zz_generated_version_commits.go │ │ │ ├── zz_generated_virtual_center_config.go │ │ │ ├── zz_generated_volume_projection.go │ │ │ ├── zz_generated_vsphere_cloud_provider.go │ │ │ ├── zz_generated_vsphere_virtual_disk_volume_source.go │ │ │ ├── zz_generated_weave_network_provider.go │ │ │ ├── zz_generated_webhook_config.go │ │ │ ├── zz_generated_wechat_config.go │ │ │ ├── zz_generated_workload_rule.go │ │ │ ├── zz_generated_workspace_vsphere_opts.go │ │ │ └── zz_generated_y_axis.go │ └── wrangler │ │ ├── LICENSE │ │ └── pkg │ │ └── name │ │ └── name.go ├── rivo │ └── uniseg │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── doc.go │ │ ├── grapheme.go │ │ └── properties.go ├── rogpeppe │ └── go-internal │ │ ├── LICENSE │ │ └── modfile │ │ ├── forward.go │ │ └── gopkgin.go ├── rs │ └── cors │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cors.go │ │ └── utils.go ├── rubenv │ └── sql-migrate │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── migrate.go │ │ ├── migrate_go116.go │ │ ├── sqlparse │ │ ├── LICENSE │ │ ├── README.md │ │ └── sqlparse.go │ │ └── test-migrations │ │ ├── 1_initial.sql │ │ └── 2_record.sql ├── russross │ └── blackfriday │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── block.go │ │ ├── doc.go │ │ ├── html.go │ │ ├── inline.go │ │ ├── latex.go │ │ ├── markdown.go │ │ ├── smartypants.go │ │ └── v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── block.go │ │ ├── doc.go │ │ ├── entities.go │ │ ├── esc.go │ │ ├── html.go │ │ ├── inline.go │ │ ├── markdown.go │ │ ├── node.go │ │ └── smartypants.go ├── ryanuber │ └── go-glob │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── glob.go ├── satori │ └── go.uuid │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codec.go │ │ ├── generator.go │ │ ├── sql.go │ │ └── uuid.go ├── sean- │ └── seed │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── init.go ├── shopspring │ └── decimal │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decimal-go.go │ │ ├── decimal.go │ │ └── rounding.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 ├── skyrings │ └── skyring-common │ │ ├── LICENSE │ │ └── tools │ │ └── uuid │ │ └── uuid.go ├── spf13 │ ├── cast │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cast.go │ │ ├── caste.go │ │ └── timeformattype_string.go │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── active_help.go │ │ ├── active_help.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 │ │ ├── flag_groups.go │ │ ├── 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 │ └── pflag │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go ├── stoewer │ └── go-strcase │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── camel.go │ │ ├── doc.go │ │ ├── helper.go │ │ ├── kebab.go │ │ └── snake.go ├── stretchr │ └── 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 ├── syndtr │ └── gocapability │ │ ├── LICENSE │ │ └── capability │ │ ├── capability.go │ │ ├── capability_linux.go │ │ ├── capability_noop.go │ │ ├── enum.go │ │ ├── enum_gen.go │ │ └── syscall_linux.go ├── tektoncd │ └── pipeline │ │ ├── LICENSE │ │ └── pkg │ │ ├── apis │ │ ├── config │ │ │ ├── default.go │ │ │ ├── doc.go │ │ │ ├── events.go │ │ │ ├── feature_flags.go │ │ │ ├── featureflags_validation.go │ │ │ ├── metrics.go │ │ │ ├── spire_config.go │ │ │ ├── store.go │ │ │ ├── tracing.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── pipeline │ │ │ ├── constant.go │ │ │ ├── controller.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── images.go │ │ │ ├── internal │ │ │ │ └── checksum │ │ │ │ │ └── checksum.go │ │ │ ├── options.go │ │ │ ├── paths.go │ │ │ ├── pod │ │ │ │ ├── affinity_assitant_template.go │ │ │ │ ├── doc.go │ │ │ │ ├── template.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── register.go │ │ │ ├── sidecarlogs.go │ │ │ ├── v1 │ │ │ │ ├── container_types.go │ │ │ │ ├── container_validation.go │ │ │ │ ├── doc.go │ │ │ │ ├── matrix_types.go │ │ │ │ ├── merge.go │ │ │ │ ├── openapi_generated.go │ │ │ │ ├── param_types.go │ │ │ │ ├── pipeline_conversion.go │ │ │ │ ├── pipeline_defaults.go │ │ │ │ ├── pipeline_types.go │ │ │ │ ├── pipeline_validation.go │ │ │ │ ├── pipelineref_types.go │ │ │ │ ├── pipelineref_validation.go │ │ │ │ ├── pipelinerun_conversion.go │ │ │ │ ├── pipelinerun_defaults.go │ │ │ │ ├── pipelinerun_types.go │ │ │ │ ├── pipelinerun_validation.go │ │ │ │ ├── provenance.go │ │ │ │ ├── register.go │ │ │ │ ├── resolver_types.go │ │ │ │ ├── result_defaults.go │ │ │ │ ├── result_types.go │ │ │ │ ├── result_validation.go │ │ │ │ ├── resultref.go │ │ │ │ ├── swagger.json │ │ │ │ ├── task_conversion.go │ │ │ │ ├── task_defaults.go │ │ │ │ ├── task_types.go │ │ │ │ ├── task_validation.go │ │ │ │ ├── taskref_types.go │ │ │ │ ├── taskref_validation.go │ │ │ │ ├── taskrun_conversion.go │ │ │ │ ├── taskrun_defaults.go │ │ │ │ ├── taskrun_types.go │ │ │ │ ├── taskrun_validation.go │ │ │ │ ├── when_types.go │ │ │ │ ├── when_validation.go │ │ │ │ ├── workspace_types.go │ │ │ │ ├── workspace_validation.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── openapi_generated.go │ │ │ │ ├── register.go │ │ │ │ ├── run_defaults.go │ │ │ │ ├── run_types.go │ │ │ │ ├── run_validation.go │ │ │ │ ├── stepaction_conversion.go │ │ │ │ ├── stepaction_defaults.go │ │ │ │ ├── stepaction_types.go │ │ │ │ ├── stepaction_validation.go │ │ │ │ ├── swagger.json │ │ │ │ ├── verificationpolicy_defaults.go │ │ │ │ ├── verificationpolicy_types.go │ │ │ │ ├── verificationpolicy_validation.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── cluster_task_conversion.go │ │ │ │ ├── cluster_task_defaults.go │ │ │ │ ├── cluster_task_types.go │ │ │ │ ├── cluster_task_validation.go │ │ │ │ ├── container_conversion.go │ │ │ │ ├── container_types.go │ │ │ │ ├── container_validation.go │ │ │ │ ├── conversion_error.go │ │ │ │ ├── customrun_defaults.go │ │ │ │ ├── customrun_types.go │ │ │ │ ├── customrun_validation.go │ │ │ │ ├── doc.go │ │ │ │ ├── matrix_types.go │ │ │ │ ├── merge.go │ │ │ │ ├── openapi_generated.go │ │ │ │ ├── param_conversion.go │ │ │ │ ├── param_types.go │ │ │ │ ├── pipeline_conversion.go │ │ │ │ ├── pipeline_defaults.go │ │ │ │ ├── pipeline_interface.go │ │ │ │ ├── pipeline_types.go │ │ │ │ ├── pipeline_validation.go │ │ │ │ ├── pipelineref_conversion.go │ │ │ │ ├── pipelineref_types.go │ │ │ │ ├── pipelineref_validation.go │ │ │ │ ├── pipelinerun_conversion.go │ │ │ │ ├── pipelinerun_defaults.go │ │ │ │ ├── pipelinerun_types.go │ │ │ │ ├── pipelinerun_validation.go │ │ │ │ ├── provenance.go │ │ │ │ ├── provenance_conversion.go │ │ │ │ ├── register.go │ │ │ │ ├── resolver_conversion.go │ │ │ │ ├── resolver_types.go │ │ │ │ ├── resource_types.go │ │ │ │ ├── result_conversion.go │ │ │ │ ├── result_defaults.go │ │ │ │ ├── result_types.go │ │ │ │ ├── result_validation.go │ │ │ │ ├── resultref.go │ │ │ │ ├── run_interface.go │ │ │ │ ├── swagger.json │ │ │ │ ├── task_conversion.go │ │ │ │ ├── task_defaults.go │ │ │ │ ├── task_interface.go │ │ │ │ ├── task_types.go │ │ │ │ ├── task_validation.go │ │ │ │ ├── taskref_conversion.go │ │ │ │ ├── taskref_types.go │ │ │ │ ├── taskref_validation.go │ │ │ │ ├── taskrun_conversion.go │ │ │ │ ├── taskrun_defaults.go │ │ │ │ ├── taskrun_types.go │ │ │ │ ├── taskrun_validation.go │ │ │ │ ├── when_types.go │ │ │ │ ├── when_validation.go │ │ │ │ ├── workspace_conversion.go │ │ │ │ ├── workspace_types.go │ │ │ │ ├── workspace_validation.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── resource │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── pipeline_resource_types.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── run │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── runstatus_types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── customrunstatus_types.go │ │ │ │ ├── doc.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── validate │ │ │ └── metadata.go │ │ └── version │ │ │ ├── conversion.go │ │ │ └── featureflags_validation.go │ │ ├── client │ │ └── clientset │ │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── pipeline │ │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── pipeline.go │ │ │ ├── pipeline_client.go │ │ │ ├── pipelinerun.go │ │ │ ├── task.go │ │ │ └── taskrun.go │ │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── pipeline_client.go │ │ │ ├── run.go │ │ │ ├── stepaction.go │ │ │ └── verificationpolicy.go │ │ │ └── v1beta1 │ │ │ ├── clustertask.go │ │ │ ├── customrun.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── pipeline.go │ │ │ ├── pipeline_client.go │ │ │ ├── pipelinerun.go │ │ │ ├── task.go │ │ │ └── taskrun.go │ │ ├── internal │ │ └── resultref │ │ │ └── resultref.go │ │ ├── list │ │ └── diff.go │ │ ├── reconciler │ │ └── pipeline │ │ │ └── dag │ │ │ └── dag.go │ │ ├── result │ │ └── result.go │ │ ├── spire │ │ └── config │ │ │ ├── config.go │ │ │ └── zz_generated.deepcopy.go │ │ └── substitution │ │ └── substitution.go ├── urfave │ └── cli │ │ ├── .flake8 │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app.go │ │ ├── category.go │ │ ├── cli.go │ │ ├── command.go │ │ ├── context.go │ │ ├── docs.go │ │ ├── errors.go │ │ ├── fish.go │ │ ├── flag.go │ │ ├── flag_bool.go │ │ ├── flag_bool_t.go │ │ ├── flag_duration.go │ │ ├── flag_float64.go │ │ ├── flag_generic.go │ │ ├── flag_int.go │ │ ├── flag_int64.go │ │ ├── flag_int64_slice.go │ │ ├── flag_int_slice.go │ │ ├── flag_string.go │ │ ├── flag_string_slice.go │ │ ├── flag_uint.go │ │ ├── flag_uint64.go │ │ ├── funcs.go │ │ ├── help.go │ │ ├── parse.go │ │ ├── sort.go │ │ └── template.go ├── vbatts │ └── tar-split │ │ ├── LICENSE │ │ └── tar │ │ └── storage │ │ ├── doc.go │ │ ├── entry.go │ │ ├── getter.go │ │ └── packer.go ├── vmware │ └── govmomi │ │ ├── CONTRIBUTORS │ │ ├── LICENSE.txt │ │ ├── history │ │ └── collector.go │ │ ├── internal │ │ ├── helpers.go │ │ ├── methods.go │ │ ├── types.go │ │ └── version │ │ │ └── version.go │ │ ├── nfc │ │ ├── lease.go │ │ └── lease_updater.go │ │ ├── object │ │ ├── authorization_manager.go │ │ ├── authorization_manager_internal.go │ │ ├── cluster_compute_resource.go │ │ ├── common.go │ │ ├── compute_resource.go │ │ ├── custom_fields_manager.go │ │ ├── customization_spec_manager.go │ │ ├── datacenter.go │ │ ├── datastore.go │ │ ├── datastore_file.go │ │ ├── datastore_file_manager.go │ │ ├── datastore_path.go │ │ ├── diagnostic_log.go │ │ ├── diagnostic_manager.go │ │ ├── distributed_virtual_portgroup.go │ │ ├── distributed_virtual_switch.go │ │ ├── extension_manager.go │ │ ├── file_manager.go │ │ ├── folder.go │ │ ├── host_account_manager.go │ │ ├── host_certificate_info.go │ │ ├── host_certificate_manager.go │ │ ├── host_config_manager.go │ │ ├── host_datastore_browser.go │ │ ├── host_datastore_system.go │ │ ├── host_date_time_system.go │ │ ├── host_firewall_system.go │ │ ├── host_network_system.go │ │ ├── host_service_system.go │ │ ├── host_storage_system.go │ │ ├── host_system.go │ │ ├── host_virtual_nic_manager.go │ │ ├── host_vsan_internal_system.go │ │ ├── host_vsan_system.go │ │ ├── namespace_manager.go │ │ ├── network.go │ │ ├── network_reference.go │ │ ├── opaque_network.go │ │ ├── option_manager.go │ │ ├── resource_pool.go │ │ ├── search_index.go │ │ ├── storage_pod.go │ │ ├── storage_resource_manager.go │ │ ├── task.go │ │ ├── tenant_manager.go │ │ ├── types.go │ │ ├── virtual_app.go │ │ ├── virtual_device_list.go │ │ ├── virtual_disk_manager.go │ │ ├── virtual_disk_manager_internal.go │ │ ├── virtual_machine.go │ │ └── vmware_distributed_virtual_switch.go │ │ ├── property │ │ ├── collector.go │ │ ├── filter.go │ │ └── wait.go │ │ ├── session │ │ ├── keep_alive.go │ │ ├── keepalive │ │ │ └── handler.go │ │ └── manager.go │ │ ├── task │ │ ├── error.go │ │ ├── history_collector.go │ │ ├── manager.go │ │ └── wait.go │ │ ├── vapi │ │ ├── internal │ │ │ └── internal.go │ │ └── rest │ │ │ ├── client.go │ │ │ └── resource.go │ │ └── vim25 │ │ ├── client.go │ │ ├── debug │ │ ├── debug.go │ │ ├── file.go │ │ └── log.go │ │ ├── doc.go │ │ ├── methods │ │ ├── methods.go │ │ ├── service_content.go │ │ └── unreleased.go │ │ ├── mo │ │ ├── ancestors.go │ │ ├── entity.go │ │ ├── extra.go │ │ ├── mo.go │ │ ├── reference.go │ │ ├── registry.go │ │ ├── retrieve.go │ │ └── type_info.go │ │ ├── progress │ │ ├── aggregator.go │ │ ├── doc.go │ │ ├── prefix.go │ │ ├── reader.go │ │ ├── report.go │ │ ├── scale.go │ │ ├── sinker.go │ │ └── tee.go │ │ ├── retry.go │ │ ├── soap │ │ ├── client.go │ │ ├── debug.go │ │ ├── error.go │ │ └── soap.go │ │ ├── types │ │ ├── base.go │ │ ├── enum.go │ │ ├── fault.go │ │ ├── helpers.go │ │ ├── if.go │ │ ├── registry.go │ │ ├── types.go │ │ └── unreleased.go │ │ └── xml │ │ ├── LICENSE │ │ ├── extras.go │ │ ├── marshal.go │ │ ├── read.go │ │ ├── typeinfo.go │ │ └── xml.go ├── xeipuuv │ ├── gojsonpointer │ │ ├── LICENSE-APACHE-2.0.txt │ │ ├── README.md │ │ └── pointer.go │ ├── gojsonreference │ │ ├── LICENSE-APACHE-2.0.txt │ │ ├── README.md │ │ └── reference.go │ └── gojsonschema │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE-APACHE-2.0.txt │ │ ├── README.md │ │ ├── draft.go │ │ ├── errors.go │ │ ├── format_checkers.go │ │ ├── glide.yaml │ │ ├── internalLog.go │ │ ├── jsonContext.go │ │ ├── jsonLoader.go │ │ ├── locales.go │ │ ├── result.go │ │ ├── schema.go │ │ ├── schemaLoader.go │ │ ├── schemaPool.go │ │ ├── schemaReferencePool.go │ │ ├── schemaType.go │ │ ├── subSchema.go │ │ ├── types.go │ │ ├── utils.go │ │ └── validation.go ├── xlab │ └── treeprint │ │ ├── LICENSE │ │ ├── README.md │ │ ├── helpers.go │ │ ├── struct.go │ │ └── treeprint.go └── zoido │ └── yag-config │ ├── .gitignore │ ├── .goreleaser.yml │ ├── LICENSE │ ├── README.md │ ├── codecov.yml │ ├── options.go │ ├── package.go │ ├── parser.go │ ├── value │ ├── bool.go │ ├── duration.go │ ├── floats.go │ ├── ints.go │ ├── package.go │ ├── string.go │ └── uints.go │ ├── variable.go │ └── wrapper.go ├── go.etcd.io └── etcd │ └── api │ └── v3 │ ├── LICENSE │ └── v3rpc │ └── rpctypes │ ├── doc.go │ ├── error.go │ ├── md.go │ └── metadatafields.go ├── go.opencensus.io ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── internal │ ├── internal.go │ ├── sanitize.go │ ├── tagencoding │ │ └── tagencoding.go │ └── traceinternals.go ├── metric │ ├── metricdata │ │ ├── doc.go │ │ ├── exemplar.go │ │ ├── label.go │ │ ├── metric.go │ │ ├── point.go │ │ ├── type_string.go │ │ └── unit.go │ ├── metricexport │ │ ├── doc.go │ │ ├── export.go │ │ └── reader.go │ └── metricproducer │ │ ├── manager.go │ │ └── producer.go ├── opencensus.go ├── plugin │ ├── ocgrpc │ │ ├── client.go │ │ ├── client_metrics.go │ │ ├── client_stats_handler.go │ │ ├── doc.go │ │ ├── server.go │ │ ├── server_metrics.go │ │ ├── server_stats_handler.go │ │ ├── stats_common.go │ │ └── trace_common.go │ └── ochttp │ │ ├── client.go │ │ ├── client_stats.go │ │ ├── doc.go │ │ ├── propagation │ │ └── b3 │ │ │ └── b3.go │ │ ├── route.go │ │ ├── server.go │ │ ├── span_annotating_client_trace.go │ │ ├── stats.go │ │ ├── trace.go │ │ └── wrapped_body.go ├── resource │ └── resource.go ├── stats │ ├── doc.go │ ├── internal │ │ └── record.go │ ├── measure.go │ ├── measure_float64.go │ ├── measure_int64.go │ ├── record.go │ ├── units.go │ └── view │ │ ├── aggregation.go │ │ ├── aggregation_data.go │ │ ├── collector.go │ │ ├── doc.go │ │ ├── export.go │ │ ├── view.go │ │ ├── view_to_metric.go │ │ ├── worker.go │ │ └── worker_commands.go ├── tag │ ├── context.go │ ├── doc.go │ ├── key.go │ ├── map.go │ ├── map_codec.go │ ├── metadata.go │ ├── profile_19.go │ ├── profile_not19.go │ └── validate.go └── trace │ ├── basetypes.go │ ├── config.go │ ├── doc.go │ ├── evictedqueue.go │ ├── export.go │ ├── internal │ └── internal.go │ ├── lrumap.go │ ├── propagation │ └── propagation.go │ ├── sampling.go │ ├── spanbucket.go │ ├── spanstore.go │ ├── status_codes.go │ ├── trace.go │ ├── trace_api.go │ ├── trace_go11.go │ ├── trace_nongo11.go │ └── tracestate │ └── tracestate.go ├── go.opentelemetry.io ├── contrib │ └── instrumentation │ │ ├── google.golang.org │ │ └── grpc │ │ │ └── otelgrpc │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── interceptor.go │ │ │ ├── interceptorinfo.go │ │ │ ├── internal │ │ │ └── parse.go │ │ │ ├── metadata_supplier.go │ │ │ ├── semconv.go │ │ │ ├── stats_handler.go │ │ │ └── version.go │ │ └── net │ │ └── http │ │ └── otelhttp │ │ ├── LICENSE │ │ ├── client.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ └── semconvutil │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ └── netconv.go │ │ ├── labeler.go │ │ ├── transport.go │ │ ├── version.go │ │ └── wrap.go └── otel │ ├── .codespellignore │ ├── .codespellrc │ ├── .gitattributes │ ├── .gitignore │ ├── .gitmodules │ ├── .golangci.yml │ ├── .lycheeignore │ ├── .markdownlint.yaml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── VERSIONING.md │ ├── attribute │ ├── doc.go │ ├── encoder.go │ ├── filter.go │ ├── iterator.go │ ├── key.go │ ├── kv.go │ ├── set.go │ ├── type_string.go │ └── value.go │ ├── baggage │ ├── baggage.go │ ├── context.go │ └── doc.go │ ├── codes │ ├── codes.go │ └── doc.go │ ├── doc.go │ ├── error_handler.go │ ├── get_main_pkgs.sh │ ├── handler.go │ ├── internal │ ├── attribute │ │ └── attribute.go │ ├── baggage │ │ ├── baggage.go │ │ └── context.go │ ├── gen.go │ ├── global │ │ ├── handler.go │ │ ├── instruments.go │ │ ├── internal_logging.go │ │ ├── meter.go │ │ ├── propagator.go │ │ ├── state.go │ │ └── trace.go │ └── rawhelpers.go │ ├── internal_logging.go │ ├── metric.go │ ├── metric │ ├── LICENSE │ ├── asyncfloat64.go │ ├── asyncint64.go │ ├── config.go │ ├── doc.go │ ├── embedded │ │ └── embedded.go │ ├── instrument.go │ ├── meter.go │ ├── syncfloat64.go │ └── syncint64.go │ ├── propagation.go │ ├── propagation │ ├── baggage.go │ ├── doc.go │ ├── propagation.go │ └── trace_context.go │ ├── requirements.txt │ ├── semconv │ ├── v1.17.0 │ │ ├── doc.go │ │ ├── event.go │ │ ├── exception.go │ │ ├── http.go │ │ ├── resource.go │ │ ├── schema.go │ │ └── trace.go │ └── v1.21.0 │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── exception.go │ │ ├── resource.go │ │ ├── schema.go │ │ └── trace.go │ ├── trace.go │ ├── trace │ ├── LICENSE │ ├── config.go │ ├── context.go │ ├── doc.go │ ├── embedded │ │ └── embedded.go │ ├── nonrecording.go │ ├── noop.go │ ├── trace.go │ └── tracestate.go │ ├── verify_examples.sh │ ├── version.go │ └── versions.yaml ├── go.starlark.net ├── LICENSE ├── internal │ ├── compile │ │ ├── compile.go │ │ └── serial.go │ └── spell │ │ └── spell.go ├── resolve │ ├── binding.go │ └── resolve.go ├── starlark │ ├── debug.go │ ├── empty.s │ ├── eval.go │ ├── hashtable.go │ ├── int.go │ ├── interp.go │ ├── library.go │ ├── profile.go │ ├── unpack.go │ └── value.go ├── starlarkstruct │ ├── module.go │ └── struct.go └── syntax │ ├── grammar.txt │ ├── parse.go │ ├── quote.go │ ├── scan.go │ ├── syntax.go │ └── walk.go ├── go.uber.org ├── atomic │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── bool.go │ ├── bool_ext.go │ ├── doc.go │ ├── duration.go │ ├── duration_ext.go │ ├── error.go │ ├── error_ext.go │ ├── float32.go │ ├── float32_ext.go │ ├── float64.go │ ├── float64_ext.go │ ├── gen.go │ ├── int32.go │ ├── int64.go │ ├── nocmp.go │ ├── pointer_go118.go │ ├── pointer_go119.go │ ├── string.go │ ├── string_ext.go │ ├── time.go │ ├── time_ext.go │ ├── uint32.go │ ├── uint64.go │ ├── uintptr.go │ ├── unsafe_pointer.go │ └── value.go ├── multierr │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── error.go │ ├── error_post_go120.go │ └── error_pre_go120.go └── zap │ ├── .codecov.yml │ ├── .gitignore │ ├── .golangci.yml │ ├── .readme.tmpl │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE.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_enabler.go │ ├── pool │ │ └── pool.go │ └── stacktrace │ │ └── stack.go │ ├── level.go │ ├── logger.go │ ├── options.go │ ├── sink.go │ ├── sugar.go │ ├── time.go │ ├── writer.go │ └── zapcore │ ├── buffered_write_syncer.go │ ├── clock.go │ ├── console_encoder.go │ ├── core.go │ ├── doc.go │ ├── encoder.go │ ├── entry.go │ ├── error.go │ ├── field.go │ ├── hook.go │ ├── increase_level.go │ ├── json_encoder.go │ ├── lazy_with.go │ ├── level.go │ ├── level_strings.go │ ├── marshaler.go │ ├── memory_encoder.go │ ├── reflected_encoder.go │ ├── sampler.go │ ├── tee.go │ └── write_syncer.go ├── gocloud.dev ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── aws │ └── aws.go ├── blob │ ├── azureblob │ │ └── azureblob.go │ ├── blob.go │ ├── driver │ │ └── driver.go │ ├── gcsblob │ │ ├── gcsblob.go │ │ └── iam.go │ └── s3blob │ │ └── s3blob.go ├── gcerrors │ └── errors.go ├── gcp │ └── gcp.go └── internal │ ├── escape │ └── escape.go │ ├── gcerr │ ├── errorcode_string.go │ └── gcerr.go │ ├── oc │ ├── metrics.go │ └── trace.go │ ├── openurl │ └── openurl.go │ ├── retry │ └── retry.go │ └── useragent │ └── useragent.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── bcrypt │ │ ├── base64.go │ │ └── bcrypt.go │ ├── blowfish │ │ ├── block.go │ │ ├── cipher.go │ │ └── const.go │ ├── cast5 │ │ └── cast5.go │ ├── chacha20 │ │ ├── chacha_arm64.go │ │ ├── chacha_arm64.s │ │ ├── chacha_generic.go │ │ ├── chacha_noasm.go │ │ ├── chacha_ppc64le.go │ │ ├── chacha_ppc64le.s │ │ ├── chacha_s390x.go │ │ ├── chacha_s390x.s │ │ └── xor.go │ ├── chacha20poly1305 │ │ ├── chacha20poly1305.go │ │ ├── chacha20poly1305_amd64.go │ │ ├── chacha20poly1305_amd64.s │ │ ├── chacha20poly1305_generic.go │ │ ├── chacha20poly1305_noasm.go │ │ └── xchacha20poly1305.go │ ├── cryptobyte │ │ ├── asn1.go │ │ ├── asn1 │ │ │ └── asn1.go │ │ ├── builder.go │ │ └── string.go │ ├── curve25519 │ │ ├── curve25519.go │ │ ├── curve25519_compat.go │ │ ├── curve25519_go120.go │ │ └── internal │ │ │ └── field │ │ │ ├── README │ │ │ ├── fe.go │ │ │ ├── fe_amd64.go │ │ │ ├── fe_amd64.s │ │ │ ├── fe_amd64_noasm.go │ │ │ ├── fe_arm64.go │ │ │ ├── fe_arm64.s │ │ │ ├── fe_arm64_noasm.go │ │ │ ├── fe_generic.go │ │ │ ├── sync.checkpoint │ │ │ └── sync.sh │ ├── ed25519 │ │ └── ed25519.go │ ├── hkdf │ │ └── hkdf.go │ ├── internal │ │ ├── alias │ │ │ ├── alias.go │ │ │ └── alias_purego.go │ │ └── poly1305 │ │ │ ├── mac_noasm.go │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_generic.go │ │ │ ├── sum_ppc64le.go │ │ │ ├── sum_ppc64le.s │ │ │ ├── sum_s390x.go │ │ │ └── sum_s390x.s │ ├── openpgp │ │ ├── armor │ │ │ ├── armor.go │ │ │ └── encode.go │ │ ├── canonical_text.go │ │ ├── clearsign │ │ │ └── clearsign.go │ │ ├── elgamal │ │ │ └── elgamal.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── keys.go │ │ ├── packet │ │ │ ├── compressed.go │ │ │ ├── config.go │ │ │ ├── encrypted_key.go │ │ │ ├── literal.go │ │ │ ├── ocfb.go │ │ │ ├── one_pass_signature.go │ │ │ ├── opaque.go │ │ │ ├── packet.go │ │ │ ├── private_key.go │ │ │ ├── public_key.go │ │ │ ├── public_key_v3.go │ │ │ ├── reader.go │ │ │ ├── signature.go │ │ │ ├── signature_v3.go │ │ │ ├── symmetric_key_encrypted.go │ │ │ ├── symmetrically_encrypted.go │ │ │ ├── userattribute.go │ │ │ └── userid.go │ │ ├── read.go │ │ ├── s2k │ │ │ └── s2k.go │ │ └── write.go │ ├── pbkdf2 │ │ └── pbkdf2.go │ ├── pkcs12 │ │ ├── bmp-string.go │ │ ├── crypto.go │ │ ├── errors.go │ │ ├── internal │ │ │ └── rc2 │ │ │ │ └── rc2.go │ │ ├── mac.go │ │ ├── pbkdf.go │ │ ├── pkcs12.go │ │ └── safebags.go │ ├── scrypt │ │ └── scrypt.go │ └── ssh │ │ ├── buffer.go │ │ ├── certs.go │ │ ├── channel.go │ │ ├── cipher.go │ │ ├── client.go │ │ ├── client_auth.go │ │ ├── common.go │ │ ├── connection.go │ │ ├── doc.go │ │ ├── handshake.go │ │ ├── internal │ │ └── bcrypt_pbkdf │ │ │ └── bcrypt_pbkdf.go │ │ ├── kex.go │ │ ├── keys.go │ │ ├── mac.go │ │ ├── messages.go │ │ ├── mux.go │ │ ├── server.go │ │ ├── session.go │ │ ├── ssh_gss.go │ │ ├── streamlocal.go │ │ ├── tcpip.go │ │ └── transport.go │ ├── exp │ ├── LICENSE │ ├── PATENTS │ ├── constraints │ │ └── constraints.go │ ├── maps │ │ └── maps.go │ └── slices │ │ ├── cmp.go │ │ ├── slices.go │ │ ├── sort.go │ │ ├── zsortanyfunc.go │ │ └── zsortordered.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── lazyregexp │ │ │ └── lazyre.go │ ├── modfile │ │ ├── print.go │ │ ├── read.go │ │ ├── rule.go │ │ └── work.go │ ├── module │ │ ├── module.go │ │ └── pseudo.go │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── bpf │ │ ├── asm.go │ │ ├── constants.go │ │ ├── doc.go │ │ ├── instructions.go │ │ ├── setter.go │ │ ├── vm.go │ │ └── vm_instructions.go │ ├── context │ │ ├── context.go │ │ ├── go17.go │ │ ├── go19.go │ │ ├── pre_go17.go │ │ └── pre_go19.go │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ └── table.go │ │ ├── charset │ │ │ └── charset.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── escape.go │ │ ├── foreign.go │ │ ├── node.go │ │ ├── parse.go │ │ ├── render.go │ │ └── token.go │ ├── http │ │ ├── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ │ └── httpproxy │ │ │ └── proxy.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── iana │ │ │ └── const.go │ │ ├── socket │ │ │ ├── cmsghdr.go │ │ │ ├── cmsghdr_bsd.go │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ ├── cmsghdr_stub.go │ │ │ ├── cmsghdr_unix.go │ │ │ ├── cmsghdr_zos_s390x.go │ │ │ ├── complete_dontwait.go │ │ │ ├── complete_nodontwait.go │ │ │ ├── empty.s │ │ │ ├── error_unix.go │ │ │ ├── error_windows.go │ │ │ ├── iovec_32bit.go │ │ │ ├── iovec_64bit.go │ │ │ ├── iovec_solaris_64bit.go │ │ │ ├── iovec_stub.go │ │ │ ├── mmsghdr_stub.go │ │ │ ├── mmsghdr_unix.go │ │ │ ├── msghdr_bsd.go │ │ │ ├── msghdr_bsdvar.go │ │ │ ├── msghdr_linux.go │ │ │ ├── msghdr_linux_32bit.go │ │ │ ├── msghdr_linux_64bit.go │ │ │ ├── msghdr_openbsd.go │ │ │ ├── msghdr_solaris_64bit.go │ │ │ ├── msghdr_stub.go │ │ │ ├── msghdr_zos_s390x.go │ │ │ ├── norace.go │ │ │ ├── race.go │ │ │ ├── rawconn.go │ │ │ ├── rawconn_mmsg.go │ │ │ ├── rawconn_msg.go │ │ │ ├── rawconn_nommsg.go │ │ │ ├── rawconn_nomsg.go │ │ │ ├── socket.go │ │ │ ├── sys.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_const_unix.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_linux_386.go │ │ │ ├── sys_linux_386.s │ │ │ ├── sys_linux_amd64.go │ │ │ ├── sys_linux_arm.go │ │ │ ├── sys_linux_arm64.go │ │ │ ├── sys_linux_loong64.go │ │ │ ├── sys_linux_mips.go │ │ │ ├── sys_linux_mips64.go │ │ │ ├── sys_linux_mips64le.go │ │ │ ├── sys_linux_mipsle.go │ │ │ ├── sys_linux_ppc.go │ │ │ ├── sys_linux_ppc64.go │ │ │ ├── sys_linux_ppc64le.go │ │ │ ├── sys_linux_riscv64.go │ │ │ ├── sys_linux_s390x.go │ │ │ ├── sys_linux_s390x.s │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_posix.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_unix.go │ │ │ ├── sys_windows.go │ │ │ ├── sys_zos_s390x.go │ │ │ ├── sys_zos_s390x.s │ │ │ ├── zsys_aix_ppc64.go │ │ │ ├── zsys_darwin_amd64.go │ │ │ ├── zsys_darwin_arm64.go │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_freebsd_arm64.go │ │ │ ├── zsys_freebsd_riscv64.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_loong64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_riscv64.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd_386.go │ │ │ ├── zsys_netbsd_amd64.go │ │ │ ├── zsys_netbsd_arm.go │ │ │ ├── zsys_netbsd_arm64.go │ │ │ ├── zsys_openbsd_386.go │ │ │ ├── zsys_openbsd_amd64.go │ │ │ ├── zsys_openbsd_arm.go │ │ │ ├── zsys_openbsd_arm64.go │ │ │ ├── zsys_openbsd_mips64.go │ │ │ ├── zsys_openbsd_ppc64.go │ │ │ ├── zsys_openbsd_riscv64.go │ │ │ ├── zsys_solaris_amd64.go │ │ │ └── zsys_zos_s390x.go │ │ ├── socks │ │ │ ├── client.go │ │ │ └── socks.go │ │ └── timeseries │ │ │ └── timeseries.go │ ├── ipv4 │ │ ├── batch.go │ │ ├── control.go │ │ ├── control_bsd.go │ │ ├── control_pktinfo.go │ │ ├── control_stub.go │ │ ├── control_unix.go │ │ ├── control_windows.go │ │ ├── control_zos.go │ │ ├── dgramopt.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── genericopt.go │ │ ├── header.go │ │ ├── helper.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_linux.go │ │ ├── icmp_stub.go │ │ ├── packet.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_nocmsg.go │ │ ├── sockopt.go │ │ ├── sockopt_posix.go │ │ ├── sockopt_stub.go │ │ ├── sys_aix.go │ │ ├── sys_asmreq.go │ │ ├── sys_asmreq_stub.go │ │ ├── sys_asmreqn.go │ │ ├── sys_asmreqn_stub.go │ │ ├── sys_bpf.go │ │ ├── sys_bpf_stub.go │ │ ├── sys_bsd.go │ │ ├── sys_darwin.go │ │ ├── sys_dragonfly.go │ │ ├── sys_freebsd.go │ │ ├── sys_linux.go │ │ ├── sys_solaris.go │ │ ├── sys_ssmreq.go │ │ ├── sys_ssmreq_stub.go │ │ ├── sys_stub.go │ │ ├── sys_windows.go │ │ ├── sys_zos.go │ │ ├── zsys_aix_ppc64.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_freebsd_arm64.go │ │ ├── zsys_freebsd_riscv64.go │ │ ├── zsys_linux_386.go │ │ ├── zsys_linux_amd64.go │ │ ├── zsys_linux_arm.go │ │ ├── zsys_linux_arm64.go │ │ ├── zsys_linux_loong64.go │ │ ├── zsys_linux_mips.go │ │ ├── zsys_linux_mips64.go │ │ ├── zsys_linux_mips64le.go │ │ ├── zsys_linux_mipsle.go │ │ ├── zsys_linux_ppc.go │ │ ├── zsys_linux_ppc64.go │ │ ├── zsys_linux_ppc64le.go │ │ ├── zsys_linux_riscv64.go │ │ ├── zsys_linux_s390x.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ ├── zsys_solaris.go │ │ └── zsys_zos_s390x.go │ ├── ipv6 │ │ ├── batch.go │ │ ├── control.go │ │ ├── control_rfc2292_unix.go │ │ ├── control_rfc3542_unix.go │ │ ├── control_stub.go │ │ ├── control_unix.go │ │ ├── control_windows.go │ │ ├── dgramopt.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── genericopt.go │ │ ├── header.go │ │ ├── helper.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_bsd.go │ │ ├── icmp_linux.go │ │ ├── icmp_solaris.go │ │ ├── icmp_stub.go │ │ ├── icmp_windows.go │ │ ├── icmp_zos.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_nocmsg.go │ │ ├── sockopt.go │ │ ├── sockopt_posix.go │ │ ├── sockopt_stub.go │ │ ├── sys_aix.go │ │ ├── sys_asmreq.go │ │ ├── sys_asmreq_stub.go │ │ ├── sys_bpf.go │ │ ├── sys_bpf_stub.go │ │ ├── sys_bsd.go │ │ ├── sys_darwin.go │ │ ├── sys_freebsd.go │ │ ├── sys_linux.go │ │ ├── sys_solaris.go │ │ ├── sys_ssmreq.go │ │ ├── sys_ssmreq_stub.go │ │ ├── sys_stub.go │ │ ├── sys_windows.go │ │ ├── sys_zos.go │ │ ├── zsys_aix_ppc64.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_freebsd_arm64.go │ │ ├── zsys_freebsd_riscv64.go │ │ ├── zsys_linux_386.go │ │ ├── zsys_linux_amd64.go │ │ ├── zsys_linux_arm.go │ │ ├── zsys_linux_arm64.go │ │ ├── zsys_linux_loong64.go │ │ ├── zsys_linux_mips.go │ │ ├── zsys_linux_mips64.go │ │ ├── zsys_linux_mips64le.go │ │ ├── zsys_linux_mipsle.go │ │ ├── zsys_linux_ppc.go │ │ ├── zsys_linux_ppc64.go │ │ ├── zsys_linux_ppc64le.go │ │ ├── zsys_linux_riscv64.go │ │ ├── zsys_linux_s390x.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ ├── zsys_solaris.go │ │ └── zsys_zos_s390x.go │ ├── proxy │ │ ├── dial.go │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── authhandler │ │ └── authhandler.go │ ├── deviceauth.go │ ├── google │ │ ├── appengine.go │ │ ├── appengine_gen1.go │ │ ├── appengine_gen2_flex.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── google.go │ │ ├── internal │ │ │ ├── externalaccount │ │ │ │ ├── aws.go │ │ │ │ ├── basecredentials.go │ │ │ │ ├── err.go │ │ │ │ ├── executablecredsource.go │ │ │ │ ├── filecredsource.go │ │ │ │ ├── header.go │ │ │ │ ├── impersonate.go │ │ │ │ └── urlcredsource.go │ │ │ ├── externalaccountauthorizeduser │ │ │ │ └── externalaccountauthorizeduser.go │ │ │ └── stsexchange │ │ │ │ ├── clientauth.go │ │ │ │ └── sts_exchange.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 │ ├── pkce.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ ├── errgroup │ │ ├── errgroup.go │ │ ├── go120.go │ │ └── pre_go120.go │ └── semaphore │ │ └── semaphore.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── cpu │ │ ├── asm_aix_ppc64.s │ │ ├── byteorder.go │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_gc_arm64.go │ │ ├── cpu_gc_s390x.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gccgo_arm64.go │ │ ├── cpu_gccgo_s390x.go │ │ ├── cpu_gccgo_x86.c │ │ ├── cpu_gccgo_x86.go │ │ ├── cpu_linux.go │ │ ├── cpu_linux_arm.go │ │ ├── cpu_linux_arm64.go │ │ ├── cpu_linux_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_loong64.go │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_openbsd_arm64.go │ │ ├── cpu_openbsd_arm64.s │ │ ├── cpu_other_arm.go │ │ ├── cpu_other_arm64.go │ │ ├── cpu_other_mips64x.go │ │ ├── cpu_other_ppc64x.go │ │ ├── cpu_other_riscv64.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_x86.s │ │ ├── cpu_zos.go │ │ ├── cpu_zos_s390x.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── hwcap_linux.go │ │ ├── parse.go │ │ ├── proc_cpuinfo_linux.go │ │ ├── runtime_auxv.go │ │ ├── runtime_auxv_go121.go │ │ ├── syscall_aix_gccgo.go │ │ └── syscall_aix_ppc64_gc.go │ ├── execabs │ │ ├── execabs.go │ │ ├── execabs_go118.go │ │ └── execabs_go119.go │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── 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 │ │ ├── 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_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── empty.s │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── term.go │ ├── term_plan9.go │ ├── term_unix.go │ ├── term_unix_bsd.go │ ├── term_unix_other.go │ ├── term_unsupported.go │ ├── term_windows.go │ └── terminal.go │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── htmlindex │ │ │ ├── htmlindex.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── identifier │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── euckr.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ └── tables.go │ │ ├── traditionalchinese │ │ │ ├── big5.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ └── unicode.go │ ├── internal │ │ ├── internal.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── match.go │ │ ├── tag │ │ │ └── tag.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ ├── unicode │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── prop.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ └── trie.go │ └── width │ │ ├── kind_string.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ ├── trieval.go │ │ └── width.go │ ├── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ │ ├── rate.go │ │ └── sometimes.go │ ├── tools │ ├── LICENSE │ ├── PATENTS │ ├── cmd │ │ └── stringer │ │ │ └── stringer.go │ ├── go │ │ ├── ast │ │ │ ├── astutil │ │ │ │ ├── enclosing.go │ │ │ │ ├── imports.go │ │ │ │ ├── rewrite.go │ │ │ │ └── util.go │ │ │ └── inspector │ │ │ │ ├── inspector.go │ │ │ │ └── typeof.go │ │ ├── gcexportdata │ │ │ ├── gcexportdata.go │ │ │ └── importer.go │ │ ├── internal │ │ │ └── packagesdriver │ │ │ │ └── sizes.go │ │ ├── packages │ │ │ ├── doc.go │ │ │ ├── external.go │ │ │ ├── golist.go │ │ │ ├── golist_overlay.go │ │ │ ├── loadmode_string.go │ │ │ ├── packages.go │ │ │ └── visit.go │ │ └── types │ │ │ └── objectpath │ │ │ └── objectpath.go │ ├── imports │ │ └── forward.go │ └── internal │ │ ├── event │ │ ├── core │ │ │ ├── event.go │ │ │ ├── export.go │ │ │ └── fast.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── keys │ │ │ ├── keys.go │ │ │ ├── standard.go │ │ │ └── util.go │ │ ├── label │ │ │ └── label.go │ │ └── tag │ │ │ └── tag.go │ │ ├── gcimporter │ │ ├── bimport.go │ │ ├── exportdata.go │ │ ├── gcimporter.go │ │ ├── iexport.go │ │ ├── iimport.go │ │ ├── newInterface10.go │ │ ├── newInterface11.go │ │ ├── support_go117.go │ │ ├── support_go118.go │ │ ├── unified_no.go │ │ ├── unified_yes.go │ │ ├── ureader_no.go │ │ └── ureader_yes.go │ │ ├── gocommand │ │ ├── invoke.go │ │ ├── vendor.go │ │ └── version.go │ │ ├── gopathwalk │ │ └── walk.go │ │ ├── imports │ │ ├── fix.go │ │ ├── imports.go │ │ ├── mod.go │ │ ├── mod_cache.go │ │ ├── sortimports.go │ │ └── zstdlib.go │ │ ├── packagesinternal │ │ └── packages.go │ │ ├── pkgbits │ │ ├── codes.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── flags.go │ │ ├── frames_go1.go │ │ ├── frames_go17.go │ │ ├── reloc.go │ │ ├── support.go │ │ ├── sync.go │ │ └── syncmarker_string.go │ │ ├── tokeninternal │ │ └── tokeninternal.go │ │ ├── typeparams │ │ ├── common.go │ │ ├── coretype.go │ │ ├── normalize.go │ │ ├── termlist.go │ │ └── typeterm.go │ │ ├── typesinternal │ │ ├── errorcode.go │ │ ├── errorcode_string.go │ │ ├── types.go │ │ └── types_118.go │ │ └── versions │ │ ├── gover.go │ │ ├── types.go │ │ ├── types_go121.go │ │ ├── types_go122.go │ │ ├── versions_go121.go │ │ └── versions_go122.go │ └── xerrors │ ├── LICENSE │ ├── PATENTS │ ├── README │ ├── adaptor.go │ ├── codereview.cfg │ ├── doc.go │ ├── errors.go │ ├── fmt.go │ ├── format.go │ ├── frame.go │ ├── internal │ └── internal.go │ └── wrap.go ├── gomodules.xyz └── jsonpatch │ └── v2 │ ├── LICENSE │ └── jsonpatch.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── compute │ │ ├── v0.alpha │ │ │ ├── compute-api.json │ │ │ └── compute-gen.go │ │ ├── v0.beta │ │ │ ├── compute-api.json │ │ │ └── compute-gen.go │ │ └── v1 │ │ │ ├── compute-api.json │ │ │ └── compute-gen.go │ ├── googleapi │ │ ├── googleapi.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── iamcredentials │ │ └── v1 │ │ │ ├── iamcredentials-api.json │ │ │ └── iamcredentials-gen.go │ ├── internal │ │ ├── cba.go │ │ ├── cert │ │ │ ├── default_cert.go │ │ │ ├── enterprise_cert.go │ │ │ └── secureconnect_cert.go │ │ ├── conn_pool.go │ │ ├── creds.go │ │ ├── gensupport │ │ │ ├── buffer.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── json.go │ │ │ ├── jsonfloat.go │ │ │ ├── media.go │ │ │ ├── params.go │ │ │ ├── resumable.go │ │ │ ├── retry.go │ │ │ ├── retryable_linux.go │ │ │ ├── send.go │ │ │ └── version.go │ │ ├── impersonate │ │ │ └── impersonate.go │ │ ├── s2a.go │ │ ├── settings.go │ │ ├── third_party │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ └── version.go │ ├── iterator │ │ └── iterator.go │ ├── option │ │ ├── internaloption │ │ │ └── internaloption.go │ │ └── option.go │ ├── storage │ │ └── v1 │ │ │ ├── storage-api.json │ │ │ └── storage-gen.go │ ├── support │ │ └── bundler │ │ │ └── bundler.go │ └── transport │ │ ├── dial.go │ │ ├── doc.go │ │ ├── grpc │ │ ├── dial.go │ │ ├── dial_socketopt.go │ │ └── pool.go │ │ └── http │ │ ├── dial.go │ │ └── internal │ │ └── propagation │ │ └── http.go ├── appengine │ ├── 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 │ └── urlfetch │ │ └── urlfetch.go ├── genproto │ ├── LICENSE │ ├── googleapis │ │ ├── api │ │ │ ├── LICENSE │ │ │ ├── annotations │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── client.pb.go │ │ │ │ ├── field_behavior.pb.go │ │ │ │ ├── field_info.pb.go │ │ │ │ ├── http.pb.go │ │ │ │ ├── resource.pb.go │ │ │ │ └── routing.pb.go │ │ │ ├── expr │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── checked.pb.go │ │ │ │ │ ├── eval.pb.go │ │ │ │ │ ├── explain.pb.go │ │ │ │ │ ├── syntax.pb.go │ │ │ │ │ └── value.pb.go │ │ │ ├── httpbody │ │ │ │ └── httpbody.pb.go │ │ │ └── launch_stage.pb.go │ │ ├── iam │ │ │ └── credentials │ │ │ │ └── v1 │ │ │ │ └── alias.go │ │ ├── rpc │ │ │ ├── LICENSE │ │ │ ├── code │ │ │ │ └── code.pb.go │ │ │ ├── errdetails │ │ │ │ └── error_details.pb.go │ │ │ └── status │ │ │ │ └── status.pb.go │ │ └── type │ │ │ ├── date │ │ │ └── date.pb.go │ │ │ └── expr │ │ │ └── expr.pb.go │ └── protobuf │ │ └── field_mask │ │ └── field_mask.go ├── grpc │ ├── AUTHORS │ ├── CODE-OF-CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── Makefile │ ├── NOTICE.txt │ ├── README.md │ ├── SECURITY.md │ ├── attributes │ │ └── attributes.go │ ├── backoff.go │ ├── backoff │ │ └── backoff.go │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ ├── conn_state_evaluator.go │ │ ├── grpclb │ │ │ ├── grpc_lb_v1 │ │ │ │ ├── load_balancer.pb.go │ │ │ │ └── load_balancer_grpc.pb.go │ │ │ ├── grpclb.go │ │ │ ├── grpclb_config.go │ │ │ ├── grpclb_picker.go │ │ │ ├── grpclb_remote_balancer.go │ │ │ ├── grpclb_util.go │ │ │ └── state │ │ │ │ └── state.go │ │ └── roundrobin │ │ │ └── roundrobin.go │ ├── balancer_wrapper.go │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ ├── call.go │ ├── channelz │ │ └── channelz.go │ ├── clientconn.go │ ├── codec.go │ ├── codegen.sh │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ ├── connectivity │ │ └── connectivity.go │ ├── credentials │ │ ├── alts │ │ │ ├── alts.go │ │ │ ├── internal │ │ │ │ ├── authinfo │ │ │ │ │ └── authinfo.go │ │ │ │ ├── common.go │ │ │ │ ├── conn │ │ │ │ │ ├── aeadrekey.go │ │ │ │ │ ├── aes128gcm.go │ │ │ │ │ ├── aes128gcmrekey.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── record.go │ │ │ │ │ └── utils.go │ │ │ │ ├── handshaker │ │ │ │ │ ├── handshaker.go │ │ │ │ │ └── service │ │ │ │ │ │ └── service.go │ │ │ │ └── proto │ │ │ │ │ └── grpc_gcp │ │ │ │ │ ├── altscontext.pb.go │ │ │ │ │ ├── handshaker.pb.go │ │ │ │ │ ├── handshaker_grpc.pb.go │ │ │ │ │ └── transport_security_common.pb.go │ │ │ └── utils.go │ │ ├── credentials.go │ │ ├── google │ │ │ ├── google.go │ │ │ └── xds.go │ │ ├── insecure │ │ │ └── insecure.go │ │ ├── oauth │ │ │ └── oauth.go │ │ └── tls.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ │ ├── encoding.go │ │ └── proto │ │ │ └── proto.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── interceptor.go │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ └── gracefulswitch │ │ │ │ └── gracefulswitch.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── channelz │ │ │ ├── funcs.go │ │ │ ├── id.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 │ │ │ ├── observability.go │ │ │ └── xds.go │ │ ├── experimental.go │ │ ├── googlecloud │ │ │ ├── googlecloud.go │ │ │ ├── manufacturer.go │ │ │ ├── manufacturer_linux.go │ │ │ └── manufacturer_windows.go │ │ ├── grpclog │ │ │ ├── grpclog.go │ │ │ └── prefixLogger.go │ │ ├── grpcrand │ │ │ ├── grpcrand.go │ │ │ └── grpcrand_go1.21.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ ├── oncefunc.go │ │ │ └── pubsub.go │ │ ├── grpcutil │ │ │ ├── compressor.go │ │ │ ├── encode_duration.go │ │ │ ├── grpcutil.go │ │ │ ├── metadata.go │ │ │ ├── method.go │ │ │ └── regex.go │ │ ├── idle │ │ │ └── idle.go │ │ ├── internal.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── pretty │ │ │ └── pretty.go │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.go │ │ ├── serviceconfig │ │ │ ├── duration.go │ │ │ └── serviceconfig.go │ │ ├── status │ │ │ └── status.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ ├── tcp_keepalive_others.go │ │ ├── tcp_keepalive_unix.go │ │ ├── tcp_keepalive_windows.go │ │ ├── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── logging.go │ │ │ ├── networktype │ │ │ │ └── networktype.go │ │ │ ├── proxy.go │ │ │ └── transport.go │ │ └── xds_handshake_cluster.go │ ├── keepalive │ │ └── keepalive.go │ ├── metadata │ │ └── metadata.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── pickfirst.go │ ├── preloader.go │ ├── reflection │ │ ├── README.md │ │ ├── adapt.go │ │ ├── grpc_reflection_v1 │ │ │ ├── reflection.pb.go │ │ │ └── reflection_grpc.pb.go │ │ ├── grpc_reflection_v1alpha │ │ │ ├── reflection.pb.go │ │ │ └── reflection_grpc.pb.go │ │ └── serverreflection.go │ ├── regenerate.sh │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── manual │ │ │ └── manual.go │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── shared_buffer_pool.go │ ├── stats │ │ ├── handlers.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ ├── version.go │ └── vet.sh └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── protojson │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── well_known_types.go │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ ├── errors.go │ │ ├── is_go112.go │ │ └── is_go113.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ └── placeholder.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_map_go111.go │ │ ├── codec_map_go112.go │ │ ├── codec_message.go │ │ ├── codec_messageset.go │ │ ├── codec_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_go120.go │ │ └── strings_unsafe_go121.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ └── wrappers.go │ ├── protoadapt │ └── convert.go │ ├── reflect │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_pure.go │ │ ├── value_union.go │ │ ├── value_unsafe_go120.go │ │ └── value_unsafe_go121.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ ├── dynamicpb │ ├── dynamic.go │ └── types.go │ ├── gofeaturespb │ ├── go_features.pb.go │ └── go_features.proto │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ ├── emptypb │ └── empty.pb.go │ ├── fieldmaskpb │ └── field_mask.pb.go │ ├── structpb │ └── struct.pb.go │ ├── timestamppb │ └── timestamp.pb.go │ └── wrapperspb │ └── wrappers.pb.go ├── gopkg.in ├── freddierice │ └── go-losetup.v1 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constants.go │ │ ├── device.go │ │ ├── format.go │ │ ├── info.go │ │ └── losetup.go ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go ├── natefinch │ └── lumberjack.v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chown.go │ │ ├── chown_linux.go │ │ └── lumberjack.go ├── square │ └── go-jose.v2 │ │ ├── .gitcookies.sh.enc │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── BUG-BOUNTY.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asymmetric.go │ │ ├── cipher │ │ ├── cbc_hmac.go │ │ ├── concat_kdf.go │ │ ├── ecdh_es.go │ │ └── key_wrap.go │ │ ├── crypter.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── encode.go │ │ ├── indent.go │ │ ├── scanner.go │ │ ├── stream.go │ │ └── tags.go │ │ ├── jwe.go │ │ ├── jwk.go │ │ ├── jws.go │ │ ├── opaque.go │ │ ├── shared.go │ │ ├── signing.go │ │ └── symmetric.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 ├── helm.sh └── helm │ └── v3 │ ├── LICENSE │ ├── internal │ ├── fileutil │ │ └── fileutil.go │ ├── ignore │ │ ├── doc.go │ │ └── rules.go │ ├── resolver │ │ └── resolver.go │ ├── sympath │ │ └── walk.go │ ├── third_party │ │ ├── dep │ │ │ └── fs │ │ │ │ ├── fs.go │ │ │ │ ├── rename.go │ │ │ │ └── rename_windows.go │ │ └── k8s.io │ │ │ └── kubernetes │ │ │ └── deployment │ │ │ └── util │ │ │ └── deploymentutil.go │ ├── tlsutil │ │ ├── cfg.go │ │ └── tls.go │ ├── urlutil │ │ └── urlutil.go │ └── version │ │ └── version.go │ └── pkg │ ├── action │ ├── action.go │ ├── dependency.go │ ├── doc.go │ ├── get.go │ ├── get_values.go │ ├── history.go │ ├── hooks.go │ ├── install.go │ ├── lazyclient.go │ ├── lint.go │ ├── list.go │ ├── package.go │ ├── pull.go │ ├── push.go │ ├── registry_login.go │ ├── registry_logout.go │ ├── release_testing.go │ ├── resource_policy.go │ ├── rollback.go │ ├── show.go │ ├── status.go │ ├── uninstall.go │ ├── upgrade.go │ ├── validate.go │ └── verify.go │ ├── chart │ ├── chart.go │ ├── dependency.go │ ├── errors.go │ ├── file.go │ ├── loader │ │ ├── archive.go │ │ ├── directory.go │ │ └── load.go │ └── metadata.go │ ├── chartutil │ ├── capabilities.go │ ├── chartfile.go │ ├── coalesce.go │ ├── compatible.go │ ├── create.go │ ├── dependencies.go │ ├── doc.go │ ├── errors.go │ ├── expand.go │ ├── jsonschema.go │ ├── save.go │ ├── validate_name.go │ └── values.go │ ├── cli │ ├── environment.go │ └── values │ │ └── options.go │ ├── downloader │ ├── chart_downloader.go │ ├── doc.go │ └── manager.go │ ├── engine │ ├── doc.go │ ├── engine.go │ ├── files.go │ ├── funcs.go │ └── lookup_func.go │ ├── getter │ ├── doc.go │ ├── getter.go │ ├── httpgetter.go │ ├── ocigetter.go │ └── plugingetter.go │ ├── helmpath │ ├── home.go │ ├── lazypath.go │ ├── lazypath_darwin.go │ ├── lazypath_unix.go │ ├── lazypath_windows.go │ └── xdg │ │ └── xdg.go │ ├── kube │ ├── client.go │ ├── config.go │ ├── converter.go │ ├── factory.go │ ├── fake │ │ ├── fake.go │ │ └── printer.go │ ├── interface.go │ ├── ready.go │ ├── resource.go │ ├── resource_policy.go │ ├── result.go │ └── wait.go │ ├── lint │ ├── lint.go │ ├── rules │ │ ├── chartfile.go │ │ ├── dependencies.go │ │ ├── deprecations.go │ │ ├── template.go │ │ └── values.go │ └── support │ │ ├── doc.go │ │ └── message.go │ ├── plugin │ ├── hooks.go │ └── plugin.go │ ├── postrender │ ├── exec.go │ └── postrender.go │ ├── provenance │ ├── doc.go │ └── sign.go │ ├── pusher │ ├── doc.go │ ├── ocipusher.go │ └── pusher.go │ ├── registry │ ├── client.go │ ├── constants.go │ └── util.go │ ├── release │ ├── hook.go │ ├── info.go │ ├── mock.go │ ├── release.go │ ├── responses.go │ └── status.go │ ├── releaseutil │ ├── filter.go │ ├── kind_sorter.go │ ├── manifest.go │ ├── manifest_sorter.go │ └── sorter.go │ ├── repo │ ├── chartrepo.go │ ├── doc.go │ ├── index.go │ └── repo.go │ ├── storage │ ├── driver │ │ ├── cfgmaps.go │ │ ├── driver.go │ │ ├── labels.go │ │ ├── memory.go │ │ ├── records.go │ │ ├── secrets.go │ │ ├── sql.go │ │ └── util.go │ └── storage.go │ ├── strvals │ ├── doc.go │ └── parser.go │ ├── time │ └── time.go │ └── uploader │ ├── chart_uploader.go │ └── doc.go ├── k8s.io ├── api │ ├── LICENSE │ ├── admission │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── admissionregistration │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── 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 │ │ ├── v2 │ │ │ ├── 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 │ │ └── 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 │ ├── imagepolicy │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── networking │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_annotations.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ └── client │ │ └── clientset │ │ └── clientset │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── fake │ │ ├── clientset_generated.go │ │ ├── doc.go │ │ └── register.go │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── apiextensions │ │ ├── v1 │ │ ├── apiextensions_client.go │ │ ├── customresourcedefinition.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_apiextensions_client.go │ │ │ └── fake_customresourcedefinition.go │ │ └── generated_expansion.go │ │ └── v1beta1 │ │ ├── apiextensions_client.go │ │ ├── customresourcedefinition.go │ │ ├── doc.go │ │ ├── fake │ │ ├── doc.go │ │ ├── fake_apiextensions_client.go │ │ └── fake_customresourcedefinition.go │ │ └── generated_expansion.go ├── apimachinery │ ├── LICENSE │ ├── pkg │ │ ├── api │ │ │ ├── equality │ │ │ │ └── semantic.go │ │ │ ├── errors │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── meta │ │ │ │ ├── OWNERS │ │ │ │ ├── conditions.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ ├── help.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── lazy.go │ │ │ │ ├── meta.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── priority.go │ │ │ │ ├── restmapper.go │ │ │ │ └── testrestmapper │ │ │ │ │ └── test_restmapper.go │ │ │ ├── resource │ │ │ │ ├── OWNERS │ │ │ │ ├── amount.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── suffix.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── validation │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ ├── objectmeta.go │ │ │ │ └── path │ │ │ │ └── name.go │ │ ├── apis │ │ │ └── meta │ │ │ │ ├── internalversion │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── scheme │ │ │ │ │ ├── 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 │ │ │ │ │ ├── unstructuredscheme │ │ │ │ │ │ └── scheme.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── validation │ │ │ │ │ └── validation.go │ │ │ │ ├── watch.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── v1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ ├── conversion │ │ │ ├── converter.go │ │ │ ├── deep_equal.go │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ └── queryparams │ │ │ │ ├── convert.go │ │ │ │ └── doc.go │ │ ├── fields │ │ │ ├── doc.go │ │ │ ├── fields.go │ │ │ ├── requirements.go │ │ │ └── selector.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ ├── labels.go │ │ │ ├── selector.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── runtime │ │ │ ├── allocator.go │ │ │ ├── codec.go │ │ │ ├── codec_check.go │ │ │ ├── conversion.go │ │ │ ├── converter.go │ │ │ ├── doc.go │ │ │ ├── embedded.go │ │ │ ├── error.go │ │ │ ├── extension.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── mapper.go │ │ │ ├── negotiate.go │ │ │ ├── register.go │ │ │ ├── schema │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ └── interfaces.go │ │ │ ├── scheme.go │ │ │ ├── scheme_builder.go │ │ │ ├── serializer │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ └── gvkparser.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 │ │ │ ├── uuid │ │ │ │ └── uuid.go │ │ │ ├── validation │ │ │ │ ├── field │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ └── validation.go │ │ │ ├── version │ │ │ │ ├── doc.go │ │ │ │ └── version.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 │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── json │ │ ├── OWNERS │ │ └── fields.go │ │ ├── netutil │ │ └── addr.go │ │ └── reflect │ │ └── deep_equal.go ├── apiserver │ ├── LICENSE │ └── pkg │ │ ├── authentication │ │ ├── serviceaccount │ │ │ └── util.go │ │ └── user │ │ │ ├── doc.go │ │ │ └── user.go │ │ ├── endpoints │ │ └── deprecation │ │ │ └── deprecation.go │ │ ├── features │ │ ├── OWNERS │ │ └── kube_features.go │ │ └── util │ │ └── feature │ │ └── feature_gate.go ├── cli-runtime │ ├── LICENSE │ └── pkg │ │ ├── genericclioptions │ │ ├── builder_flags.go │ │ ├── builder_flags_fake.go │ │ ├── client_config.go │ │ ├── command_headers.go │ │ ├── config_flags.go │ │ ├── config_flags_fake.go │ │ ├── doc.go │ │ ├── filename_flags.go │ │ ├── io_options.go │ │ ├── json_yaml_flags.go │ │ ├── jsonpath_flags.go │ │ ├── kube_template_flags.go │ │ ├── name_flags.go │ │ ├── print_flags.go │ │ ├── record_flags.go │ │ └── template_flags.go │ │ ├── printers │ │ ├── discard.go │ │ ├── doc.go │ │ ├── interface.go │ │ ├── json.go │ │ ├── jsonpath.go │ │ ├── managedfields.go │ │ ├── name.go │ │ ├── sourcechecker.go │ │ ├── tableprinter.go │ │ ├── tabwriter.go │ │ ├── template.go │ │ ├── typesetter.go │ │ ├── warningprinter.go │ │ └── yaml.go │ │ └── resource │ │ ├── builder.go │ │ ├── client.go │ │ ├── crd_finder.go │ │ ├── doc.go │ │ ├── fake.go │ │ ├── helper.go │ │ ├── interfaces.go │ │ ├── kustomizevisitor.go │ │ ├── mapper.go │ │ ├── metadata_decoder.go │ │ ├── query_param_verifier.go │ │ ├── result.go │ │ ├── scheme.go │ │ ├── selector.go │ │ └── visitor.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 │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ ├── v1beta1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── rollbackconfig.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ └── v1beta2 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── scale.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── scale.go │ │ │ │ ├── scalespec.go │ │ │ │ └── scalestatus.go │ │ │ ├── v2 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ ├── hpascalingrules.go │ │ │ │ ├── metricidentifier.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── metrictarget.go │ │ │ │ ├── metricvaluestatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podresourcemetricsource.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ │ ├── v2beta1 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ │ └── v2beta2 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ ├── hpascalingrules.go │ │ │ │ ├── metricidentifier.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── metrictarget.go │ │ │ │ ├── metricvaluestatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── cronjobspec.go │ │ │ │ ├── cronjobstatus.go │ │ │ │ ├── job.go │ │ │ │ ├── jobcondition.go │ │ │ │ ├── jobspec.go │ │ │ │ ├── jobstatus.go │ │ │ │ ├── jobtemplatespec.go │ │ │ │ ├── podfailurepolicy.go │ │ │ │ ├── podfailurepolicyonexitcodesrequirement.go │ │ │ │ ├── podfailurepolicyonpodconditionspattern.go │ │ │ │ ├── podfailurepolicyrule.go │ │ │ │ └── uncountedterminatedpods.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 │ │ │ │ ├── grpcaction.go │ │ │ │ ├── hostalias.go │ │ │ │ ├── hostpathvolumesource.go │ │ │ │ ├── httpgetaction.go │ │ │ │ ├── httpheader.go │ │ │ │ ├── iscsipersistentvolumesource.go │ │ │ │ ├── iscsivolumesource.go │ │ │ │ ├── keytopath.go │ │ │ │ ├── lifecycle.go │ │ │ │ ├── lifecyclehandler.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 │ │ │ │ ├── podos.go │ │ │ │ ├── podreadinessgate.go │ │ │ │ ├── podsecuritycontext.go │ │ │ │ ├── podspec.go │ │ │ │ ├── podstatus.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── podtemplatespec.go │ │ │ │ ├── portstatus.go │ │ │ │ ├── portworxvolumesource.go │ │ │ │ ├── preferredschedulingterm.go │ │ │ │ ├── probe.go │ │ │ │ ├── probehandler.go │ │ │ │ ├── projectedvolumesource.go │ │ │ │ ├── quobytevolumesource.go │ │ │ │ ├── rbdpersistentvolumesource.go │ │ │ │ ├── rbdvolumesource.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontrollercondition.go │ │ │ │ ├── replicationcontrollerspec.go │ │ │ │ ├── replicationcontrollerstatus.go │ │ │ │ ├── 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 │ │ │ │ ├── networkpolicystatus.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 │ │ │ │ ├── scale.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 │ │ │ └── v1beta2 │ │ │ │ ├── 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 │ │ │ │ ├── listmeta.go │ │ │ │ ├── managedfieldsentry.go │ │ │ │ ├── objectmeta.go │ │ │ │ ├── ownerreference.go │ │ │ │ ├── preconditions.go │ │ │ │ ├── typemeta.go │ │ │ │ └── unstructured.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ ├── ingressclassspec.go │ │ │ │ ├── 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 │ │ │ │ ├── networkpolicystatus.go │ │ │ │ └── servicebackendport.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustercidr.go │ │ │ │ └── clustercidrspec.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 │ │ │ │ ├── eviction.go │ │ │ │ ├── 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 │ │ │ ├── csistoragecapacity.go │ │ │ ├── storageclass.go │ │ │ ├── tokenrequest.go │ │ │ ├── volumeattachment.go │ │ │ ├── volumeattachmentsource.go │ │ │ ├── volumeattachmentspec.go │ │ │ ├── volumeattachmentstatus.go │ │ │ ├── volumeerror.go │ │ │ └── volumenoderesources.go │ │ │ ├── v1alpha1 │ │ │ ├── csistoragecapacity.go │ │ │ ├── volumeattachment.go │ │ │ ├── volumeattachmentsource.go │ │ │ ├── volumeattachmentspec.go │ │ │ ├── volumeattachmentstatus.go │ │ │ └── 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 │ │ ├── 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 │ │ │ ├── v2 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ ├── v2beta1 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ └── v2beta2 │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ ├── batch │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── interface.go │ │ │ │ └── job.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ └── interface.go │ │ ├── certificates │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── interface.go │ │ │ └── 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 │ │ │ └── v1beta2 │ │ │ │ ├── flowschema.go │ │ │ │ ├── interface.go │ │ │ │ └── prioritylevelconfiguration.go │ │ ├── generic.go │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ ├── networking │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── interface.go │ │ │ │ └── networkpolicy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustercidr.go │ │ │ │ └── interface.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 │ │ │ ├── csistoragecapacity.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 │ │ │ ├── v2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2beta1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta2 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ ├── fake_cronjob.go │ │ │ │ │ └── fake_job.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ └── v1beta1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_batch_client.go │ │ │ │ └── fake_cronjob.go │ │ │ │ └── generated_expansion.go │ │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ └── fake_certificatesigningrequest.go │ │ │ │ └── generated_expansion.go │ │ │ └── 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 │ │ │ └── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_flowcontrol_client.go │ │ │ │ ├── fake_flowschema.go │ │ │ │ └── fake_prioritylevelconfiguration.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_ingressclass.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ └── fake_networkpolicy.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── networking_client.go │ │ │ │ └── networkpolicy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustercidr.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clustercidr.go │ │ │ │ │ └── fake_networking_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── networking_client.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 │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_eviction.go │ │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ └── fake_policy_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_eviction.go │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ ├── fake_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 │ │ │ ├── csistoragecapacity.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_csidriver.go │ │ │ │ ├── fake_csinode.go │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ ├── fake_storageclass.go │ │ │ │ └── fake_volumeattachment.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ ├── storageclass.go │ │ │ └── volumeattachment.go │ │ │ ├── v1alpha1 │ │ │ ├── csistoragecapacity.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_csistoragecapacity.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ └── fake_volumeattachment.go │ │ │ ├── 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 │ │ │ ├── v2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── v2beta1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta2 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── job.go │ │ │ │ └── job_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ └── expansion_generated.go │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── expansion_generated.go │ │ │ └── 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 │ │ │ └── v1beta2 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── flowschema.go │ │ │ │ └── prioritylevelconfiguration.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ └── networkpolicy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustercidr.go │ │ │ │ └── expansion_generated.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 │ │ │ │ ├── eviction.go │ │ │ │ ├── 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 │ │ │ ├── csistoragecapacity.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 │ ├── metadata │ │ ├── interface.go │ │ └── metadata.go │ ├── openapi │ │ ├── cached │ │ │ ├── client.go │ │ │ └── groupversion.go │ │ ├── client.go │ │ └── groupversion.go │ ├── pkg │ │ ├── apis │ │ │ └── clientauthentication │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── version │ │ │ ├── base.go │ │ │ ├── doc.go │ │ │ └── version.go │ ├── plugin │ │ └── pkg │ │ │ └── client │ │ │ └── auth │ │ │ ├── OWNERS │ │ │ ├── azure │ │ │ ├── README.md │ │ │ └── azure.go │ │ │ ├── exec │ │ │ ├── exec.go │ │ │ └── metrics.go │ │ │ ├── gcp │ │ │ ├── OWNERS │ │ │ └── gcp.go │ │ │ ├── oidc │ │ │ └── oidc.go │ │ │ ├── openstack │ │ │ └── openstack_stub.go │ │ │ ├── plugins.go │ │ │ └── plugins_providers.go │ ├── rest │ │ ├── OWNERS │ │ ├── client.go │ │ ├── config.go │ │ ├── exec.go │ │ ├── fake │ │ │ └── fake.go │ │ ├── plugin.go │ │ ├── request.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── urlbackoff.go │ │ ├── warnings.go │ │ ├── watch │ │ │ ├── decoder.go │ │ │ └── encoder.go │ │ ├── with_retry.go │ │ └── zz_generated.deepcopy.go │ ├── restmapper │ │ ├── category_expansion.go │ │ ├── discovery.go │ │ └── shortcut.go │ ├── scale │ │ ├── client.go │ │ ├── doc.go │ │ ├── interfaces.go │ │ ├── scheme │ │ │ ├── appsint │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── appsv1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── appsv1beta2 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── autoscalingv1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── doc.go │ │ │ ├── extensionsint │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── extensionsv1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── util.go │ ├── testing │ │ ├── actions.go │ │ ├── fake.go │ │ ├── fixture.go │ │ └── interface.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── template │ │ │ ├── exec.go │ │ │ └── funcs.go │ ├── tools │ │ ├── auth │ │ │ ├── OWNERS │ │ │ └── clientauth.go │ │ ├── cache │ │ │ ├── OWNERS │ │ │ ├── controller.go │ │ │ ├── delta_fifo.go │ │ │ ├── doc.go │ │ │ ├── expiration_cache.go │ │ │ ├── expiration_cache_fakes.go │ │ │ ├── fake_custom_store.go │ │ │ ├── fifo.go │ │ │ ├── heap.go │ │ │ ├── index.go │ │ │ ├── listers.go │ │ │ ├── listwatch.go │ │ │ ├── mutation_cache.go │ │ │ ├── mutation_detector.go │ │ │ ├── reflector.go │ │ │ ├── reflector_metrics.go │ │ │ ├── retry_with_deadline.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 │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── auth_loaders.go │ │ │ ├── client_config.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── flag.go │ │ │ ├── helpers.go │ │ │ ├── loader.go │ │ │ ├── merged_client_builder.go │ │ │ ├── overrides.go │ │ │ └── validation.go │ │ ├── events │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event_broadcaster.go │ │ │ ├── event_recorder.go │ │ │ ├── fake.go │ │ │ ├── helper.go │ │ │ └── interfaces.go │ │ ├── leaderelection │ │ │ ├── OWNERS │ │ │ ├── healthzadaptor.go │ │ │ ├── leaderelection.go │ │ │ ├── metrics.go │ │ │ └── resourcelock │ │ │ │ ├── configmaplock.go │ │ │ │ ├── endpointslock.go │ │ │ │ ├── interface.go │ │ │ │ ├── leaselock.go │ │ │ │ └── multilock.go │ │ ├── metrics │ │ │ ├── OWNERS │ │ │ └── metrics.go │ │ ├── pager │ │ │ └── pager.go │ │ ├── record │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_cache.go │ │ │ ├── fake.go │ │ │ └── util │ │ │ │ └── util.go │ │ ├── reference │ │ │ └── ref.go │ │ ├── remotecommand │ │ │ ├── doc.go │ │ │ ├── errorstream.go │ │ │ ├── reader.go │ │ │ ├── remotecommand.go │ │ │ ├── resize.go │ │ │ ├── v1.go │ │ │ ├── v2.go │ │ │ ├── v3.go │ │ │ └── v4.go │ │ └── watch │ │ │ ├── informerwatcher.go │ │ │ ├── retrywatcher.go │ │ │ └── until.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 │ │ └── workqueue │ │ ├── default_rate_limiters.go │ │ ├── delaying_queue.go │ │ ├── doc.go │ │ ├── metrics.go │ │ ├── parallelizer.go │ │ ├── queue.go │ │ └── rate_limiting_queue.go ├── code-generator │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── SECURITY_CONTACTS │ ├── cmd │ │ ├── client-gen │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── args │ │ │ │ ├── args.go │ │ │ │ ├── gvpackages.go │ │ │ │ └── gvtype.go │ │ │ ├── generators │ │ │ │ ├── client_generator.go │ │ │ │ ├── fake │ │ │ │ │ ├── fake_client_generator.go │ │ │ │ │ ├── generator_fake_for_clientset.go │ │ │ │ │ ├── generator_fake_for_group.go │ │ │ │ │ └── generator_fake_for_type.go │ │ │ │ ├── generator_for_clientset.go │ │ │ │ ├── generator_for_expansion.go │ │ │ │ ├── generator_for_group.go │ │ │ │ ├── generator_for_type.go │ │ │ │ ├── scheme │ │ │ │ │ └── generator_for_scheme.go │ │ │ │ └── util │ │ │ │ │ ├── gvpackages.go │ │ │ │ │ └── tags.go │ │ │ ├── main.go │ │ │ ├── path │ │ │ │ └── path.go │ │ │ └── types │ │ │ │ ├── helpers.go │ │ │ │ └── types.go │ │ ├── conversion-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ └── conversion.go │ │ │ └── main.go │ │ ├── deepcopy-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ └── main.go │ │ ├── defaulter-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ └── main.go │ │ ├── go-to-protobuf │ │ │ ├── .gitignore │ │ │ ├── OWNERS │ │ │ ├── main.go │ │ │ └── protobuf │ │ │ │ ├── cmd.go │ │ │ │ ├── generator.go │ │ │ │ ├── import_tracker.go │ │ │ │ ├── namer.go │ │ │ │ ├── package.go │ │ │ │ ├── parser.go │ │ │ │ └── tags.go │ │ ├── import-boss │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── informer-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ ├── factory.go │ │ │ │ ├── factoryinterface.go │ │ │ │ ├── generic.go │ │ │ │ ├── groupinterface.go │ │ │ │ ├── informer.go │ │ │ │ ├── packages.go │ │ │ │ ├── types.go │ │ │ │ └── versioninterface.go │ │ │ └── main.go │ │ ├── lister-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ ├── expansion.go │ │ │ │ └── lister.go │ │ │ └── main.go │ │ ├── openapi-gen │ │ │ └── main.go │ │ ├── register-gen │ │ │ ├── args │ │ │ │ └── args.go │ │ │ ├── generators │ │ │ │ ├── packages.go │ │ │ │ └── register_external.go │ │ │ └── main.go │ │ └── set-gen │ │ │ ├── .gitignore │ │ │ └── main.go │ ├── code-of-conduct.md │ ├── doc.go │ ├── generate-groups.sh │ ├── generate-internal-groups.sh │ ├── pkg │ │ ├── namer │ │ │ └── tag-override.go │ │ └── util │ │ │ ├── build.go │ │ │ └── plural_exceptions.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── reflect │ │ │ └── type.go │ └── tools.go ├── component-base │ ├── LICENSE │ ├── config │ │ ├── OWNERS │ │ ├── doc.go │ │ ├── types.go │ │ ├── v1alpha1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.deepcopy.go │ │ └── zz_generated.deepcopy.go │ ├── featuregate │ │ ├── OWNERS │ │ └── feature_gate.go │ └── version │ │ ├── OWNERS │ │ ├── base.go │ │ └── version.go ├── component-helpers │ ├── LICENSE │ ├── scheduling │ │ └── corev1 │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ └── nodeaffinity │ │ │ └── nodeaffinity.go │ └── storage │ │ └── volume │ │ ├── helpers.go │ │ └── pv_helpers.go ├── gengo │ ├── LICENSE │ ├── args │ │ └── args.go │ ├── examples │ │ ├── deepcopy-gen │ │ │ └── generators │ │ │ │ └── deepcopy.go │ │ ├── defaulter-gen │ │ │ └── generators │ │ │ │ └── defaulter.go │ │ ├── import-boss │ │ │ └── generators │ │ │ │ └── import_restrict.go │ │ └── set-gen │ │ │ ├── generators │ │ │ ├── sets.go │ │ │ └── tags.go │ │ │ └── sets │ │ │ ├── byte.go │ │ │ ├── doc.go │ │ │ ├── empty.go │ │ │ ├── int.go │ │ │ ├── int64.go │ │ │ └── string.go │ ├── generator │ │ ├── default_generator.go │ │ ├── default_package.go │ │ ├── doc.go │ │ ├── error_tracker.go │ │ ├── execute.go │ │ ├── generator.go │ │ ├── import_tracker.go │ │ ├── snippet_writer.go │ │ └── transitive_closure.go │ ├── namer │ │ ├── doc.go │ │ ├── import_tracker.go │ │ ├── namer.go │ │ ├── order.go │ │ └── plural_namer.go │ ├── parser │ │ ├── doc.go │ │ └── parse.go │ └── types │ │ ├── comments.go │ │ ├── doc.go │ │ ├── flatten.go │ │ └── types.go ├── klog │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── klog.go │ ├── klog_file.go │ └── v2 │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── SECURITY.md │ │ ├── SECURITY_CONTACTS │ │ ├── code-of-conduct.md │ │ ├── contextual.go │ │ ├── contextual_slog.go │ │ ├── exit.go │ │ ├── format.go │ │ ├── imports.go │ │ ├── internal │ │ ├── buffer │ │ │ └── buffer.go │ │ ├── clock │ │ │ ├── README.md │ │ │ └── clock.go │ │ ├── dbg │ │ │ └── dbg.go │ │ ├── serialize │ │ │ ├── keyvalues.go │ │ │ ├── keyvalues_no_slog.go │ │ │ └── keyvalues_slog.go │ │ ├── severity │ │ │ └── severity.go │ │ └── sloghandler │ │ │ └── sloghandler_slog.go │ │ ├── k8s_references.go │ │ ├── k8s_references_slog.go │ │ ├── klog.go │ │ ├── klog_file.go │ │ ├── klog_file_others.go │ │ ├── klog_file_windows.go │ │ ├── klogr.go │ │ ├── klogr_slog.go │ │ └── safeptr.go ├── kube-openapi │ ├── LICENSE │ ├── cmd │ │ └── openapi-gen │ │ │ └── args │ │ │ └── args.go │ └── pkg │ │ ├── builder3 │ │ └── util │ │ │ └── util.go │ │ ├── common │ │ ├── common.go │ │ ├── doc.go │ │ └── interfaces.go │ │ ├── generators │ │ ├── README.md │ │ ├── api_linter.go │ │ ├── config.go │ │ ├── enum.go │ │ ├── extension.go │ │ ├── openapi.go │ │ ├── rules │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── idl_tag.go │ │ │ ├── names_match.go │ │ │ └── omitempty_match_case.go │ │ └── union.go │ │ ├── handler3 │ │ └── handler.go │ │ ├── internal │ │ └── handler │ │ │ └── handler_cache.go │ │ ├── openapiconv │ │ └── convert.go │ │ ├── schemaconv │ │ └── smd.go │ │ ├── schemamutation │ │ └── walker.go │ │ ├── spec3 │ │ ├── component.go │ │ ├── encoding.go │ │ ├── example.go │ │ ├── external_documentation.go │ │ ├── header.go │ │ ├── media_type.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path.go │ │ ├── request_body.go │ │ ├── response.go │ │ ├── security_requirement.go │ │ ├── security_scheme.go │ │ ├── server.go │ │ └── spec.go │ │ ├── util │ │ ├── proto │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ ├── document_v3.go │ │ │ ├── openapi.go │ │ │ ├── testing │ │ │ │ ├── openapi.go │ │ │ │ └── openapi_v3.go │ │ │ └── validation │ │ │ │ ├── errors.go │ │ │ │ ├── types.go │ │ │ │ └── validation.go │ │ └── sets │ │ │ ├── empty.go │ │ │ └── string.go │ │ └── validation │ │ └── spec │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── contact_info.go │ │ ├── external_docs.go │ │ ├── gnostic.go │ │ ├── header.go │ │ ├── info.go │ │ ├── items.go │ │ ├── license.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path_item.go │ │ ├── paths.go │ │ ├── ref.go │ │ ├── response.go │ │ ├── responses.go │ │ ├── schema.go │ │ ├── security_scheme.go │ │ ├── swagger.go │ │ └── tag.go ├── kube-scheduler │ ├── LICENSE │ └── extender │ │ └── v1 │ │ ├── doc.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go ├── kubectl │ ├── LICENSE │ └── pkg │ │ ├── cmd │ │ ├── testing │ │ │ ├── fake.go │ │ │ ├── interfaces.go │ │ │ ├── util.go │ │ │ └── zz_generated.deepcopy.go │ │ └── util │ │ │ ├── env_file.go │ │ │ ├── factory.go │ │ │ ├── factory_client_access.go │ │ │ ├── helpers.go │ │ │ ├── kubectl_match_version.go │ │ │ ├── override_options.go │ │ │ └── printing.go │ │ ├── scheme │ │ ├── install.go │ │ └── scheme.go │ │ ├── util │ │ ├── i18n │ │ │ ├── i18n.go │ │ │ └── translations │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── extract.py │ │ │ │ ├── kubectl │ │ │ │ ├── OWNERS │ │ │ │ ├── de_DE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── default │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── en_US │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── fr_FR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── it_IT │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── ja_JP │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── ko_KR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ ├── template.pot │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── k8s.mo │ │ │ │ │ │ └── k8s.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── k8s.mo │ │ │ │ │ └── k8s.po │ │ │ │ └── test │ │ │ │ ├── default │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── k8s.mo │ │ │ │ │ └── k8s.po │ │ │ │ └── en_US │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── k8s.mo │ │ │ │ └── k8s.po │ │ ├── interrupt │ │ │ └── interrupt.go │ │ ├── openapi │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── extensions.go │ │ │ ├── openapi.go │ │ │ ├── openapi_getter.go │ │ │ ├── testing │ │ │ │ └── openapi.go │ │ │ └── validation │ │ │ │ └── validation.go │ │ ├── templates │ │ │ ├── command_groups.go │ │ │ ├── help_flags_printer.go │ │ │ ├── markdown.go │ │ │ ├── normalizers.go │ │ │ ├── templater.go │ │ │ └── templates.go │ │ └── term │ │ │ ├── resize.go │ │ │ ├── resizeevents.go │ │ │ ├── resizeevents_windows.go │ │ │ ├── term.go │ │ │ └── term_writer.go │ │ └── validation │ │ └── schema.go ├── kubernetes │ ├── LICENSE │ └── pkg │ │ ├── api │ │ └── legacyscheme │ │ │ └── scheme.go │ │ ├── apis │ │ ├── apps │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── autoscaling │ │ │ ├── OWNERS │ │ │ ├── annotations.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── core │ │ │ ├── OWNERS │ │ │ ├── annotation_key_constants.go │ │ │ ├── doc.go │ │ │ ├── helper │ │ │ └── helpers.go │ │ │ ├── json.go │ │ │ ├── objectreference.go │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── taint.go │ │ │ ├── toleration.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ ├── OWNERS │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── helper │ │ │ │ └── helpers.go │ │ │ ├── register.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── features │ │ ├── OWNERS │ │ └── kube_features.go │ │ ├── printers │ │ ├── .import-restrictions │ │ ├── OWNERS │ │ ├── interface.go │ │ └── tablegenerator.go │ │ ├── registry │ │ └── core │ │ │ └── service │ │ │ ├── allocator │ │ │ ├── bitmap.go │ │ │ ├── interfaces.go │ │ │ └── utils.go │ │ │ └── portallocator │ │ │ ├── allocator.go │ │ │ └── operation.go │ │ └── util │ │ ├── goroutinemap │ │ ├── OWNERS │ │ ├── exponentialbackoff │ │ │ └── exponential_backoff.go │ │ └── goroutinemap.go │ │ ├── node │ │ └── node.go │ │ ├── parsers │ │ └── parsers.go │ │ └── slice │ │ └── slice.go ├── metrics │ ├── LICENSE │ └── pkg │ │ ├── apis │ │ └── metrics │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.deepcopy.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 │ │ └── client │ │ └── clientset │ │ └── versioned │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── metrics │ │ ├── v1alpha1 │ │ ├── doc.go │ │ ├── generated_expansion.go │ │ ├── metrics_client.go │ │ ├── nodemetrics.go │ │ └── podmetrics.go │ │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated_expansion.go │ │ ├── metrics_client.go │ │ ├── nodemetrics.go │ │ └── podmetrics.go └── utils │ ├── LICENSE │ ├── buffer │ └── ring_growing.go │ ├── clock │ ├── README.md │ ├── clock.go │ └── testing │ │ ├── fake_clock.go │ │ └── simple_interval_clock.go │ ├── exec │ ├── README.md │ ├── doc.go │ ├── exec.go │ ├── fixup_go118.go │ └── fixup_go119.go │ ├── integer │ └── integer.go │ ├── internal │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── net │ │ ├── ip.go │ │ └── parse.go │ ├── net │ ├── ipfamily.go │ ├── ipnet.go │ ├── net.go │ ├── parse.go │ └── port.go │ ├── pointer │ ├── OWNERS │ ├── README.md │ └── pointer.go │ ├── ptr │ ├── OWNERS │ ├── README.md │ └── ptr.go │ ├── strings │ └── slices │ │ └── slices.go │ └── trace │ ├── README.md │ └── trace.go ├── knative.dev └── pkg │ ├── LICENSE │ ├── apis │ ├── OWNERS │ ├── condition_set.go │ ├── condition_types.go │ ├── contexts.go │ ├── convert.go │ ├── deprecated.go │ ├── doc.go │ ├── duck │ │ ├── ABOUT.md │ │ ├── OWNERS │ │ ├── README.md │ │ ├── cached.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── ducktypes │ │ │ └── ducktypes.go │ │ ├── enqueue.go │ │ ├── interface.go │ │ ├── patch.go │ │ ├── register.go │ │ ├── typed.go │ │ ├── unstructured.go │ │ ├── v1 │ │ │ ├── addressable_types.go │ │ │ ├── binding_types.go │ │ │ ├── cronjob_defaults.go │ │ │ ├── cronjob_types.go │ │ │ ├── cronjob_validation.go │ │ │ ├── destination.go │ │ │ ├── doc.go │ │ │ ├── knative_reference.go │ │ │ ├── kresource_type.go │ │ │ ├── podspec_defaults.go │ │ │ ├── podspec_types.go │ │ │ ├── podspec_validation.go │ │ │ ├── register.go │ │ │ ├── source_types.go │ │ │ ├── status_types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── verify.go │ ├── field_error.go │ ├── interfaces.go │ ├── kind2resource.go │ ├── metadata_validation.go │ ├── url.go │ ├── volatile_time.go │ └── zz_generated.deepcopy.go │ ├── changeset │ ├── commit.go │ └── doc.go │ ├── configmap │ ├── doc.go │ ├── example.go │ ├── filter.go │ ├── load.go │ ├── manual_watcher.go │ ├── parse.go │ ├── static_watcher.go │ ├── store.go │ └── watcher.go │ ├── kmap │ ├── lookup.go │ └── map.go │ ├── kmeta │ ├── accessor.go │ ├── doc.go │ ├── labels.go │ ├── map.go │ ├── names.go │ ├── owner_references.go │ └── ownerrefable_accessor.go │ ├── kmp │ ├── diff.go │ ├── doc.go │ └── reporters.go │ ├── logging │ ├── config.go │ ├── logger.go │ ├── logkey │ │ └── constants.go │ ├── object_encoders.go │ ├── warning_handler.go │ └── zz_generated.deepcopy.go │ ├── metrics │ ├── README.md │ ├── client.go │ ├── config.go │ ├── config_observability.go │ ├── doc.go │ ├── exporter.go │ ├── memstats.go │ ├── metrics.go │ ├── metrics_worker.go │ ├── metricskey │ │ └── constants.go │ ├── opencensus_exporter.go │ ├── prometheus_exporter.go │ ├── record.go │ ├── resource_view.go │ ├── testing.go │ ├── utils.go │ ├── workqueue.go │ └── zz_generated.deepcopy.go │ ├── tracker │ ├── doc.go │ ├── enqueue.go │ ├── interface.go │ └── zz_generated.deepcopy.go │ └── webhook │ └── resourcesemantics │ └── interface.go ├── kubevirt.io ├── api │ ├── LICENSE │ ├── clone │ │ ├── register.go │ │ └── v1alpha1 │ │ │ ├── deepcopy_generated.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── types_swagger_generated.go │ ├── core │ │ ├── register.go │ │ └── v1 │ │ │ ├── componentconfig.go │ │ │ ├── deepcopy_generated.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── sanitizers.go │ │ │ ├── schema.go │ │ │ ├── schema_swagger_generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_generated.go │ │ │ └── zz_generated.defaults.go │ ├── export │ │ ├── register.go │ │ └── v1alpha1 │ │ │ ├── deepcopy_generated.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── types_swagger_generated.go │ ├── instancetype │ │ ├── register.go │ │ ├── v1alpha1 │ │ │ ├── conversion.go │ │ │ ├── conversion_generated.go │ │ │ ├── deepcopy_generated.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── types_swagger_generated.go │ │ ├── v1alpha2 │ │ │ ├── conversion.go │ │ │ ├── conversion_generated.go │ │ │ ├── deepcopy_generated.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── types_swagger_generated.go │ │ └── v1beta1 │ │ │ ├── deepcopy_generated.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── types_swagger_generated.go │ ├── migrations │ │ ├── register.go │ │ └── v1alpha1 │ │ │ ├── deepcopy_generated.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_generated.go │ │ │ └── zz_generated.defaults.go │ ├── pool │ │ ├── register.go │ │ └── v1alpha1 │ │ │ ├── deepcopy_generated.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── types_swagger_generated.go │ └── snapshot │ │ ├── register.go │ │ └── v1alpha1 │ │ ├── deepcopy_generated.go │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ └── types_swagger_generated.go ├── client-go │ ├── LICENSE │ ├── generated │ │ ├── containerized-data-importer │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ ├── core │ │ │ │ └── v1beta1 │ │ │ │ │ ├── cdi.go │ │ │ │ │ ├── cdiconfig.go │ │ │ │ │ ├── core_client.go │ │ │ │ │ ├── dataimportcron.go │ │ │ │ │ ├── datasource.go │ │ │ │ │ ├── datavolume.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── objecttransfer.go │ │ │ │ │ └── storageprofile.go │ │ │ │ └── upload │ │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── upload_client.go │ │ │ │ └── uploadtokenrequest.go │ │ ├── external-snapshotter │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── volumesnapshot │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── volumesnapshot.go │ │ │ │ ├── volumesnapshot_client.go │ │ │ │ ├── volumesnapshotclass.go │ │ │ │ └── volumesnapshotcontent.go │ │ ├── kubevirt │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ ├── clone │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── clone_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── virtualmachineclone.go │ │ │ │ ├── export │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── export_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── virtualmachineexport.go │ │ │ │ ├── instancetype │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── instancetype_client.go │ │ │ │ │ ├── virtualmachineclusterinstancetype.go │ │ │ │ │ ├── virtualmachineclusterpreference.go │ │ │ │ │ ├── virtualmachineinstancetype.go │ │ │ │ │ └── virtualmachinepreference.go │ │ │ │ └── v1alpha2 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── instancetype_client.go │ │ │ │ │ ├── virtualmachineclusterinstancetype.go │ │ │ │ │ ├── virtualmachineclusterpreference.go │ │ │ │ │ ├── virtualmachineinstancetype.go │ │ │ │ │ └── virtualmachinepreference.go │ │ │ │ ├── migrations │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── migrationpolicy.go │ │ │ │ │ └── migrations_client.go │ │ │ │ ├── pool │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── pool_client.go │ │ │ │ │ └── virtualmachinepool.go │ │ │ │ └── snapshot │ │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── snapshot_client.go │ │ │ │ ├── virtualmachinerestore.go │ │ │ │ ├── virtualmachinesnapshot.go │ │ │ │ └── virtualmachinesnapshotcontent.go │ │ ├── network-attachment-definition-client │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── k8s.cni.cncf.io │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── k8s.cni.cncf.io_client.go │ │ │ │ └── networkattachmentdefinition.go │ │ └── prometheus-operator │ │ │ └── clientset │ │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── monitoring │ │ │ └── v1 │ │ │ ├── alertmanager.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── monitoring_client.go │ │ │ ├── podmonitor.go │ │ │ ├── prometheus.go │ │ │ ├── prometheusrule.go │ │ │ ├── servicemonitor.go │ │ │ └── thanosruler.go │ ├── kubecli │ │ ├── async.go │ │ ├── generated_mock_kubevirt.go │ │ ├── guestfs.go │ │ ├── handler.go │ │ ├── instancetype.go │ │ ├── kubecli.go │ │ ├── kubevirt.go │ │ ├── kubevirt_test_utils.go │ │ ├── kv.go │ │ ├── migration.go │ │ ├── profiler.go │ │ ├── replicaset.go │ │ ├── streamer.go │ │ ├── version.go │ │ ├── vm.go │ │ ├── vmi.go │ │ ├── vmipreset.go │ │ └── websocket.go │ ├── log │ │ └── log.go │ ├── subresources │ │ └── constants.go │ ├── util │ │ └── util.go │ └── version │ │ ├── base.go │ │ ├── def.bzl │ │ ├── types.go │ │ └── version.go ├── containerized-data-importer-api │ ├── LICENSE │ └── pkg │ │ └── apis │ │ ├── core │ │ ├── register.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_generated.go │ │ │ ├── types_transfer.go │ │ │ ├── utils.go │ │ │ └── zz_generated.deepcopy.go │ │ └── upload │ │ ├── register.go │ │ └── v1beta1 │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_generated.go │ │ └── zz_generated.deepcopy.go └── controller-lifecycle-operator-sdk │ └── api │ ├── LICENSE │ └── types.go ├── modules.txt ├── oras.land └── oras-go │ ├── LICENSE │ └── pkg │ ├── artifact │ └── consts.go │ ├── auth │ ├── client.go │ ├── client_opts.go │ └── docker │ │ ├── client.go │ │ ├── login.go │ │ ├── login_tls.go │ │ ├── logout.go │ │ └── resolver.go │ ├── content │ ├── consts.go │ ├── decompress.go │ ├── errors.go │ ├── file.go │ ├── gunzip.go │ ├── interface.go │ ├── iowriter.go │ ├── manifest.go │ ├── memory.go │ ├── multireader.go │ ├── multiwriter.go │ ├── oci.go │ ├── opts.go │ ├── passthrough.go │ ├── readerat.go │ ├── registry.go │ ├── untar.go │ └── utils.go │ ├── context │ ├── context.go │ └── logger.go │ ├── oras │ ├── copy.go │ ├── errors.go │ ├── opts.go │ ├── provider.go │ └── store.go │ ├── registry │ ├── reference.go │ ├── remote │ │ ├── auth │ │ │ ├── cache.go │ │ │ ├── challenge.go │ │ │ ├── client.go │ │ │ ├── credential.go │ │ │ └── scope.go │ │ ├── internal │ │ │ ├── errutil │ │ │ │ └── errors.go │ │ │ └── syncutil │ │ │ │ └── once.go │ │ ├── repository.go │ │ ├── url.go │ │ └── utils.go │ └── repository.go │ └── target │ └── target.go └── sigs.k8s.io ├── cluster-api ├── LICENSE ├── errors │ ├── clusters.go │ ├── consts.go │ ├── controllers.go │ ├── deployer.go │ ├── machines.go │ └── pointer.go └── pkg │ └── apis │ └── deprecated │ └── v1alpha1 │ ├── cluster_types.go │ ├── common_types.go │ ├── defaults.go │ ├── doc.go │ ├── machine_types.go │ ├── machineclass_types.go │ ├── machinedeployment_types.go │ ├── machineset_types.go │ ├── register.go │ └── zz_generated.deepcopy.go ├── controller-runtime ├── LICENSE └── pkg │ ├── cache │ ├── cache.go │ ├── doc.go │ ├── informer_cache.go │ ├── internal │ │ ├── cache_reader.go │ │ ├── deleg_map.go │ │ ├── disabledeepcopy.go │ │ ├── informers_map.go │ │ ├── selector.go │ │ └── transformers.go │ └── multi_namespace_cache.go │ ├── certwatcher │ ├── certwatcher.go │ ├── doc.go │ └── metrics │ │ └── metrics.go │ ├── client │ ├── apiutil │ │ ├── apimachinery.go │ │ └── dynamicrestmapper.go │ ├── client.go │ ├── client_cache.go │ ├── codec.go │ ├── doc.go │ ├── dryrun.go │ ├── fake │ │ ├── client.go │ │ └── doc.go │ ├── interfaces.go │ ├── metadata_client.go │ ├── namespaced_client.go │ ├── object.go │ ├── options.go │ ├── patch.go │ ├── split.go │ ├── typed_client.go │ ├── unstructured_client.go │ └── watch.go │ ├── cluster │ ├── cluster.go │ └── internal.go │ ├── config │ ├── config.go │ ├── doc.go │ └── v1alpha1 │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go │ ├── controller │ ├── controller.go │ └── doc.go │ ├── event │ ├── doc.go │ └── event.go │ ├── handler │ ├── doc.go │ ├── enqueue.go │ ├── enqueue_mapped.go │ ├── enqueue_owner.go │ └── eventhandler.go │ ├── healthz │ ├── doc.go │ └── healthz.go │ ├── internal │ ├── controller │ │ ├── controller.go │ │ └── metrics │ │ │ └── metrics.go │ ├── httpserver │ │ └── server.go │ ├── log │ │ └── log.go │ ├── objectutil │ │ └── objectutil.go │ └── recorder │ │ └── recorder.go │ ├── leaderelection │ ├── doc.go │ └── leader_election.go │ ├── log │ ├── deleg.go │ ├── log.go │ ├── null.go │ └── warning_handler.go │ ├── manager │ ├── doc.go │ ├── internal.go │ ├── manager.go │ └── runnable_group.go │ ├── metrics │ ├── client_go_adapter.go │ ├── doc.go │ ├── listener.go │ ├── registry.go │ └── workqueue.go │ ├── predicate │ ├── doc.go │ └── predicate.go │ ├── ratelimiter │ ├── doc.go │ └── ratelimiter.go │ ├── reconcile │ ├── doc.go │ └── reconcile.go │ ├── recorder │ └── recorder.go │ ├── runtime │ └── inject │ │ ├── doc.go │ │ └── inject.go │ ├── scheme │ └── scheme.go │ ├── source │ ├── doc.go │ ├── internal │ │ └── eventsource.go │ └── source.go │ └── webhook │ ├── admission │ ├── decode.go │ ├── defaulter.go │ ├── defaulter_custom.go │ ├── doc.go │ ├── http.go │ ├── inject.go │ ├── multi.go │ ├── response.go │ ├── validator.go │ ├── validator_custom.go │ └── webhook.go │ ├── alias.go │ ├── doc.go │ ├── internal │ └── metrics │ │ └── metrics.go │ └── server.go ├── gcp-compute-persistent-disk-csi-driver ├── LICENSE └── pkg │ └── common │ ├── constants.go │ ├── parameters.go │ ├── utils.go │ └── volume_lock.go ├── json ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── SECURITY.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── doc.go ├── internal │ └── golang │ │ └── encoding │ │ └── json │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fold.go │ │ ├── fuzz.go │ │ ├── indent.go │ │ ├── kubernetes_patch.go │ │ ├── scanner.go │ │ ├── stream.go │ │ ├── tables.go │ │ └── tags.go └── json.go ├── kustomize ├── api │ ├── LICENSE │ ├── filters │ │ ├── annotations │ │ │ ├── annotations.go │ │ │ └── doc.go │ │ ├── fieldspec │ │ │ ├── doc.go │ │ │ └── fieldspec.go │ │ ├── filtersutil │ │ │ └── setters.go │ │ ├── fsslice │ │ │ ├── doc.go │ │ │ └── fsslice.go │ │ ├── iampolicygenerator │ │ │ ├── doc.go │ │ │ └── iampolicygenerator.go │ │ ├── imagetag │ │ │ ├── doc.go │ │ │ ├── imagetag.go │ │ │ ├── legacy.go │ │ │ └── updater.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ └── labels.go │ │ ├── nameref │ │ │ ├── doc.go │ │ │ ├── nameref.go │ │ │ └── seqfilter.go │ │ ├── namespace │ │ │ ├── doc.go │ │ │ └── namespace.go │ │ ├── patchjson6902 │ │ │ ├── doc.go │ │ │ └── patchjson6902.go │ │ ├── patchstrategicmerge │ │ │ ├── doc.go │ │ │ └── patchstrategicmerge.go │ │ ├── prefix │ │ │ ├── doc.go │ │ │ └── prefix.go │ │ ├── refvar │ │ │ ├── doc.go │ │ │ ├── expand.go │ │ │ └── refvar.go │ │ ├── replacement │ │ │ ├── doc.go │ │ │ └── replacement.go │ │ ├── replicacount │ │ │ ├── doc.go │ │ │ └── replicacount.go │ │ ├── suffix │ │ │ ├── doc.go │ │ │ └── suffix.go │ │ └── valueadd │ │ │ └── valueadd.go │ ├── hasher │ │ └── hasher.go │ ├── ifc │ │ └── ifc.go │ ├── image │ │ └── image.go │ ├── internal │ │ ├── accumulator │ │ │ ├── loadconfigfromcrds.go │ │ │ ├── namereferencetransformer.go │ │ │ ├── refvartransformer.go │ │ │ └── resaccumulator.go │ │ ├── builtins │ │ │ ├── AnnotationsTransformer.go │ │ │ ├── ConfigMapGenerator.go │ │ │ ├── HashTransformer.go │ │ │ ├── HelmChartInflationGenerator.go │ │ │ ├── IAMPolicyGenerator.go │ │ │ ├── ImageTagTransformer.go │ │ │ ├── LabelTransformer.go │ │ │ ├── LegacyOrderTransformer.go │ │ │ ├── NamespaceTransformer.go │ │ │ ├── PatchJson6902Transformer.go │ │ │ ├── PatchStrategicMergeTransformer.go │ │ │ ├── PatchTransformer.go │ │ │ ├── PrefixTransformer.go │ │ │ ├── ReplacementTransformer.go │ │ │ ├── ReplicaCountTransformer.go │ │ │ ├── SecretGenerator.go │ │ │ ├── SuffixTransformer.go │ │ │ ├── ValueAddTransformer.go │ │ │ └── doc.go │ │ ├── generators │ │ │ ├── configmap.go │ │ │ ├── secret.go │ │ │ └── utils.go │ │ ├── git │ │ │ ├── cloner.go │ │ │ ├── gitrunner.go │ │ │ └── repospec.go │ │ ├── kusterr │ │ │ └── yamlformaterror.go │ │ ├── plugins │ │ │ ├── builtinconfig │ │ │ │ ├── doc.go │ │ │ │ ├── loaddefaultconfig.go │ │ │ │ ├── namebackreferences.go │ │ │ │ └── transformerconfig.go │ │ │ ├── builtinhelpers │ │ │ │ ├── builtinplugintype_string.go │ │ │ │ └── builtins.go │ │ │ ├── execplugin │ │ │ │ └── execplugin.go │ │ │ ├── fnplugin │ │ │ │ └── fnplugin.go │ │ │ ├── loader │ │ │ │ └── loader.go │ │ │ └── utils │ │ │ │ └── utils.go │ │ ├── target │ │ │ ├── errmissingkustomization.go │ │ │ ├── kusttarget.go │ │ │ ├── kusttarget_configplugin.go │ │ │ └── multitransformer.go │ │ ├── utils │ │ │ ├── annotations.go │ │ │ ├── errtimeout.go │ │ │ ├── makeResIds.go │ │ │ ├── stringslice.go │ │ │ └── timedcall.go │ │ └── validate │ │ │ └── fieldvalidator.go │ ├── konfig │ │ ├── builtinpluginconsts │ │ │ ├── commonannotations.go │ │ │ ├── commonlabels.go │ │ │ ├── defaultconfig.go │ │ │ ├── doc.go │ │ │ ├── images.go │ │ │ ├── nameprefix.go │ │ │ ├── namereference.go │ │ │ ├── namespace.go │ │ │ ├── namesuffix.go │ │ │ ├── replicas.go │ │ │ └── varreference.go │ │ ├── doc.go │ │ ├── general.go │ │ └── plugins.go │ ├── krusty │ │ ├── doc.go │ │ ├── kustomizer.go │ │ └── options.go │ ├── kv │ │ └── kv.go │ ├── loader │ │ ├── errors.go │ │ ├── fileloader.go │ │ ├── loader.go │ │ └── loadrestrictions.go │ ├── provenance │ │ └── provenance.go │ ├── provider │ │ └── depprovider.go │ ├── resmap │ │ ├── factory.go │ │ ├── idslice.go │ │ ├── resmap.go │ │ └── reswrangler.go │ ├── resource │ │ ├── doc.go │ │ ├── factory.go │ │ ├── idset.go │ │ ├── origin.go │ │ └── resource.go │ └── types │ │ ├── builtinpluginloadingoptions_string.go │ │ ├── configmapargs.go │ │ ├── doc.go │ │ ├── erronlybuiltinpluginsallowed.go │ │ ├── errunabletofind.go │ │ ├── fieldspec.go │ │ ├── fix.go │ │ ├── generationbehavior.go │ │ ├── generatorargs.go │ │ ├── generatoroptions.go │ │ ├── helmchartargs.go │ │ ├── iampolicygenerator.go │ │ ├── image.go │ │ ├── inventory.go │ │ ├── kustomization.go │ │ ├── kvpairsources.go │ │ ├── labels.go │ │ ├── loadrestrictions.go │ │ ├── loadrestrictions_string.go │ │ ├── objectmeta.go │ │ ├── pair.go │ │ ├── patch.go │ │ ├── patchstrategicmerge.go │ │ ├── pluginconfig.go │ │ ├── pluginrestrictions.go │ │ ├── pluginrestrictions_string.go │ │ ├── replacement.go │ │ ├── replacementfield.go │ │ ├── replica.go │ │ ├── secretargs.go │ │ ├── selector.go │ │ ├── typemeta.go │ │ └── var.go └── kyaml │ ├── LICENSE │ ├── comments │ └── comments.go │ ├── errors │ └── errors.go │ ├── ext │ └── ext.go │ ├── fieldmeta │ └── fieldmeta.go │ ├── filesys │ ├── confirmeddir.go │ ├── doc.go │ ├── file.go │ ├── fileinfo.go │ ├── fileondisk.go │ ├── filesystem.go │ ├── fsnode.go │ ├── fsondisk.go │ ├── fsondisk_unix.go │ ├── fsondisk_windows.go │ └── util.go │ ├── fn │ └── runtime │ │ ├── container │ │ └── container.go │ │ ├── exec │ │ ├── doc.go │ │ └── exec.go │ │ ├── runtimeutil │ │ ├── doc.go │ │ ├── functiontypes.go │ │ ├── runtimeutil.go │ │ └── types.go │ │ └── starlark │ │ ├── context.go │ │ ├── doc.go │ │ └── starlark.go │ ├── internal │ └── forked │ │ └── github.com │ │ ├── go-yaml │ │ └── yaml │ │ │ ├── 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 │ │ └── qri-io │ │ └── starlib │ │ └── util │ │ ├── LICENSE │ │ ├── doc.go │ │ └── util.go │ ├── kio │ ├── byteio_reader.go │ ├── byteio_writer.go │ ├── doc.go │ ├── filters │ │ ├── filters.go │ │ ├── fmtr.go │ │ ├── grep.go │ │ ├── local.go │ │ ├── merge.go │ │ ├── merge3.go │ │ ├── modify.go │ │ └── stripcomments.go │ ├── ignorefilesmatcher.go │ ├── kio.go │ ├── kioutil │ │ └── kioutil.go │ ├── pkgio_reader.go │ ├── pkgio_writer.go │ └── tree.go │ ├── openapi │ ├── Makefile │ ├── README.md │ ├── kubernetesapi │ │ ├── openapiinfo.go │ │ └── v1212 │ │ │ ├── swagger.go │ │ │ └── swagger.pb │ ├── kustomizationapi │ │ ├── swagger.go │ │ └── swagger.json │ └── openapi.go │ ├── order │ └── syncorder.go │ ├── resid │ ├── gvk.go │ └── resid.go │ ├── runfn │ └── runfn.go │ ├── sets │ ├── string.go │ └── stringlist.go │ ├── sliceutil │ └── slice.go │ ├── utils │ └── pathsplitter.go │ └── yaml │ ├── alias.go │ ├── compatibility.go │ ├── const.go │ ├── datamap.go │ ├── doc.go │ ├── filters.go │ ├── fns.go │ ├── internal │ └── k8sgen │ │ └── pkg │ │ ├── labels │ │ ├── copied.deepcopy.go │ │ ├── labels.go │ │ └── selector.go │ │ ├── selection │ │ └── operator.go │ │ └── util │ │ ├── errors │ │ └── errors.go │ │ ├── sets │ │ ├── empty.go │ │ └── string.go │ │ └── validation │ │ ├── field │ │ ├── errors.go │ │ └── path.go │ │ └── validation.go │ ├── kfns.go │ ├── mapnode.go │ ├── match.go │ ├── merge2 │ ├── merge2.go │ ├── smpdirective.go │ └── smpdirective_string.go │ ├── merge3 │ ├── merge3.go │ └── visitor.go │ ├── order.go │ ├── rnode.go │ ├── schema │ └── schema.go │ ├── types.go │ ├── util.go │ └── walk │ ├── associative_sequence.go │ ├── map.go │ ├── nonassociative_sequence.go │ ├── scalar.go │ ├── visitor.go │ └── walk.go ├── sig-storage-lib-external-provisioner └── v6 │ ├── LICENSE │ ├── controller │ ├── controller.go │ ├── doc.go │ ├── metrics │ │ ├── doc.go │ │ └── metrics.go │ ├── volume.go │ └── volume_store.go │ └── util │ ├── doc.go │ └── util.go ├── structured-merge-diff └── v4 │ ├── LICENSE │ ├── fieldpath │ ├── doc.go │ ├── element.go │ ├── fromvalue.go │ ├── managers.go │ ├── path.go │ ├── pathelementmap.go │ ├── serialize-pe.go │ ├── serialize.go │ └── set.go │ ├── schema │ ├── doc.go │ ├── elements.go │ ├── equals.go │ └── schemaschema.go │ ├── typed │ ├── compare.go │ ├── doc.go │ ├── helpers.go │ ├── merge.go │ ├── parser.go │ ├── reconcile_schema.go │ ├── remove.go │ ├── tofieldset.go │ ├── typed.go │ └── validate.go │ └── value │ ├── allocator.go │ ├── doc.go │ ├── fields.go │ ├── jsontagutil.go │ ├── list.go │ ├── listreflect.go │ ├── listunstructured.go │ ├── map.go │ ├── mapreflect.go │ ├── mapunstructured.go │ ├── reflectcache.go │ ├── scalar.go │ ├── structreflect.go │ ├── value.go │ ├── valuereflect.go │ └── valueunstructured.go └── yaml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── fields.go ├── goyaml.v2 ├── LICENSE ├── LICENSE.libyaml ├── NOTICE ├── OWNERS ├── README.md ├── apic.go ├── decode.go ├── emitterc.go ├── encode.go ├── parserc.go ├── readerc.go ├── resolve.go ├── scannerc.go ├── sorter.go ├── writerc.go ├── yaml.go ├── yamlh.go └── yamlprivateh.go ├── yaml.go └── yaml_go110.go /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.cmdexecutor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/Dockerfile.cmdexecutor -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/README.md -------------------------------------------------------------------------------- /STYLEGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/STYLEGUIDE.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/_config.yml -------------------------------------------------------------------------------- /cmd/cmdexecutor/cmdexecutor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/cmd/cmdexecutor/cmdexecutor.go -------------------------------------------------------------------------------- /cmd/cmdexecutor/specs/cmdexecutor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/cmd/cmdexecutor/specs/cmdexecutor.yaml -------------------------------------------------------------------------------- /cmd/stork/stork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/cmd/stork/stork.go -------------------------------------------------------------------------------- /cmd/storkctl/storkctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/cmd/storkctl/storkctl.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: 2 | require_changes: true 3 | -------------------------------------------------------------------------------- /doc/snaps-3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/doc/snaps-3d.md -------------------------------------------------------------------------------- /doc/snaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/doc/snaps.md -------------------------------------------------------------------------------- /drivers/drivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/drivers/drivers.go -------------------------------------------------------------------------------- /drivers/volume/aws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/drivers/volume/aws/aws.go -------------------------------------------------------------------------------- /drivers/volume/azure/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/drivers/volume/azure/azure.go -------------------------------------------------------------------------------- /drivers/volume/csi/csi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/drivers/volume/csi/csi.go -------------------------------------------------------------------------------- /drivers/volume/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/drivers/volume/errors.go -------------------------------------------------------------------------------- /drivers/volume/gcp/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/drivers/volume/gcp/gcp.go -------------------------------------------------------------------------------- /drivers/volume/kdmp/kdmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/drivers/volume/kdmp/kdmp.go -------------------------------------------------------------------------------- /drivers/volume/linstor/linstor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/drivers/volume/linstor/linstor.go -------------------------------------------------------------------------------- /drivers/volume/mock/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/drivers/volume/mock/mock.go -------------------------------------------------------------------------------- /drivers/volume/portworx/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/drivers/volume/portworx/errors.go -------------------------------------------------------------------------------- /drivers/volume/portworx/portworx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/drivers/volume/portworx/portworx.go -------------------------------------------------------------------------------- /drivers/volume/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/drivers/volume/volume.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/go.sum -------------------------------------------------------------------------------- /hack/custom-boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/hack/custom-boilerplate.go.txt -------------------------------------------------------------------------------- /hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/hack/tools.go -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /help-cmdexecutor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/help-cmdexecutor.md -------------------------------------------------------------------------------- /help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/help.md -------------------------------------------------------------------------------- /images/stork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/images/stork.png -------------------------------------------------------------------------------- /pkg/action/actioncontroller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/action/actioncontroller.go -------------------------------------------------------------------------------- /pkg/action/drutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/action/drutils.go -------------------------------------------------------------------------------- /pkg/action/drutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/action/drutils_test.go -------------------------------------------------------------------------------- /pkg/action/failback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/action/failback.go -------------------------------------------------------------------------------- /pkg/action/failover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/action/failover.go -------------------------------------------------------------------------------- /pkg/aetosutils/dashboardutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/aetosutils/dashboardutils.go -------------------------------------------------------------------------------- /pkg/apis/apis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/apis/apis.go -------------------------------------------------------------------------------- /pkg/apis/stork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/apis/stork.go -------------------------------------------------------------------------------- /pkg/apis/stork/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/apis/stork/register.go -------------------------------------------------------------------------------- /pkg/apis/stork/v1alpha1/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/apis/stork/v1alpha1/action.go -------------------------------------------------------------------------------- /pkg/apis/stork/v1alpha1/clusterpair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/apis/stork/v1alpha1/clusterpair.go -------------------------------------------------------------------------------- /pkg/apis/stork/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/apis/stork/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/stork/v1alpha1/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/apis/stork/v1alpha1/migration.go -------------------------------------------------------------------------------- /pkg/apis/stork/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/apis/stork/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/stork/v1alpha1/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/apis/stork/v1alpha1/rule.go -------------------------------------------------------------------------------- /pkg/appregistration/appregistration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/appregistration/appregistration.go -------------------------------------------------------------------------------- /pkg/buildinfo/buildinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/buildinfo/buildinfo.go -------------------------------------------------------------------------------- /pkg/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/cache/cache.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/client/clientset/versioned/doc.go -------------------------------------------------------------------------------- /pkg/clusterdomains/clusterdomains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/clusterdomains/clusterdomains.go -------------------------------------------------------------------------------- /pkg/cmdexecutor/cmdexecutor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/cmdexecutor/cmdexecutor.go -------------------------------------------------------------------------------- /pkg/cmdexecutor/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/cmdexecutor/status/status.go -------------------------------------------------------------------------------- /pkg/controllers/controllers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/controllers/controllers.go -------------------------------------------------------------------------------- /pkg/controllers/finalizers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/controllers/finalizers.go -------------------------------------------------------------------------------- /pkg/crud/externalstorage/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/externalstorage/snapshot.go -------------------------------------------------------------------------------- /pkg/crud/stork/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/action.go -------------------------------------------------------------------------------- /pkg/crud/stork/applicationclone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/applicationclone.go -------------------------------------------------------------------------------- /pkg/crud/stork/backuplocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/backuplocation.go -------------------------------------------------------------------------------- /pkg/crud/stork/clusterdomains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/clusterdomains.go -------------------------------------------------------------------------------- /pkg/crud/stork/clusterpair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/clusterpair.go -------------------------------------------------------------------------------- /pkg/crud/stork/groupsnapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/groupsnapshot.go -------------------------------------------------------------------------------- /pkg/crud/stork/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/migration.go -------------------------------------------------------------------------------- /pkg/crud/stork/platformcredential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/platformcredential.go -------------------------------------------------------------------------------- /pkg/crud/stork/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/rule.go -------------------------------------------------------------------------------- /pkg/crud/stork/schedulepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/schedulepolicy.go -------------------------------------------------------------------------------- /pkg/crud/stork/snapshotschedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/snapshotschedule.go -------------------------------------------------------------------------------- /pkg/crud/stork/stork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/stork.go -------------------------------------------------------------------------------- /pkg/crud/stork/volumesnapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crud/stork/volumesnapshot.go -------------------------------------------------------------------------------- /pkg/crypto/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crypto/crypto.go -------------------------------------------------------------------------------- /pkg/crypto/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/crypto/crypto_test.go -------------------------------------------------------------------------------- /pkg/dbg/dbg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/dbg/dbg.go -------------------------------------------------------------------------------- /pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/errors/errors.go -------------------------------------------------------------------------------- /pkg/extender/extender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/extender/extender.go -------------------------------------------------------------------------------- /pkg/extender/extender_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/extender/extender_test.go -------------------------------------------------------------------------------- /pkg/groupsnapshot/groupsnapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/groupsnapshot/groupsnapshot.go -------------------------------------------------------------------------------- /pkg/k8sutils/k8sutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/k8sutils/k8sutils.go -------------------------------------------------------------------------------- /pkg/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/log/log.go -------------------------------------------------------------------------------- /pkg/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/log/log_test.go -------------------------------------------------------------------------------- /pkg/metrics/applicationbackup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/applicationbackup.go -------------------------------------------------------------------------------- /pkg/metrics/applicationbackup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/applicationbackup_test.go -------------------------------------------------------------------------------- /pkg/metrics/applicationclone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/applicationclone.go -------------------------------------------------------------------------------- /pkg/metrics/applicationclone_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/applicationclone_test.go -------------------------------------------------------------------------------- /pkg/metrics/applicationrestore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/applicationrestore.go -------------------------------------------------------------------------------- /pkg/metrics/applicationrestore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/applicationrestore_test.go -------------------------------------------------------------------------------- /pkg/metrics/clusterpair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/clusterpair.go -------------------------------------------------------------------------------- /pkg/metrics/clusterpair_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/clusterpair_test.go -------------------------------------------------------------------------------- /pkg/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/metrics.go -------------------------------------------------------------------------------- /pkg/metrics/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/metrics_test.go -------------------------------------------------------------------------------- /pkg/metrics/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/migration.go -------------------------------------------------------------------------------- /pkg/metrics/migration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/migration_test.go -------------------------------------------------------------------------------- /pkg/metrics/volumesnapshotschedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/metrics/volumesnapshotschedule.go -------------------------------------------------------------------------------- /pkg/migration/controllers/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/migration/controllers/migration.go -------------------------------------------------------------------------------- /pkg/migration/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/migration/migration.go -------------------------------------------------------------------------------- /pkg/mock/cache/cache.mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/mock/cache/cache.mock.go -------------------------------------------------------------------------------- /pkg/mock/kubevirt/kubevirt.ops.mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/mock/kubevirt/kubevirt.ops.mock.go -------------------------------------------------------------------------------- /pkg/mock/osd/driver.mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/mock/osd/driver.mock.go -------------------------------------------------------------------------------- /pkg/monitor/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/monitor/monitor.go -------------------------------------------------------------------------------- /pkg/monitor/monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/monitor/monitor_test.go -------------------------------------------------------------------------------- /pkg/objectstore/azure/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/objectstore/azure/azure.go -------------------------------------------------------------------------------- /pkg/objectstore/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/objectstore/common/common.go -------------------------------------------------------------------------------- /pkg/objectstore/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/objectstore/google/google.go -------------------------------------------------------------------------------- /pkg/objectstore/nfs/nfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/objectstore/nfs/nfs.go -------------------------------------------------------------------------------- /pkg/objectstore/objectstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/objectstore/objectstore.go -------------------------------------------------------------------------------- /pkg/objectstore/s3/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/objectstore/s3/s3.go -------------------------------------------------------------------------------- /pkg/platform/rancher/rancher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/platform/rancher/rancher.go -------------------------------------------------------------------------------- /pkg/pluralmap/pluralmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/pluralmap/pluralmap.go -------------------------------------------------------------------------------- /pkg/pvcwatcher/pvcwatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/pvcwatcher/pvcwatcher.go -------------------------------------------------------------------------------- /pkg/resourcecollector/clusterrole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/clusterrole.go -------------------------------------------------------------------------------- /pkg/resourcecollector/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/configmap.go -------------------------------------------------------------------------------- /pkg/resourcecollector/datavolume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/datavolume.go -------------------------------------------------------------------------------- /pkg/resourcecollector/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/endpoint.go -------------------------------------------------------------------------------- /pkg/resourcecollector/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/ingress.go -------------------------------------------------------------------------------- /pkg/resourcecollector/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/job.go -------------------------------------------------------------------------------- /pkg/resourcecollector/networkpolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/networkpolicy.go -------------------------------------------------------------------------------- /pkg/resourcecollector/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/pod.go -------------------------------------------------------------------------------- /pkg/resourcecollector/priorityclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/priorityclass.go -------------------------------------------------------------------------------- /pkg/resourcecollector/resourcequota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/resourcequota.go -------------------------------------------------------------------------------- /pkg/resourcecollector/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/role.go -------------------------------------------------------------------------------- /pkg/resourcecollector/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/secret.go -------------------------------------------------------------------------------- /pkg/resourcecollector/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/service.go -------------------------------------------------------------------------------- /pkg/resourcecollector/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourcecollector/webhook.go -------------------------------------------------------------------------------- /pkg/resourceutils/listResources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourceutils/listResources.go -------------------------------------------------------------------------------- /pkg/resourceutils/scaledownduringdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourceutils/scaledownduringdr.go -------------------------------------------------------------------------------- /pkg/resourceutils/scaleupduringdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourceutils/scaleupduringdr.go -------------------------------------------------------------------------------- /pkg/resourceutils/updatereplicas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/resourceutils/updatereplicas.go -------------------------------------------------------------------------------- /pkg/restutil/restutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/restutil/restutil.go -------------------------------------------------------------------------------- /pkg/rule/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/rule/rule.go -------------------------------------------------------------------------------- /pkg/schedule/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/schedule/cache.go -------------------------------------------------------------------------------- /pkg/schedule/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/schedule/schedule.go -------------------------------------------------------------------------------- /pkg/schedule/schedule_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/schedule/schedule_test.go -------------------------------------------------------------------------------- /pkg/snapshot/controllers/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/snapshot/controllers/snapshot.go -------------------------------------------------------------------------------- /pkg/snapshot/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/snapshot/rule.go -------------------------------------------------------------------------------- /pkg/snapshot/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/snapshot/snapshot.go -------------------------------------------------------------------------------- /pkg/snapshotter/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/snapshotter/options.go -------------------------------------------------------------------------------- /pkg/snapshotter/snapshotter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/snapshotter/snapshotter.go -------------------------------------------------------------------------------- /pkg/snapshotter/snapshotter_csi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/snapshotter/snapshotter_csi.go -------------------------------------------------------------------------------- /pkg/storkctl/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/action.go -------------------------------------------------------------------------------- /pkg/storkctl/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/action_test.go -------------------------------------------------------------------------------- /pkg/storkctl/actionstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/actionstatus.go -------------------------------------------------------------------------------- /pkg/storkctl/actionstatus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/actionstatus_test.go -------------------------------------------------------------------------------- /pkg/storkctl/activate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/activate.go -------------------------------------------------------------------------------- /pkg/storkctl/applicationbackup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/applicationbackup.go -------------------------------------------------------------------------------- /pkg/storkctl/applicationbackup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/applicationbackup_test.go -------------------------------------------------------------------------------- /pkg/storkctl/applicationclone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/applicationclone.go -------------------------------------------------------------------------------- /pkg/storkctl/applicationclone_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/applicationclone_test.go -------------------------------------------------------------------------------- /pkg/storkctl/applicationrestore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/applicationrestore.go -------------------------------------------------------------------------------- /pkg/storkctl/backuplocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/backuplocation.go -------------------------------------------------------------------------------- /pkg/storkctl/backuplocation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/backuplocation_test.go -------------------------------------------------------------------------------- /pkg/storkctl/clusterdomainsstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/clusterdomainsstatus.go -------------------------------------------------------------------------------- /pkg/storkctl/clusterdomainupdate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/clusterdomainupdate.go -------------------------------------------------------------------------------- /pkg/storkctl/clusterpair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/clusterpair.go -------------------------------------------------------------------------------- /pkg/storkctl/clusterpair_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/clusterpair_test.go -------------------------------------------------------------------------------- /pkg/storkctl/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/common.go -------------------------------------------------------------------------------- /pkg/storkctl/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/common_test.go -------------------------------------------------------------------------------- /pkg/storkctl/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/create.go -------------------------------------------------------------------------------- /pkg/storkctl/deactivate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/deactivate.go -------------------------------------------------------------------------------- /pkg/storkctl/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/delete.go -------------------------------------------------------------------------------- /pkg/storkctl/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/factory.go -------------------------------------------------------------------------------- /pkg/storkctl/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/factory_test.go -------------------------------------------------------------------------------- /pkg/storkctl/fake_api_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/fake_api_server_test.go -------------------------------------------------------------------------------- /pkg/storkctl/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/generate.go -------------------------------------------------------------------------------- /pkg/storkctl/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/get.go -------------------------------------------------------------------------------- /pkg/storkctl/groupsnapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/groupsnapshot.go -------------------------------------------------------------------------------- /pkg/storkctl/groupsnapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/groupsnapshot_test.go -------------------------------------------------------------------------------- /pkg/storkctl/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/migration.go -------------------------------------------------------------------------------- /pkg/storkctl/migration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/migration_test.go -------------------------------------------------------------------------------- /pkg/storkctl/migrationschedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/migrationschedule.go -------------------------------------------------------------------------------- /pkg/storkctl/migrationschedule_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/migrationschedule_test.go -------------------------------------------------------------------------------- /pkg/storkctl/perform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/perform.go -------------------------------------------------------------------------------- /pkg/storkctl/pvc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/pvc.go -------------------------------------------------------------------------------- /pkg/storkctl/pvc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/pvc_test.go -------------------------------------------------------------------------------- /pkg/storkctl/resume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/resume.go -------------------------------------------------------------------------------- /pkg/storkctl/schedulepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/schedulepolicy.go -------------------------------------------------------------------------------- /pkg/storkctl/schedulepolicy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/schedulepolicy_test.go -------------------------------------------------------------------------------- /pkg/storkctl/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/snapshot.go -------------------------------------------------------------------------------- /pkg/storkctl/snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/snapshot_test.go -------------------------------------------------------------------------------- /pkg/storkctl/snapshotschedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/snapshotschedule.go -------------------------------------------------------------------------------- /pkg/storkctl/snapshotschedule_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/snapshotschedule_test.go -------------------------------------------------------------------------------- /pkg/storkctl/storkctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/storkctl.go -------------------------------------------------------------------------------- /pkg/storkctl/suspend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/suspend.go -------------------------------------------------------------------------------- /pkg/storkctl/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/version.go -------------------------------------------------------------------------------- /pkg/storkctl/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/version_test.go -------------------------------------------------------------------------------- /pkg/storkctl/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/storkctl/watch.go -------------------------------------------------------------------------------- /pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/utils/utils.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /pkg/webhookadmission/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/webhookadmission/utils.go -------------------------------------------------------------------------------- /pkg/webhookadmission/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/pkg/webhookadmission/webhook.go -------------------------------------------------------------------------------- /specs/grafana/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/grafana/grafana.yaml -------------------------------------------------------------------------------- /specs/grafana/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/grafana/pvc.yaml -------------------------------------------------------------------------------- /specs/kafkacr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/kafkacr.yaml -------------------------------------------------------------------------------- /specs/mongocr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/mongocr.yaml -------------------------------------------------------------------------------- /specs/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/mysql.yaml -------------------------------------------------------------------------------- /specs/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/prometheus/README.md -------------------------------------------------------------------------------- /specs/prometheus/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/prometheus/prometheus.yaml -------------------------------------------------------------------------------- /specs/prometheus/prometheus_opr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/prometheus/prometheus_opr.yaml -------------------------------------------------------------------------------- /specs/prometheus/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/prometheus/role.yaml -------------------------------------------------------------------------------- /specs/prometheus/rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/prometheus/rule.yaml -------------------------------------------------------------------------------- /specs/prometheus/sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/prometheus/sa.yaml -------------------------------------------------------------------------------- /specs/prometheus/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/prometheus/service.yaml -------------------------------------------------------------------------------- /specs/prometheus/service_monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/prometheus/service_monitor.yaml -------------------------------------------------------------------------------- /specs/stork-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/stork-daemonset.yaml -------------------------------------------------------------------------------- /specs/stork-deployment-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/stork-deployment-deprecated.yaml -------------------------------------------------------------------------------- /specs/stork-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/stork-deployment.yaml -------------------------------------------------------------------------------- /specs/stork-initializer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/stork-initializer.yaml -------------------------------------------------------------------------------- /specs/stork-scheduler-deprecated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/stork-scheduler-deprecated.yaml -------------------------------------------------------------------------------- /specs/stork-scheduler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/stork-scheduler.yaml -------------------------------------------------------------------------------- /specs/stork-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/specs/stork-webhook.yaml -------------------------------------------------------------------------------- /test/integration_test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/test/integration_test/Dockerfile -------------------------------------------------------------------------------- /test/integration_test/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/test/integration_test/action_test.go -------------------------------------------------------------------------------- /test/integration_test/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/test/integration_test/common_test.go -------------------------------------------------------------------------------- /test/integration_test/extender_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/test/integration_test/extender_test.go -------------------------------------------------------------------------------- /test/integration_test/kubevirt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/test/integration_test/kubevirt_test.go -------------------------------------------------------------------------------- /test/integration_test/operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/test/integration_test/operator_test.go -------------------------------------------------------------------------------- /test/integration_test/snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/test/integration_test/snapshot_test.go -------------------------------------------------------------------------------- /test/integration_test/test-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/test/integration_test/test-deploy.sh -------------------------------------------------------------------------------- /test/integration_test/webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/test/integration_test/webhook_test.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/cloud.google.com/go/iam/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/cloud.google.com/go/iam/iam.go -------------------------------------------------------------------------------- /vendor/contrib.go.opencensus.io/exporter/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity/test-resources.bicep: -------------------------------------------------------------------------------- 1 | param baseName string 2 | -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2019-03-01/compute/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change History 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-storage-blob-go/azblob/common_utils.go: -------------------------------------------------------------------------------- 1 | package azblob 2 | -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-storage-blob-go/azblob/version.go: -------------------------------------------------------------------------------- 1 | package azblob 2 | 3 | const serviceLibVersion = "0.15" 4 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/.gitignore: -------------------------------------------------------------------------------- 1 | _fuzz/ -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/sprig/v3/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/squirrel/.gitignore: -------------------------------------------------------------------------------- 1 | squirrel.test -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat 2 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blendle/zapdriver/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/census-instrumentation/opencensus-proto/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/gosigar/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | .idea 3 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-oidc/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /gopath 3 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-oidc/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/coreos/go-oidc/DCO -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-oidc/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/coreos/go-oidc/test -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.4 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/docker/cli/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/docker/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/docker/cli/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/educlos/testrail/.gitignore: -------------------------------------------------------------------------------- 1 | client.sublime-workspace -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/go-kit/kit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/go-kit/kit/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/go-kit/log/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/go-kit/log/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/go-kit/log/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/go-kit/log/log.go -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/staticcheck.conf: -------------------------------------------------------------------------------- 1 | checks = ["all"] 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/go-kit/log/stdlib.go -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/go-kit/log/sync.go -------------------------------------------------------------------------------- /vendor/github.com/go-kit/log/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/go-kit/log/value.go -------------------------------------------------------------------------------- /vendor/github.com/go-logfmt/logfmt/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/inflect/.hgignore: -------------------------------------------------------------------------------- 1 | swp$ 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/gobuffalo/envy/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/gobuffalo/envy/.env -------------------------------------------------------------------------------- /vendor/github.com/gobuffalo/envy/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/gobuffalo/envy/env -------------------------------------------------------------------------------- /vendor/github.com/gobuffalo/envy/version.go: -------------------------------------------------------------------------------- 1 | package envy 2 | 3 | const Version = "v1.10.1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/gobuffalo/packr/version.go: -------------------------------------------------------------------------------- 1 | package packr 2 | 3 | const Version = "v1.30.1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/gobwas/glob/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/gobwas/glob/bench.sh -------------------------------------------------------------------------------- /vendor/github.com/gobwas/glob/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/gobwas/glob/glob.go -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/gofrs/flock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gofrs/flock/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/gofrs/flock/flock.go -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v4/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v5/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/golang/mock/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/golang/mock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/pprof/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/pprof/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/s2a-go/s2a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/s2a-go/s2a.go -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/shlex/COPYING -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/shlex/README -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/wire/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/wire/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/google/wire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/wire/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/wire/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/google/wire/wire.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/v2/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "v2": "2.12.0" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/gorilla/mux/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | *.test 4 | .vscode/ -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-retryablehttp/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hashicorp/release-engineering -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /vendor/github.com/heptio/ark/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/heptio/ark/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/jmoiron/sqlx/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/jmoiron/sqlx/bind.go -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/jmoiron/sqlx/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/sqlx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/jmoiron/sqlx/sqlx.go -------------------------------------------------------------------------------- /vendor/github.com/joho/godotenv/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /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/kubernetes-sigs/aws-ebs-csi-driver/NOTICE: -------------------------------------------------------------------------------- 1 | AWS EBS CSI Driver 2 | Copyright 2019 The Kubernetes Authors. 3 | -------------------------------------------------------------------------------- /vendor/github.com/lann/builder/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | \#*# 3 | -------------------------------------------------------------------------------- /vendor/github.com/lann/builder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lann/builder/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/lann/ps/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lann/ps/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/lann/ps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lann/ps/README.md -------------------------------------------------------------------------------- /vendor/github.com/lann/ps/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lann/ps/list.go -------------------------------------------------------------------------------- /vendor/github.com/lann/ps/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lann/ps/map.go -------------------------------------------------------------------------------- /vendor/github.com/lann/ps/profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lann/ps/profile.sh -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.gitignore: -------------------------------------------------------------------------------- 1 | .db 2 | *.test 3 | *~ 4 | *.swp 5 | .idea 6 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/README.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/TESTS.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/array.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/buf.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/conn.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_go115.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/conn_go115.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/conn_go18.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/connector.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/copy.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/encode.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/error.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/krb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/krb.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/notice.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/notify.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/oid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/oid/types.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/rows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/ssl.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/url.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/user_other.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/user_posix.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/lib/pq/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/libopenstorage/cloudops/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | .idea/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/libopenstorage/cloudops/codecov.yml: -------------------------------------------------------------------------------- 1 | comment: 2 | require_changes: true 3 | -------------------------------------------------------------------------------- /vendor/github.com/libopenstorage/secrets/README.md: -------------------------------------------------------------------------------- 1 | # secrets 2 | Openstorage support for Key Management Systems 3 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-ieproxy/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @miekg @tmthrgd 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/COPYRIGHT -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/README.md -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/client.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/dane.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/dns.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dnssec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/dnssec.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/doc.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/edns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/edns.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/format.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/hash.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/labels.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/msg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/nsecx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/nsecx.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/reverse.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/scan.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/scan_rr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/scan_rr.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/server.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/sig0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/sig0.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/smimea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/smimea.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/svcb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/svcb.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/tlsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/tlsa.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/tools.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/tsig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/tsig.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/types.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/udp.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/update.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/version.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/xfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/xfr.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/zmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/zmsg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/ztypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/miekg/dns/ztypes.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/reflectwalk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/locker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/moby/locker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/moby/term/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/moby/term/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/moby/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/moby/term/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/moby/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/moby/term/README.md -------------------------------------------------------------------------------- /vendor/github.com/moby/term/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/moby/term/ascii.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/moby/term/proxy.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/tc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/moby/term/tc.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/moby/term/term.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/termios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/moby/term/termios.go -------------------------------------------------------------------------------- /vendor/github.com/moby/term/winsize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/moby/term/winsize.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/morikuni/aec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/morikuni/aec/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/morikuni/aec/aec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/morikuni/aec/aec.go -------------------------------------------------------------------------------- /vendor/github.com/morikuni/aec/ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/morikuni/aec/ansi.go -------------------------------------------------------------------------------- /vendor/github.com/morikuni/aec/sgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/morikuni/aec/sgr.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/types/version.go: -------------------------------------------------------------------------------- 1 | package types 2 | 3 | const VERSION = "2.15.0" 4 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | TODO 7 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pborman/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/browser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pkg/browser/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/portworx/kvdb/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/portworx/kvdb/DCO -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/rivo/uniseg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/rs/cors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/rs/cors/README.md -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/rs/cors/cors.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/rs/cors/utils.go -------------------------------------------------------------------------------- /vendor/github.com/sean-/seed/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/sean-/seed/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sean-/seed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/sean-/seed/README.md -------------------------------------------------------------------------------- /vendor/github.com/sean-/seed/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/sean-/seed/init.go -------------------------------------------------------------------------------- /vendor/github.com/shopspring/decimal/.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | *.swp 3 | 4 | # IntelliJ 5 | .idea/ 6 | *.iml 7 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/urfave/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/urfave/cli/README.md -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/urfave/cli/app.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/urfave/cli/cli.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/urfave/cli/docs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/urfave/cli/errors.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/fish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/urfave/cli/fish.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/urfave/cli/flag.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/urfave/cli/funcs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/urfave/cli/help.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/urfave/cli/parse.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/github.com/urfave/cli/sort.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[nop] 2 | *.iml 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /vendor/github.com/zoido/yag-config/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/etcd/api/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.etcd.io/etcd/api/v3/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/stats/units.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/tag/context.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.codespellignore: -------------------------------------------------------------------------------- 1 | ot 2 | fo 3 | te 4 | collison 5 | consequentially 6 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.2.6 2 | -------------------------------------------------------------------------------- /vendor/go.starlark.net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.starlark.net/LICENSE -------------------------------------------------------------------------------- /vendor/go.starlark.net/starlark/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.starlark.net/starlark/int.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.starlark.net/syntax/parse.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.starlark.net/syntax/quote.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.starlark.net/syntax/scan.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.starlark.net/syntax/walk.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/bool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/bool_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/duration.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/error_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/error_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/float32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/float64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/gen.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/int32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/int64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/nocmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/nocmp.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/time_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/time_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/uint32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/uint64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uintptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/uintptr.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/atomic/value.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/multierr/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/checklicense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/checklicense.sh -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/gocloud.dev/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gocloud.dev/AUTHORS -------------------------------------------------------------------------------- /vendor/gocloud.dev/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gocloud.dev/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/gocloud.dev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gocloud.dev/LICENSE -------------------------------------------------------------------------------- /vendor/gocloud.dev/aws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gocloud.dev/aws/aws.go -------------------------------------------------------------------------------- /vendor/gocloud.dev/blob/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gocloud.dev/blob/blob.go -------------------------------------------------------------------------------- /vendor/gocloud.dev/blob/gcsblob/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gocloud.dev/blob/gcsblob/iam.go -------------------------------------------------------------------------------- /vendor/gocloud.dev/gcerrors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gocloud.dev/gcerrors/errors.go -------------------------------------------------------------------------------- /vendor/gocloud.dev/gcp/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gocloud.dev/gcp/gcp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/internal/field/sync.checkpoint: -------------------------------------------------------------------------------- 1 | b0c49ae9f59d233526f8934262c5bbbe14d4358d 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/maps/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/exp/maps/maps.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/exp/slices/cmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/exp/slices/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/xerrors/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/xerrors/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/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/libopenstorage/stork/HEAD/vendor/golang.org/x/xerrors/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/xerrors/fmt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/xerrors/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/golang.org/x/xerrors/wrap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/helm.sh/helm/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/helm.sh/helm/v3/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/policy/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/apiserver/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/cli-runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/cli-runtime/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/scale/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/client-go/scale/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/code-generator/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/code-generator/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/go-to-protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | go-to-protobuf 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/import-boss/.gitignore: -------------------------------------------------------------------------------- 1 | import-boss 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/cmd/set-gen/.gitignore: -------------------------------------------------------------------------------- 1 | set-gen 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/code-generator/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/code-generator/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/component-base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/component-base/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/gengo/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/args/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/gengo/args/args.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/generator/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/gengo/generator/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/namer/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/gengo/namer/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/namer/namer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/gengo/namer/namer.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/namer/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/gengo/namer/order.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/parser/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/gengo/parser/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/parser/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/gengo/parser/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/gengo/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/types/flatten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/gengo/types/flatten.go -------------------------------------------------------------------------------- /vendor/k8s.io/gengo/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/gengo/types/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/.golangci.yaml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/format.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/klogr_slog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/safeptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/klog/v2/safeptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-scheduler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/kube-scheduler/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubectl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/kubectl/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/kubernetes/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/metrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/metrics/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/exec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/exec/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/exec/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/exec/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/exec/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/pointer/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/ptr/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/ptr/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/knative.dev/pkg/LICENSE -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/knative.dev/pkg/apis/OWNERS -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/knative.dev/pkg/apis/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/apis/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/knative.dev/pkg/apis/url.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmap/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/knative.dev/pkg/kmap/map.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmeta/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/knative.dev/pkg/kmeta/doc.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmeta/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/knative.dev/pkg/kmeta/map.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmp/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/knative.dev/pkg/kmp/diff.go -------------------------------------------------------------------------------- /vendor/knative.dev/pkg/kmp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/knative.dev/pkg/kmp/doc.go -------------------------------------------------------------------------------- /vendor/kubevirt.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/kubevirt.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/kubevirt.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/kubevirt.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/oras.land/oras-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/oras.land/oras-go/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libopenstorage/stork/HEAD/vendor/sigs.k8s.io/yaml/yaml.go --------------------------------------------------------------------------------