├── .dockerignore ├── .drone.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── documentation.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── .gitmodules ├── .golangci.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── Makefile.buildx ├── README.md ├── assets ├── README.md ├── aws │ ├── kubernetes-basic.json │ ├── kubernetes-deploy-onprem.json │ ├── kubernetes-deploy.json │ ├── kubernetes-deployer.json │ ├── kubernetes-master.json │ └── kubernetes-node.json ├── certs │ ├── .gitignore │ ├── Makefile │ ├── ca.config │ ├── ca.crt │ ├── ca.csr │ ├── ca.key │ ├── crt.config │ ├── etcd1.crt │ ├── etcd1.csr │ ├── etcd1.key │ ├── etcd2.crt │ ├── etcd2.csr │ ├── etcd2.key │ ├── etcd3.crt │ ├── etcd3.csr │ ├── etcd3.key │ ├── proxy1.crt │ ├── proxy1.csr │ └── proxy1.key ├── charts │ ├── alpine-0.1.0 │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── alpine.png │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ └── alpine-pod.yaml │ │ └── values.yaml │ └── alpine-0.2.0 │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── alpine.png │ │ ├── templates │ │ ├── _helpers.tpl │ │ └── alpine-pod.yaml │ │ └── values.yaml ├── dns-app │ ├── .gitignore │ ├── Makefile │ ├── hooks │ │ ├── Dockerfile │ │ ├── Makefile │ │ └── entrypoint.sh │ └── resources │ │ ├── app.yaml │ │ └── dns.yaml ├── docs │ ├── debug-pod.yaml │ └── troubleshooting.md ├── fio │ └── Dockerfile ├── kubernetes │ └── resources │ │ └── app.yaml ├── lens │ └── resources │ │ └── crd.yaml ├── onprem │ └── Vagrantfile ├── opscenter │ └── resources │ │ └── app.yaml ├── rbac-app │ ├── Makefile │ ├── README.md │ └── resources │ │ ├── app.yaml │ │ └── resources.yaml ├── rhel │ └── Vagrantfile ├── robotest │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── config │ │ ├── README.md │ │ ├── lib │ │ │ ├── test.sh │ │ │ └── utils.sh │ │ ├── nightly.sh │ │ ├── noop.sh │ │ └── pr.sh │ ├── current │ │ ├── app.yaml │ │ ├── charts │ │ │ └── echoserver │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ └── echoserver-deployment.yaml │ │ │ │ └── values.yaml │ │ ├── install.yaml │ │ ├── postupdate.yaml │ │ └── status.yaml │ ├── download_tele.sh │ ├── run.sh │ ├── tele_build.sh │ └── upgrade-base │ │ ├── app.yaml │ │ ├── charts │ │ └── echoserver │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ └── echoserver-deployment.yaml │ │ │ └── values.yaml │ │ ├── install.yaml │ │ └── status.yaml ├── site-app │ ├── Makefile │ ├── README.md │ ├── images │ │ ├── Makefile │ │ ├── hook │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ └── entrypoint.sh │ │ └── site │ │ │ ├── Dockerfile │ │ │ ├── init.sh │ │ │ └── start.sh │ └── resources │ │ ├── app.yaml │ │ ├── config │ │ ├── gravity.yaml │ │ └── teleport.yaml │ │ ├── install.yaml │ │ ├── monitoring.yaml │ │ ├── opscenter.yaml │ │ ├── site.yaml │ │ └── uninstall.sh ├── site │ └── fixtures │ │ ├── README.md │ │ ├── app.json │ │ ├── app.yaml │ │ ├── glob │ │ ├── one.json │ │ ├── one.yaml │ │ └── subdir │ │ │ └── two.yaml │ │ ├── parsing │ │ ├── README.md │ │ ├── app.yaml │ │ ├── other │ │ │ ├── empty-object.json │ │ │ └── skydns_service.json │ │ └── skydns │ │ │ ├── README.md │ │ │ ├── skydns_rc.yaml │ │ │ └── skydns_service.yaml │ │ ├── sample-app │ │ ├── README.txt │ │ ├── app.yaml │ │ ├── images │ │ │ ├── bash-app │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ └── README.md │ │ │ └── sample-app │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ ├── others │ │ │ ├── etcd-endpoint.yaml │ │ │ └── secrets.yml │ │ ├── pods │ │ │ ├── bash-pod.yaml │ │ │ └── complex-pod.yaml │ │ └── services │ │ │ ├── etcd.yaml │ │ │ └── sample.yaml │ │ └── tiny-image │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ └── tiny.c ├── telekube │ └── resources │ │ ├── app.yaml │ │ └── preUpdate.yaml ├── test-app │ ├── Makefile │ ├── banner.png │ └── resources │ │ ├── app.yaml │ │ ├── nginx.yaml │ │ └── svc.yaml ├── tiller-app │ ├── Makefile │ └── resources │ │ ├── app.yaml │ │ └── resources.yaml ├── web │ └── assets │ │ └── static │ │ └── tpl │ │ ├── base.tpl │ │ ├── events.tpl │ │ ├── index.tpl │ │ ├── keys.tpl │ │ ├── login.tpl │ │ ├── servers.tpl │ │ ├── session.tpl │ │ ├── sessions.tpl │ │ ├── site-base.tpl │ │ ├── site │ │ ├── events.tpl │ │ └── servers.tpl │ │ ├── sites.tpl │ │ └── webtuns.tpl └── wormhole │ └── resources │ ├── app.yaml │ └── logo.svg ├── docs ├── 4.x.yaml ├── 4.x │ ├── changelog.md │ ├── cli.md │ ├── cluster.md │ ├── faq.md │ ├── guides.md │ ├── images │ │ ├── build.svg │ │ ├── containers.png │ │ ├── installer.png │ │ ├── instance2.png │ │ ├── instance5.png │ │ ├── macos-docker-settings.jpg │ │ ├── mattermost.png │ │ ├── offline-install.svg │ │ └── opscenter-install.svg │ ├── index.md │ ├── installation.md │ ├── manage.md │ ├── milv.config.yaml │ ├── monitoring.md │ ├── opscenter.md │ ├── pack.md │ ├── quickstart.md │ └── requirements.md ├── 5.x.yaml ├── 5.x │ ├── catalog.md │ ├── changelog.md │ ├── cli.md │ ├── cluster.md │ ├── faq.md │ ├── guides.md │ ├── images │ │ ├── build.svg │ │ ├── containers.png │ │ ├── installer.png │ │ ├── instance2.png │ │ ├── instance5.png │ │ ├── macos-docker-settings.jpg │ │ ├── mattermost.png │ │ ├── offline-install.svg │ │ └── opscenter-install.svg │ ├── index.md │ ├── installation.md │ ├── manage.md │ ├── milv.config.yaml │ ├── monitoring.md │ ├── opscenter.md │ ├── pack.md │ ├── quickstart.md │ ├── requirements.md │ └── terraform.md ├── 6.x.yaml ├── 6.x │ ├── access.md │ ├── catalog.md │ ├── changelog.md │ ├── cli.md │ ├── cluster.md │ ├── config.md │ ├── faq.md │ ├── guides.md │ ├── hub.md │ ├── images │ │ ├── build.svg │ │ ├── containers.png │ │ ├── gravity-hub │ │ │ ├── gravity-hub-auth-connector.png │ │ │ ├── gravity-hub-catalog.png │ │ │ ├── gravity-hub-certificates.png │ │ │ ├── gravity-hub-cluster.png │ │ │ ├── gravity-hub-install-image.png │ │ │ └── gravity-hub-users.png │ │ ├── gravity-overview.png │ │ ├── gravity-quickstart │ │ │ ├── Gravity-UI.png │ │ │ ├── adding-a-new-node.png │ │ │ ├── all-nodes.png │ │ │ ├── click-proceed.png │ │ │ ├── cluster-name.png │ │ │ ├── gravity-adding-a-node.png │ │ │ ├── gravity-mattermost-dashboard.png │ │ │ ├── gravity-monitoring.png │ │ │ ├── gravity-server-logs.png │ │ │ ├── install-finished.png │ │ │ ├── installing-app.png │ │ │ ├── logging-into-gravity.png │ │ │ ├── mattermost │ │ │ │ ├── create-mattermost.png │ │ │ │ └── mattermost.png │ │ │ ├── one-node-cluster.png │ │ │ └── setting-capacity.png │ │ ├── installer.png │ │ ├── instance2.png │ │ ├── instance5.png │ │ ├── macos-docker-settings.jpg │ │ ├── mattermost.png │ │ └── opscenter-install.svg │ ├── index.md │ ├── installation.md │ ├── milv.config.yaml │ ├── monitoring.md │ ├── pack.md │ ├── quickstart.md │ ├── requirements.md │ ├── storage.md │ └── terraform.md ├── 7.x.yaml ├── 7.x │ ├── access.md │ ├── catalog.md │ ├── changelog.md │ ├── cli.md │ ├── cluster.md │ ├── config.md │ ├── faq.md │ ├── guides.md │ ├── hub.md │ ├── images │ │ ├── build.svg │ │ ├── containers.png │ │ ├── gravity-hub │ │ │ ├── gravity-hub-auth-connector.png │ │ │ ├── gravity-hub-catalog.png │ │ │ ├── gravity-hub-certificates.png │ │ │ ├── gravity-hub-cluster.png │ │ │ ├── gravity-hub-install-image.png │ │ │ └── gravity-hub-users.png │ │ ├── gravity-overview.png │ │ ├── gravity-quickstart │ │ │ ├── Gravity-UI.png │ │ │ ├── adding-a-new-node.png │ │ │ ├── all-nodes.png │ │ │ ├── click-proceed.png │ │ │ ├── cluster-name.png │ │ │ ├── clusterinstall.png │ │ │ ├── finishedwordpress.png │ │ │ ├── gravity-adding-a-node.png │ │ │ ├── gravity-mattermost-dashboard.png │ │ │ ├── gravity-monitoring.png │ │ │ ├── gravity-server-logs.png │ │ │ ├── gravity-wordpress-dashboard.png │ │ │ ├── install-finished.png │ │ │ ├── installing-app.png │ │ │ ├── logging-into-gravity.png │ │ │ ├── mattermost │ │ │ │ ├── create-mattermost.png │ │ │ │ └── mattermost.png │ │ │ ├── one-node-cluster.png │ │ │ ├── setting-capacity.png │ │ │ └── wordpressinstall.png │ │ ├── installer.png │ │ ├── instance2.png │ │ ├── instance5.png │ │ ├── macos-docker-settings.jpg │ │ ├── mattermost.png │ │ └── opscenter-install.svg │ ├── index.md │ ├── ingress.md │ ├── installation.md │ ├── milv.config.yaml │ ├── monitoring.md │ ├── pack.md │ ├── quickstart.md │ ├── requirements.md │ ├── selinux.md │ └── storage.md ├── 8.x.yaml ├── 8.x │ ├── access.md │ ├── catalog.md │ ├── changelog.md │ ├── cli.md │ ├── cluster.md │ ├── config.md │ ├── faq.md │ ├── guides.md │ ├── hub.md │ ├── images │ │ ├── build.svg │ │ ├── containers.png │ │ ├── gravity-hub │ │ │ ├── gravity-hub-auth-connector.png │ │ │ ├── gravity-hub-catalog.png │ │ │ ├── gravity-hub-certificates.png │ │ │ ├── gravity-hub-cluster.png │ │ │ ├── gravity-hub-install-image.png │ │ │ └── gravity-hub-users.png │ │ ├── gravity-overview.png │ │ ├── gravity-quickstart │ │ │ ├── Gravity-UI.png │ │ │ ├── adding-a-new-node.png │ │ │ ├── all-nodes.png │ │ │ ├── click-proceed.png │ │ │ ├── cluster-name.png │ │ │ ├── clusterinstall.png │ │ │ ├── finishedwordpress.png │ │ │ ├── gravity-adding-a-node.png │ │ │ ├── gravity-mattermost-dashboard.png │ │ │ ├── gravity-monitoring.png │ │ │ ├── gravity-server-logs.png │ │ │ ├── gravity-wordpress-dashboard.png │ │ │ ├── install-finished.png │ │ │ ├── installing-app.png │ │ │ ├── logging-into-gravity.png │ │ │ ├── mattermost │ │ │ │ ├── create-mattermost.png │ │ │ │ └── mattermost.png │ │ │ ├── one-node-cluster.png │ │ │ ├── setting-capacity.png │ │ │ └── wordpressinstall.png │ │ ├── installer.png │ │ ├── instance2.png │ │ ├── instance5.png │ │ ├── macos-docker-settings.jpg │ │ ├── mattermost.png │ │ └── opscenter-install.svg │ ├── index.md │ ├── ingress.md │ ├── installation.md │ ├── milv.config.yaml │ ├── monitoring.md │ ├── pack.md │ ├── quickstart.md │ ├── requirements.md │ ├── selinux.md │ └── storage.md ├── 9.x.yaml ├── 9.x │ ├── access.md │ ├── catalog.md │ ├── changelog.md │ ├── cli.md │ ├── cluster.md │ ├── config.md │ ├── faq.md │ ├── guides.md │ ├── hub.md │ ├── images │ │ ├── build.svg │ │ ├── containers.png │ │ ├── gravity-hub │ │ │ ├── gravity-hub-auth-connector.png │ │ │ ├── gravity-hub-catalog.png │ │ │ ├── gravity-hub-certificates.png │ │ │ ├── gravity-hub-cluster.png │ │ │ ├── gravity-hub-install-image.png │ │ │ └── gravity-hub-users.png │ │ ├── gravity-overview.png │ │ ├── gravity-quickstart │ │ │ ├── Gravity-UI.png │ │ │ ├── adding-a-new-node.png │ │ │ ├── all-nodes.png │ │ │ ├── click-proceed.png │ │ │ ├── cluster-name.png │ │ │ ├── clusterinstall.png │ │ │ ├── finishedwordpress.png │ │ │ ├── gravity-adding-a-node.png │ │ │ ├── gravity-mattermost-dashboard.png │ │ │ ├── gravity-monitoring.png │ │ │ ├── gravity-server-logs.png │ │ │ ├── gravity-wordpress-dashboard.png │ │ │ ├── install-finished.png │ │ │ ├── installing-app.png │ │ │ ├── logging-into-gravity.png │ │ │ ├── mattermost │ │ │ │ ├── create-mattermost.png │ │ │ │ └── mattermost.png │ │ │ ├── one-node-cluster.png │ │ │ ├── setting-capacity.png │ │ │ └── wordpressinstall.png │ │ ├── installer.png │ │ ├── instance2.png │ │ ├── instance5.png │ │ ├── macos-docker-settings.jpg │ │ ├── mattermost.png │ │ └── opscenter-install.svg │ ├── index.md │ ├── ingress.md │ ├── installation.md │ ├── milv.config.yaml │ ├── monitoring.md │ ├── pack.md │ ├── quickstart.md │ ├── requirements.md │ ├── selinux.md │ └── storage.md ├── Dockerfile ├── Makefile ├── README.md ├── testplan.md └── theme │ ├── __init__.py │ ├── cta.html │ ├── fonts │ ├── Colfax-Medium.ttf │ ├── Colfax-Regular.ttf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff │ ├── footer.html │ ├── head.html │ ├── images │ ├── discourse.svg │ ├── footer-bg.svg │ ├── github.svg │ ├── gravity-name.svg │ ├── icon-arrow.svg │ ├── logo-gravity.svg │ ├── logo-teleport.svg │ ├── teleport-txt-logo.svg │ └── twitter.svg │ ├── img │ ├── bridge.svg │ ├── favicon.ico │ ├── footer-talk.svg │ └── logo.svg │ ├── jumpnav.html │ ├── license │ └── highlight.js │ │ └── LICENSE │ ├── main.html │ ├── pagination.html │ ├── scripts.html │ ├── search.html │ ├── searchbox.html │ ├── src │ ├── default.css │ ├── docs.css │ ├── docs.js │ ├── docs.js.LICENSE.txt │ ├── highlight.pack.js │ ├── main.js │ ├── prettify-yaml.js │ ├── prettify.js │ ├── solarized-dark.css │ └── third-party.js │ ├── toc.html │ ├── topnav.html │ └── versions.html ├── e ├── .gitattributes ├── Makefile ├── README.md ├── assets │ └── robotest │ │ ├── Makefile │ │ ├── README.md │ │ └── download_tele.sh ├── lib │ ├── builder │ │ └── builder.go │ ├── catalog │ │ ├── lister.go │ │ └── remote.go │ ├── constants │ │ └── constants.go │ ├── defaults │ │ └── defaults.go │ ├── environment │ │ ├── local.go │ │ └── remote.go │ ├── events │ │ └── events.go │ ├── install │ │ ├── bootstrap.go │ │ ├── bootstrap_test.go │ │ ├── fsmspec.go │ │ ├── installer.go │ │ ├── phases │ │ │ ├── cluster.go │ │ │ ├── connect.go │ │ │ ├── constants.go │ │ │ ├── decrypt.go │ │ │ ├── installer.go │ │ │ └── license.go │ │ ├── plan.go │ │ ├── plan_test.go │ │ ├── planbuilder.go │ │ ├── process.go │ │ └── register.go │ ├── modules │ │ └── modules.go │ ├── ops │ │ ├── acl │ │ │ └── operator.go │ │ ├── client │ │ │ └── operator.go │ │ ├── config.go │ │ ├── handler │ │ │ ├── handler_test.go │ │ │ ├── oidc.go │ │ │ ├── operator.go │ │ │ ├── roles.go │ │ │ ├── saml.go │ │ │ ├── trustedclusters.go │ │ │ └── utils.go │ │ ├── ops.go │ │ ├── resources │ │ │ ├── gravity │ │ │ │ ├── collection.go │ │ │ │ ├── gravity.go │ │ │ │ └── gravity_test.go │ │ │ └── tele │ │ │ │ ├── collection.go │ │ │ │ └── tele.go │ │ ├── router │ │ │ └── operator.go │ │ ├── service │ │ │ ├── endpoints.go │ │ │ ├── identity.go │ │ │ ├── installgroup.go │ │ │ ├── license.go │ │ │ ├── operator.go │ │ │ ├── opscenter.go │ │ │ ├── periodicupdates.go │ │ │ ├── remotesupport.go │ │ │ └── trustedclusters.go │ │ ├── services.go │ │ ├── services_test.go │ │ └── utils.go │ ├── periodic │ │ ├── statechecker.go │ │ └── statechecker_test.go │ ├── process │ │ ├── migrate.go │ │ ├── migrate_test.go │ │ ├── mux.go │ │ ├── process.go │ │ └── sni.go │ ├── status │ │ └── status.go │ ├── testhelpers │ │ └── testhelpers.go │ └── webapi │ │ ├── access.go │ │ ├── auth.go │ │ ├── auth_test.go │ │ ├── license.go │ │ ├── oauth2.go │ │ └── webapi.go ├── tool │ ├── gravity │ │ ├── cli │ │ │ ├── access.go │ │ │ ├── cluster.go │ │ │ ├── commands.go │ │ │ ├── config.go │ │ │ ├── install.go │ │ │ ├── license.go │ │ │ ├── ops.go │ │ │ ├── process.go │ │ │ ├── register.go │ │ │ ├── resources.go │ │ │ ├── run.go │ │ │ └── updates.go │ │ └── main.go │ └── tele │ │ ├── cli │ │ ├── build.go │ │ ├── commands.go │ │ ├── helm.go │ │ ├── login.go │ │ ├── ls.go │ │ ├── pull.go │ │ ├── push.go │ │ ├── register.go │ │ ├── resources.go │ │ └── run.go │ │ └── main.go └── web │ ├── .dockerignore │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── Dockerfile │ ├── Makefile │ ├── babel.config.js │ ├── devServer.js │ ├── devServerUtils.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── .storybook │ │ └── index.js │ ├── boot.js │ ├── cluster │ │ ├── EnterpriseCluster.jsx │ │ ├── components │ │ │ ├── AuthConnectors │ │ │ │ ├── AddMenu │ │ │ │ │ ├── AddMenu.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── AuthConnectors.jsx │ │ │ │ ├── AuthConnectors.story.js │ │ │ │ ├── ConnectorList │ │ │ │ │ ├── ConnectorList.jsx │ │ │ │ │ ├── ConnectorListItem.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── DeleteConnectorDialog │ │ │ │ │ ├── DeleteConnectorDialog.jsx │ │ │ │ │ ├── DeleteConnectorDialog.story.js │ │ │ │ │ └── index.js │ │ │ │ ├── EmptyList │ │ │ │ │ ├── EmptyList.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── getSsoIcon.js │ │ │ │ ├── index.js │ │ │ │ ├── saml-logo.svg │ │ │ │ └── templates │ │ │ │ │ ├── github.yaml │ │ │ │ │ ├── index.js │ │ │ │ │ ├── oidc.yaml │ │ │ │ │ └── saml.yaml │ │ │ ├── License │ │ │ │ ├── License.jsx │ │ │ │ ├── License.story.js │ │ │ │ ├── UpdateLicenseDialog │ │ │ │ │ ├── UpdateLicenseDialog.jsx │ │ │ │ │ ├── UpdateLicenseDialog.story.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── Roles │ │ │ │ ├── DeleteRole │ │ │ │ │ ├── DeleteRole.jsx │ │ │ │ │ ├── DeleteRole.story.js │ │ │ │ │ └── index.js │ │ │ │ ├── RoleList │ │ │ │ │ ├── RoleList.jsx │ │ │ │ │ ├── RoleListCells.jsx │ │ │ │ │ ├── RoleMenuAction │ │ │ │ │ │ ├── RoleMenuAction.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── Roles.jsx │ │ │ │ ├── Roles.story.js │ │ │ │ ├── index.js │ │ │ │ └── template │ │ │ │ │ ├── index.js │ │ │ │ │ └── role.yaml │ │ │ └── Users │ │ │ │ ├── Users.jsx │ │ │ │ └── index.js │ │ ├── features │ │ │ ├── featureAuthConnectors.js │ │ │ ├── featureLicense.js │ │ │ ├── featureRoles.js │ │ │ └── featureUsers.js │ │ ├── flux │ │ │ ├── actions.js │ │ │ ├── authConnectors │ │ │ │ ├── actionTypes.js │ │ │ │ ├── actions.js │ │ │ │ ├── authStore.js │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── roles │ │ │ │ ├── actionTypes.js │ │ │ │ ├── actions.js │ │ │ │ ├── index.js │ │ │ │ └── store.js │ │ └── index.js │ ├── config.js │ ├── hub │ │ ├── Hub.jsx │ │ ├── Hub.story.js │ │ ├── components │ │ │ ├── HubAccess │ │ │ │ ├── HubAccess.jsx │ │ │ │ └── index.js │ │ │ ├── HubCatalog │ │ │ │ ├── AppInstallDialog │ │ │ │ │ ├── AppInstallDialog.jsx │ │ │ │ │ ├── AppInstallDialog.story.js │ │ │ │ │ └── index.js │ │ │ │ ├── AppTile │ │ │ │ │ ├── ActionButton │ │ │ │ │ │ ├── ActionButton.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── AppTile.jsx │ │ │ │ │ ├── AppTile.story.js │ │ │ │ │ ├── VersionMenu │ │ │ │ │ │ ├── VersionMenu.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── AppTileList │ │ │ │ │ ├── AppTileList.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── HubCatalog.jsx │ │ │ │ ├── HubCatalog.story.js │ │ │ │ └── index.js │ │ │ ├── HubClusters │ │ │ │ ├── ClusterActionMenu │ │ │ │ │ ├── ClusterActionMenu.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── ClusterDisconnectDialog │ │ │ │ │ ├── ClusterDisconnectDialog.jsx │ │ │ │ │ ├── ClusterDisconnectDialog.story.js │ │ │ │ │ └── index.js │ │ │ │ ├── ClusterTileList │ │ │ │ │ ├── ClusterTile │ │ │ │ │ │ ├── ClusterTile.jsx │ │ │ │ │ │ ├── Status.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── ClusterTileList.jsx │ │ │ │ │ ├── ClusterTileList.story.js │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── HubClusters.jsx │ │ │ │ ├── hubClusterStore.js │ │ │ │ └── index.js │ │ │ ├── HubLicenses │ │ │ │ ├── ExpirationDate │ │ │ │ │ ├── ExpirationDate.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── HubLicenses.jsx │ │ │ │ ├── HubLicenses.story.js │ │ │ │ ├── LicenseTextArea.jsx │ │ │ │ └── index.js │ │ │ ├── HubSettings │ │ │ │ ├── HubSettings.jsx │ │ │ │ └── index.js │ │ │ ├── HubTopNav │ │ │ │ ├── HubTopNav.jsx │ │ │ │ ├── HubTopNav.story.js │ │ │ │ └── index.js │ │ │ └── components │ │ │ │ ├── Checkbox │ │ │ │ ├── Checkbox.jsx │ │ │ │ └── index.js │ │ │ │ ├── Layout.jsx │ │ │ │ └── SideNavLayout │ │ │ │ ├── SideNavLayout.jsx │ │ │ │ └── index.js │ │ ├── features │ │ │ ├── featureHubAccess │ │ │ │ ├── featureHubAccess.js │ │ │ │ ├── featureHubAuthConnectors.js │ │ │ │ ├── featureHubRoles.js │ │ │ │ ├── featureHubUsers.js │ │ │ │ └── index.js │ │ │ ├── featureHubCatalog.js │ │ │ ├── featureHubClusters.js │ │ │ ├── featureHubLicenses.js │ │ │ └── featureHubSettings │ │ │ │ ├── featureHubAccount.js │ │ │ │ ├── featureHubCert.js │ │ │ │ ├── featureHubSettings.js │ │ │ │ └── index.js │ │ ├── flux │ │ │ ├── actions.js │ │ │ ├── catalog │ │ │ │ ├── actionTypes.js │ │ │ │ ├── actions.js │ │ │ │ ├── index.js │ │ │ │ └── store.js │ │ │ ├── clusters │ │ │ │ ├── actionTypes.js │ │ │ │ ├── actions.js │ │ │ │ ├── index.js │ │ │ │ └── store.js │ │ │ ├── index.js │ │ │ └── nav │ │ │ │ ├── actionTypes.js │ │ │ │ ├── actions.js │ │ │ │ ├── index.js │ │ │ │ └── store.js │ │ ├── index.js │ │ └── services │ │ │ └── license.js │ ├── index.ejs │ └── index.jsx │ └── webpack │ ├── webpack.base.js │ ├── webpack.dev.config.js │ ├── webpack.prod.config.js │ └── webpack.test.config.js ├── examples ├── README.md ├── robot-shop-app │ ├── README.md │ ├── resources │ │ ├── app.yaml │ │ ├── charts │ │ │ └── robot-shop │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── cart-deployment.yaml │ │ │ │ ├── cart-service.yaml │ │ │ │ ├── catalogue-deployment.yaml │ │ │ │ ├── catalogue-service.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── dispatch-deployment.yaml │ │ │ │ ├── dispatch-service.yaml │ │ │ │ ├── mongodb-deployment.yaml │ │ │ │ ├── mongodb-service.yaml │ │ │ │ ├── mysql-deployment.yaml │ │ │ │ ├── mysql-service.yaml │ │ │ │ ├── payment-deployment.yaml │ │ │ │ ├── payment-service.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── rabbitmq-deployment.yaml │ │ │ │ ├── rabbitmq-service.yaml │ │ │ │ ├── ratings-deployment.yaml │ │ │ │ ├── ratings-service.yaml │ │ │ │ ├── redis-service.yaml │ │ │ │ ├── redis-statefulset.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── shipping-deployment.yaml │ │ │ │ ├── shipping-service.yaml │ │ │ │ ├── user-deployment.yaml │ │ │ │ ├── user-service.yaml │ │ │ │ ├── web-deployment.yaml │ │ │ │ └── web-service.yaml │ │ │ │ └── values.yaml │ │ ├── install.yaml │ │ └── upgrade.yaml │ └── robotshop.png ├── tensorflow-resnet │ ├── README.md │ ├── resources │ │ ├── app.yaml │ │ ├── charts │ │ │ └── tensorflow-resnet │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── ci │ │ │ │ └── values-with-metrics.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ └── svc.yaml │ │ │ │ └── values.yaml │ │ ├── install.yaml │ │ └── upgrade.yaml │ ├── sampleImages │ │ └── ostrich.jpg │ └── tensorClientResources │ │ ├── class.json │ │ └── getimageclassification.sh └── wordpress │ ├── README.md │ └── resources │ ├── app.yaml │ ├── charts │ └── wordpress │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── mysql-deployment.yaml │ │ ├── secret.yaml │ │ └── wordpress-deployment.yaml │ │ └── values.yaml │ ├── install.yaml │ └── upgrade.yaml ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt ├── buildkitd ├── buildkitd.config.toml ├── mage ├── update-codegen.sh └── verify-codegen.sh ├── lib ├── README.md ├── apis │ └── cluster │ │ ├── register.go │ │ └── v1beta1 │ │ ├── doc.go │ │ ├── imageset_types.go │ │ ├── register.go │ │ └── zz_generated.deepcopy.go ├── app │ ├── README.md │ ├── acl.go │ ├── api │ │ └── export.go │ ├── app.go │ ├── apps.go │ ├── apps_test.go │ ├── client │ │ └── client.go │ ├── dependency.go │ ├── handler │ │ ├── charts.go │ │ ├── handler.go │ │ └── handler_test.go │ ├── hooks │ │ ├── configure.go │ │ ├── configure_test.go │ │ ├── constants.go │ │ ├── diff.go │ │ ├── hooks.go │ │ └── hooks_test.go │ ├── phony.go │ ├── progress.go │ ├── resources │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── deepcopy_generated.go │ │ ├── doc.go │ │ ├── resourcefiles.go │ │ ├── resourcefiles_test.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── service │ │ ├── app.go │ │ ├── charts_test.go │ │ ├── docker.go │ │ ├── docker_test.go │ │ ├── import.go │ │ ├── installer.go │ │ ├── manifest.go │ │ ├── manifest_test.go │ │ ├── merge.go │ │ ├── merge_test.go │ │ ├── operations.go │ │ ├── pull.go │ │ ├── pull_test.go │ │ ├── resources_test.go │ │ ├── sync.go │ │ ├── test │ │ │ ├── builder.go │ │ │ └── charts.go │ │ ├── testhelpers.go │ │ ├── vendor.go │ │ └── vendor_test.go │ └── suite │ │ └── suite.go ├── archive │ ├── archive.go │ ├── archive_test.go │ ├── fileutils.go │ └── test_utils.go ├── autoscale │ └── aws │ │ ├── autoscaler.go │ │ ├── autoscaler_test.go │ │ ├── discovery.go │ │ ├── doc.go │ │ ├── events.go │ │ └── services.go ├── blob │ ├── acl.go │ ├── blob.go │ ├── client │ │ └── blobclient.go │ ├── cluster │ │ ├── cluster.go │ │ └── cluster_test.go │ ├── fs │ │ ├── fs.go │ │ └── fs_test.go │ ├── handler │ │ ├── blobhandler.go │ │ └── blobhandler_test.go │ └── suite │ │ └── suite.go ├── builder │ ├── application.go │ ├── cluster.go │ ├── engine.go │ ├── engine_test.go │ ├── generator.go │ ├── manifest.go │ ├── source.go │ ├── syncer.go │ └── util.go ├── catalog │ ├── api.go │ ├── catalog.go │ ├── catalog_test.go │ ├── lister.go │ ├── lister_test.go │ ├── local.go │ └── remote.go ├── checks │ ├── autofix │ │ ├── autofix.go │ │ └── utils.go │ ├── checks.go │ ├── checks_test.go │ ├── disks.go │ ├── pingpong.go │ ├── remote.go │ ├── requirements.go │ └── server.go ├── client │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── cluster │ │ │ └── v1beta1 │ │ │ ├── cluster_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_cluster_client.go │ │ │ └── fake_imageset.go │ │ │ ├── generated_expansion.go │ │ │ └── imageset.go │ ├── informers │ │ └── externalversions │ │ │ ├── cluster │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── imageset.go │ │ │ │ └── interface.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ └── listers │ │ └── cluster │ │ └── v1beta1 │ │ ├── expansion_generated.go │ │ └── imageset.go ├── clients │ ├── clients.go │ ├── etcd.go │ └── teleport.go ├── cloudprovider │ ├── aws │ │ ├── aws.go │ │ ├── regions.go │ │ ├── service │ │ │ └── service.go │ │ └── validation │ │ │ ├── actions.go │ │ │ ├── actions_test.go │ │ │ ├── ec2.go │ │ │ ├── iam.go │ │ │ ├── random.go │ │ │ ├── validation.go │ │ │ └── validation_test.go │ └── gce │ │ ├── validate.go │ │ └── validate_test.go ├── compare │ └── compare.go ├── constants │ └── constants.go ├── defaults │ ├── defaults.go │ └── labels.go ├── devicemapper │ ├── attributes.go │ ├── blockdevice.go │ ├── blockdevice_test.go │ └── configure.go ├── docker │ ├── api.go │ ├── cleaner.go │ ├── cleaner_test.go │ ├── client.go │ ├── distribution.go │ ├── distribution_test.go │ ├── doc.go │ ├── docker.go │ ├── http │ │ ├── acl.go │ │ └── registry.go │ ├── imageservice.go │ ├── imageservice_test.go │ ├── reference.go │ ├── runtime.go │ ├── scanningimageservice.go │ ├── synchronizer.go │ ├── synchronizer_test.go │ ├── tag.go │ ├── tag_test.go │ └── testhelpers.go ├── expand │ ├── bootstrap.go │ ├── builder.go │ ├── fsm.go │ ├── fsmspec.go │ ├── join.go │ ├── phases │ │ ├── agent.go │ │ ├── checks.go │ │ ├── elect.go │ │ ├── etcd.go │ │ └── wait.go │ ├── plan.go │ └── plan_test.go ├── fsm │ ├── executor.go │ ├── follow.go │ ├── follow_test.go │ ├── format.go │ ├── fsm.go │ ├── fsm_test.go │ ├── kubernetes.go │ ├── logger.go │ ├── rpc.go │ ├── testhelpers.go │ ├── utils.go │ └── utils_test.go ├── helm │ ├── action.go │ ├── index.go │ ├── index_test.go │ └── repo.go ├── httplib │ ├── client.go │ ├── env.go │ ├── http.go │ ├── http_test.go │ └── websocket.go ├── hub │ ├── hub.go │ └── hub_test.go ├── install │ ├── agent.go │ ├── client │ │ ├── automatic_lifecycle.go │ │ ├── client.go │ │ ├── install.go │ │ ├── noop_lifecycle.go │ │ └── resume.go │ ├── config.go │ ├── dispatcher │ │ ├── buffered │ │ │ ├── dispatcher.go │ │ │ └── dispatcher_test.go │ │ ├── direct │ │ │ ├── dispatcher.go │ │ │ └── dispatcher_test.go │ │ ├── dispatcher.go │ │ └── internal │ │ │ └── test │ │ │ └── test.go │ ├── engine │ │ ├── cli │ │ │ └── cli.go │ │ ├── engine.go │ │ └── interactive │ │ │ └── wizard.go │ ├── fsm.go │ ├── fsmspec.go │ ├── install.go │ ├── operation.go │ ├── phases │ │ ├── app.go │ │ ├── bootstrap.go │ │ ├── checks.go │ │ ├── configure.go │ │ ├── connect.go │ │ ├── constants.go │ │ ├── coredns.go │ │ ├── coredns_test.go │ │ ├── election.go │ │ ├── export.go │ │ ├── init.go │ │ ├── openebs.go │ │ ├── postsystem.go │ │ ├── pull.go │ │ ├── resources.go │ │ ├── selinux.go │ │ └── system.go │ ├── plan.go │ ├── plan_test.go │ ├── planbuilder.go │ ├── process.go │ ├── proto │ │ ├── Makefile │ │ ├── client.go │ │ ├── installer.pb.go │ │ ├── installer.proto │ │ └── proto.go │ ├── reconfigure │ │ ├── engine.go │ │ ├── fsm.go │ │ ├── fsmspec.go │ │ ├── phases │ │ │ ├── checks.go │ │ │ ├── clusterpackages.go │ │ │ ├── directories.go │ │ │ ├── etcd.go │ │ │ ├── gravity.go │ │ │ ├── localpackages.go │ │ │ ├── network.go │ │ │ ├── node.go │ │ │ ├── phases.go │ │ │ ├── pods.go │ │ │ ├── restart.go │ │ │ ├── state.go │ │ │ └── tokens.go │ │ ├── plan.go │ │ ├── plan_test.go │ │ └── planbuilder.go │ ├── server │ │ └── server.go │ ├── suite.go │ └── utils.go ├── kubernetes │ ├── drain.go │ ├── errors.go │ ├── format.go │ ├── kubernetes_test.go │ ├── nodes.go │ └── pods.go ├── loc │ ├── cli.go │ ├── compat.go │ ├── docker.go │ ├── loc.go │ ├── loc_test.go │ └── make.go ├── localenv │ ├── clusterenv.go │ ├── credentials │ │ └── credentials.go │ ├── detect.go │ ├── imageenv.go │ ├── localenv.go │ ├── localenv_test.go │ ├── remoteenv.go │ ├── remoteenv_test.go │ ├── state.go │ ├── tarballenv.go │ ├── teleport.go │ └── wizard.go ├── log │ └── log.go ├── modules │ └── modules.go ├── network │ ├── ipallocator │ │ └── allocator.go │ └── validation │ │ ├── bandwidth.go │ │ ├── disk.go │ │ ├── proto │ │ ├── Makefile │ │ ├── proto.go │ │ ├── validation.pb.go │ │ └── validation.proto │ │ ├── tcp.go │ │ ├── udp.go │ │ ├── validation.go │ │ └── validation_test.go ├── ops │ ├── agents.go │ ├── agents_test.go │ ├── checks.go │ ├── cluster.go │ ├── constants.go │ ├── election.go │ ├── endpoints.go │ ├── endpoints_test.go │ ├── events │ │ ├── codes.go │ │ ├── events.go │ │ └── fields.go │ ├── kubernetes.go │ ├── monitoring │ │ ├── metrics.go │ │ └── monitoring.go │ ├── operation.go │ ├── operatoracl.go │ ├── ops.go │ ├── ops_test.go │ ├── opsclient │ │ └── opsclient.go │ ├── opshandler │ │ ├── clusterconfig.go │ │ ├── environment.go │ │ ├── monitoring.go │ │ ├── opshandler.go │ │ ├── opshandler_test.go │ │ └── resources.go │ ├── opsroute │ │ ├── forward.go │ │ └── opsroute.go │ ├── opsservice │ │ ├── agents.go │ │ ├── agents_test.go │ │ ├── auth.go │ │ ├── authgateway.go │ │ ├── certificates.go │ │ ├── certificates_test.go │ │ ├── checks.go │ │ ├── cloudprovider.go │ │ ├── clusterconfig.go │ │ ├── cmd.go │ │ ├── common.go │ │ ├── configure.go │ │ ├── configure_test.go │ │ ├── ctx.go │ │ ├── deploy.go │ │ ├── endpoints.go │ │ ├── environment.go │ │ ├── expand.go │ │ ├── gc.go │ │ ├── hooks.go │ │ ├── identity.go │ │ ├── install.go │ │ ├── instructions.go │ │ ├── leader.go │ │ ├── logforwarders.go │ │ ├── monitoring.go │ │ ├── operationgroup.go │ │ ├── operationgroup_test.go │ │ ├── operationplan.go │ │ ├── packages.go │ │ ├── persistentstorage.go │ │ ├── plan.go │ │ ├── provision.go │ │ ├── reconfigure.go │ │ ├── releases.go │ │ ├── report.go │ │ ├── report_test.go │ │ ├── resume.go │ │ ├── runner.go │ │ ├── service.go │ │ ├── service_test.go │ │ ├── shrink.go │ │ ├── site.go │ │ ├── smtp.go │ │ ├── status.go │ │ ├── systemupdate.go │ │ ├── teleport.go │ │ ├── testhelpers.go │ │ ├── uninstall.go │ │ ├── update.go │ │ ├── users.go │ │ ├── utils.go │ │ ├── utils_test.go │ │ ├── versions.go │ │ └── versions_test.go │ ├── resources │ │ ├── gravity │ │ │ ├── collection.go │ │ │ ├── gravity.go │ │ │ ├── gravity_test.go │ │ │ └── suite.go │ │ ├── resources.go │ │ └── resources_test.go │ ├── site.go │ ├── suite │ │ ├── opssuite.go │ │ └── proxy.go │ └── utils.go ├── pack │ ├── acl.go │ ├── cautils.go │ ├── config.go │ ├── constants.go │ ├── encryptedpack │ │ ├── decrypt.go │ │ └── encryptedpack.go │ ├── layerpack │ │ ├── layer.go │ │ └── layer_test.go │ ├── localpack │ │ ├── local_test.go │ │ └── packageserver.go │ ├── manifest.go │ ├── options.go │ ├── pack.go │ ├── readwrite.go │ ├── suite │ │ └── suite.go │ ├── test │ │ └── helpers.go │ ├── utils.go │ └── webpack │ │ ├── webclient.go │ │ ├── webpack.go │ │ └── webpack_test.go ├── process │ ├── config_test.go │ ├── enterprise.go │ ├── handler.go │ ├── import.go │ ├── process.go │ ├── process_test.go │ ├── profile.go │ ├── proxy.go │ ├── service.go │ ├── teleport.go │ ├── watch.go │ └── wizard.go ├── processconfig │ ├── config.go │ └── merge.go ├── report │ ├── collector.go │ ├── collector_test.go │ ├── command.go │ ├── k8s.go │ ├── packages.go │ ├── report.go │ ├── resources.go │ ├── system.go │ └── timeline.go ├── rpc │ ├── client │ │ ├── agent.go │ │ ├── client.go │ │ ├── discovery.go │ │ └── validation.go │ ├── deploy.go │ ├── internal │ │ ├── inprocess │ │ │ ├── inprocess.go │ │ │ ├── inprocess_test.go │ │ │ ├── pipe.go │ │ │ └── pipe_go18.go │ │ └── proxy │ │ │ ├── proxy.go │ │ │ └── proxy_test.go │ ├── proto │ │ ├── Makefile │ │ ├── agent.pb.go │ │ ├── agent.proto │ │ ├── discovery.pb.go │ │ ├── discovery.proto │ │ └── utils.go │ ├── server │ │ ├── agent.go │ │ ├── agent_group.go │ │ ├── agent_group_test.go │ │ ├── agent_test.go │ │ ├── callable.go │ │ ├── cloud_metadata.go │ │ ├── logger.go │ │ ├── peer.go │ │ ├── peer_test.go │ │ ├── peers.go │ │ ├── server.go │ │ ├── suite_test.go │ │ └── testing.go │ ├── shutdown.go │ ├── status.go │ └── tls.go ├── run │ ├── run.go │ └── run_test.go ├── schema │ ├── checks.go │ ├── compat.go │ ├── constants.go │ ├── convert.go │ ├── convert_test.go │ ├── deepcopy_generated.go │ ├── defaults │ │ └── defaults.go │ ├── diff.go │ ├── diff_test.go │ ├── doc.go │ ├── extensions.go │ ├── hooks.go │ ├── hooks_test.go │ ├── manifest.go │ ├── manifest_test.go │ ├── parse.go │ ├── ports.go │ ├── schema.go │ ├── template.go │ ├── template_test.go │ ├── unversioned │ │ └── types.go │ └── v1 │ │ ├── constants.go │ │ ├── deepcopy_generated.go │ │ ├── dependency.go │ │ ├── doc.go │ │ ├── hooks.go │ │ └── manifest.go ├── sni │ └── mux.go ├── state │ └── state.go ├── status │ ├── alertmanager.go │ ├── extension.go │ ├── status.go │ ├── timeline.go │ └── wait.go ├── storage │ ├── allocator │ │ └── allocator.go │ ├── app.go │ ├── authgateway.go │ ├── authgateway_test.go │ ├── cluster.go │ ├── cluster_test.go │ ├── clusterconfig │ │ ├── clusterconfig.go │ │ └── clusterconfig_test.go │ ├── endpoints.go │ ├── environment.go │ ├── environment_test.go │ ├── functions.go │ ├── keyval │ │ ├── accounts.go │ │ ├── apikeys.go │ │ ├── applications.go │ │ ├── authorities.go │ │ ├── backend.go │ │ ├── backend_test.go │ │ ├── bolt.go │ │ ├── bolt_test.go │ │ ├── changesets.go │ │ ├── charts.go │ │ ├── clusterconfiguration.go │ │ ├── connectors.go │ │ ├── constants.go │ │ ├── etcd.go │ │ ├── etcd_test.go │ │ ├── invites.go │ │ ├── kv.go │ │ ├── leader.go │ │ ├── links.go │ │ ├── locks.go │ │ ├── loginentries.go │ │ ├── migrations.go │ │ ├── multibolt.go │ │ ├── namespace.go │ │ ├── nodes.go │ │ ├── operations.go │ │ ├── peers.go │ │ ├── permissions.go │ │ ├── progressentries.go │ │ ├── remoteclusters.go │ │ ├── repositories.go │ │ ├── roles.go │ │ ├── sessions.go │ │ ├── sites.go │ │ ├── system.go │ │ ├── tokens.go │ │ ├── trustedclusters.go │ │ ├── tunnelconnections.go │ │ ├── users.go │ │ └── usertokens.go │ ├── logforwarder.go │ ├── monitoring.go │ ├── operation.go │ ├── persistentstorage.go │ ├── plan.go │ ├── plan_test.go │ ├── release.go │ ├── repo.go │ ├── resources.go │ ├── role.go │ ├── smtp.go │ ├── storage.go │ ├── storage_test.go │ ├── suite │ │ └── suite.go │ ├── systeminfo.go │ ├── tlskeypair.go │ ├── tlskeypair_test.go │ ├── token.go │ ├── trustedcluster.go │ ├── trustedcluster_test.go │ ├── user.go │ └── utils.go ├── system │ ├── auditlog │ │ └── auditlog.go │ ├── caps.go │ ├── caps_linux.go │ ├── chroot.go │ ├── environ │ │ ├── state.go │ │ ├── uninstall.go │ │ └── validate.go │ ├── fs.go │ ├── fs_test.go │ ├── mount │ │ ├── mount.go │ │ └── service.go │ ├── selinux │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── bootstrap.go │ │ ├── bootstrap_test.go │ │ ├── internal │ │ │ ├── generate │ │ │ │ └── generate.go │ │ │ ├── policy │ │ │ │ ├── .gitignore │ │ │ │ ├── assets │ │ │ │ │ └── centos │ │ │ │ │ │ └── .keep │ │ │ │ └── policy.go │ │ │ └── schema │ │ │ │ ├── filecontext.go │ │ │ │ ├── filecontext_test.go │ │ │ │ ├── label.go │ │ │ │ ├── ports.go │ │ │ │ └── ports_test.go │ │ ├── selinux.go │ │ ├── update.go │ │ └── update_test.go │ ├── service │ │ ├── constants.go │ │ ├── oneshot.go │ │ ├── service.go │ │ └── simple.go │ └── signals │ │ └── signals.go ├── systeminfo │ ├── dns.go │ ├── dns_test.go │ ├── id.go │ ├── network.go │ ├── packages.go │ ├── systeminfo.go │ └── user.go ├── systemservice │ ├── escape.go │ ├── escape_test.go │ ├── merge.go │ ├── service.go │ ├── systemd.go │ └── systemd_test.go ├── testutils │ ├── auth.go │ └── s3.go ├── transfer │ ├── copy.go │ ├── transfer.go │ └── transfer_test.go ├── update │ ├── builder.go │ ├── cluster │ │ ├── automatic.go │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── checks │ │ │ └── checks.go │ │ ├── engine.go │ │ ├── engine_test.go │ │ ├── executor.go │ │ ├── phases │ │ │ ├── app.go │ │ │ ├── bootstrap.go │ │ │ ├── checks.go │ │ │ ├── coredns.go │ │ │ ├── election.go │ │ │ ├── etcd.go │ │ │ ├── gc.go │ │ │ ├── health.go │ │ │ ├── init.go │ │ │ ├── kubernetes.go │ │ │ ├── migration.go │ │ │ ├── migration_test.go │ │ │ ├── selinux.go │ │ │ └── system.go │ │ └── plan.go │ ├── clusterconfig │ │ ├── builder.go │ │ ├── clusterconfig.go │ │ ├── phases │ │ │ ├── fini.go │ │ │ ├── init.go │ │ │ ├── k8s.go │ │ │ ├── phase.go │ │ │ ├── restart.go │ │ │ ├── services.go │ │ │ └── update.go │ │ ├── plan.go │ │ └── plan_test.go │ ├── engine.go │ ├── environ │ │ ├── environ.go │ │ ├── phases │ │ │ └── update.go │ │ ├── plan.go │ │ └── plan_test.go │ ├── internal │ │ ├── builder │ │ │ └── builder.go │ │ └── rollingupdate │ │ │ ├── builder.go │ │ │ ├── dispatcher.go │ │ │ ├── fsm.go │ │ │ └── phases │ │ │ ├── elections.go │ │ │ ├── kubernetes.go │ │ │ ├── phase.go │ │ │ └── restart.go │ ├── reconciler.go │ ├── system │ │ └── system.go │ ├── updater.go │ └── utils.go ├── users │ ├── accesspoint.go │ ├── acl.go │ ├── auth.go │ ├── context.go │ ├── roles.go │ ├── suite │ │ └── userssuite.go │ ├── users.go │ └── usersservice │ │ ├── local.go │ │ ├── migrate.go │ │ ├── usersservice.go │ │ └── usersservice_test.go ├── utils │ ├── bandwidth.go │ ├── bandwidth_test.go │ ├── buf.go │ ├── chanutils.go │ ├── chanutils_test.go │ ├── check.go │ ├── cli │ │ ├── cli.go │ │ └── cli_test.go │ ├── collecterrors.go │ ├── commands.go │ ├── crypto.go │ ├── dns.go │ ├── encrypt.go │ ├── env.go │ ├── env_test.go │ ├── error.go │ ├── etcd.go │ ├── exec.go │ ├── fields │ │ └── fields.go │ ├── fileutils.go │ ├── fileutils_test.go │ ├── form.go │ ├── form_test.go │ ├── hash.go │ ├── helm │ │ ├── helm.go │ │ ├── helmutils.go │ │ └── utils_test.go │ ├── kubectl │ │ └── kubectl.go │ ├── kubernetes.go │ ├── kubernetes_test.go │ ├── logging.go │ ├── marshal.go │ ├── math.go │ ├── math_test.go │ ├── net.go │ ├── net_test.go │ ├── parse.go │ ├── parse_test.go │ ├── progress.go │ ├── retry.go │ ├── safe_buffer.go │ ├── semver.go │ ├── semver_test.go │ ├── ssh.go │ ├── strings.go │ ├── stringset.go │ ├── stringset_test.go │ ├── syslog.go │ ├── time.go │ ├── tls.go │ ├── tls_test.go │ ├── units.go │ ├── units_test.go │ ├── utils_test.go │ └── writer.go ├── vacuum │ ├── internal │ │ ├── fsm │ │ │ ├── builder.go │ │ │ ├── builder_test.go │ │ │ └── engine.go │ │ └── phases │ │ │ ├── journal.go │ │ │ ├── packages.go │ │ │ ├── phase.go │ │ │ └── registry.go │ ├── plan.go │ ├── prune │ │ ├── journal │ │ │ └── journal.go │ │ ├── pack │ │ │ ├── pack.go │ │ │ └── pack_test.go │ │ ├── pruner.go │ │ └── registry │ │ │ └── registry.go │ └── vacuum.go ├── validate │ ├── clusterconfig.go │ ├── net.go │ └── net_test.go └── webapi │ ├── README.md │ ├── clusterinfo.go │ ├── connect.go │ ├── forwarder.go │ ├── grafana.go │ ├── operations.go │ ├── providers.go │ ├── resources.go │ ├── tokens.go │ ├── ui │ ├── configs.go │ ├── converter.go │ ├── uninstallstatus.go │ ├── user.go │ └── webconfig.go │ ├── webapi.go │ └── webhandler.go ├── mage.dockerfile ├── mage.go ├── mage ├── README.md ├── build.go ├── cluster.go ├── misc.go ├── packages.go ├── tests.go └── vars.go ├── scripts └── cleanup.sh ├── site.mk ├── terraform-dev ├── .gitignore ├── Makefile ├── README.md ├── ansible.cfg ├── cloudinit.cfg ├── cluster.tf ├── hosts ├── install-wireguard-cni.yaml ├── install-wireguard.yaml ├── install.yaml ├── ssh │ └── config ├── update-gravity.yaml ├── update-planet-bin.yaml └── wireguard │ ├── 10-bridge.conf.template │ ├── 99-loopback.conf.template │ ├── kube-kubelet.service.template │ ├── kube-proxy.service.template │ ├── telekube0.conf │ ├── telekube1.conf │ └── telekube2.conf ├── tool ├── common │ ├── error.go │ ├── input.go │ ├── print.go │ └── progress.go ├── gravity │ ├── cli │ │ ├── app.go │ │ ├── backup_restore.go │ │ ├── checks.go │ │ ├── clusterconfig.go │ │ ├── clusterupdate.go │ │ ├── commands.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── environ.go │ │ ├── gc.go │ │ ├── helm.go │ │ ├── history.go │ │ ├── input.go │ │ ├── install.go │ │ ├── journal.go │ │ ├── logging.go │ │ ├── operation.go │ │ ├── ops.go │ │ ├── package.go │ │ ├── plan.go │ │ ├── planet.go │ │ ├── reconfigure.go │ │ ├── register.go │ │ ├── registry.go │ │ ├── report.go │ │ ├── resources.go │ │ ├── rotate.go │ │ ├── rpcagent.go │ │ ├── run.go │ │ ├── selinux.go │ │ ├── site.go │ │ ├── status.go │ │ ├── stop_start.go │ │ ├── sync.go │ │ ├── system.go │ │ ├── teleport.go │ │ ├── top.go │ │ ├── update.go │ │ ├── user.go │ │ ├── utils.go │ │ ├── utils_test.go │ │ └── version.go │ └── main.go └── tele │ ├── cli │ ├── build.go │ ├── commands.go │ ├── ls.go │ ├── pull.go │ ├── register.go │ ├── run.go │ └── version.go │ └── main.go ├── trace.yml ├── vagrant ├── .gitignore ├── Makefile ├── README.md ├── Vagrantfile └── ansible │ ├── ansible.cfg │ ├── certs.yaml │ ├── clean.yaml │ ├── deploy.yaml │ ├── install.yaml │ ├── sysctl.conf │ ├── update-gravity.yaml │ ├── upgrade.yaml │ ├── upload.yaml │ └── vagrant-provision.yaml ├── vendor ├── cloud.google.com │ └── go │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── compute │ │ └── metadata │ │ └── metadata.go ├── github.com │ ├── Azure │ │ ├── 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 │ │ │ │ ├── go.sum │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ ├── persist.go │ │ │ │ ├── sender.go │ │ │ │ ├── token.go │ │ │ │ ├── token_1.13.go │ │ │ │ ├── token_legacy.go │ │ │ │ └── version.go │ │ │ ├── authorization.go │ │ │ ├── authorization_sas.go │ │ │ ├── authorization_storage.go │ │ │ ├── autorest.go │ │ │ ├── azure │ │ │ │ ├── async.go │ │ │ │ ├── azure.go │ │ │ │ ├── environments.go │ │ │ │ ├── metadata_environment.go │ │ │ │ └── rp.go │ │ │ ├── client.go │ │ │ ├── date │ │ │ │ ├── LICENSE │ │ │ │ ├── date.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ ├── time.go │ │ │ │ ├── timerfc1123.go │ │ │ │ ├── unixtime.go │ │ │ │ └── utility.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── go_mod_tidy_hack.go │ │ │ ├── preparer.go │ │ │ ├── responder.go │ │ │ ├── retriablerequest.go │ │ │ ├── retriablerequest_1.7.go │ │ │ ├── retriablerequest_1.8.go │ │ │ ├── sender.go │ │ │ ├── utility.go │ │ │ └── version.go │ │ │ ├── azure-pipelines.yml │ │ │ ├── doc.go │ │ │ ├── logger │ │ │ ├── LICENSE │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── go_mod_tidy_hack.go │ │ │ └── logger.go │ │ │ └── tracing │ │ │ ├── LICENSE │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── go_mod_tidy_hack.go │ │ │ └── tracing.go │ ├── BurntSushi │ │ └── toml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── COMPATIBLE │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── decode_meta.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encoding_types.go │ │ │ ├── encoding_types_1.1.go │ │ │ ├── lex.go │ │ │ ├── parse.go │ │ │ ├── session.vim │ │ │ ├── type_check.go │ │ │ └── type_fields.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 │ │ │ │ ├── go.mod │ │ │ │ └── version.go │ │ ├── sprig │ │ │ └── v3 │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── crypto.go │ │ │ │ ├── date.go │ │ │ │ ├── defaults.go │ │ │ │ ├── dict.go │ │ │ │ ├── doc.go │ │ │ │ ├── functions.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── 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 │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── 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 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backup.go │ │ │ ├── ea.go │ │ │ ├── file.go │ │ │ ├── fileinfo.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hvsock.go │ │ │ ├── pipe.go │ │ │ ├── pkg │ │ │ │ ├── guid │ │ │ │ │ └── guid.go │ │ │ │ └── security │ │ │ │ │ ├── grantvmgroupaccess.go │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ └── zsyscall_windows.go │ │ │ ├── privilege.go │ │ │ ├── reparse.go │ │ │ ├── sd.go │ │ │ ├── syscall.go │ │ │ ├── vhd │ │ │ │ ├── vhd.go │ │ │ │ └── zvhd.go │ │ │ └── zsyscall_windows.go │ │ └── hcsshim │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .gometalinter.json │ │ │ ├── CODEOWNERS │ │ │ ├── LICENSE │ │ │ ├── Protobuild.toml │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── computestorage │ │ │ ├── attach.go │ │ │ ├── destroy.go │ │ │ ├── detach.go │ │ │ ├── export.go │ │ │ ├── format.go │ │ │ ├── helpers.go │ │ │ ├── import.go │ │ │ ├── initialize.go │ │ │ ├── mount.go │ │ │ ├── setup.go │ │ │ ├── storage.go │ │ │ └── zsyscall_windows.go │ │ │ ├── container.go │ │ │ ├── errors.go │ │ │ ├── functional_tests.ps1 │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hcsshim.go │ │ │ ├── hnsendpoint.go │ │ │ ├── hnsglobals.go │ │ │ ├── hnsnetwork.go │ │ │ ├── hnspolicy.go │ │ │ ├── hnspolicylist.go │ │ │ ├── hnssupport.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ ├── cow │ │ │ │ └── cow.go │ │ │ ├── hcs │ │ │ │ ├── callback.go │ │ │ │ ├── errors.go │ │ │ │ ├── process.go │ │ │ │ ├── service.go │ │ │ │ ├── system.go │ │ │ │ ├── utils.go │ │ │ │ └── waithelper.go │ │ │ ├── hcserror │ │ │ │ └── hcserror.go │ │ │ ├── hns │ │ │ │ ├── hns.go │ │ │ │ ├── hnsendpoint.go │ │ │ │ ├── hnsfuncs.go │ │ │ │ ├── hnsglobals.go │ │ │ │ ├── hnsnetwork.go │ │ │ │ ├── hnspolicy.go │ │ │ │ ├── hnspolicylist.go │ │ │ │ ├── hnssupport.go │ │ │ │ ├── namespace.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── interop │ │ │ │ ├── interop.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── log │ │ │ │ └── g.go │ │ │ ├── logfields │ │ │ │ └── fields.go │ │ │ ├── longpath │ │ │ │ └── longpath.go │ │ │ ├── mergemaps │ │ │ │ └── merge.go │ │ │ ├── oc │ │ │ │ ├── exporter.go │ │ │ │ └── span.go │ │ │ ├── safefile │ │ │ │ └── safeopen.go │ │ │ ├── schema1 │ │ │ │ └── schema1.go │ │ │ ├── schema2 │ │ │ │ ├── attachment.go │ │ │ │ ├── battery.go │ │ │ │ ├── cache_query_stats_response.go │ │ │ │ ├── chipset.go │ │ │ │ ├── close_handle.go │ │ │ │ ├── com_port.go │ │ │ │ ├── compute_system.go │ │ │ │ ├── configuration.go │ │ │ │ ├── console_size.go │ │ │ │ ├── container.go │ │ │ │ ├── container_credential_guard_add_instance_request.go │ │ │ │ ├── container_credential_guard_hv_socket_service_config.go │ │ │ │ ├── container_credential_guard_instance.go │ │ │ │ ├── container_credential_guard_modify_operation.go │ │ │ │ ├── container_credential_guard_operation_request.go │ │ │ │ ├── container_credential_guard_remove_instance_request.go │ │ │ │ ├── container_credential_guard_state.go │ │ │ │ ├── container_credential_guard_system_info.go │ │ │ │ ├── container_memory_information.go │ │ │ │ ├── cpu_group.go │ │ │ │ ├── cpu_group_affinity.go │ │ │ │ ├── cpu_group_config.go │ │ │ │ ├── cpu_group_configurations.go │ │ │ │ ├── cpu_group_operations.go │ │ │ │ ├── cpu_group_property.go │ │ │ │ ├── create_group_operation.go │ │ │ │ ├── delete_group_operation.go │ │ │ │ ├── device.go │ │ │ │ ├── devices.go │ │ │ │ ├── enhanced_mode_video.go │ │ │ │ ├── flexible_io_device.go │ │ │ │ ├── guest_connection.go │ │ │ │ ├── guest_connection_info.go │ │ │ │ ├── guest_crash_reporting.go │ │ │ │ ├── guest_os.go │ │ │ │ ├── guest_state.go │ │ │ │ ├── host_processor_modify_request.go │ │ │ │ ├── hosted_system.go │ │ │ │ ├── hv_socket.go │ │ │ │ ├── hv_socket_2.go │ │ │ │ ├── hv_socket_address.go │ │ │ │ ├── hv_socket_service_config.go │ │ │ │ ├── hv_socket_system_config.go │ │ │ │ ├── keyboard.go │ │ │ │ ├── layer.go │ │ │ │ ├── linux_kernel_direct.go │ │ │ │ ├── logical_processor.go │ │ │ │ ├── mapped_directory.go │ │ │ │ ├── mapped_pipe.go │ │ │ │ ├── memory.go │ │ │ │ ├── memory_2.go │ │ │ │ ├── memory_information_for_vm.go │ │ │ │ ├── memory_stats.go │ │ │ │ ├── modification_request.go │ │ │ │ ├── modify_setting_request.go │ │ │ │ ├── mouse.go │ │ │ │ ├── network_adapter.go │ │ │ │ ├── networking.go │ │ │ │ ├── pause_notification.go │ │ │ │ ├── pause_options.go │ │ │ │ ├── plan9.go │ │ │ │ ├── plan9_share.go │ │ │ │ ├── process_details.go │ │ │ │ ├── process_modify_request.go │ │ │ │ ├── process_parameters.go │ │ │ │ ├── process_status.go │ │ │ │ ├── processor.go │ │ │ │ ├── processor_2.go │ │ │ │ ├── processor_stats.go │ │ │ │ ├── processor_topology.go │ │ │ │ ├── properties.go │ │ │ │ ├── property_query.go │ │ │ │ ├── property_type.go │ │ │ │ ├── rdp_connection_options.go │ │ │ │ ├── registry_changes.go │ │ │ │ ├── registry_key.go │ │ │ │ ├── registry_value.go │ │ │ │ ├── restore_state.go │ │ │ │ ├── save_options.go │ │ │ │ ├── scsi.go │ │ │ │ ├── service_properties.go │ │ │ │ ├── shared_memory_configuration.go │ │ │ │ ├── shared_memory_region.go │ │ │ │ ├── shared_memory_region_info.go │ │ │ │ ├── silo_properties.go │ │ │ │ ├── statistics.go │ │ │ │ ├── storage.go │ │ │ │ ├── storage_qo_s.go │ │ │ │ ├── storage_stats.go │ │ │ │ ├── topology.go │ │ │ │ ├── uefi.go │ │ │ │ ├── uefi_boot_entry.go │ │ │ │ ├── version.go │ │ │ │ ├── video_monitor.go │ │ │ │ ├── virtual_machine.go │ │ │ │ ├── virtual_node_info.go │ │ │ │ ├── virtual_p_mem_controller.go │ │ │ │ ├── virtual_p_mem_device.go │ │ │ │ ├── virtual_pci_device.go │ │ │ │ ├── virtual_pci_function.go │ │ │ │ ├── virtual_smb.go │ │ │ │ ├── virtual_smb_share.go │ │ │ │ ├── virtual_smb_share_options.go │ │ │ │ ├── vm_memory.go │ │ │ │ ├── vm_processor_limits.go │ │ │ │ └── windows_crash_reporting.go │ │ │ ├── timeout │ │ │ │ └── timeout.go │ │ │ ├── vmcompute │ │ │ │ ├── vmcompute.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── wclayer │ │ │ │ ├── activatelayer.go │ │ │ │ ├── baselayer.go │ │ │ │ ├── createlayer.go │ │ │ │ ├── createscratchlayer.go │ │ │ │ ├── deactivatelayer.go │ │ │ │ ├── destroylayer.go │ │ │ │ ├── expandscratchsize.go │ │ │ │ ├── exportlayer.go │ │ │ │ ├── getlayermountpath.go │ │ │ │ ├── getsharedbaseimages.go │ │ │ │ ├── grantvmaccess.go │ │ │ │ ├── importlayer.go │ │ │ │ ├── layerexists.go │ │ │ │ ├── layerid.go │ │ │ │ ├── layerutils.go │ │ │ │ ├── legacy.go │ │ │ │ ├── nametoguid.go │ │ │ │ ├── preparelayer.go │ │ │ │ ├── processimage.go │ │ │ │ ├── unpreparelayer.go │ │ │ │ ├── wclayer.go │ │ │ │ └── zsyscall_windows.go │ │ │ └── winapi │ │ │ │ ├── devices.go │ │ │ │ ├── errors.go │ │ │ │ ├── filesystem.go │ │ │ │ ├── iocp.go │ │ │ │ ├── jobobject.go │ │ │ │ ├── logon.go │ │ │ │ ├── memory.go │ │ │ │ ├── net.go │ │ │ │ ├── path.go │ │ │ │ ├── process.go │ │ │ │ ├── processor.go │ │ │ │ ├── utils.go │ │ │ │ ├── winapi.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── layer.go │ │ │ ├── osversion │ │ │ ├── osversion_windows.go │ │ │ └── windowsbuilds.go │ │ │ ├── process.go │ │ │ └── zsyscall_windows.go │ ├── PuerkitoBio │ │ ├── purell │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── purell.go │ │ └── urlesc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── urlesc.go │ ├── alecthomas │ │ ├── template │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── exec.go │ │ │ ├── funcs.go │ │ │ ├── helper.go │ │ │ ├── parse │ │ │ │ ├── lex.go │ │ │ │ ├── node.go │ │ │ │ └── parse.go │ │ │ └── template.go │ │ └── units │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── bytes.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── si.go │ │ │ └── util.go │ ├── asaskevich │ │ └── govalidator │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arrays.go │ │ │ ├── converter.go │ │ │ ├── error.go │ │ │ ├── numerics.go │ │ │ ├── patterns.go │ │ │ ├── types.go │ │ │ ├── utils.go │ │ │ ├── validator.go │ │ │ └── wercker.yml │ ├── aws │ │ └── aws-sdk-go │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── aws │ │ │ ├── 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 │ │ │ ├── config.go │ │ │ ├── context.go │ │ │ ├── context_1_6.go │ │ │ ├── context_1_7.go │ │ │ ├── convert_types.go │ │ │ ├── corehandlers │ │ │ │ ├── handlers.go │ │ │ │ ├── param_validator.go │ │ │ │ └── user_agent.go │ │ │ ├── credentials │ │ │ │ ├── chain_provider.go │ │ │ │ ├── credentials.go │ │ │ │ ├── ec2rolecreds │ │ │ │ │ └── ec2_role_provider.go │ │ │ │ ├── endpointcreds │ │ │ │ │ └── provider.go │ │ │ │ ├── env_provider.go │ │ │ │ ├── example.ini │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ ├── static_provider.go │ │ │ │ └── stscreds │ │ │ │ │ └── assume_role_provider.go │ │ │ ├── csm │ │ │ │ ├── doc.go │ │ │ │ ├── enable.go │ │ │ │ ├── metric.go │ │ │ │ ├── metric_chan.go │ │ │ │ └── reporter.go │ │ │ ├── defaults │ │ │ │ ├── defaults.go │ │ │ │ └── shared_config.go │ │ │ ├── doc.go │ │ │ ├── ec2metadata │ │ │ │ ├── api.go │ │ │ │ └── service.go │ │ │ ├── endpoints │ │ │ │ ├── decode.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── v3model.go │ │ │ │ └── v3model_codegen.go │ │ │ ├── errors.go │ │ │ ├── jsonvalue.go │ │ │ ├── logger.go │ │ │ ├── request │ │ │ │ ├── connection_reset_error.go │ │ │ │ ├── connection_reset_error_other.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 │ │ │ │ ├── doc.go │ │ │ │ ├── env_config.go │ │ │ │ ├── session.go │ │ │ │ └── shared_config.go │ │ │ ├── signer │ │ │ │ └── v4 │ │ │ │ │ ├── header_rules.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── uri_path.go │ │ │ │ │ └── v4.go │ │ │ ├── types.go │ │ │ ├── url.go │ │ │ ├── url_1_7.go │ │ │ └── version.go │ │ │ ├── internal │ │ │ ├── sdkio │ │ │ │ ├── io_go1.6.go │ │ │ │ └── io_go1.7.go │ │ │ ├── sdkrand │ │ │ │ └── locked_source.go │ │ │ └── shareddefaults │ │ │ │ └── shared_config.go │ │ │ ├── private │ │ │ └── protocol │ │ │ │ ├── ec2query │ │ │ │ ├── build.go │ │ │ │ └── unmarshal.go │ │ │ │ ├── eventstream │ │ │ │ ├── debug.go │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── error.go │ │ │ │ ├── eventstreamapi │ │ │ │ │ ├── api.go │ │ │ │ │ └── error.go │ │ │ │ ├── header.go │ │ │ │ ├── header_value.go │ │ │ │ └── message.go │ │ │ │ ├── idempotency.go │ │ │ │ ├── json │ │ │ │ └── jsonutil │ │ │ │ │ ├── build.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── jsonrpc │ │ │ │ └── jsonrpc.go │ │ │ │ ├── jsonvalue.go │ │ │ │ ├── payload.go │ │ │ │ ├── query │ │ │ │ ├── build.go │ │ │ │ ├── queryutil │ │ │ │ │ └── queryutil.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── rest │ │ │ │ ├── build.go │ │ │ │ ├── payload.go │ │ │ │ └── unmarshal.go │ │ │ │ ├── restxml │ │ │ │ └── restxml.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── xml │ │ │ │ └── xmlutil │ │ │ │ ├── build.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── xml_to_struct.go │ │ │ └── service │ │ │ ├── autoscaling │ │ │ ├── api.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── waiters.go │ │ │ ├── dynamodb │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── doc_custom.go │ │ │ ├── dynamodbattribute │ │ │ │ ├── converter.go │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode.go │ │ │ │ ├── field.go │ │ │ │ └── tag.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── waiters.go │ │ │ ├── ec2 │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── waiters.go │ │ │ ├── iam │ │ │ ├── api.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 │ │ │ ├── errors.go │ │ │ ├── host_style_bucket.go │ │ │ ├── platform_handlers.go │ │ │ ├── platform_handlers_go1.6.go │ │ │ ├── s3iface │ │ │ │ └── interface.go │ │ │ ├── s3manager │ │ │ │ ├── batch.go │ │ │ │ ├── bucket_region.go │ │ │ │ ├── doc.go │ │ │ │ ├── download.go │ │ │ │ └── upload.go │ │ │ ├── service.go │ │ │ ├── sse.go │ │ │ ├── statusok_error.go │ │ │ ├── unmarshal_error.go │ │ │ └── waiters.go │ │ │ ├── sqs │ │ │ ├── api.go │ │ │ ├── checksums.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ └── service.go │ │ │ ├── ssm │ │ │ ├── api.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ └── service.go │ │ │ └── sts │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ └── service.go │ ├── beevik │ │ └── etree │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RELEASE_NOTES.md │ │ │ ├── etree.go │ │ │ ├── helpers.go │ │ │ └── path.go │ ├── beorn7 │ │ └── perks │ │ │ └── quantile │ │ │ ├── exampledata.txt │ │ │ └── stream.go │ ├── blang │ │ └── semver │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── json.go │ │ │ ├── package.json │ │ │ ├── range.go │ │ │ ├── semver.go │ │ │ ├── sort.go │ │ │ └── sql.go │ ├── boltdb │ │ └── bolt │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── bolt_386.go │ │ │ ├── bolt_amd64.go │ │ │ ├── bolt_arm.go │ │ │ ├── bolt_arm64.go │ │ │ ├── bolt_linux.go │ │ │ ├── bolt_openbsd.go │ │ │ ├── bolt_ppc.go │ │ │ ├── bolt_ppc64.go │ │ │ ├── bolt_ppc64le.go │ │ │ ├── bolt_s390x.go │ │ │ ├── bolt_unix.go │ │ │ ├── bolt_unix_solaris.go │ │ │ ├── bolt_windows.go │ │ │ ├── boltsync_unix.go │ │ │ ├── bucket.go │ │ │ ├── cursor.go │ │ │ ├── db.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── freelist.go │ │ │ ├── node.go │ │ │ ├── page.go │ │ │ └── tx.go │ ├── boombuler │ │ └── barcode │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── barcode.go │ │ │ ├── qr │ │ │ ├── alphanumeric.go │ │ │ ├── automatic.go │ │ │ ├── blocks.go │ │ │ ├── encoder.go │ │ │ ├── errorcorrection.go │ │ │ ├── numeric.go │ │ │ ├── qrcode.go │ │ │ ├── unicode.go │ │ │ └── versioninfo.go │ │ │ ├── scaledbarcode.go │ │ │ └── utils │ │ │ ├── base1dcode.go │ │ │ ├── bitlist.go │ │ │ ├── galoisfield.go │ │ │ ├── gfpoly.go │ │ │ ├── reedsolomon.go │ │ │ └── runeint.go │ ├── buger │ │ └── goterm │ │ │ ├── README.md │ │ │ ├── box.go │ │ │ ├── plot.go │ │ │ ├── table.go │ │ │ └── terminal.go │ ├── cenkalti │ │ └── backoff │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backoff.go │ │ │ ├── context.go │ │ │ ├── exponential.go │ │ │ ├── retry.go │ │ │ ├── ticker.go │ │ │ └── tries.go │ ├── cloudflare │ │ └── cfssl │ │ │ ├── LICENSE │ │ │ ├── auth │ │ │ └── auth.go │ │ │ ├── certdb │ │ │ ├── README.md │ │ │ └── certdb.go │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── crypto │ │ │ └── pkcs7 │ │ │ │ └── pkcs7.go │ │ │ ├── csr │ │ │ └── csr.go │ │ │ ├── errors │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ └── http.go │ │ │ ├── helpers │ │ │ ├── derhelpers │ │ │ │ └── derhelpers.go │ │ │ └── helpers.go │ │ │ ├── info │ │ │ └── info.go │ │ │ ├── initca │ │ │ └── initca.go │ │ │ ├── log │ │ │ └── log.go │ │ │ ├── ocsp │ │ │ └── config │ │ │ │ └── config.go │ │ │ └── signer │ │ │ ├── local │ │ │ └── local.go │ │ │ └── signer.go │ ├── cloudfoundry │ │ └── gosigar │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── 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 │ ├── codahale │ │ └── hdrhistogram │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── hdr.go │ │ │ └── window.go │ ├── containerd │ │ ├── cgroups │ │ │ ├── LICENSE │ │ │ └── stats │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── metrics.pb.go │ │ │ │ ├── metrics.pb.txt │ │ │ │ └── metrics.proto │ │ ├── console │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── console.go │ │ │ ├── console_linux.go │ │ │ ├── console_unix.go │ │ │ ├── console_windows.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── tc_darwin.go │ │ │ ├── tc_freebsd.go │ │ │ ├── tc_linux.go │ │ │ ├── tc_openbsd_cgo.go │ │ │ ├── tc_openbsd_nocgo.go │ │ │ ├── tc_solaris_cgo.go │ │ │ ├── tc_solaris_nocgo.go │ │ │ └── tc_unix.go │ │ ├── containerd │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── archive │ │ │ │ └── compression │ │ │ │ │ └── compression.go │ │ │ ├── content │ │ │ │ ├── content.go │ │ │ │ ├── helpers.go │ │ │ │ └── local │ │ │ │ │ ├── locks.go │ │ │ │ │ ├── readerat.go │ │ │ │ │ ├── store.go │ │ │ │ │ ├── store_unix.go │ │ │ │ │ ├── store_windows.go │ │ │ │ │ └── writer.go │ │ │ ├── errdefs │ │ │ │ ├── errors.go │ │ │ │ └── grpc.go │ │ │ ├── filters │ │ │ │ ├── adaptor.go │ │ │ │ ├── filter.go │ │ │ │ ├── parser.go │ │ │ │ ├── quote.go │ │ │ │ └── scanner.go │ │ │ ├── images │ │ │ │ ├── annotations.go │ │ │ │ ├── handlers.go │ │ │ │ ├── image.go │ │ │ │ ├── importexport.go │ │ │ │ └── mediatypes.go │ │ │ ├── labels │ │ │ │ └── validate.go │ │ │ ├── log │ │ │ │ └── context.go │ │ │ ├── platforms │ │ │ │ ├── compare.go │ │ │ │ ├── cpuinfo.go │ │ │ │ ├── database.go │ │ │ │ ├── defaults.go │ │ │ │ ├── defaults_unix.go │ │ │ │ ├── defaults_windows.go │ │ │ │ └── platforms.go │ │ │ ├── reference │ │ │ │ └── reference.go │ │ │ ├── remotes │ │ │ │ ├── docker │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── authorizer.go │ │ │ │ │ ├── converter.go │ │ │ │ │ ├── errcode.go │ │ │ │ │ ├── errdesc.go │ │ │ │ │ ├── fetcher.go │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── httpreadseeker.go │ │ │ │ │ ├── pusher.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── resolver.go │ │ │ │ │ ├── schema1 │ │ │ │ │ │ └── converter.go │ │ │ │ │ ├── scope.go │ │ │ │ │ └── status.go │ │ │ │ ├── handlers.go │ │ │ │ └── resolver.go │ │ │ ├── sys │ │ │ │ ├── env.go │ │ │ │ ├── epoll.go │ │ │ │ ├── fds.go │ │ │ │ ├── filesys.go │ │ │ │ ├── filesys_unix.go │ │ │ │ ├── filesys_windows.go │ │ │ │ ├── mount_linux.go │ │ │ │ ├── oom_unix.go │ │ │ │ ├── oom_windows.go │ │ │ │ ├── socket_unix.go │ │ │ │ ├── socket_windows.go │ │ │ │ ├── stat_bsd.go │ │ │ │ ├── stat_unix.go │ │ │ │ ├── subprocess_unsafe_linux.go │ │ │ │ ├── subprocess_unsafe_linux.s │ │ │ │ ├── userns_linux.go │ │ │ │ └── userns_unsupported.go │ │ │ └── version │ │ │ │ └── version.go │ │ └── continuity │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── fs │ │ │ ├── copy.go │ │ │ ├── copy_darwinopenbsdsolaris.go │ │ │ ├── copy_freebsd.go │ │ │ ├── copy_linux.go │ │ │ ├── copy_unix.go │ │ │ ├── copy_windows.go │ │ │ ├── diff.go │ │ │ ├── diff_unix.go │ │ │ ├── diff_windows.go │ │ │ ├── dtype_linux.go │ │ │ ├── du.go │ │ │ ├── du_unix.go │ │ │ ├── du_windows.go │ │ │ ├── hardlink.go │ │ │ ├── hardlink_unix.go │ │ │ ├── hardlink_windows.go │ │ │ ├── path.go │ │ │ ├── stat_darwinfreebsd.go │ │ │ ├── stat_linuxopenbsd.go │ │ │ └── time.go │ │ │ ├── pathdriver │ │ │ └── path_driver.go │ │ │ └── sysx │ │ │ ├── README.md │ │ │ ├── generate.sh │ │ │ ├── nodata_linux.go │ │ │ ├── nodata_solaris.go │ │ │ ├── nodata_unix.go │ │ │ ├── xattr.go │ │ │ └── xattr_unsupported.go │ ├── coreos │ │ ├── etcd │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── auth │ │ │ │ └── authpb │ │ │ │ │ ├── auth.pb.go │ │ │ │ │ └── auth.proto │ │ │ ├── client │ │ │ │ ├── README.md │ │ │ │ ├── auth_role.go │ │ │ │ ├── auth_user.go │ │ │ │ ├── cancelreq.go │ │ │ │ ├── client.go │ │ │ │ ├── cluster_error.go │ │ │ │ ├── curl.go │ │ │ │ ├── discover.go │ │ │ │ ├── doc.go │ │ │ │ ├── json.go │ │ │ │ ├── keys.go │ │ │ │ ├── members.go │ │ │ │ └── util.go │ │ │ ├── clientv3 │ │ │ │ ├── auth.go │ │ │ │ ├── balancer │ │ │ │ │ ├── balancer.go │ │ │ │ │ ├── connectivity │ │ │ │ │ │ └── connectivity.go │ │ │ │ │ ├── picker │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── err.go │ │ │ │ │ │ ├── picker.go │ │ │ │ │ │ └── roundrobin_balanced.go │ │ │ │ │ ├── resolver │ │ │ │ │ │ └── endpoint │ │ │ │ │ │ │ └── endpoint.go │ │ │ │ │ └── utils.go │ │ │ │ ├── client.go │ │ │ │ ├── cluster.go │ │ │ │ ├── compact_op.go │ │ │ │ ├── compare.go │ │ │ │ ├── config.go │ │ │ │ ├── credentials │ │ │ │ │ └── credentials.go │ │ │ │ ├── ctx.go │ │ │ │ ├── doc.go │ │ │ │ ├── kv.go │ │ │ │ ├── lease.go │ │ │ │ ├── logger.go │ │ │ │ ├── maintenance.go │ │ │ │ ├── op.go │ │ │ │ ├── options.go │ │ │ │ ├── retry.go │ │ │ │ ├── retry_interceptor.go │ │ │ │ ├── sort.go │ │ │ │ ├── txn.go │ │ │ │ ├── utils.go │ │ │ │ └── watch.go │ │ │ ├── etcdserver │ │ │ │ ├── api │ │ │ │ │ └── v3rpc │ │ │ │ │ │ └── rpctypes │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ ├── md.go │ │ │ │ │ │ └── metadatafields.go │ │ │ │ └── etcdserverpb │ │ │ │ │ ├── etcdserver.pb.go │ │ │ │ │ ├── etcdserver.proto │ │ │ │ │ ├── raft_internal.pb.go │ │ │ │ │ ├── raft_internal.proto │ │ │ │ │ ├── raft_internal_stringer.go │ │ │ │ │ ├── rpc.pb.go │ │ │ │ │ └── rpc.proto │ │ │ ├── mvcc │ │ │ │ └── mvccpb │ │ │ │ │ ├── kv.pb.go │ │ │ │ │ └── kv.proto │ │ │ ├── pkg │ │ │ │ ├── fileutil │ │ │ │ │ ├── dir_unix.go │ │ │ │ │ ├── dir_windows.go │ │ │ │ │ ├── fileutil.go │ │ │ │ │ ├── lock.go │ │ │ │ │ ├── lock_flock.go │ │ │ │ │ ├── lock_linux.go │ │ │ │ │ ├── lock_plan9.go │ │ │ │ │ ├── lock_solaris.go │ │ │ │ │ ├── lock_unix.go │ │ │ │ │ ├── lock_windows.go │ │ │ │ │ ├── preallocate.go │ │ │ │ │ ├── preallocate_darwin.go │ │ │ │ │ ├── preallocate_unix.go │ │ │ │ │ ├── preallocate_unsupported.go │ │ │ │ │ ├── purge.go │ │ │ │ │ ├── sync.go │ │ │ │ │ ├── sync_darwin.go │ │ │ │ │ └── sync_linux.go │ │ │ │ ├── logutil │ │ │ │ │ ├── discard_logger.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── log_level.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── merge_logger.go │ │ │ │ │ ├── package_logger.go │ │ │ │ │ ├── zap.go │ │ │ │ │ ├── zap_grpc.go │ │ │ │ │ ├── zap_journal.go │ │ │ │ │ └── zap_raft.go │ │ │ │ ├── pathutil │ │ │ │ │ └── path.go │ │ │ │ ├── srv │ │ │ │ │ └── srv.go │ │ │ │ ├── systemd │ │ │ │ │ ├── doc.go │ │ │ │ │ └── journal.go │ │ │ │ ├── tlsutil │ │ │ │ │ ├── cipher_suites.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── tlsutil.go │ │ │ │ ├── transport │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── keepalive_listener.go │ │ │ │ │ ├── limit_listen.go │ │ │ │ │ ├── listener.go │ │ │ │ │ ├── listener_tls.go │ │ │ │ │ ├── timeout_conn.go │ │ │ │ │ ├── timeout_dialer.go │ │ │ │ │ ├── timeout_listener.go │ │ │ │ │ ├── timeout_transport.go │ │ │ │ │ ├── tls.go │ │ │ │ │ ├── transport.go │ │ │ │ │ └── unix_listener.go │ │ │ │ └── types │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── id.go │ │ │ │ │ ├── set.go │ │ │ │ │ ├── slice.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urlsmap.go │ │ │ ├── raft │ │ │ │ ├── README.md │ │ │ │ ├── design.md │ │ │ │ ├── doc.go │ │ │ │ ├── log.go │ │ │ │ ├── log_unstable.go │ │ │ │ ├── logger.go │ │ │ │ ├── node.go │ │ │ │ ├── progress.go │ │ │ │ ├── raft.go │ │ │ │ ├── raftpb │ │ │ │ │ ├── raft.pb.go │ │ │ │ │ └── raft.proto │ │ │ │ ├── rawnode.go │ │ │ │ ├── read_only.go │ │ │ │ ├── status.go │ │ │ │ ├── storage.go │ │ │ │ └── util.go │ │ │ └── version │ │ │ │ └── version.go │ │ ├── go-oidc │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── http │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── http.go │ │ │ │ └── url.go │ │ │ ├── jose │ │ │ │ ├── claims.go │ │ │ │ ├── doc.go │ │ │ │ ├── jose.go │ │ │ │ ├── jwk.go │ │ │ │ ├── jws.go │ │ │ │ ├── jwt.go │ │ │ │ ├── sig.go │ │ │ │ └── sig_rsa.go │ │ │ ├── key │ │ │ │ ├── doc.go │ │ │ │ ├── key.go │ │ │ │ ├── manager.go │ │ │ │ ├── repo.go │ │ │ │ ├── rotate.go │ │ │ │ └── sync.go │ │ │ ├── oauth2 │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ └── oauth2.go │ │ │ └── oidc │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── identity.go │ │ │ │ ├── interface.go │ │ │ │ ├── key.go │ │ │ │ ├── provider.go │ │ │ │ ├── transport.go │ │ │ │ ├── util.go │ │ │ │ └── verification.go │ │ ├── go-semver │ │ │ ├── LICENSE │ │ │ └── semver │ │ │ │ ├── semver.go │ │ │ │ └── sort.go │ │ ├── go-systemd │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── journal │ │ │ │ └── journal.go │ │ │ └── v22 │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ └── dbus │ │ │ │ ├── dbus.go │ │ │ │ ├── methods.go │ │ │ │ ├── properties.go │ │ │ │ ├── set.go │ │ │ │ ├── subscription.go │ │ │ │ └── subscription_set.go │ │ ├── pkg │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── capnslog │ │ │ │ ├── README.md │ │ │ │ ├── formatters.go │ │ │ │ ├── glog_formatter.go │ │ │ │ ├── init.go │ │ │ │ ├── init_windows.go │ │ │ │ ├── journald_formatter.go │ │ │ │ ├── log_hijack.go │ │ │ │ ├── logmap.go │ │ │ │ ├── pkg_logger.go │ │ │ │ └── syslog_formatter.go │ │ │ ├── health │ │ │ │ ├── README.md │ │ │ │ └── health.go │ │ │ ├── httputil │ │ │ │ ├── README.md │ │ │ │ ├── cookie.go │ │ │ │ └── json.go │ │ │ └── timeutil │ │ │ │ └── backoff.go │ │ └── prometheus-operator │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── pkg │ │ │ ├── apis │ │ │ └── monitoring │ │ │ │ ├── register.go │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── thanos_types.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── client │ │ │ └── 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 │ ├── cyphar │ │ └── filepath-securejoin │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ ├── join.go │ │ │ ├── vendor.conf │ │ │ └── vfs.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── deislabs │ │ └── oras │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ ├── artifact │ │ │ └── consts.go │ │ │ ├── auth │ │ │ ├── client.go │ │ │ └── docker │ │ │ │ ├── client.go │ │ │ │ ├── login.go │ │ │ │ ├── logout.go │ │ │ │ └── resolver.go │ │ │ ├── content │ │ │ ├── consts.go │ │ │ ├── decompressstore.go │ │ │ ├── errors.go │ │ │ ├── file.go │ │ │ ├── gunzip.go │ │ │ ├── interface.go │ │ │ ├── iowriter.go │ │ │ ├── memory.go │ │ │ ├── multireader.go │ │ │ ├── multiwriter.go │ │ │ ├── oci.go │ │ │ ├── opts.go │ │ │ ├── passthrough.go │ │ │ ├── readerat.go │ │ │ ├── untar.go │ │ │ └── utils.go │ │ │ ├── context │ │ │ ├── context.go │ │ │ └── logger.go │ │ │ └── oras │ │ │ ├── errors.go │ │ │ ├── pull.go │ │ │ ├── pull_opts.go │ │ │ ├── push.go │ │ │ ├── push_opts.go │ │ │ └── store.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 │ │ │ ├── configuration │ │ │ │ ├── configuration.go │ │ │ │ └── parser.go │ │ │ ├── context │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── http.go │ │ │ │ ├── logger.go │ │ │ │ ├── trace.go │ │ │ │ ├── util.go │ │ │ │ └── version.go │ │ │ ├── digestset │ │ │ │ └── set.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── health │ │ │ │ ├── checks │ │ │ │ │ └── checks.go │ │ │ │ ├── doc.go │ │ │ │ └── health.go │ │ │ ├── manifest │ │ │ │ ├── doc.go │ │ │ │ ├── manifestlist │ │ │ │ │ └── manifestlist.go │ │ │ │ ├── ocischema │ │ │ │ │ ├── builder.go │ │ │ │ │ └── manifest.go │ │ │ │ ├── schema1 │ │ │ │ │ ├── config_builder.go │ │ │ │ │ ├── manifest.go │ │ │ │ │ ├── reference_builder.go │ │ │ │ │ ├── sign.go │ │ │ │ │ └── verify.go │ │ │ │ ├── schema2 │ │ │ │ │ ├── builder.go │ │ │ │ │ └── manifest.go │ │ │ │ └── versioned.go │ │ │ ├── manifests.go │ │ │ ├── metrics │ │ │ │ └── prometheus.go │ │ │ ├── notifications │ │ │ │ ├── bridge.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── event.go │ │ │ │ ├── http.go │ │ │ │ ├── listener.go │ │ │ │ ├── metrics.go │ │ │ │ └── sinks.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 │ │ │ │ ├── auth │ │ │ │ │ └── auth.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 │ │ │ │ ├── handlers │ │ │ │ │ ├── app.go │ │ │ │ │ ├── basicauth.go │ │ │ │ │ ├── basicauth_prego14.go │ │ │ │ │ ├── blob.go │ │ │ │ │ ├── blobupload.go │ │ │ │ │ ├── catalog.go │ │ │ │ │ ├── context.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── hmac.go │ │ │ │ │ ├── hooks.go │ │ │ │ │ ├── mail.go │ │ │ │ │ ├── manifests.go │ │ │ │ │ └── tags.go │ │ │ │ ├── listener │ │ │ │ │ └── listener.go │ │ │ │ ├── middleware │ │ │ │ │ ├── registry │ │ │ │ │ │ └── middleware.go │ │ │ │ │ └── repository │ │ │ │ │ │ └── middleware.go │ │ │ │ ├── proxy │ │ │ │ │ ├── proxyauth.go │ │ │ │ │ ├── proxyblobstore.go │ │ │ │ │ ├── proxymanifeststore.go │ │ │ │ │ ├── proxymetrics.go │ │ │ │ │ ├── proxyregistry.go │ │ │ │ │ ├── proxytagservice.go │ │ │ │ │ └── scheduler │ │ │ │ │ │ └── scheduler.go │ │ │ │ └── storage │ │ │ │ │ ├── blobcachemetrics.go │ │ │ │ │ ├── blobserver.go │ │ │ │ │ ├── blobstore.go │ │ │ │ │ ├── blobwriter.go │ │ │ │ │ ├── blobwriter_nonresumable.go │ │ │ │ │ ├── blobwriter_resumable.go │ │ │ │ │ ├── cache │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cachedblobdescriptorstore.go │ │ │ │ │ ├── memory │ │ │ │ │ │ └── memory.go │ │ │ │ │ └── redis │ │ │ │ │ │ └── redis.go │ │ │ │ │ ├── catalog.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── driver │ │ │ │ │ ├── base │ │ │ │ │ │ ├── base.go │ │ │ │ │ │ └── regulator.go │ │ │ │ │ ├── factory │ │ │ │ │ │ └── factory.go │ │ │ │ │ ├── fileinfo.go │ │ │ │ │ ├── filesystem │ │ │ │ │ │ └── driver.go │ │ │ │ │ ├── middleware │ │ │ │ │ │ └── storagemiddleware.go │ │ │ │ │ ├── storagedriver.go │ │ │ │ │ └── walk.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── filereader.go │ │ │ │ │ ├── garbagecollect.go │ │ │ │ │ ├── io.go │ │ │ │ │ ├── linkedblobstore.go │ │ │ │ │ ├── manifestlisthandler.go │ │ │ │ │ ├── manifeststore.go │ │ │ │ │ ├── ocimanifesthandler.go │ │ │ │ │ ├── paths.go │ │ │ │ │ ├── purgeuploads.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── schema2manifesthandler.go │ │ │ │ │ ├── signedmanifesthandler.go │ │ │ │ │ ├── tagstore.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── v1unsupportedhandler.go │ │ │ │ │ └── vacuum.go │ │ │ ├── tags.go │ │ │ ├── uuid │ │ │ │ └── uuid.go │ │ │ ├── vendor.conf │ │ │ └── version │ │ │ │ ├── print.go │ │ │ │ ├── version.go │ │ │ │ └── version.sh │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── seccomp.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 │ │ │ ├── errdefs │ │ │ │ ├── defs.go │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── http_helpers.go │ │ │ │ └── is.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 │ │ │ │ ├── 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 │ │ │ │ ├── mount │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── flags_freebsd.go │ │ │ │ │ ├── flags_linux.go │ │ │ │ │ ├── flags_unsupported.go │ │ │ │ │ ├── mount.go │ │ │ │ │ ├── mounter_freebsd.go │ │ │ │ │ ├── mounter_linux.go │ │ │ │ │ ├── mounter_unsupported.go │ │ │ │ │ ├── mountinfo.go │ │ │ │ │ ├── mountinfo_freebsd.go │ │ │ │ │ ├── mountinfo_linux.go │ │ │ │ │ ├── mountinfo_unsupported.go │ │ │ │ │ ├── mountinfo_windows.go │ │ │ │ │ ├── sharedsubtree_linux.go │ │ │ │ │ ├── unmount_unix.go │ │ │ │ │ └── unmount_unsupported.go │ │ │ │ ├── namesgenerator │ │ │ │ │ └── names-generator.go │ │ │ │ ├── pools │ │ │ │ │ └── pools.go │ │ │ │ ├── stdcopy │ │ │ │ │ └── stdcopy.go │ │ │ │ ├── stringid │ │ │ │ │ ├── README.md │ │ │ │ │ └── stringid.go │ │ │ │ ├── system │ │ │ │ │ ├── args_windows.go │ │ │ │ │ ├── chtimes.go │ │ │ │ │ ├── chtimes_unix.go │ │ │ │ │ ├── chtimes_windows.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── exitcode.go │ │ │ │ │ ├── filesys.go │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ ├── init.go │ │ │ │ │ ├── init_unix.go │ │ │ │ │ ├── init_windows.go │ │ │ │ │ ├── lcow.go │ │ │ │ │ ├── lcow_unix.go │ │ │ │ │ ├── lcow_windows.go │ │ │ │ │ ├── lstat_unix.go │ │ │ │ │ ├── lstat_windows.go │ │ │ │ │ ├── meminfo.go │ │ │ │ │ ├── meminfo_linux.go │ │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ │ ├── meminfo_windows.go │ │ │ │ │ ├── mknod.go │ │ │ │ │ ├── mknod_windows.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── path_unix.go │ │ │ │ │ ├── path_windows.go │ │ │ │ │ ├── process_unix.go │ │ │ │ │ ├── process_windows.go │ │ │ │ │ ├── rm.go │ │ │ │ │ ├── stat_darwin.go │ │ │ │ │ ├── stat_freebsd.go │ │ │ │ │ ├── stat_linux.go │ │ │ │ │ ├── stat_openbsd.go │ │ │ │ │ ├── stat_solaris.go │ │ │ │ │ ├── stat_unix.go │ │ │ │ │ ├── stat_windows.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ ├── umask.go │ │ │ │ │ ├── umask_windows.go │ │ │ │ │ ├── utimes_freebsd.go │ │ │ │ │ ├── utimes_linux.go │ │ │ │ │ ├── utimes_unsupported.go │ │ │ │ │ ├── xattrs_linux.go │ │ │ │ │ └── xattrs_unsupported.go │ │ │ │ ├── tarsum │ │ │ │ │ ├── builder_context.go │ │ │ │ │ ├── fileinfosums.go │ │ │ │ │ ├── tarsum.go │ │ │ │ │ ├── tarsum_spec.md │ │ │ │ │ ├── versioning.go │ │ │ │ │ └── writercloser.go │ │ │ │ └── term │ │ │ │ │ ├── ascii.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── tc.go │ │ │ │ │ ├── term.go │ │ │ │ │ ├── term_windows.go │ │ │ │ │ ├── termios_bsd.go │ │ │ │ │ ├── termios_linux.go │ │ │ │ │ ├── windows │ │ │ │ │ ├── ansi_reader.go │ │ │ │ │ ├── ansi_writer.go │ │ │ │ │ ├── console.go │ │ │ │ │ └── windows.go │ │ │ │ │ └── winsize.go │ │ │ └── registry │ │ │ │ ├── auth.go │ │ │ │ ├── config.go │ │ │ │ ├── config_unix.go │ │ │ │ ├── config_windows.go │ │ │ │ ├── endpoint_v1.go │ │ │ │ ├── errors.go │ │ │ │ ├── registry.go │ │ │ │ ├── resumable │ │ │ │ └── resumablerequestreader.go │ │ │ │ ├── service.go │ │ │ │ ├── service_v1.go │ │ │ │ ├── service_v2.go │ │ │ │ ├── session.go │ │ │ │ └── types.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 │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── 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 │ │ └── libtrust │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── certificates.go │ │ │ ├── doc.go │ │ │ ├── ec_key.go │ │ │ ├── filter.go │ │ │ ├── hash.go │ │ │ ├── jsonsign.go │ │ │ ├── key.go │ │ │ ├── key_files.go │ │ │ ├── key_manager.go │ │ │ ├── rsa_key.go │ │ │ └── util.go │ ├── dustin │ │ └── go-humanize │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── big.go │ │ │ ├── bigbytes.go │ │ │ ├── bytes.go │ │ │ ├── comma.go │ │ │ ├── ftoa.go │ │ │ ├── humanize.go │ │ │ ├── number.go │ │ │ ├── ordinals.go │ │ │ ├── si.go │ │ │ └── times.go │ ├── evanphx │ │ └── json-patch │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── 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 │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ └── go.sum │ ├── form3tech-oss │ │ └── jwt-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── MIGRATION_GUIDE.md │ │ │ ├── README.md │ │ │ ├── VERSION_HISTORY.md │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── ecdsa.go │ │ │ ├── ecdsa_utils.go │ │ │ ├── errors.go │ │ │ ├── hmac.go │ │ │ ├── map_claims.go │ │ │ ├── none.go │ │ │ ├── parser.go │ │ │ ├── rsa.go │ │ │ ├── rsa_pss.go │ │ │ ├── rsa_utils.go │ │ │ ├── signing_method.go │ │ │ └── token.go │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fen.go │ │ │ ├── fsnotify.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── inotify.go │ │ │ ├── inotify_poller.go │ │ │ ├── kqueue.go │ │ │ ├── open_mode_bsd.go │ │ │ ├── open_mode_darwin.go │ │ │ └── windows.go │ ├── fsouza │ │ └── go-dockerclient │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── AUTHORS │ │ │ ├── DOCKER-LICENSE │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── change.go │ │ │ ├── client.go │ │ │ ├── client_unix.go │ │ │ ├── client_windows.go │ │ │ ├── container.go │ │ │ ├── container_archive.go │ │ │ ├── container_attach.go │ │ │ ├── container_changes.go │ │ │ ├── container_commit.go │ │ │ ├── container_copy.go │ │ │ ├── container_create.go │ │ │ ├── container_export.go │ │ │ ├── container_inspect.go │ │ │ ├── container_kill.go │ │ │ ├── container_list.go │ │ │ ├── container_logs.go │ │ │ ├── container_pause.go │ │ │ ├── container_prune.go │ │ │ ├── container_remove.go │ │ │ ├── container_rename.go │ │ │ ├── container_resize.go │ │ │ ├── container_restart.go │ │ │ ├── container_start.go │ │ │ ├── container_stats.go │ │ │ ├── container_stop.go │ │ │ ├── container_top.go │ │ │ ├── container_unpause.go │ │ │ ├── container_update.go │ │ │ ├── container_wait.go │ │ │ ├── distribution.go │ │ │ ├── env.go │ │ │ ├── event.go │ │ │ ├── exec.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── image.go │ │ │ ├── misc.go │ │ │ ├── network.go │ │ │ ├── plugin.go │ │ │ ├── registry_auth.go │ │ │ ├── signal.go │ │ │ ├── swarm.go │ │ │ ├── swarm_configs.go │ │ │ ├── swarm_node.go │ │ │ ├── swarm_secrets.go │ │ │ ├── swarm_service.go │ │ │ ├── swarm_task.go │ │ │ ├── system.go │ │ │ ├── tar.go │ │ │ ├── testing │ │ │ ├── server.go │ │ │ └── swarm.go │ │ │ ├── tls.go │ │ │ └── volume.go │ ├── garyburd │ │ └── redigo │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ └── commandinfo.go │ │ │ └── redis │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── log.go │ │ │ ├── pool.go │ │ │ ├── pubsub.go │ │ │ ├── redis.go │ │ │ ├── reply.go │ │ │ ├── scan.go │ │ │ └── script.go │ ├── ghodss │ │ └── yaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fields.go │ │ │ ├── yaml.go │ │ │ └── yaml_go110.go │ ├── gizak │ │ └── termui │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── barchart.go │ │ │ ├── block.go │ │ │ ├── block_common.go │ │ │ ├── block_windows.go │ │ │ ├── buffer.go │ │ │ ├── canvas.go │ │ │ ├── config.py │ │ │ ├── doc.go │ │ │ ├── events.go │ │ │ ├── gauge.go │ │ │ ├── grid.go │ │ │ ├── helper.go │ │ │ ├── linechart.go │ │ │ ├── linechart_others.go │ │ │ ├── linechart_windows.go │ │ │ ├── list.go │ │ │ ├── mbarchart.go │ │ │ ├── mkdocs.yml │ │ │ ├── par.go │ │ │ ├── pos.go │ │ │ ├── render.go │ │ │ ├── sparkline.go │ │ │ ├── table.go │ │ │ ├── textbuilder.go │ │ │ ├── theme.go │ │ │ └── widget.go │ ├── go-errors │ │ └── errors │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.MIT │ │ │ ├── README.md │ │ │ ├── cover.out │ │ │ ├── error.go │ │ │ ├── parse_panic.go │ │ │ └── stackframe.go │ ├── go-ini │ │ └── ini │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── README_ZH.md │ │ │ ├── error.go │ │ │ ├── ini.go │ │ │ ├── key.go │ │ │ ├── parser.go │ │ │ ├── section.go │ │ │ └── struct.go │ ├── go-logr │ │ └── logr │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── discard.go │ │ │ ├── go.mod │ │ │ └── logr.go │ ├── go-openapi │ │ ├── analysis │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── analyzer.go │ │ │ ├── appveyor.yml │ │ │ ├── debug.go │ │ │ ├── doc.go │ │ │ ├── fixer.go │ │ │ ├── flatten.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── internal │ │ │ │ ├── post_go18.go │ │ │ │ └── pre_go18.go │ │ │ ├── mixin.go │ │ │ └── schema.go │ │ ├── errors │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── auth.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── headers.go │ │ │ ├── middleware.go │ │ │ ├── parsing.go │ │ │ └── schema.go │ │ ├── jsonpointer │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── pointer.go │ │ ├── jsonreference │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── reference.go │ │ ├── loads │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── spec.go │ │ ├── runtime │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bytestream.go │ │ │ ├── client │ │ │ │ ├── auth_info.go │ │ │ │ ├── keepalive.go │ │ │ │ ├── request.go │ │ │ │ ├── response.go │ │ │ │ └── runtime.go │ │ │ ├── client_auth_info.go │ │ │ ├── client_operation.go │ │ │ ├── client_request.go │ │ │ ├── client_response.go │ │ │ ├── constants.go │ │ │ ├── csv.go │ │ │ ├── discard.go │ │ │ ├── file.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── headers.go │ │ │ ├── interfaces.go │ │ │ ├── json.go │ │ │ ├── logger │ │ │ │ ├── logger.go │ │ │ │ └── standard.go │ │ │ ├── middleware │ │ │ │ ├── context.go │ │ │ │ ├── denco │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── router.go │ │ │ │ │ ├── server.go │ │ │ │ │ └── util.go │ │ │ │ ├── doc.go │ │ │ │ ├── go18.go │ │ │ │ ├── header │ │ │ │ │ └── header.go │ │ │ │ ├── negotiate.go │ │ │ │ ├── not_implemented.go │ │ │ │ ├── operation.go │ │ │ │ ├── parameter.go │ │ │ │ ├── pre_go18.go │ │ │ │ ├── redoc.go │ │ │ │ ├── request.go │ │ │ │ ├── router.go │ │ │ │ ├── security.go │ │ │ │ ├── spec.go │ │ │ │ ├── untyped │ │ │ │ │ └── api.go │ │ │ │ └── validation.go │ │ │ ├── request.go │ │ │ ├── security │ │ │ │ ├── authenticator.go │ │ │ │ └── authorizer.go │ │ │ ├── statuses.go │ │ │ ├── text.go │ │ │ ├── values.go │ │ │ └── xml.go │ │ ├── spec │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bindata.go │ │ │ ├── cache.go │ │ │ ├── contact_info.go │ │ │ ├── debug.go │ │ │ ├── expander.go │ │ │ ├── external_docs.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── header.go │ │ │ ├── info.go │ │ │ ├── items.go │ │ │ ├── license.go │ │ │ ├── normalizer.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path_item.go │ │ │ ├── paths.go │ │ │ ├── ref.go │ │ │ ├── response.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── schema_loader.go │ │ │ ├── security_scheme.go │ │ │ ├── spec.go │ │ │ ├── swagger.go │ │ │ ├── tag.go │ │ │ ├── unused.go │ │ │ └── xml_object.go │ │ ├── strfmt │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bson.go │ │ │ ├── date.go │ │ │ ├── default.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── format.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── time.go │ │ ├── swag │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── convert.go │ │ │ ├── convert_types.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── json.go │ │ │ ├── loading.go │ │ │ ├── net.go │ │ │ ├── path.go │ │ │ ├── post_go18.go │ │ │ ├── post_go19.go │ │ │ ├── pre_go18.go │ │ │ ├── pre_go19.go │ │ │ ├── util.go │ │ │ └── yaml.go │ │ └── validate │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── debug.go │ │ │ ├── default_validator.go │ │ │ ├── doc.go │ │ │ ├── example_validator.go │ │ │ ├── formats.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── helpers.go │ │ │ ├── object_validator.go │ │ │ ├── options.go │ │ │ ├── result.go │ │ │ ├── rexp.go │ │ │ ├── schema.go │ │ │ ├── schema_messages.go │ │ │ ├── schema_option.go │ │ │ ├── schema_props.go │ │ │ ├── slice_validator.go │ │ │ ├── spec.go │ │ │ ├── spec_messages.go │ │ │ ├── type.go │ │ │ ├── update-fixtures.sh │ │ │ ├── validator.go │ │ │ └── values.go │ ├── go-stack │ │ └── stack │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── stack.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 │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.markdown │ │ │ ├── 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 │ │ │ ├── export.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── homedir.go │ │ │ ├── homedir_dynamic.go │ │ │ ├── homedir_static.go │ │ │ ├── match.go │ │ │ ├── message.go │ │ │ ├── object.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_openbsd.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 │ │ │ ├── gogoproto │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ ├── gogo.pb.golden │ │ │ ├── gogo.proto │ │ │ └── helper.go │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── custom_gogo.go │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── table_marshal.go │ │ │ ├── table_marshal_gogo.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── table_unmarshal_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gogo.go │ │ │ ├── protoc-gen-gogo │ │ │ └── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.go │ │ │ │ ├── descriptor.pb.go │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ └── helper.go │ │ │ ├── sortkeys │ │ │ └── sortkeys.go │ │ │ └── types │ │ │ ├── any.go │ │ │ ├── any.pb.go │ │ │ ├── api.pb.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration.pb.go │ │ │ ├── duration_gogo.go │ │ │ ├── empty.pb.go │ │ │ ├── field_mask.pb.go │ │ │ ├── protosize.go │ │ │ ├── source_context.pb.go │ │ │ ├── struct.pb.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp.pb.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── type.pb.go │ │ │ ├── wrappers.pb.go │ │ │ └── wrappers_gogo.go │ ├── gokyle │ │ └── hotp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── hotp.go │ │ │ └── rfc4226.txt │ ├── golang │ │ ├── groupcache │ │ │ ├── LICENSE │ │ │ └── lru │ │ │ │ └── lru.go │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── buffer.go │ │ │ ├── defaults.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── extensions.go │ │ │ ├── properties.go │ │ │ ├── proto.go │ │ │ ├── registry.go │ │ │ ├── text_decode.go │ │ │ ├── text_encode.go │ │ │ ├── wire.go │ │ │ └── wrappers.go │ │ │ ├── protoc-gen-go │ │ │ └── descriptor │ │ │ │ └── descriptor.pb.go │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ └── any.pb.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ └── duration.pb.go │ │ │ ├── empty │ │ │ └── empty.pb.go │ │ │ ├── timestamp.go │ │ │ └── timestamp │ │ │ └── timestamp.pb.go │ ├── google │ │ ├── btree │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── btree.go │ │ ├── certificate-transparency-go │ │ │ ├── README.md │ │ │ ├── asn1 │ │ │ │ ├── asn1.go │ │ │ │ ├── common.go │ │ │ │ └── marshal.go │ │ │ ├── client │ │ │ │ └── logclient.go │ │ │ ├── serialization.go │ │ │ ├── signatures.go │ │ │ ├── types.go │ │ │ └── x509 │ │ │ │ ├── cert_pool.go │ │ │ │ ├── nilref_nil_darwin.go │ │ │ │ ├── nilref_zero_darwin.go │ │ │ │ ├── pem_decrypt.go │ │ │ │ ├── pkcs1.go │ │ │ │ ├── pkcs8.go │ │ │ │ ├── pkix │ │ │ │ └── pkix.go │ │ │ │ ├── root.go │ │ │ │ ├── root_darwin.go │ │ │ │ ├── root_plan9.go │ │ │ │ ├── root_stub.go │ │ │ │ ├── root_unix.go │ │ │ │ ├── root_windows.go │ │ │ │ ├── sec1.go │ │ │ │ ├── verify.go │ │ │ │ └── x509.go │ │ ├── go-cmp │ │ │ ├── LICENSE │ │ │ └── cmp │ │ │ │ ├── compare.go │ │ │ │ ├── export_panic.go │ │ │ │ ├── export_unsafe.go │ │ │ │ ├── internal │ │ │ │ ├── diff │ │ │ │ │ ├── debug_disable.go │ │ │ │ │ ├── debug_enable.go │ │ │ │ │ └── diff.go │ │ │ │ ├── flags │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── toolchain_legacy.go │ │ │ │ │ └── toolchain_recent.go │ │ │ │ ├── function │ │ │ │ │ └── func.go │ │ │ │ └── value │ │ │ │ │ ├── name.go │ │ │ │ │ ├── pointer_purego.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── sort.go │ │ │ │ │ └── zero.go │ │ │ │ ├── options.go │ │ │ │ ├── path.go │ │ │ │ ├── report.go │ │ │ │ ├── report_compare.go │ │ │ │ ├── report_references.go │ │ │ │ ├── report_reflect.go │ │ │ │ ├── report_slices.go │ │ │ │ ├── report_text.go │ │ │ │ └── report_value.go │ │ ├── gofuzz │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ └── fuzz.go │ │ ├── shlex │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── go.mod │ │ │ └── shlex.go │ │ └── uuid │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── googleapis │ │ └── gnostic │ │ │ ├── LICENSE │ │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extension-handler.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ │ ├── extensions │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ └── extensions.go │ │ │ └── openapiv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ └── openapi-2.0.json │ ├── gorilla │ │ ├── handlers │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── canonical.go │ │ │ ├── compress.go │ │ │ ├── doc.go │ │ │ ├── handlers.go │ │ │ ├── proxy_headers.go │ │ │ └── recovery.go │ │ └── mux │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── middleware.go │ │ │ ├── mux.go │ │ │ ├── regexp.go │ │ │ ├── route.go │ │ │ └── test_helpers.go │ ├── gosuri │ │ └── uitable │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── table.go │ │ │ └── util │ │ │ ├── strutil │ │ │ └── strutil.go │ │ │ └── wordwrap │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── wordwrap.go │ ├── gravitational │ │ ├── configure │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cidr.go │ │ │ ├── cli.go │ │ │ ├── cstrings │ │ │ │ ├── domain.go │ │ │ │ ├── split.go │ │ │ │ └── user.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── jsonschema │ │ │ │ └── schema.go │ │ │ ├── kv.go │ │ │ ├── schema │ │ │ │ ├── decoding.go │ │ │ │ └── schema.go │ │ │ ├── tpl.go │ │ │ └── yaml.go │ │ ├── coordinate │ │ │ ├── LICENSE │ │ │ ├── config │ │ │ │ └── etcd.go │ │ │ └── leader │ │ │ │ ├── backoff.go │ │ │ │ └── leader.go │ │ ├── form │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── form.go │ │ │ └── shippable.yaml │ │ ├── go-vhost │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── http.go │ │ │ ├── interface.go │ │ │ ├── mux.go │ │ │ ├── shared.go │ │ │ └── tls.go │ │ ├── kingpin │ │ │ ├── .travis.yml │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── actions.go │ │ │ ├── app.go │ │ │ ├── args.go │ │ │ ├── cmd.go │ │ │ ├── doc.go │ │ │ ├── flags.go │ │ │ ├── global.go │ │ │ ├── guesswidth.go │ │ │ ├── guesswidth_unix.go │ │ │ ├── model.go │ │ │ ├── parser.go │ │ │ ├── parsers.go │ │ │ ├── templates.go │ │ │ ├── usage.go │ │ │ ├── values.go │ │ │ ├── values.json │ │ │ └── values_generated.go │ │ ├── license │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── authority │ │ │ │ └── ca.go │ │ │ ├── certificate.go │ │ │ ├── constants │ │ │ │ └── constants.go │ │ │ ├── license.go │ │ │ └── payload.go │ │ ├── magnet │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── common │ │ │ │ └── common.go │ │ │ ├── dl.go │ │ │ ├── docker.go │ │ │ ├── env.go │ │ │ ├── exec.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── golang.go │ │ │ ├── logger.go │ │ │ ├── magnet.go │ │ │ ├── pkg │ │ │ │ ├── cp │ │ │ │ │ ├── README.md │ │ │ │ │ └── cp.go │ │ │ │ └── progressui │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── display.go │ │ │ │ │ └── printer.go │ │ │ └── util.go │ │ ├── oxy │ │ │ ├── LICENSE │ │ │ ├── connlimit │ │ │ │ └── connlimit.go │ │ │ ├── forward │ │ │ │ ├── flushcopy.go │ │ │ │ ├── fwd.go │ │ │ │ ├── headers.go │ │ │ │ └── rewrite.go │ │ │ ├── ratelimit │ │ │ │ ├── bucket.go │ │ │ │ ├── bucketset.go │ │ │ │ └── tokenlimiter.go │ │ │ └── utils │ │ │ │ ├── auth.go │ │ │ │ ├── handler.go │ │ │ │ ├── logging.go │ │ │ │ ├── netutils.go │ │ │ │ └── source.go │ │ ├── rigging │ │ │ ├── .drone.yml │ │ │ ├── .gitignore │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── alertmanager.go │ │ │ ├── apiservice.go │ │ │ ├── changeset.go │ │ │ ├── configmap.go │ │ │ ├── configmapgen.go │ │ │ ├── constants.go │ │ │ ├── crd.go │ │ │ ├── deployment.go │ │ │ ├── ds.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── job.go │ │ │ ├── label.go │ │ │ ├── loc.go │ │ │ ├── namespace.go │ │ │ ├── nodes.go │ │ │ ├── parse.go │ │ │ ├── policies.go │ │ │ ├── priorityclass.go │ │ │ ├── prometheus.go │ │ │ ├── prometheusrule.go │ │ │ ├── rc.go │ │ │ ├── rcc.go │ │ │ ├── roles.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ ├── serviceaccount.go │ │ │ ├── servicemonitor.go │ │ │ ├── spec.go │ │ │ ├── statefulset.go │ │ │ ├── types.go │ │ │ ├── utils.go │ │ │ └── webhook.go │ │ ├── roundtrip │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── creds.go │ │ │ ├── errors.go │ │ │ ├── reply.go │ │ │ ├── sanitize.go │ │ │ ├── seeker.go │ │ │ └── tracer.go │ │ ├── satellite │ │ │ ├── LICENSE │ │ │ ├── agent │ │ │ │ ├── agent.go │ │ │ │ ├── cache │ │ │ │ │ └── cache.go │ │ │ │ ├── constants.go │ │ │ │ ├── health │ │ │ │ │ └── health.go │ │ │ │ ├── proto │ │ │ │ │ ├── agentpb │ │ │ │ │ │ ├── agent.pb.go │ │ │ │ │ │ ├── agent.proto │ │ │ │ │ │ ├── clone.go │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ ├── event.pb.go │ │ │ │ │ │ ├── event.proto │ │ │ │ │ │ ├── status.go │ │ │ │ │ │ └── timestamp.go │ │ │ │ │ └── debug │ │ │ │ │ │ ├── debug.go │ │ │ │ │ │ ├── debug.pb.go │ │ │ │ │ │ └── debug.proto │ │ │ │ ├── server.go │ │ │ │ └── status.go │ │ │ ├── lib │ │ │ │ ├── ctxgroup │ │ │ │ │ └── ctxgroup.go │ │ │ │ ├── history │ │ │ │ │ ├── event.go │ │ │ │ │ ├── sqlite │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ ├── sqlite.go │ │ │ │ │ │ └── utils.go │ │ │ │ │ ├── status.go │ │ │ │ │ └── timeline.go │ │ │ │ ├── kubernetes │ │ │ │ │ ├── constants.go │ │ │ │ │ └── names.go │ │ │ │ ├── membership │ │ │ │ │ └── membership.go │ │ │ │ ├── nethealth │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_mock.go │ │ │ │ │ └── nethealth.go │ │ │ │ └── rpc │ │ │ │ │ ├── client │ │ │ │ │ ├── client.go │ │ │ │ │ └── errors.go │ │ │ │ │ ├── constants.go │ │ │ │ │ └── net.go │ │ │ ├── monitoring │ │ │ │ ├── aws.go │ │ │ │ ├── boot_config_linux.go │ │ │ │ ├── cgroup.go │ │ │ │ ├── checkers.go │ │ │ │ ├── composite.go │ │ │ │ ├── defaults.go │ │ │ │ ├── defaults_linux.go │ │ │ │ ├── dns.go │ │ │ │ ├── docker.go │ │ │ │ ├── etcd.go │ │ │ │ ├── fs.go │ │ │ │ ├── fs_linux.go │ │ │ │ ├── healthz.go │ │ │ │ ├── host.go │ │ │ │ ├── inotify.go │ │ │ │ ├── inotify_linux.go │ │ │ │ ├── interpod.go │ │ │ │ ├── kernel.go │ │ │ │ ├── kernel_checker_linux.go │ │ │ │ ├── kernel_linux.go │ │ │ │ ├── kubernetes.go │ │ │ │ ├── modules.go │ │ │ │ ├── modules_linux.go │ │ │ │ ├── monitoring.go │ │ │ │ ├── nethealth.go │ │ │ │ ├── nodesstatus.go │ │ │ │ ├── os.go │ │ │ │ ├── os_linux.go │ │ │ │ ├── port.go │ │ │ │ ├── process.go │ │ │ │ ├── procfs_net.go │ │ │ │ ├── script.go │ │ │ │ ├── storage.go │ │ │ │ ├── storage_linux.go │ │ │ │ ├── sysctl.go │ │ │ │ ├── sysctl_checkers.go │ │ │ │ ├── system_pods.go │ │ │ │ ├── systemd.go │ │ │ │ └── timedrift.go │ │ │ └── utils │ │ │ │ ├── context.go │ │ │ │ ├── crypto.go │ │ │ │ ├── errors.go │ │ │ │ ├── k8s.go │ │ │ │ ├── strings.go │ │ │ │ └── stringset.go │ │ ├── tail │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGES.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── ratelimiter │ │ │ │ ├── Licence │ │ │ │ ├── leakybucket.go │ │ │ │ ├── memory.go │ │ │ │ └── storage.go │ │ │ ├── tail.go │ │ │ ├── tail_posix.go │ │ │ ├── tail_windows.go │ │ │ ├── util │ │ │ │ └── util.go │ │ │ ├── watch │ │ │ │ ├── filechanges.go │ │ │ │ ├── inotify.go │ │ │ │ ├── inotify_tracker.go │ │ │ │ ├── polling.go │ │ │ │ └── watch.go │ │ │ └── winfile │ │ │ │ └── winfile.go │ │ ├── teleport │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── lib │ │ │ │ ├── auth │ │ │ │ │ ├── api.go │ │ │ │ │ ├── apiserver.go │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── auth_with_roles.go │ │ │ │ │ ├── clt.go │ │ │ │ │ ├── github.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── init.go │ │ │ │ │ ├── kube.go │ │ │ │ │ ├── methods.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── native │ │ │ │ │ │ └── native.go │ │ │ │ │ ├── new_web_user.go │ │ │ │ │ ├── oidc.go │ │ │ │ │ ├── password.go │ │ │ │ │ ├── permissions.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── rotate.go │ │ │ │ │ ├── saml.go │ │ │ │ │ ├── ssh_to_http.go │ │ │ │ │ ├── state.go │ │ │ │ │ ├── testauthority │ │ │ │ │ │ └── testauthority.go │ │ │ │ │ └── trustedcluster.go │ │ │ │ ├── backend │ │ │ │ │ ├── backend.go │ │ │ │ │ ├── boltbk │ │ │ │ │ │ ├── boltbk.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── dir │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── impl.go │ │ │ │ │ │ └── migrate.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── dynamo │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── dynamo.go │ │ │ │ │ │ └── dynamodbbk.go │ │ │ │ │ ├── etcdbk │ │ │ │ │ │ └── etcd.go │ │ │ │ │ └── sanitize.go │ │ │ │ ├── client │ │ │ │ │ ├── api.go │ │ │ │ │ ├── bench.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── configurator.go │ │ │ │ │ │ ├── docker.go │ │ │ │ │ │ ├── docker_linux.go │ │ │ │ │ │ ├── helm.go │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── hotp_mock.go │ │ │ │ │ ├── https_client.go │ │ │ │ │ ├── identity.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── keyagent.go │ │ │ │ │ ├── keystore.go │ │ │ │ │ ├── player.go │ │ │ │ │ ├── profile.go │ │ │ │ │ ├── session.go │ │ │ │ │ ├── session_windows.go │ │ │ │ │ └── weblogin.go │ │ │ │ ├── config │ │ │ │ │ ├── configuration.go │ │ │ │ │ └── fileconf.go │ │ │ │ ├── defaults │ │ │ │ │ └── defaults.go │ │ │ │ ├── events │ │ │ │ │ ├── api.go │ │ │ │ │ ├── archive.go │ │ │ │ │ ├── auditlog.go │ │ │ │ │ ├── codes.go │ │ │ │ │ ├── discard.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── dynamoevents │ │ │ │ │ │ └── dynamoevents.go │ │ │ │ │ ├── fields.go │ │ │ │ │ ├── filelog.go │ │ │ │ │ ├── filesessions │ │ │ │ │ │ └── fileuploader.go │ │ │ │ │ ├── forward.go │ │ │ │ │ ├── mock.go │ │ │ │ │ ├── multilog.go │ │ │ │ │ ├── recorder.go │ │ │ │ │ ├── s3sessions │ │ │ │ │ │ └── s3handler.go │ │ │ │ │ ├── sessionlog.go │ │ │ │ │ ├── slice.pb.go │ │ │ │ │ ├── slice.proto │ │ │ │ │ └── uploader.go │ │ │ │ ├── fixtures │ │ │ │ │ ├── fixtures.go │ │ │ │ │ └── keys.go │ │ │ │ ├── httplib │ │ │ │ │ ├── csrf │ │ │ │ │ │ └── csrf.go │ │ │ │ │ ├── httpheaders.go │ │ │ │ │ └── httplib.go │ │ │ │ ├── kube │ │ │ │ │ ├── client │ │ │ │ │ │ └── kubeclient.go │ │ │ │ │ ├── proxy │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── forwarder.go │ │ │ │ │ │ ├── portforward.go │ │ │ │ │ │ ├── remotecommand.go │ │ │ │ │ │ ├── roundtrip.go │ │ │ │ │ │ └── server.go │ │ │ │ │ └── utils │ │ │ │ │ │ └── utils.go │ │ │ │ ├── limiter │ │ │ │ │ ├── connlimiter.go │ │ │ │ │ ├── limiter.go │ │ │ │ │ └── ratelimiter.go │ │ │ │ ├── modules │ │ │ │ │ └── modules.go │ │ │ │ ├── multiplexer │ │ │ │ │ ├── multiplexer.go │ │ │ │ │ ├── proxyline.go │ │ │ │ │ └── wrappers.go │ │ │ │ ├── pam │ │ │ │ │ ├── config.go │ │ │ │ │ ├── pam.c │ │ │ │ │ ├── pam.go │ │ │ │ │ └── pam_nop.go │ │ │ │ ├── reversetunnel │ │ │ │ │ ├── agent.go │ │ │ │ │ ├── agentpool.go │ │ │ │ │ ├── api.go │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── discovery.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── localsite.go │ │ │ │ │ ├── peer.go │ │ │ │ │ ├── remotesite.go │ │ │ │ │ └── srv.go │ │ │ │ ├── runtimeflags.go │ │ │ │ ├── service │ │ │ │ │ ├── cfg.go │ │ │ │ │ ├── connect.go │ │ │ │ │ ├── info.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── signals.go │ │ │ │ │ ├── state.go │ │ │ │ │ ├── supervisor.go │ │ │ │ │ └── tpl.go │ │ │ │ ├── services │ │ │ │ │ ├── authentication.go │ │ │ │ │ ├── authority.go │ │ │ │ │ ├── clusterconfig.go │ │ │ │ │ ├── clustername.go │ │ │ │ │ ├── configuration.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── github.go │ │ │ │ │ ├── identity.go │ │ │ │ │ ├── license.go │ │ │ │ │ ├── local │ │ │ │ │ │ ├── access.go │ │ │ │ │ │ ├── configuration.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── presence.go │ │ │ │ │ │ ├── provisioning.go │ │ │ │ │ │ ├── trust.go │ │ │ │ │ │ └── users.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── oidc.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── presence.go │ │ │ │ │ ├── provisioning.go │ │ │ │ │ ├── remotecluster.go │ │ │ │ │ ├── resource.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── saml.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── session.go │ │ │ │ │ ├── statictokens.go │ │ │ │ │ ├── suite │ │ │ │ │ │ └── suite.go │ │ │ │ │ ├── trust.go │ │ │ │ │ ├── trustedcluster.go │ │ │ │ │ ├── tunnel.go │ │ │ │ │ ├── tunnelconn.go │ │ │ │ │ └── user.go │ │ │ │ ├── session │ │ │ │ │ └── session.go │ │ │ │ ├── shell │ │ │ │ │ ├── shell.go │ │ │ │ │ ├── shell_unix.go │ │ │ │ │ └── shell_windows.go │ │ │ │ ├── srv │ │ │ │ │ ├── authhandlers.go │ │ │ │ │ ├── ctx.go │ │ │ │ │ ├── exec.go │ │ │ │ │ ├── forward │ │ │ │ │ │ ├── sshserver.go │ │ │ │ │ │ └── subsystem.go │ │ │ │ │ ├── keepalive.go │ │ │ │ │ ├── monitor.go │ │ │ │ │ ├── regular │ │ │ │ │ │ ├── proxy.go │ │ │ │ │ │ ├── sites.go │ │ │ │ │ │ └── sshserver.go │ │ │ │ │ ├── sess.go │ │ │ │ │ ├── subsystem.go │ │ │ │ │ ├── term.go │ │ │ │ │ └── termhandlers.go │ │ │ │ ├── sshca │ │ │ │ │ └── sshca.go │ │ │ │ ├── sshutils │ │ │ │ │ ├── close.go │ │ │ │ │ ├── fingerprint.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── req.go │ │ │ │ │ ├── scp │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ ├── local.go │ │ │ │ │ │ └── scp.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── signer.go │ │ │ │ │ └── tcpip.go │ │ │ │ ├── state │ │ │ │ │ ├── api.go │ │ │ │ │ └── cachingaccesspoint.go │ │ │ │ ├── system │ │ │ │ │ └── signal.go │ │ │ │ ├── teleagent │ │ │ │ │ └── agent.go │ │ │ │ ├── tlsca │ │ │ │ │ ├── ca.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── parsegen.go │ │ │ │ ├── utils │ │ │ │ │ ├── addr.go │ │ │ │ │ ├── agentconn │ │ │ │ │ │ ├── agent_unix.go │ │ │ │ │ │ └── agent_windows.go │ │ │ │ │ ├── anonymizer.go │ │ │ │ │ ├── broadcaster.go │ │ │ │ │ ├── buf.go │ │ │ │ │ ├── certs.go │ │ │ │ │ ├── cli.go │ │ │ │ │ ├── conn.go │ │ │ │ │ ├── conv.go │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── environment.go │ │ │ │ │ ├── equals.go │ │ │ │ │ ├── fakeconn.go │ │ │ │ │ ├── fs.go │ │ │ │ │ ├── fs_unix.go │ │ │ │ │ ├── fs_windows.go │ │ │ │ │ ├── jsontools.go │ │ │ │ │ ├── linking.go │ │ │ │ │ ├── listener.go │ │ │ │ │ ├── loadbalancer.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── otp.go │ │ │ │ │ ├── parse │ │ │ │ │ │ └── parse.go │ │ │ │ │ ├── proxy │ │ │ │ │ │ ├── noproxy.go │ │ │ │ │ │ └── proxy.go │ │ │ │ │ ├── rand.go │ │ │ │ │ ├── replace.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── skpi.go │ │ │ │ │ ├── socks │ │ │ │ │ │ └── socks.go │ │ │ │ │ ├── srv.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── syslog.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── timeout.go │ │ │ │ │ ├── tls.go │ │ │ │ │ ├── tlsdial.go │ │ │ │ │ ├── uid.go │ │ │ │ │ ├── unpack.go │ │ │ │ │ ├── uri.go │ │ │ │ │ ├── utils.go │ │ │ │ │ ├── ver.go │ │ │ │ │ ├── websocketwriter.go │ │ │ │ │ └── writer.go │ │ │ │ ├── web │ │ │ │ │ ├── apiserver.go │ │ │ │ │ ├── cookie.go │ │ │ │ │ ├── envelope.pb.go │ │ │ │ │ ├── envelope.proto │ │ │ │ │ ├── files.go │ │ │ │ │ ├── password.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── saml.go │ │ │ │ │ ├── sessions.go │ │ │ │ │ ├── static.go │ │ │ │ │ ├── terminal.go │ │ │ │ │ └── ui │ │ │ │ │ │ ├── cluster.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── usercontext.go │ │ │ │ │ │ └── webconfig.go │ │ │ │ └── wrappers │ │ │ │ │ ├── wrappers.go │ │ │ │ │ ├── wrappers.pb.go │ │ │ │ │ └── wrappers.proto │ │ │ ├── roles.go │ │ │ ├── version.go │ │ │ └── version.mk │ │ ├── trace │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── httplib.go │ │ │ ├── log.go │ │ │ ├── trace.go │ │ │ ├── trail │ │ │ │ └── trail.go │ │ │ └── udphook.go │ │ ├── ttlmap │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ttlmap.go │ │ │ └── v2 │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── priority_queue.go │ │ │ │ └── ttlmap.go │ │ ├── version │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── base.go │ │ │ ├── doc.go │ │ │ └── version.go │ │ └── vfsgen │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── commentwriter.go │ │ │ ├── doc.go │ │ │ ├── generator.go │ │ │ ├── options.go │ │ │ └── stringwriter.go │ ├── gregjones │ │ └── httpcache │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── diskcache │ │ │ └── diskcache.go │ │ │ └── httpcache.go │ ├── hashicorp │ │ └── golang-lru │ │ │ ├── .gitignore │ │ │ ├── 2q.go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arc.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── lru.go │ │ │ └── simplelru │ │ │ ├── lru.go │ │ │ └── lru_interface.go │ ├── huandu │ │ └── xstrings │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── common.go │ │ │ ├── convert.go │ │ │ ├── count.go │ │ │ ├── doc.go │ │ │ ├── format.go │ │ │ ├── go.mod │ │ │ ├── manipulate.go │ │ │ └── translate.go │ ├── imdario │ │ └── mergo │ │ │ ├── .deepsource.toml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── map.go │ │ │ ├── merge.go │ │ │ └── mergo.go │ ├── inconshreveable │ │ └── mousetrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── trap_others.go │ │ │ ├── trap_windows.go │ │ │ └── trap_windows_1.4.go │ ├── jaguilar │ │ └── vt100 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── command.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── scanner.go │ │ │ └── vt100.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 │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── named.go │ │ │ ├── named_context.go │ │ │ ├── reflectx │ │ │ ├── README.md │ │ │ └── reflect.go │ │ │ ├── sqlx.go │ │ │ └── sqlx_context.go │ ├── jonboulle │ │ └── clockwork │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── clockwork.go │ │ │ ├── go.mod │ │ │ └── ticker.go │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adapter.go │ │ │ ├── any.go │ │ │ ├── any_array.go │ │ │ ├── any_bool.go │ │ │ ├── any_float.go │ │ │ ├── any_int32.go │ │ │ ├── any_int64.go │ │ │ ├── any_invalid.go │ │ │ ├── any_nil.go │ │ │ ├── any_number.go │ │ │ ├── any_object.go │ │ │ ├── any_str.go │ │ │ ├── any_uint32.go │ │ │ ├── any_uint64.go │ │ │ ├── build.sh │ │ │ ├── config.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── iter.go │ │ │ ├── iter_array.go │ │ │ ├── iter_float.go │ │ │ ├── iter_int.go │ │ │ ├── iter_object.go │ │ │ ├── iter_skip.go │ │ │ ├── iter_skip_sloppy.go │ │ │ ├── iter_skip_strict.go │ │ │ ├── iter_str.go │ │ │ ├── jsoniter.go │ │ │ ├── pool.go │ │ │ ├── reflect.go │ │ │ ├── reflect_array.go │ │ │ ├── reflect_dynamic.go │ │ │ ├── reflect_extension.go │ │ │ ├── reflect_json_number.go │ │ │ ├── reflect_json_raw_message.go │ │ │ ├── reflect_map.go │ │ │ ├── reflect_marshaler.go │ │ │ ├── reflect_native.go │ │ │ ├── reflect_optional.go │ │ │ ├── reflect_slice.go │ │ │ ├── reflect_struct_decoder.go │ │ │ ├── reflect_struct_encoder.go │ │ │ ├── stream.go │ │ │ ├── stream_float.go │ │ │ ├── stream_int.go │ │ │ ├── stream_str.go │ │ │ └── test.sh │ ├── julienschmidt │ │ └── httprouter │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── path.go │ │ │ ├── router.go │ │ │ └── tree.go │ ├── kardianos │ │ └── osext │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── osext.go │ │ │ ├── osext_go18.go │ │ │ ├── osext_plan9.go │ │ │ ├── osext_procfs.go │ │ │ ├── osext_sysctl.go │ │ │ └── osext_windows.go │ ├── konsorten │ │ └── go-windows-terminal-sequences │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── sequences.go │ │ │ └── sequences_dummy.go │ ├── kr │ │ ├── pty │ │ │ ├── .gitignore │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── ioctl.go │ │ │ ├── ioctl_bsd.go │ │ │ ├── mktypes.bash │ │ │ ├── pty_darwin.go │ │ │ ├── pty_dragonfly.go │ │ │ ├── pty_freebsd.go │ │ │ ├── pty_linux.go │ │ │ ├── pty_unsupported.go │ │ │ ├── run.go │ │ │ ├── util.go │ │ │ ├── ztypes_386.go │ │ │ ├── ztypes_amd64.go │ │ │ ├── ztypes_arm.go │ │ │ ├── ztypes_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_mipsx.go │ │ │ ├── ztypes_ppc64.go │ │ │ ├── ztypes_ppc64le.go │ │ │ └── ztypes_s390x.go │ │ └── text │ │ │ ├── License │ │ │ ├── Readme │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── indent.go │ │ │ └── wrap.go │ ├── kylelemons │ │ └── godebug │ │ │ ├── LICENSE │ │ │ └── diff │ │ │ └── diff.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 │ │ │ ├── .travis.sh │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── TESTS.md │ │ │ ├── array.go │ │ │ ├── buf.go │ │ │ ├── conn.go │ │ │ ├── conn_go18.go │ │ │ ├── connector.go │ │ │ ├── copy.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ ├── 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_posix.go │ │ │ ├── user_windows.go │ │ │ └── uuid.go │ ├── liggitt │ │ └── tabwriter │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── tabwriter.go │ ├── magefile │ │ └── mage │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ └── run.go │ │ │ ├── mage │ │ │ ├── command_string.go │ │ │ ├── magefile_tmpl.go │ │ │ ├── main.go │ │ │ └── template.go │ │ │ ├── mg │ │ │ ├── color.go │ │ │ ├── color_string.go │ │ │ ├── deps.go │ │ │ ├── errors.go │ │ │ ├── fn.go │ │ │ └── runtime.go │ │ │ ├── parse │ │ │ └── parse.go │ │ │ ├── sh │ │ │ ├── cmd.go │ │ │ └── helpers.go │ │ │ └── target │ │ │ ├── newer.go │ │ │ └── target.go │ ├── mailgun │ │ ├── lemma │ │ │ ├── LICENSE │ │ │ ├── random │ │ │ │ ├── README.md │ │ │ │ └── random.go │ │ │ └── secret │ │ │ │ ├── README.md │ │ │ │ ├── constants.go │ │ │ │ ├── key.go │ │ │ │ └── secret.go │ │ ├── metrics │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── LICENSE.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── metric.go │ │ │ ├── nop.go │ │ │ └── sender.go │ │ ├── minheap │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── minheap.go │ │ ├── timetools │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── provider.go │ │ │ └── rfc2822time.go │ │ └── ttlmap │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── ttlmap.go │ ├── mailru │ │ └── easyjson │ │ │ ├── LICENSE │ │ │ ├── buffer │ │ │ └── pool.go │ │ │ ├── jlexer │ │ │ ├── bytestostr.go │ │ │ ├── bytestostr_nounsafe.go │ │ │ ├── error.go │ │ │ └── lexer.go │ │ │ └── jwriter │ │ │ └── writer.go │ ├── maruel │ │ └── panicparse │ │ │ ├── LICENSE │ │ │ └── stack │ │ │ ├── bucket.go │ │ │ ├── context.go │ │ │ ├── source.go │ │ │ └── stack.go │ ├── mattn │ │ ├── go-colorable │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorable_appengine.go │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── go.test.sh │ │ │ └── noncolorable.go │ │ ├── go-isatty │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── isatty_appengine.go │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_linux.go │ │ │ ├── isatty_linux_ppc64x.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_solaris.go │ │ │ └── isatty_windows.go │ │ ├── go-runewidth │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.mkd │ │ │ ├── runewidth.go │ │ │ ├── runewidth_js.go │ │ │ ├── runewidth_posix.go │ │ │ └── runewidth_windows.go │ │ └── go-sqlite3 │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backup.go │ │ │ ├── callback.go │ │ │ ├── convert.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── sqlite3-binding.c │ │ │ ├── sqlite3-binding.h │ │ │ ├── sqlite3.go │ │ │ ├── sqlite3_context.go │ │ │ ├── sqlite3_func_crypt.go │ │ │ ├── sqlite3_go18.go │ │ │ ├── sqlite3_libsqlite3.go │ │ │ ├── sqlite3_load_extension.go │ │ │ ├── sqlite3_load_extension_omit.go │ │ │ ├── sqlite3_opt_allow_uri_authority.go │ │ │ ├── sqlite3_opt_app_armor.go │ │ │ ├── sqlite3_opt_foreign_keys.go │ │ │ ├── sqlite3_opt_fts5.go │ │ │ ├── sqlite3_opt_icu.go │ │ │ ├── sqlite3_opt_introspect.go │ │ │ ├── sqlite3_opt_json1.go │ │ │ ├── sqlite3_opt_preupdate.go │ │ │ ├── sqlite3_opt_preupdate_hook.go │ │ │ ├── sqlite3_opt_preupdate_omit.go │ │ │ ├── sqlite3_opt_secure_delete.go │ │ │ ├── sqlite3_opt_secure_delete_fast.go │ │ │ ├── sqlite3_opt_stat4.go │ │ │ ├── sqlite3_opt_unlock_notify.c │ │ │ ├── sqlite3_opt_unlock_notify.go │ │ │ ├── sqlite3_opt_userauth.go │ │ │ ├── sqlite3_opt_userauth_omit.go │ │ │ ├── sqlite3_opt_vacuum_full.go │ │ │ ├── sqlite3_opt_vacuum_incr.go │ │ │ ├── sqlite3_opt_vtable.go │ │ │ ├── sqlite3_other.go │ │ │ ├── sqlite3_solaris.go │ │ │ ├── sqlite3_trace.go │ │ │ ├── sqlite3_type.go │ │ │ ├── sqlite3_usleep_windows.go │ │ │ ├── sqlite3_windows.go │ │ │ ├── sqlite3ext.h │ │ │ └── static_mock.go │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── pbutil │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── mdp │ │ └── rsc │ │ │ ├── gf256 │ │ │ └── gf256.go │ │ │ └── qr │ │ │ ├── coding │ │ │ └── qr.go │ │ │ ├── png.go │ │ │ ├── qr.go │ │ │ └── x.png │ ├── miekg │ │ └── dns │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── COPYRIGHT │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile.fuzz │ │ │ ├── Makefile.release │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── clientconfig.go │ │ │ ├── dane.go │ │ │ ├── defaults.go │ │ │ ├── dns.go │ │ │ ├── dnssec.go │ │ │ ├── dnssec_keygen.go │ │ │ ├── dnssec_keyscan.go │ │ │ ├── dnssec_privkey.go │ │ │ ├── doc.go │ │ │ ├── edns.go │ │ │ ├── format.go │ │ │ ├── fuzz.go │ │ │ ├── generate.go │ │ │ ├── labels.go │ │ │ ├── msg.go │ │ │ ├── msg_helpers.go │ │ │ ├── nsecx.go │ │ │ ├── privaterr.go │ │ │ ├── rawmsg.go │ │ │ ├── reverse.go │ │ │ ├── sanitize.go │ │ │ ├── scan.go │ │ │ ├── scan_rr.go │ │ │ ├── scanner.go │ │ │ ├── server.go │ │ │ ├── sig0.go │ │ │ ├── singleinflight.go │ │ │ ├── smimea.go │ │ │ ├── tlsa.go │ │ │ ├── tsig.go │ │ │ ├── types.go │ │ │ ├── udp.go │ │ │ ├── udp_windows.go │ │ │ ├── update.go │ │ │ ├── version.go │ │ │ ├── xfr.go │ │ │ ├── zcompress.go │ │ │ ├── zmsg.go │ │ │ └── ztypes.go │ ├── mitchellh │ │ ├── copystructure │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── copier_time.go │ │ │ ├── copystructure.go │ │ │ ├── go.mod │ │ │ └── go.sum │ │ ├── go-ps │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── Vagrantfile │ │ │ ├── go.mod │ │ │ ├── process.go │ │ │ ├── process_darwin.go │ │ │ ├── process_freebsd.go │ │ │ ├── process_linux.go │ │ │ ├── process_solaris.go │ │ │ ├── process_unix.go │ │ │ └── process_windows.go │ │ ├── go-wordwrap │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── wordwrap.go │ │ ├── mapstructure │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ └── mapstructure.go │ │ └── reflectwalk │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── location.go │ │ │ ├── location_string.go │ │ │ └── reflectwalk.go │ ├── moby │ │ ├── spdystream │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── connection.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── handlers.go │ │ │ ├── priority.go │ │ │ ├── spdy │ │ │ │ ├── dictionary.go │ │ │ │ ├── read.go │ │ │ │ ├── types.go │ │ │ │ └── write.go │ │ │ ├── stream.go │ │ │ └── utils.go │ │ └── term │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ascii.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── 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_17.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_17.go │ │ │ ├── go_below_19.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 │ │ │ ├── test.sh │ │ │ ├── type_map.go │ │ │ ├── unsafe_array.go │ │ │ ├── unsafe_eface.go │ │ │ ├── unsafe_field.go │ │ │ ├── unsafe_iface.go │ │ │ ├── unsafe_link.go │ │ │ ├── unsafe_map.go │ │ │ ├── unsafe_ptr.go │ │ │ ├── unsafe_slice.go │ │ │ ├── unsafe_struct.go │ │ │ └── unsafe_type.go │ ├── monochromegane │ │ └── go-gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── depth_holder.go │ │ │ ├── full_scan_patterns.go │ │ │ ├── gitignore.go │ │ │ ├── index_scan_patterns.go │ │ │ ├── initial_holder.go │ │ │ ├── match.go │ │ │ ├── pattern.go │ │ │ ├── patterns.go │ │ │ └── util.go │ ├── morikuni │ │ └── aec │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── aec.go │ │ │ ├── ansi.go │ │ │ ├── builder.go │ │ │ ├── sample.gif │ │ │ └── sgr.go │ ├── mreiferson │ │ └── go-httpclient │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── httpclient.go │ ├── niemeyer │ │ └── pretty │ │ │ ├── .gitignore │ │ │ ├── License │ │ │ ├── Readme │ │ │ ├── diff.go │ │ │ ├── formatter.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── pretty.go │ │ │ └── zero.go │ ├── nsf │ │ └── termbox-go │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── api_common.go │ │ │ ├── api_windows.go │ │ │ ├── collect_terminfo.py │ │ │ ├── escwait.go │ │ │ ├── escwait_darwin.go │ │ │ ├── syscalls_darwin.go │ │ │ ├── syscalls_darwin_amd64.go │ │ │ ├── syscalls_dragonfly.go │ │ │ ├── syscalls_freebsd.go │ │ │ ├── syscalls_linux.go │ │ │ ├── syscalls_netbsd.go │ │ │ ├── syscalls_openbsd.go │ │ │ ├── syscalls_windows.go │ │ │ ├── termbox.go │ │ │ ├── termbox_common.go │ │ │ ├── termbox_windows.go │ │ │ ├── terminfo.go │ │ │ └── terminfo_builtin.go │ ├── olekukonko │ │ └── tablewriter │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── csv.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── table.go │ │ │ ├── table_with_color.go │ │ │ ├── util.go │ │ │ └── wrap.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 │ │ │ ├── go.mod │ │ │ └── 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 │ │ │ │ ├── system │ │ │ │ ├── linux.go │ │ │ │ ├── proc.go │ │ │ │ ├── syscall_linux_32.go │ │ │ │ ├── syscall_linux_64.go │ │ │ │ ├── unsupported.go │ │ │ │ └── xattrs_linux.go │ │ │ │ └── user │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── lookup.go │ │ │ │ ├── lookup_unix.go │ │ │ │ ├── lookup_windows.go │ │ │ │ └── user.go │ │ └── selinux │ │ │ ├── LICENSE │ │ │ ├── go-selinux │ │ │ ├── selinux_linux.go │ │ │ ├── selinux_stub.go │ │ │ └── xattrs.go │ │ │ └── pkg │ │ │ └── pwalk │ │ │ ├── README.md │ │ │ └── pwalk.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 │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ ├── go113.go │ │ │ └── stack.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── pquerna │ │ └── otp │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── hotp │ │ │ └── hotp.go │ │ │ ├── otp.go │ │ │ └── totp │ │ │ └── totp.go │ ├── prometheus │ │ ├── alertmanager │ │ │ ├── COPYRIGHT.txt │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── api │ │ │ │ └── v2 │ │ │ │ ├── client │ │ │ │ ├── alert │ │ │ │ │ ├── alert_client.go │ │ │ │ │ ├── get_alerts_parameters.go │ │ │ │ │ ├── get_alerts_responses.go │ │ │ │ │ ├── post_alerts_parameters.go │ │ │ │ │ └── post_alerts_responses.go │ │ │ │ ├── alertgroup │ │ │ │ │ ├── alertgroup_client.go │ │ │ │ │ ├── get_alert_groups_parameters.go │ │ │ │ │ └── get_alert_groups_responses.go │ │ │ │ ├── alertmanager_client.go │ │ │ │ ├── general │ │ │ │ │ ├── general_client.go │ │ │ │ │ ├── get_status_parameters.go │ │ │ │ │ └── get_status_responses.go │ │ │ │ ├── receiver │ │ │ │ │ ├── get_receivers_parameters.go │ │ │ │ │ ├── get_receivers_responses.go │ │ │ │ │ └── receiver_client.go │ │ │ │ └── silence │ │ │ │ │ ├── delete_silence_parameters.go │ │ │ │ │ ├── delete_silence_responses.go │ │ │ │ │ ├── get_silence_parameters.go │ │ │ │ │ ├── get_silence_responses.go │ │ │ │ │ ├── get_silences_parameters.go │ │ │ │ │ ├── get_silences_responses.go │ │ │ │ │ ├── post_silences_parameters.go │ │ │ │ │ ├── post_silences_responses.go │ │ │ │ │ └── silence_client.go │ │ │ │ └── models │ │ │ │ ├── alert.go │ │ │ │ ├── alert_group.go │ │ │ │ ├── alert_groups.go │ │ │ │ ├── alert_status.go │ │ │ │ ├── alertmanager_config.go │ │ │ │ ├── alertmanager_status.go │ │ │ │ ├── cluster_status.go │ │ │ │ ├── gettable_alert.go │ │ │ │ ├── gettable_alerts.go │ │ │ │ ├── gettable_silence.go │ │ │ │ ├── gettable_silences.go │ │ │ │ ├── label_set.go │ │ │ │ ├── matcher.go │ │ │ │ ├── matchers.go │ │ │ │ ├── peer_status.go │ │ │ │ ├── postable_alert.go │ │ │ │ ├── postable_alerts.go │ │ │ │ ├── postable_silence.go │ │ │ │ ├── receiver.go │ │ │ │ ├── silence.go │ │ │ │ ├── silence_status.go │ │ │ │ └── version_info.go │ │ ├── client_golang │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── api │ │ │ │ ├── client.go │ │ │ │ └── prometheus │ │ │ │ │ └── v1 │ │ │ │ │ └── api.go │ │ │ └── prometheus │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── collector.go │ │ │ │ ├── counter.go │ │ │ │ ├── desc.go │ │ │ │ ├── doc.go │ │ │ │ ├── expvar_collector.go │ │ │ │ ├── fnv.go │ │ │ │ ├── gauge.go │ │ │ │ ├── go_collector.go │ │ │ │ ├── histogram.go │ │ │ │ ├── http.go │ │ │ │ ├── internal │ │ │ │ └── metric.go │ │ │ │ ├── labels.go │ │ │ │ ├── metric.go │ │ │ │ ├── observer.go │ │ │ │ ├── process_collector.go │ │ │ │ ├── promhttp │ │ │ │ ├── delegator.go │ │ │ │ ├── delegator_1_8.go │ │ │ │ ├── delegator_pre_1_8.go │ │ │ │ ├── http.go │ │ │ │ ├── instrument_client.go │ │ │ │ ├── instrument_client_1_8.go │ │ │ │ └── instrument_server.go │ │ │ │ ├── registry.go │ │ │ │ ├── summary.go │ │ │ │ ├── timer.go │ │ │ │ ├── untyped.go │ │ │ │ ├── value.go │ │ │ │ ├── vec.go │ │ │ │ └── wrap.go │ │ ├── client_model │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── go │ │ │ │ └── metrics.pb.go │ │ ├── common │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── expfmt │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── openmetrics_create.go │ │ │ │ ├── text_create.go │ │ │ │ └── text_parse.go │ │ │ ├── internal │ │ │ │ └── bitbucket.org │ │ │ │ │ └── ww │ │ │ │ │ └── goautoneg │ │ │ │ │ ├── README.txt │ │ │ │ │ └── autoneg.go │ │ │ └── model │ │ │ │ ├── alert.go │ │ │ │ ├── fingerprinting.go │ │ │ │ ├── fnv.go │ │ │ │ ├── labels.go │ │ │ │ ├── labelset.go │ │ │ │ ├── metric.go │ │ │ │ ├── model.go │ │ │ │ ├── signature.go │ │ │ │ ├── silence.go │ │ │ │ ├── time.go │ │ │ │ └── value.go │ │ └── procfs │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── Makefile │ │ │ ├── Makefile.common │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── arp.go │ │ │ ├── buddyinfo.go │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_armx.go │ │ │ ├── cpuinfo_mipsx.go │ │ │ ├── cpuinfo_others.go │ │ │ ├── cpuinfo_ppcx.go │ │ │ ├── cpuinfo_s390x.go │ │ │ ├── cpuinfo_x86.go │ │ │ ├── crypto.go │ │ │ ├── doc.go │ │ │ ├── fs.go │ │ │ ├── fscache.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── 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_sockstat.go │ │ │ ├── net_softnet.go │ │ │ ├── net_udp.go │ │ │ ├── net_unix.go │ │ │ ├── proc.go │ │ │ ├── proc_cgroup.go │ │ │ ├── proc_environ.go │ │ │ ├── proc_fdinfo.go │ │ │ ├── proc_io.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_maps.go │ │ │ ├── proc_ns.go │ │ │ ├── proc_psi.go │ │ │ ├── proc_smaps.go │ │ │ ├── proc_stat.go │ │ │ ├── proc_status.go │ │ │ ├── schedstat.go │ │ │ ├── stat.go │ │ │ ├── swaps.go │ │ │ ├── vm.go │ │ │ ├── xfrm.go │ │ │ └── zoneinfo.go │ ├── rubenv │ │ └── sql-migrate │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── migrate.go │ │ │ └── sqlparse │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── sqlparse.go │ ├── russellhaering │ │ ├── gosaml2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── attribute.go │ │ │ ├── authn_request.go │ │ │ ├── build_request.go │ │ │ ├── decode_response.go │ │ │ ├── retrieve_assertion.go │ │ │ ├── saml.go │ │ │ ├── test_constants.go │ │ │ ├── types │ │ │ │ ├── encrypted_assertion.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── metadata.go │ │ │ │ └── response.go │ │ │ ├── validate.go │ │ │ └── xml_constants.go │ │ └── goxmldsig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── canonicalize.go │ │ │ ├── clock.go │ │ │ ├── etreeutils │ │ │ ├── canonicalize.go │ │ │ ├── namespace.go │ │ │ ├── sort.go │ │ │ └── unmarshal.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── keystore.go │ │ │ ├── run_test.sh │ │ │ ├── sign.go │ │ │ ├── tls_keystore.go │ │ │ ├── types │ │ │ └── signature.go │ │ │ ├── validate.go │ │ │ └── xml_constants.go │ ├── russross │ │ └── blackfriday │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── html.go │ │ │ ├── inline.go │ │ │ ├── latex.go │ │ │ ├── markdown.go │ │ │ └── smartypants.go │ ├── santhosh-tekuri │ │ └── jsonschema │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── compiler.go │ │ │ ├── decoders │ │ │ └── decoders.go │ │ │ ├── doc.go │ │ │ ├── draft4.go │ │ │ ├── draft6.go │ │ │ ├── draft7.go │ │ │ ├── errors.go │ │ │ ├── formats │ │ │ └── formats.go │ │ │ ├── go.mod │ │ │ ├── go.test.sh │ │ │ ├── loader │ │ │ └── loader.go │ │ │ ├── mediatypes │ │ │ └── mediatypes.go │ │ │ ├── resource.go │ │ │ └── schema.go │ ├── satori │ │ └── go.uuid │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── uuid.go │ ├── shopspring │ │ └── decimal │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decimal-go.go │ │ │ ├── decimal.go │ │ │ ├── go.mod │ │ │ └── rounding.go │ ├── shurcooL │ │ ├── httpfs │ │ │ ├── LICENSE │ │ │ └── vfsutil │ │ │ │ ├── file.go │ │ │ │ ├── vfsutil.go │ │ │ │ └── walk.go │ │ └── sanitized_anchor_name │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── main.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hooks.go │ │ │ ├── hooks │ │ │ └── syslog │ │ │ │ ├── README.md │ │ │ │ └── syslog.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_bsd.go │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_no_terminal.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_check_solaris.go │ │ │ ├── terminal_check_unix.go │ │ │ ├── terminal_check_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── spf13 │ │ ├── cast │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cast.go │ │ │ ├── caste.go │ │ │ ├── go.mod │ │ │ └── go.sum │ │ ├── cobra │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── args.go │ │ │ ├── bash_completions.go │ │ │ ├── bash_completions.md │ │ │ ├── cobra.go │ │ │ ├── command.go │ │ │ ├── command_notwin.go │ │ │ ├── command_win.go │ │ │ └── zsh_completions.go │ │ └── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── bytes.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── duration_slice.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float32_slice.go │ │ │ ├── float64.go │ │ │ ├── float64_slice.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── 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 │ ├── stretchr │ │ └── testify │ │ │ ├── LICENSE │ │ │ └── assert │ │ │ ├── assertion_format.go │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ └── http_assertions.go │ ├── tonistiigi │ │ └── units │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── bytes.go │ │ │ └── readme.md │ ├── tstranex │ │ └── u2f │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── certs.go │ │ │ ├── messages.go │ │ │ ├── register.go │ │ │ └── util.go │ ├── vulcand │ │ ├── oxy │ │ │ ├── LICENSE │ │ │ ├── forward │ │ │ │ ├── fwd.go │ │ │ │ ├── headers.go │ │ │ │ └── rewrite.go │ │ │ └── utils │ │ │ │ ├── auth.go │ │ │ │ ├── handler.go │ │ │ │ ├── logging.go │ │ │ │ ├── netutils.go │ │ │ │ └── source.go │ │ └── predicate │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── builder │ │ │ └── builder.go │ │ │ ├── lib.go │ │ │ ├── parse.go │ │ │ └── predicate.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 │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── 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 │ └── xtgo │ │ └── set │ │ ├── LICENSE │ │ ├── README.md │ │ ├── apply.go │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── mutators.go │ │ ├── primitives.go │ │ ├── readonly.go │ │ └── types.go ├── go.mongodb.org │ └── mongo-driver │ │ ├── LICENSE │ │ ├── bson │ │ ├── bson.go │ │ ├── bson_1_8.go │ │ ├── bsoncodec │ │ │ ├── bsoncodec.go │ │ │ ├── byte_slice_codec.go │ │ │ ├── default_value_decoders.go │ │ │ ├── default_value_encoders.go │ │ │ ├── doc.go │ │ │ ├── empty_interface_codec.go │ │ │ ├── map_codec.go │ │ │ ├── mode.go │ │ │ ├── pointer_codec.go │ │ │ ├── proxy.go │ │ │ ├── registry.go │ │ │ ├── slice_codec.go │ │ │ ├── string_codec.go │ │ │ ├── struct_codec.go │ │ │ ├── struct_tag_parser.go │ │ │ ├── time_codec.go │ │ │ ├── types.go │ │ │ └── uint_codec.go │ │ ├── bsonoptions │ │ │ ├── byte_slice_codec_options.go │ │ │ ├── empty_interface_codec_options.go │ │ │ ├── map_codec_options.go │ │ │ ├── slice_codec_options.go │ │ │ ├── string_codec_options.go │ │ │ ├── struct_codec_options.go │ │ │ ├── time_codec_options.go │ │ │ └── uint_codec_options.go │ │ ├── bsonrw │ │ │ ├── copier.go │ │ │ ├── doc.go │ │ │ ├── extjson_parser.go │ │ │ ├── extjson_reader.go │ │ │ ├── extjson_tables.go │ │ │ ├── extjson_wrappers.go │ │ │ ├── extjson_writer.go │ │ │ ├── json_scanner.go │ │ │ ├── mode.go │ │ │ ├── reader.go │ │ │ ├── value_reader.go │ │ │ ├── value_writer.go │ │ │ └── writer.go │ │ ├── bsontype │ │ │ └── bsontype.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── marshal.go │ │ ├── primitive │ │ │ ├── decimal.go │ │ │ ├── objectid.go │ │ │ └── primitive.go │ │ ├── primitive_codecs.go │ │ ├── raw.go │ │ ├── raw_element.go │ │ ├── raw_value.go │ │ ├── registry.go │ │ ├── types.go │ │ └── unmarshal.go │ │ └── x │ │ └── bsonx │ │ └── bsoncore │ │ ├── bsoncore.go │ │ ├── document.go │ │ ├── document_sequence.go │ │ ├── element.go │ │ ├── tables.go │ │ └── value.go ├── go.opencensus.io │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── appveyor.yml │ ├── go.mod │ ├── go.sum │ ├── internal │ │ ├── internal.go │ │ ├── sanitize.go │ │ └── traceinternals.go │ ├── opencensus.go │ └── trace │ │ ├── basetypes.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── evictedqueue.go │ │ ├── export.go │ │ ├── internal │ │ └── internal.go │ │ ├── lrumap.go │ │ ├── sampling.go │ │ ├── spanbucket.go │ │ ├── spanstore.go │ │ ├── status_codes.go │ │ ├── trace.go │ │ ├── trace_go11.go │ │ ├── trace_nongo11.go │ │ └── tracestate │ │ └── tracestate.go ├── 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 │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── atomic.go │ │ ├── error.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── string.go │ ├── multierr │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── error.go │ │ ├── glide.yaml │ │ ├── go.mod │ │ ├── go.sum │ │ ├── go113.go │ │ └── tools.go │ ├── tools │ │ ├── LICENSE │ │ └── update-license │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── licenses.go │ │ │ └── main.go │ └── zap │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .readme.tmpl │ │ ├── .travis.yml │ │ ├── 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 │ │ ├── global_go112.go │ │ ├── global_prego112.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── http_handler.go │ │ ├── internal │ │ ├── bufferpool │ │ │ └── bufferpool.go │ │ ├── color │ │ │ └── color.go │ │ └── exit │ │ │ └── exit.go │ │ ├── level.go │ │ ├── logger.go │ │ ├── options.go │ │ ├── sink.go │ │ ├── stacktrace.go │ │ ├── sugar.go │ │ ├── time.go │ │ ├── tools.go │ │ ├── writer.go │ │ └── zapcore │ │ ├── console_encoder.go │ │ ├── core.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── entry.go │ │ ├── error.go │ │ ├── field.go │ │ ├── hook.go │ │ ├── json_encoder.go │ │ ├── level.go │ │ ├── level_strings.go │ │ ├── marshaler.go │ │ ├── memory_encoder.go │ │ ├── sampler.go │ │ ├── tee.go │ │ └── write_syncer.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ └── bcrypt.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── cast5 │ │ │ └── cast5.go │ │ ├── curve25519 │ │ │ ├── const_amd64.h │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ └── internal │ │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ ├── internal │ │ │ ├── chacha20 │ │ │ │ ├── chacha_generic.go │ │ │ │ ├── chacha_noasm.go │ │ │ │ ├── chacha_s390x.go │ │ │ │ ├── chacha_s390x.s │ │ │ │ └── xor.go │ │ │ └── subtle │ │ │ │ ├── aliasing.go │ │ │ │ └── aliasing_appengine.go │ │ ├── nacl │ │ │ └── secretbox │ │ │ │ └── secretbox.go │ │ ├── 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 │ │ ├── poly1305 │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_arm.go │ │ │ ├── sum_arm.s │ │ │ ├── sum_noasm.go │ │ │ ├── sum_ref.go │ │ │ ├── sum_s390x.go │ │ │ ├── sum_s390x.s │ │ │ └── sum_vmsl_s390x.s │ │ ├── salsa20 │ │ │ └── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ └── salsa20_ref.go │ │ ├── scrypt │ │ │ └── scrypt.go │ │ └── ssh │ │ │ ├── agent │ │ │ ├── client.go │ │ │ ├── forward.go │ │ │ ├── keyring.go │ │ │ └── server.go │ │ │ ├── buffer.go │ │ │ ├── certs.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── handshake.go │ │ │ ├── kex.go │ │ │ ├── keys.go │ │ │ ├── mac.go │ │ │ ├── messages.go │ │ │ ├── mux.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ ├── terminal │ │ │ ├── terminal.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ │ │ └── transport.go │ │ ├── lint │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── golint │ │ │ ├── golint.go │ │ │ ├── import.go │ │ │ └── importcomment.go │ │ └── lint.go │ │ ├── mod │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal │ │ │ └── lazyregexp │ │ │ │ └── lazyre.go │ │ ├── modfile │ │ │ ├── print.go │ │ │ ├── read.go │ │ │ └── rule.go │ │ ├── module │ │ │ └── module.go │ │ └── semver │ │ │ └── semver.go │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── setter.go │ │ │ ├── vm.go │ │ │ └── vm_instructions.go │ │ ├── context │ │ │ ├── context.go │ │ │ ├── ctxhttp │ │ │ │ └── ctxhttp.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ ├── http │ │ │ └── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── go111.go │ │ │ ├── gotrack.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── not_go111.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ └── writesched_random.go │ │ ├── icmp │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── extension.go │ │ │ ├── helper_posix.go │ │ │ ├── interface.go │ │ │ ├── ipv4.go │ │ │ ├── ipv6.go │ │ │ ├── listen_posix.go │ │ │ ├── listen_stub.go │ │ │ ├── message.go │ │ │ ├── messagebody.go │ │ │ ├── mpls.go │ │ │ ├── multipart.go │ │ │ ├── packettoobig.go │ │ │ ├── paramprob.go │ │ │ ├── sys_freebsd.go │ │ │ └── timeexceeded.go │ │ ├── idna │ │ │ ├── idna10.0.0.go │ │ │ ├── idna9.0.0.go │ │ │ ├── punycode.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── 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 │ │ │ │ ├── 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_const_zos.go │ │ │ │ ├── sys_linkname.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_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.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_solaris.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── sys_zos_s390x.go │ │ │ │ ├── sys_zos_s390x.s │ │ │ │ ├── zsys_aix_ppc64.go │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm.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_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.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_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_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.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_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.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 │ │ ├── nettest │ │ │ ├── conntest.go │ │ │ ├── nettest.go │ │ │ ├── nettest_stub.go │ │ │ ├── nettest_unix.go │ │ │ └── nettest_windows.go │ │ ├── proxy │ │ │ ├── dial.go │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── proxy.go │ │ │ └── socks5.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ └── trace.go │ │ └── websocket │ │ │ ├── client.go │ │ │ ├── dial.go │ │ │ ├── hybi.go │ │ │ ├── server.go │ │ │ └── websocket.go │ │ ├── oauth2 │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── google │ │ │ ├── appengine.go │ │ │ ├── appengine_hook.go │ │ │ ├── appengineflex_hook.go │ │ │ ├── default.go │ │ │ ├── doc_go19.go │ │ │ ├── doc_not_go19.go │ │ │ ├── go19.go │ │ │ ├── google.go │ │ │ ├── jwt.go │ │ │ ├── not_go19.go │ │ │ └── sdk.go │ │ ├── internal │ │ │ ├── client_appengine.go │ │ │ ├── doc.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ ├── jws │ │ │ └── jws.go │ │ ├── jwt │ │ │ └── jwt.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ │ ├── sync │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── errgroup │ │ │ └── errgroup.go │ │ └── semaphore │ │ │ └── semaphore.go │ │ ├── sys │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── execabs │ │ │ └── execabs.go │ │ ├── internal │ │ │ └── unsafeheader │ │ │ │ └── unsafeheader.go │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ ├── asm_plan9_386.s │ │ │ ├── asm_plan9_amd64.s │ │ │ ├── asm_plan9_arm.s │ │ │ ├── const_plan9.go │ │ │ ├── dir_plan9.go │ │ │ ├── env_plan9.go │ │ │ ├── errors_plan9.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mksysnum_plan9.sh │ │ │ ├── pwd_go15_plan9.go │ │ │ ├── pwd_plan9.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_plan9.go │ │ │ ├── zsyscall_plan9_386.go │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ ├── zsyscall_plan9_arm.go │ │ │ └── zsysnum_plan9.go │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_bsd_386.s │ │ │ ├── asm_bsd_amd64.s │ │ │ ├── asm_bsd_arm.s │ │ │ ├── asm_bsd_arm64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_openbsd_mips64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── asm_zos_s390x.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dev_zos.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── epoll_zos.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── errors_freebsd_arm64.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── fstatfs_zos.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ifreq_linux.go │ │ │ ├── ioctl.go │ │ │ ├── ioctl_linux.go │ │ │ ├── ioctl_zos.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── ptrace_ios.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.1_12.go │ │ │ ├── syscall_darwin.1_13.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_libSystem.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_arm64.go │ │ │ ├── syscall_illumos.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gc_arm.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_netbsd_arm64.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_openbsd_arm64.go │ │ │ ├── syscall_openbsd_mips64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── syscall_zos_s390x.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ ├── zerrors_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zerrors_zos_s390x.go │ │ │ ├── zptrace_armnn_linux.go │ │ │ ├── zptrace_linux_arm64.go │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ ├── zptrace_x86_linux.go │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_amd64.1_13.go │ │ │ ├── zsyscall_darwin_amd64.1_13.s │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm64.1_13.go │ │ │ ├── zsyscall_darwin_arm64.1_13.s │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsyscall_zos_s390x.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ ├── zsysnum_zos_s390x.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ ├── ztypes_illumos_amd64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ ├── ztypes_solaris_amd64.go │ │ │ └── ztypes_zos_s390x.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── dll_windows.go │ │ │ ├── empty.s │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mkerrors.bash │ │ │ ├── mkknownfolderids.bash │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── setupapierrors_windows.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ ├── types_windows_arm64.go │ │ │ ├── zerrors_windows.go │ │ │ ├── zknownfolderids_windows.go │ │ │ └── zsyscall_windows.go │ │ ├── term │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── term.go │ │ ├── term_plan9.go │ │ ├── term_solaris.go │ │ ├── term_unix.go │ │ ├── term_unix_aix.go │ │ ├── term_unix_bsd.go │ │ ├── term_unix_linux.go │ │ ├── term_unix_zos.go │ │ ├── term_unsupported.go │ │ ├── term_windows.go │ │ └── terminal.go │ │ ├── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── encoding │ │ │ ├── encoding.go │ │ │ ├── internal │ │ │ │ ├── identifier │ │ │ │ │ ├── identifier.go │ │ │ │ │ └── mib.go │ │ │ │ └── internal.go │ │ │ └── unicode │ │ │ │ ├── override.go │ │ │ │ └── unicode.go │ │ ├── internal │ │ │ └── utf8internal │ │ │ │ └── utf8internal.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ └── runes.go │ │ ├── secure │ │ │ └── bidirule │ │ │ │ └── bidirule.go │ │ ├── transform │ │ │ └── transform.go │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables.go │ │ │ │ └── trieval.go │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ └── width │ │ │ ├── kind_string.go │ │ │ ├── tables.go │ │ │ ├── transform.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ ├── time │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── rate │ │ │ ├── rate.go │ │ │ ├── rate_go16.go │ │ │ └── rate_go17.go │ │ ├── tools │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── go │ │ │ ├── analysis │ │ │ │ ├── analysis.go │ │ │ │ ├── diagnostic.go │ │ │ │ ├── doc.go │ │ │ │ ├── passes │ │ │ │ │ └── inspect │ │ │ │ │ │ └── inspect.go │ │ │ │ └── validate.go │ │ │ ├── ast │ │ │ │ ├── astutil │ │ │ │ │ ├── enclosing.go │ │ │ │ │ ├── imports.go │ │ │ │ │ ├── rewrite.go │ │ │ │ │ └── util.go │ │ │ │ └── inspector │ │ │ │ │ ├── inspector.go │ │ │ │ │ └── typeof.go │ │ │ ├── buildutil │ │ │ │ ├── allpackages.go │ │ │ │ ├── fakecontext.go │ │ │ │ ├── overlay.go │ │ │ │ ├── tags.go │ │ │ │ └── util.go │ │ │ ├── gcexportdata │ │ │ │ ├── gcexportdata.go │ │ │ │ └── importer.go │ │ │ ├── internal │ │ │ │ ├── cgo │ │ │ │ │ ├── cgo.go │ │ │ │ │ └── cgo_pkgconfig.go │ │ │ │ ├── gcimporter │ │ │ │ │ ├── bexport.go │ │ │ │ │ ├── bimport.go │ │ │ │ │ ├── exportdata.go │ │ │ │ │ ├── gcimporter.go │ │ │ │ │ ├── iexport.go │ │ │ │ │ ├── iimport.go │ │ │ │ │ ├── newInterface10.go │ │ │ │ │ └── newInterface11.go │ │ │ │ └── packagesdriver │ │ │ │ │ └── sizes.go │ │ │ ├── loader │ │ │ │ ├── doc.go │ │ │ │ ├── loader.go │ │ │ │ └── util.go │ │ │ ├── packages │ │ │ │ ├── doc.go │ │ │ │ ├── external.go │ │ │ │ ├── golist.go │ │ │ │ ├── golist_overlay.go │ │ │ │ ├── loadmode_string.go │ │ │ │ ├── packages.go │ │ │ │ └── visit.go │ │ │ └── types │ │ │ │ ├── objectpath │ │ │ │ └── objectpath.go │ │ │ │ └── typeutil │ │ │ │ ├── callee.go │ │ │ │ ├── imports.go │ │ │ │ ├── map.go │ │ │ │ ├── methodsetcache.go │ │ │ │ └── ui.go │ │ └── internal │ │ │ ├── analysisinternal │ │ │ └── analysis.go │ │ │ ├── event │ │ │ ├── core │ │ │ │ ├── event.go │ │ │ │ ├── export.go │ │ │ │ └── fast.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── keys │ │ │ │ ├── keys.go │ │ │ │ └── standard.go │ │ │ └── label │ │ │ │ └── label.go │ │ │ ├── gocommand │ │ │ ├── invoke.go │ │ │ ├── vendor.go │ │ │ └── version.go │ │ │ ├── lsp │ │ │ └── fuzzy │ │ │ │ ├── input.go │ │ │ │ └── matcher.go │ │ │ ├── packagesinternal │ │ │ └── packages.go │ │ │ └── typesinternal │ │ │ ├── errorcode.go │ │ │ ├── errorcode_string.go │ │ │ └── types.go │ │ └── xerrors │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── adaptor.go │ │ ├── codereview.cfg │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fmt.go │ │ ├── format.go │ │ ├── frame.go │ │ ├── go.mod │ │ ├── internal │ │ └── internal.go │ │ └── wrap.go ├── google.golang.org │ ├── appengine │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appengine.go │ │ ├── appengine_vm.go │ │ ├── errors.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── identity.go │ │ ├── internal │ │ │ ├── api.go │ │ │ ├── api_classic.go │ │ │ ├── api_common.go │ │ │ ├── api_pre17.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_vm.go │ │ │ ├── internal.go │ │ │ ├── log │ │ │ │ ├── log_service.pb.go │ │ │ │ └── log_service.proto │ │ │ ├── main.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 │ │ │ └── annotations │ │ │ │ ├── annotations.pb.go │ │ │ │ └── http.pb.go │ │ │ └── rpc │ │ │ └── status │ │ │ └── status.pb.go │ ├── grpc │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── attributes │ │ │ └── attributes.go │ │ ├── backoff.go │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer.go │ │ ├── balancer │ │ │ ├── balancer.go │ │ │ ├── base │ │ │ │ ├── balancer.go │ │ │ │ └── base.go │ │ │ └── roundrobin │ │ │ │ └── roundrobin.go │ │ ├── balancer_conn_wrappers.go │ │ ├── balancer_v1_wrapper.go │ │ ├── binarylog │ │ │ └── grpc_binarylog_v1 │ │ │ │ └── binarylog.pb.go │ │ ├── call.go │ │ ├── clientconn.go │ │ ├── codec.go │ │ ├── codegen.sh │ │ ├── codes │ │ │ ├── code_string.go │ │ │ └── codes.go │ │ ├── connectivity │ │ │ └── connectivity.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── go12.go │ │ │ ├── internal │ │ │ │ ├── syscallconn.go │ │ │ │ └── syscallconn_appengine.go │ │ │ └── tls.go │ │ ├── dialoptions.go │ │ ├── doc.go │ │ ├── encoding │ │ │ ├── encoding.go │ │ │ └── proto │ │ │ │ └── proto.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── grpclog │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── health │ │ │ ├── client.go │ │ │ ├── grpc_health_v1 │ │ │ │ └── health.pb.go │ │ │ ├── regenerate.sh │ │ │ └── server.go │ │ ├── install_gae.sh │ │ ├── interceptor.go │ │ ├── internal │ │ │ ├── backoff │ │ │ │ └── backoff.go │ │ │ ├── balancerload │ │ │ │ └── load.go │ │ │ ├── binarylog │ │ │ │ ├── binarylog.go │ │ │ │ ├── binarylog_testutil.go │ │ │ │ ├── env_config.go │ │ │ │ ├── method_logger.go │ │ │ │ ├── regenerate.sh │ │ │ │ ├── sink.go │ │ │ │ └── util.go │ │ │ ├── buffer │ │ │ │ └── unbounded.go │ │ │ ├── channelz │ │ │ │ ├── funcs.go │ │ │ │ ├── types.go │ │ │ │ ├── types_linux.go │ │ │ │ ├── types_nonlinux.go │ │ │ │ ├── util_linux.go │ │ │ │ └── util_nonlinux.go │ │ │ ├── envconfig │ │ │ │ └── envconfig.go │ │ │ ├── grpcrand │ │ │ │ └── grpcrand.go │ │ │ ├── grpcsync │ │ │ │ └── event.go │ │ │ ├── internal.go │ │ │ ├── resolver │ │ │ │ ├── dns │ │ │ │ │ ├── dns_resolver.go │ │ │ │ │ └── go113.go │ │ │ │ └── passthrough │ │ │ │ │ └── passthrough.go │ │ │ ├── syscall │ │ │ │ ├── syscall_linux.go │ │ │ │ └── syscall_nonlinux.go │ │ │ └── transport │ │ │ │ ├── bdp_estimator.go │ │ │ │ ├── controlbuf.go │ │ │ │ ├── defaults.go │ │ │ │ ├── flowcontrol.go │ │ │ │ ├── handler_server.go │ │ │ │ ├── http2_client.go │ │ │ │ ├── http2_server.go │ │ │ │ ├── http_util.go │ │ │ │ ├── log.go │ │ │ │ └── transport.go │ │ ├── keepalive │ │ │ └── keepalive.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── naming │ │ │ ├── dns_resolver.go │ │ │ └── naming.go │ │ ├── peer │ │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── pickfirst.go │ │ ├── preloader.go │ │ ├── proxy.go │ │ ├── resolver │ │ │ ├── dns │ │ │ │ └── dns_resolver.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── resolver.go │ │ ├── resolver_conn_wrapper.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── service_config.go │ │ ├── serviceconfig │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── handlers.go │ │ │ └── stats.go │ │ ├── status │ │ │ └── status.go │ │ ├── stream.go │ │ ├── tap │ │ │ └── tap.go │ │ ├── trace.go │ │ ├── version.go │ │ └── vet.sh │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── encoding │ │ ├── prototext │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ └── protowire │ │ │ └── wire.go │ │ ├── internal │ │ ├── descfmt │ │ │ └── stringer.go │ │ ├── descopts │ │ │ └── options.go │ │ ├── detrand │ │ │ └── rand.go │ │ ├── encoding │ │ │ ├── defval │ │ │ │ └── default.go │ │ │ ├── messageset │ │ │ │ └── messageset.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ └── text │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ ├── errors │ │ │ ├── errors.go │ │ │ ├── is_go112.go │ │ │ └── is_go113.go │ │ ├── fieldsort │ │ │ └── fieldsort.go │ │ ├── filedesc │ │ │ ├── build.go │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_lazy.go │ │ │ ├── desc_list.go │ │ │ ├── desc_list_gen.go │ │ │ └── placeholder.go │ │ ├── filetype │ │ │ └── build.go │ │ ├── flags │ │ │ ├── flags.go │ │ │ ├── proto_legacy_disable.go │ │ │ └── proto_legacy_enable.go │ │ ├── genid │ │ │ ├── any_gen.go │ │ │ ├── api_gen.go │ │ │ ├── descriptor_gen.go │ │ │ ├── doc.go │ │ │ ├── duration_gen.go │ │ │ ├── empty_gen.go │ │ │ ├── field_mask_gen.go │ │ │ ├── goname.go │ │ │ ├── map_entry.go │ │ │ ├── source_context_gen.go │ │ │ ├── struct_gen.go │ │ │ ├── timestamp_gen.go │ │ │ ├── type_gen.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gen.go │ │ ├── impl │ │ │ ├── api_export.go │ │ │ ├── checkinit.go │ │ │ ├── codec_extension.go │ │ │ ├── codec_field.go │ │ │ ├── codec_gen.go │ │ │ ├── codec_map.go │ │ │ ├── codec_map_go111.go │ │ │ ├── codec_map_go112.go │ │ │ ├── codec_message.go │ │ │ ├── codec_messageset.go │ │ │ ├── codec_reflect.go │ │ │ ├── codec_tables.go │ │ │ ├── codec_unsafe.go │ │ │ ├── convert.go │ │ │ ├── convert_list.go │ │ │ ├── convert_map.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── enum.go │ │ │ ├── extension.go │ │ │ ├── legacy_enum.go │ │ │ ├── legacy_export.go │ │ │ ├── legacy_extension.go │ │ │ ├── legacy_file.go │ │ │ ├── legacy_message.go │ │ │ ├── merge.go │ │ │ ├── merge_gen.go │ │ │ ├── message.go │ │ │ ├── message_reflect.go │ │ │ ├── message_reflect_field.go │ │ │ ├── message_reflect_gen.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── validate.go │ │ │ └── weak.go │ │ ├── mapsort │ │ │ └── mapsort.go │ │ ├── pragma │ │ │ └── pragma.go │ │ ├── set │ │ │ └── ints.go │ │ ├── strs │ │ │ ├── strings.go │ │ │ ├── strings_pure.go │ │ │ └── strings_unsafe.go │ │ └── version │ │ │ └── version.go │ │ ├── proto │ │ ├── checkinit.go │ │ ├── decode.go │ │ ├── decode_gen.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_gen.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── merge.go │ │ ├── messageset.go │ │ ├── proto.go │ │ ├── proto_methods.go │ │ ├── proto_reflect.go │ │ ├── reset.go │ │ ├── size.go │ │ ├── size_gen.go │ │ └── wrappers.go │ │ ├── reflect │ │ ├── protoreflect │ │ │ ├── methods.go │ │ │ ├── proto.go │ │ │ ├── source.go │ │ │ ├── type.go │ │ │ ├── value.go │ │ │ ├── value_pure.go │ │ │ ├── value_union.go │ │ │ └── value_unsafe.go │ │ └── protoregistry │ │ │ └── registry.go │ │ ├── runtime │ │ ├── protoiface │ │ │ ├── legacy.go │ │ │ └── methods.go │ │ └── protoimpl │ │ │ ├── impl.go │ │ │ └── version.go │ │ └── types │ │ ├── descriptorpb │ │ └── descriptor.pb.go │ │ └── known │ │ ├── anypb │ │ └── any.pb.go │ │ ├── durationpb │ │ └── duration.pb.go │ │ ├── emptypb │ │ └── empty.pb.go │ │ └── timestamppb │ │ └── timestamp.pb.go ├── gopkg.in │ ├── alecthomas │ │ └── kingpin.v2 │ │ │ ├── .travis.yml │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── actions.go │ │ │ ├── app.go │ │ │ ├── args.go │ │ │ ├── cmd.go │ │ │ ├── completions.go │ │ │ ├── doc.go │ │ │ ├── envar.go │ │ │ ├── flags.go │ │ │ ├── global.go │ │ │ ├── guesswidth.go │ │ │ ├── guesswidth_unix.go │ │ │ ├── model.go │ │ │ ├── parser.go │ │ │ ├── parsers.go │ │ │ ├── templates.go │ │ │ ├── usage.go │ │ │ ├── values.go │ │ │ ├── values.json │ │ │ └── values_generated.go │ ├── check.v1 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TODO │ │ ├── benchmark.go │ │ ├── check.go │ │ ├── checkers.go │ │ ├── helpers.go │ │ ├── printer.go │ │ ├── reporter.go │ │ └── run.go │ ├── gorp.v1 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── dialect.go │ │ ├── errors.go │ │ ├── gorp.go │ │ └── test_all.sh │ ├── inf.v0 │ │ ├── LICENSE │ │ ├── dec.go │ │ └── rounder.go │ ├── mgo.v2 │ │ ├── LICENSE │ │ ├── bson │ │ │ ├── LICENSE │ │ │ ├── bson.go │ │ │ ├── decimal.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ └── json.go │ │ └── internal │ │ │ └── json │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── extension.go │ │ │ ├── fold.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ └── tags.go │ ├── tomb.v1 │ │ ├── LICENSE │ │ ├── README.md │ │ └── tomb.go │ ├── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── yaml.v3 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go ├── helm.sh │ └── helm │ │ └── v3 │ │ ├── LICENSE │ │ ├── internal │ │ ├── experimental │ │ │ └── registry │ │ │ │ ├── authorizer.go │ │ │ │ ├── cache.go │ │ │ │ ├── cache_opts.go │ │ │ │ ├── client.go │ │ │ │ ├── client_opts.go │ │ │ │ ├── constants.go │ │ │ │ ├── reference.go │ │ │ │ ├── resolver.go │ │ │ │ └── util.go │ │ ├── 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 │ │ ├── chart_export.go │ │ ├── chart_list.go │ │ ├── chart_pull.go │ │ ├── chart_push.go │ │ ├── chart_remove.go │ │ ├── chart_save.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 │ │ ├── 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 │ │ ├── gates │ │ ├── doc.go │ │ └── gates.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 │ │ ├── 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 ├── honnef.co │ └── go │ │ └── tools │ │ ├── LICENSE │ │ ├── LICENSE-THIRD-PARTY │ │ ├── arg │ │ └── arg.go │ │ ├── cmd │ │ └── staticcheck │ │ │ ├── README.md │ │ │ └── staticcheck.go │ │ ├── code │ │ └── code.go │ │ ├── config │ │ ├── config.go │ │ └── example.conf │ │ ├── deprecated │ │ └── stdlib.go │ │ ├── edit │ │ └── edit.go │ │ ├── facts │ │ ├── deprecated.go │ │ ├── generated.go │ │ ├── purity.go │ │ └── token.go │ │ ├── functions │ │ ├── loops.go │ │ ├── stub.go │ │ └── terminates.go │ │ ├── go │ │ └── types │ │ │ └── typeutil │ │ │ ├── callee.go │ │ │ ├── identical.go │ │ │ ├── imports.go │ │ │ ├── map.go │ │ │ ├── methodsetcache.go │ │ │ └── ui.go │ │ ├── internal │ │ ├── cache │ │ │ ├── cache.go │ │ │ ├── default.go │ │ │ └── hash.go │ │ ├── passes │ │ │ └── buildir │ │ │ │ └── buildir.go │ │ ├── renameio │ │ │ └── renameio.go │ │ ├── robustio │ │ │ ├── robustio.go │ │ │ ├── robustio_darwin.go │ │ │ ├── robustio_flaky.go │ │ │ ├── robustio_other.go │ │ │ └── robustio_windows.go │ │ └── sharedcheck │ │ │ └── lint.go │ │ ├── ir │ │ ├── LICENSE │ │ ├── blockopt.go │ │ ├── builder.go │ │ ├── const.go │ │ ├── create.go │ │ ├── doc.go │ │ ├── dom.go │ │ ├── emit.go │ │ ├── exits.go │ │ ├── func.go │ │ ├── html.go │ │ ├── identical.go │ │ ├── identical_17.go │ │ ├── irutil │ │ │ ├── load.go │ │ │ ├── switch.go │ │ │ ├── util.go │ │ │ └── visit.go │ │ ├── lift.go │ │ ├── lvalue.go │ │ ├── methods.go │ │ ├── mode.go │ │ ├── print.go │ │ ├── sanity.go │ │ ├── source.go │ │ ├── ssa.go │ │ ├── staticcheck.conf │ │ ├── util.go │ │ ├── wrappers.go │ │ └── write.go │ │ ├── lint │ │ ├── LICENSE │ │ ├── lint.go │ │ ├── lintdsl │ │ │ └── lintdsl.go │ │ ├── lintutil │ │ │ ├── format │ │ │ │ └── format.go │ │ │ ├── stats.go │ │ │ ├── stats_bsd.go │ │ │ ├── stats_posix.go │ │ │ └── util.go │ │ ├── runner.go │ │ └── stats.go │ │ ├── loader │ │ └── loader.go │ │ ├── pattern │ │ ├── convert.go │ │ ├── doc.go │ │ ├── fuzz.go │ │ ├── lexer.go │ │ ├── match.go │ │ ├── parser.go │ │ └── pattern.go │ │ ├── printf │ │ ├── fuzz.go │ │ └── printf.go │ │ ├── report │ │ └── report.go │ │ ├── simple │ │ ├── analysis.go │ │ ├── doc.go │ │ └── lint.go │ │ ├── staticcheck │ │ ├── analysis.go │ │ ├── buildtag.go │ │ ├── doc.go │ │ ├── lint.go │ │ ├── rules.go │ │ └── structtag.go │ │ ├── stylecheck │ │ ├── analysis.go │ │ ├── doc.go │ │ ├── lint.go │ │ └── names.go │ │ ├── unused │ │ ├── edge.go │ │ ├── edgekind_string.go │ │ ├── implements.go │ │ └── unused.go │ │ └── version │ │ ├── buildinfo.go │ │ ├── buildinfo111.go │ │ └── version.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 │ │ │ ├── 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 │ │ ├── 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 │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_annotations.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ └── storage │ │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.prerelease-lifecycle.go │ ├── apiextensions-apiserver │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── apis │ │ │ └── apiextensions │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── 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 │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── apiextensions │ │ │ ├── v1 │ │ │ ├── apiextensions_client.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ ├── apiextensions_client.go │ │ │ ├── customresourcedefinition.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ ├── apimachinery │ │ ├── LICENSE │ │ ├── pkg │ │ │ ├── api │ │ │ │ ├── equality │ │ │ │ │ └── semantic.go │ │ │ │ ├── errors │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── meta │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── conditions.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ │ ├── help.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── lazy.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── multirestmapper.go │ │ │ │ │ ├── priority.go │ │ │ │ │ └── restmapper.go │ │ │ │ ├── resource │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── amount.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── math.go │ │ │ │ │ ├── quantity.go │ │ │ │ │ ├── quantity_proto.go │ │ │ │ │ ├── scale_int.go │ │ │ │ │ ├── suffix.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── validation │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── objectmeta.go │ │ │ │ │ └── path │ │ │ │ │ └── name.go │ │ │ ├── apis │ │ │ │ └── meta │ │ │ │ │ ├── internalversion │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── micro_time.go │ │ │ │ │ ├── micro_time_fuzz.go │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── time_fuzz.go │ │ │ │ │ ├── time_proto.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── unstructured │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── unstructured.go │ │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ │ ├── 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 │ │ │ │ ├── codec.go │ │ │ │ ├── codec_check.go │ │ │ │ ├── conversion.go │ │ │ │ ├── converter.go │ │ │ │ ├── doc.go │ │ │ │ ├── embedded.go │ │ │ │ ├── error.go │ │ │ │ ├── extension.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── helper.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── mapper.go │ │ │ │ ├── negotiate.go │ │ │ │ ├── register.go │ │ │ │ ├── schema │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ └── interfaces.go │ │ │ │ ├── scheme.go │ │ │ │ ├── scheme_builder.go │ │ │ │ ├── serializer │ │ │ │ │ ├── codec_factory.go │ │ │ │ │ ├── json │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ └── meta.go │ │ │ │ │ ├── negotiated_codec.go │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── protobuf.go │ │ │ │ │ ├── recognizer │ │ │ │ │ │ └── recognizer.go │ │ │ │ │ ├── streaming │ │ │ │ │ │ └── streaming.go │ │ │ │ │ └── versioning │ │ │ │ │ │ └── versioning.go │ │ │ │ ├── swagger_doc_generator.go │ │ │ │ ├── types.go │ │ │ │ ├── types_proto.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── selection │ │ │ │ └── operator.go │ │ │ ├── types │ │ │ │ ├── doc.go │ │ │ │ ├── namespacedname.go │ │ │ │ ├── nodename.go │ │ │ │ ├── patch.go │ │ │ │ └── uid.go │ │ │ ├── util │ │ │ │ ├── cache │ │ │ │ │ ├── expiring.go │ │ │ │ │ └── lruexpirecache.go │ │ │ │ ├── clock │ │ │ │ │ └── clock.go │ │ │ │ ├── diff │ │ │ │ │ └── diff.go │ │ │ │ ├── duration │ │ │ │ │ └── duration.go │ │ │ │ ├── errors │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── framer │ │ │ │ │ └── framer.go │ │ │ │ ├── httpstream │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── httpstream.go │ │ │ │ │ └── spdy │ │ │ │ │ │ ├── connection.go │ │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ │ └── upgrade.go │ │ │ │ ├── intstr │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── instr_fuzz.go │ │ │ │ │ └── intstr.go │ │ │ │ ├── json │ │ │ │ │ └── json.go │ │ │ │ ├── managedfields │ │ │ │ │ └── extract.go │ │ │ │ ├── mergepatch │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── errors.go │ │ │ │ │ └── util.go │ │ │ │ ├── naming │ │ │ │ │ └── from_stack.go │ │ │ │ ├── net │ │ │ │ │ ├── http.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── port_range.go │ │ │ │ │ ├── port_split.go │ │ │ │ │ └── util.go │ │ │ │ ├── rand │ │ │ │ │ └── rand.go │ │ │ │ ├── remotecommand │ │ │ │ │ └── constants.go │ │ │ │ ├── runtime │ │ │ │ │ └── runtime.go │ │ │ │ ├── sets │ │ │ │ │ ├── byte.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int32.go │ │ │ │ │ ├── int64.go │ │ │ │ │ └── string.go │ │ │ │ ├── strategicpatch │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── patch.go │ │ │ │ │ └── types.go │ │ │ │ ├── validation │ │ │ │ │ ├── field │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── path.go │ │ │ │ │ └── validation.go │ │ │ │ ├── wait │ │ │ │ │ ├── doc.go │ │ │ │ │ └── wait.go │ │ │ │ └── yaml │ │ │ │ │ └── decoder.go │ │ │ ├── version │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ └── types.go │ │ │ └── watch │ │ │ │ ├── doc.go │ │ │ │ ├── filter.go │ │ │ │ ├── mux.go │ │ │ │ ├── streamwatcher.go │ │ │ │ ├── watch.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ ├── json │ │ │ ├── OWNERS │ │ │ └── fields.go │ │ │ ├── netutil │ │ │ └── addr.go │ │ │ └── reflect │ │ │ └── deep_equal.go │ ├── apiserver │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── 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 │ │ │ └── resource │ │ │ ├── builder.go │ │ │ ├── client.go │ │ │ ├── crd_finder.go │ │ │ ├── doc.go │ │ │ ├── dry_run_verifier.go │ │ │ ├── fake.go │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── kustomizevisitor.go │ │ │ ├── mapper.go │ │ │ ├── metadata_decoder.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 │ │ │ │ │ ├── statefulsetspec.go │ │ │ │ │ ├── statefulsetstatus.go │ │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deploymentcondition.go │ │ │ │ │ ├── deploymentspec.go │ │ │ │ │ ├── deploymentstatus.go │ │ │ │ │ ├── deploymentstrategy.go │ │ │ │ │ ├── rollbackconfig.go │ │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ ├── statefulsetcondition.go │ │ │ │ │ ├── statefulsetspec.go │ │ │ │ │ ├── statefulsetstatus.go │ │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonsetcondition.go │ │ │ │ │ ├── daemonsetspec.go │ │ │ │ │ ├── daemonsetstatus.go │ │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deploymentcondition.go │ │ │ │ │ ├── deploymentspec.go │ │ │ │ │ ├── deploymentstatus.go │ │ │ │ │ ├── deploymentstrategy.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicasetcondition.go │ │ │ │ │ ├── replicasetspec.go │ │ │ │ │ ├── replicasetstatus.go │ │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ ├── statefulsetcondition.go │ │ │ │ │ ├── statefulsetspec.go │ │ │ │ │ ├── statefulsetstatus.go │ │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ │ └── horizontalpodautoscalerstatus.go │ │ │ │ ├── v2beta1 │ │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ │ ├── externalmetricsource.go │ │ │ │ │ ├── externalmetricstatus.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ │ ├── metricspec.go │ │ │ │ │ ├── metricstatus.go │ │ │ │ │ ├── objectmetricsource.go │ │ │ │ │ ├── objectmetricstatus.go │ │ │ │ │ ├── podsmetricsource.go │ │ │ │ │ ├── podsmetricstatus.go │ │ │ │ │ ├── resourcemetricsource.go │ │ │ │ │ └── resourcemetricstatus.go │ │ │ │ └── v2beta2 │ │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ │ ├── externalmetricsource.go │ │ │ │ │ ├── externalmetricstatus.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ │ ├── hpascalingrules.go │ │ │ │ │ ├── metricidentifier.go │ │ │ │ │ ├── metricspec.go │ │ │ │ │ ├── metricstatus.go │ │ │ │ │ ├── metrictarget.go │ │ │ │ │ ├── metricvaluestatus.go │ │ │ │ │ ├── objectmetricsource.go │ │ │ │ │ ├── objectmetricstatus.go │ │ │ │ │ ├── podsmetricsource.go │ │ │ │ │ ├── podsmetricstatus.go │ │ │ │ │ ├── resourcemetricsource.go │ │ │ │ │ └── resourcemetricstatus.go │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── cronjobspec.go │ │ │ │ │ ├── cronjobstatus.go │ │ │ │ │ ├── job.go │ │ │ │ │ ├── jobcondition.go │ │ │ │ │ ├── jobspec.go │ │ │ │ │ ├── jobstatus.go │ │ │ │ │ └── jobtemplatespec.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── cronjobspec.go │ │ │ │ │ ├── cronjobstatus.go │ │ │ │ │ └── jobtemplatespec.go │ │ │ ├── certificates │ │ │ │ ├── v1 │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ ├── coordination │ │ │ │ ├── v1 │ │ │ │ │ ├── lease.go │ │ │ │ │ └── leasespec.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── lease.go │ │ │ │ │ └── leasespec.go │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── affinity.go │ │ │ │ │ ├── attachedvolume.go │ │ │ │ │ ├── awselasticblockstorevolumesource.go │ │ │ │ │ ├── azurediskvolumesource.go │ │ │ │ │ ├── azurefilepersistentvolumesource.go │ │ │ │ │ ├── azurefilevolumesource.go │ │ │ │ │ ├── capabilities.go │ │ │ │ │ ├── cephfspersistentvolumesource.go │ │ │ │ │ ├── cephfsvolumesource.go │ │ │ │ │ ├── cinderpersistentvolumesource.go │ │ │ │ │ ├── cindervolumesource.go │ │ │ │ │ ├── clientipconfig.go │ │ │ │ │ ├── componentcondition.go │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── configmapenvsource.go │ │ │ │ │ ├── configmapkeyselector.go │ │ │ │ │ ├── configmapnodeconfigsource.go │ │ │ │ │ ├── configmapprojection.go │ │ │ │ │ ├── configmapvolumesource.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── containerimage.go │ │ │ │ │ ├── containerport.go │ │ │ │ │ ├── containerstate.go │ │ │ │ │ ├── containerstaterunning.go │ │ │ │ │ ├── containerstateterminated.go │ │ │ │ │ ├── containerstatewaiting.go │ │ │ │ │ ├── containerstatus.go │ │ │ │ │ ├── csipersistentvolumesource.go │ │ │ │ │ ├── csivolumesource.go │ │ │ │ │ ├── daemonendpoint.go │ │ │ │ │ ├── downwardapiprojection.go │ │ │ │ │ ├── downwardapivolumefile.go │ │ │ │ │ ├── downwardapivolumesource.go │ │ │ │ │ ├── emptydirvolumesource.go │ │ │ │ │ ├── endpointaddress.go │ │ │ │ │ ├── endpointport.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── endpointsubset.go │ │ │ │ │ ├── envfromsource.go │ │ │ │ │ ├── envvar.go │ │ │ │ │ ├── envvarsource.go │ │ │ │ │ ├── ephemeralcontainer.go │ │ │ │ │ ├── ephemeralcontainercommon.go │ │ │ │ │ ├── ephemeralvolumesource.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── eventseries.go │ │ │ │ │ ├── eventsource.go │ │ │ │ │ ├── execaction.go │ │ │ │ │ ├── fcvolumesource.go │ │ │ │ │ ├── flexpersistentvolumesource.go │ │ │ │ │ ├── flexvolumesource.go │ │ │ │ │ ├── flockervolumesource.go │ │ │ │ │ ├── gcepersistentdiskvolumesource.go │ │ │ │ │ ├── gitrepovolumesource.go │ │ │ │ │ ├── glusterfspersistentvolumesource.go │ │ │ │ │ ├── glusterfsvolumesource.go │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── hostalias.go │ │ │ │ │ ├── hostpathvolumesource.go │ │ │ │ │ ├── httpgetaction.go │ │ │ │ │ ├── httpheader.go │ │ │ │ │ ├── iscsipersistentvolumesource.go │ │ │ │ │ ├── iscsivolumesource.go │ │ │ │ │ ├── keytopath.go │ │ │ │ │ ├── lifecycle.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── limitrangeitem.go │ │ │ │ │ ├── limitrangespec.go │ │ │ │ │ ├── loadbalanceringress.go │ │ │ │ │ ├── loadbalancerstatus.go │ │ │ │ │ ├── localobjectreference.go │ │ │ │ │ ├── localvolumesource.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── namespacecondition.go │ │ │ │ │ ├── namespacespec.go │ │ │ │ │ ├── namespacestatus.go │ │ │ │ │ ├── nfsvolumesource.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── nodeaddress.go │ │ │ │ │ ├── nodeaffinity.go │ │ │ │ │ ├── nodecondition.go │ │ │ │ │ ├── nodeconfigsource.go │ │ │ │ │ ├── nodeconfigstatus.go │ │ │ │ │ ├── nodedaemonendpoints.go │ │ │ │ │ ├── nodeselector.go │ │ │ │ │ ├── nodeselectorrequirement.go │ │ │ │ │ ├── nodeselectorterm.go │ │ │ │ │ ├── nodespec.go │ │ │ │ │ ├── nodestatus.go │ │ │ │ │ ├── nodesysteminfo.go │ │ │ │ │ ├── objectfieldselector.go │ │ │ │ │ ├── objectreference.go │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ ├── persistentvolumeclaimcondition.go │ │ │ │ │ ├── persistentvolumeclaimspec.go │ │ │ │ │ ├── persistentvolumeclaimstatus.go │ │ │ │ │ ├── persistentvolumeclaimtemplate.go │ │ │ │ │ ├── persistentvolumeclaimvolumesource.go │ │ │ │ │ ├── persistentvolumesource.go │ │ │ │ │ ├── persistentvolumespec.go │ │ │ │ │ ├── persistentvolumestatus.go │ │ │ │ │ ├── photonpersistentdiskvolumesource.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── podaffinity.go │ │ │ │ │ ├── podaffinityterm.go │ │ │ │ │ ├── podantiaffinity.go │ │ │ │ │ ├── podcondition.go │ │ │ │ │ ├── poddnsconfig.go │ │ │ │ │ ├── poddnsconfigoption.go │ │ │ │ │ ├── podip.go │ │ │ │ │ ├── podreadinessgate.go │ │ │ │ │ ├── podsecuritycontext.go │ │ │ │ │ ├── podspec.go │ │ │ │ │ ├── podstatus.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── podtemplatespec.go │ │ │ │ │ ├── portstatus.go │ │ │ │ │ ├── portworxvolumesource.go │ │ │ │ │ ├── preferredschedulingterm.go │ │ │ │ │ ├── probe.go │ │ │ │ │ ├── projectedvolumesource.go │ │ │ │ │ ├── quobytevolumesource.go │ │ │ │ │ ├── rbdpersistentvolumesource.go │ │ │ │ │ ├── rbdvolumesource.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── replicationcontrollercondition.go │ │ │ │ │ ├── replicationcontrollerspec.go │ │ │ │ │ ├── replicationcontrollerstatus.go │ │ │ │ │ ├── resourcefieldselector.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── resourcequotaspec.go │ │ │ │ │ ├── resourcequotastatus.go │ │ │ │ │ ├── resourcerequirements.go │ │ │ │ │ ├── scaleiopersistentvolumesource.go │ │ │ │ │ ├── scaleiovolumesource.go │ │ │ │ │ ├── scopedresourceselectorrequirement.go │ │ │ │ │ ├── scopeselector.go │ │ │ │ │ ├── seccompprofile.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── secretenvsource.go │ │ │ │ │ ├── secretkeyselector.go │ │ │ │ │ ├── secretprojection.go │ │ │ │ │ ├── secretreference.go │ │ │ │ │ ├── secretvolumesource.go │ │ │ │ │ ├── securitycontext.go │ │ │ │ │ ├── selinuxoptions.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── serviceaccount.go │ │ │ │ │ ├── serviceaccounttokenprojection.go │ │ │ │ │ ├── serviceport.go │ │ │ │ │ ├── servicespec.go │ │ │ │ │ ├── servicestatus.go │ │ │ │ │ ├── sessionaffinityconfig.go │ │ │ │ │ ├── storageospersistentvolumesource.go │ │ │ │ │ ├── storageosvolumesource.go │ │ │ │ │ ├── sysctl.go │ │ │ │ │ ├── taint.go │ │ │ │ │ ├── tcpsocketaction.go │ │ │ │ │ ├── toleration.go │ │ │ │ │ ├── topologyselectorlabelrequirement.go │ │ │ │ │ ├── topologyselectorterm.go │ │ │ │ │ ├── topologyspreadconstraint.go │ │ │ │ │ ├── typedlocalobjectreference.go │ │ │ │ │ ├── volume.go │ │ │ │ │ ├── volumedevice.go │ │ │ │ │ ├── volumemount.go │ │ │ │ │ ├── volumenodeaffinity.go │ │ │ │ │ ├── volumeprojection.go │ │ │ │ │ ├── volumesource.go │ │ │ │ │ ├── vspherevirtualdiskvolumesource.go │ │ │ │ │ ├── weightedpodaffinityterm.go │ │ │ │ │ └── windowssecuritycontextoptions.go │ │ │ ├── discovery │ │ │ │ ├── v1 │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── endpointconditions.go │ │ │ │ │ ├── endpointhints.go │ │ │ │ │ ├── endpointport.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── forzone.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── endpointconditions.go │ │ │ │ │ ├── endpointhints.go │ │ │ │ │ ├── endpointport.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── forzone.go │ │ │ ├── events │ │ │ │ ├── v1 │ │ │ │ │ ├── event.go │ │ │ │ │ └── eventseries.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── event.go │ │ │ │ │ └── eventseries.go │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── allowedcsidriver.go │ │ │ │ │ ├── allowedflexvolume.go │ │ │ │ │ ├── allowedhostpath.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonsetcondition.go │ │ │ │ │ ├── daemonsetspec.go │ │ │ │ │ ├── daemonsetstatus.go │ │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deploymentcondition.go │ │ │ │ │ ├── deploymentspec.go │ │ │ │ │ ├── deploymentstatus.go │ │ │ │ │ ├── deploymentstrategy.go │ │ │ │ │ ├── fsgroupstrategyoptions.go │ │ │ │ │ ├── hostportrange.go │ │ │ │ │ ├── httpingresspath.go │ │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ │ ├── idrange.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressbackend.go │ │ │ │ │ ├── ingressrule.go │ │ │ │ │ ├── ingressrulevalue.go │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ ├── ingressstatus.go │ │ │ │ │ ├── ingresstls.go │ │ │ │ │ ├── ipblock.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ │ ├── networkpolicypeer.go │ │ │ │ │ ├── networkpolicyport.go │ │ │ │ │ ├── networkpolicyspec.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ ├── podsecuritypolicyspec.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicasetcondition.go │ │ │ │ │ ├── replicasetspec.go │ │ │ │ │ ├── replicasetstatus.go │ │ │ │ │ ├── rollbackconfig.go │ │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ │ ├── runasgroupstrategyoptions.go │ │ │ │ │ ├── runasuserstrategyoptions.go │ │ │ │ │ ├── runtimeclassstrategyoptions.go │ │ │ │ │ ├── selinuxstrategyoptions.go │ │ │ │ │ └── supplementalgroupsstrategyoptions.go │ │ │ ├── flowcontrol │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── flowschemacondition.go │ │ │ │ │ ├── flowschemaspec.go │ │ │ │ │ ├── flowschemastatus.go │ │ │ │ │ ├── groupsubject.go │ │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ │ ├── limitresponse.go │ │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ │ ├── queuingconfiguration.go │ │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ │ ├── subject.go │ │ │ │ │ └── usersubject.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── flowschemacondition.go │ │ │ │ │ ├── flowschemaspec.go │ │ │ │ │ ├── flowschemastatus.go │ │ │ │ │ ├── groupsubject.go │ │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ │ ├── limitresponse.go │ │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ │ ├── queuingconfiguration.go │ │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ │ ├── subject.go │ │ │ │ │ └── usersubject.go │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── meta │ │ │ │ └── v1 │ │ │ │ │ ├── condition.go │ │ │ │ │ ├── deleteoptions.go │ │ │ │ │ ├── labelselector.go │ │ │ │ │ ├── labelselectorrequirement.go │ │ │ │ │ ├── managedfieldsentry.go │ │ │ │ │ ├── objectmeta.go │ │ │ │ │ ├── ownerreference.go │ │ │ │ │ ├── preconditions.go │ │ │ │ │ └── typemeta.go │ │ │ ├── networking │ │ │ │ ├── v1 │ │ │ │ │ ├── httpingresspath.go │ │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressbackend.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ │ ├── ingressclassspec.go │ │ │ │ │ ├── ingressrule.go │ │ │ │ │ ├── ingressrulevalue.go │ │ │ │ │ ├── ingressservicebackend.go │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ ├── ingressstatus.go │ │ │ │ │ ├── ingresstls.go │ │ │ │ │ ├── ipblock.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ │ ├── networkpolicypeer.go │ │ │ │ │ ├── networkpolicyport.go │ │ │ │ │ ├── networkpolicyspec.go │ │ │ │ │ └── servicebackendport.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── httpingresspath.go │ │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressbackend.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ │ ├── ingressclassspec.go │ │ │ │ │ ├── ingressrule.go │ │ │ │ │ ├── ingressrulevalue.go │ │ │ │ │ ├── ingressspec.go │ │ │ │ │ ├── ingressstatus.go │ │ │ │ │ └── ingresstls.go │ │ │ ├── node │ │ │ │ ├── v1 │ │ │ │ │ ├── overhead.go │ │ │ │ │ ├── runtimeclass.go │ │ │ │ │ └── scheduling.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── overhead.go │ │ │ │ │ ├── runtimeclass.go │ │ │ │ │ ├── runtimeclassspec.go │ │ │ │ │ └── scheduling.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── overhead.go │ │ │ │ │ ├── runtimeclass.go │ │ │ │ │ └── scheduling.go │ │ │ ├── policy │ │ │ │ ├── v1 │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ │ └── poddisruptionbudgetstatus.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── allowedcsidriver.go │ │ │ │ │ ├── allowedflexvolume.go │ │ │ │ │ ├── allowedhostpath.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── fsgroupstrategyoptions.go │ │ │ │ │ ├── hostportrange.go │ │ │ │ │ ├── idrange.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ │ ├── poddisruptionbudgetstatus.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ ├── podsecuritypolicyspec.go │ │ │ │ │ ├── runasgroupstrategyoptions.go │ │ │ │ │ ├── runasuserstrategyoptions.go │ │ │ │ │ ├── runtimeclassstrategyoptions.go │ │ │ │ │ ├── selinuxstrategyoptions.go │ │ │ │ │ └── supplementalgroupsstrategyoptions.go │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── aggregationrule.go │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── policyrule.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── rolebinding.go │ │ │ │ │ ├── roleref.go │ │ │ │ │ └── subject.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── aggregationrule.go │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── policyrule.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── rolebinding.go │ │ │ │ │ ├── roleref.go │ │ │ │ │ └── subject.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── aggregationrule.go │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── policyrule.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── rolebinding.go │ │ │ │ │ ├── roleref.go │ │ │ │ │ └── subject.go │ │ │ ├── scheduling │ │ │ │ ├── v1 │ │ │ │ │ └── priorityclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── priorityclass.go │ │ │ │ └── v1beta1 │ │ │ │ │ └── priorityclass.go │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ └── volumeerror.go │ │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csidriverspec.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csinodedriver.go │ │ │ │ ├── csinodespec.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── storageclass.go │ │ │ │ ├── tokenrequest.go │ │ │ │ ├── volumeattachment.go │ │ │ │ ├── volumeattachmentsource.go │ │ │ │ ├── volumeattachmentspec.go │ │ │ │ ├── volumeattachmentstatus.go │ │ │ │ ├── volumeerror.go │ │ │ │ └── volumenoderesources.go │ │ ├── discovery │ │ │ ├── cached │ │ │ │ └── disk │ │ │ │ │ ├── cached_discovery.go │ │ │ │ │ └── round_tripper.go │ │ │ ├── discovery_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ └── discovery.go │ │ │ └── helper.go │ │ ├── dynamic │ │ │ ├── interface.go │ │ │ ├── scheme.go │ │ │ └── simple.go │ │ ├── kubernetes │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── import.go │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ └── typed │ │ │ │ ├── admissionregistration │ │ │ │ ├── v1 │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ ├── apiserverinternal │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── storageversion.go │ │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── statefulset.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── authentication │ │ │ │ ├── v1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── tokenreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── tokenreview.go │ │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── v2beta1 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── v2beta2 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── job.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── certificates │ │ │ │ ├── v1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── coordination │ │ │ │ ├── v1 │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── lease.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── lease.go │ │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── core_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── namespace_expansion.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── node_expansion.go │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── pod_expansion.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_expansion.go │ │ │ │ │ └── serviceaccount.go │ │ │ │ ├── discovery │ │ │ │ ├── v1 │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── events │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── extensions_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ └── replicaset.go │ │ │ │ ├── flowcontrol │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ ├── flowschema.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ ├── networking │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ ├── networking_client.go │ │ │ │ │ └── networkpolicy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ └── networking_client.go │ │ │ │ ├── node │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── node_client.go │ │ │ │ │ └── runtimeclass.go │ │ │ │ ├── policy │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── policy_client.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ └── policy_client.go │ │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── scheduling │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ └── volumeattachment.go │ │ │ │ └── v1beta1 │ │ │ │ ├── csidriver.go │ │ │ │ ├── csinode.go │ │ │ │ ├── csistoragecapacity.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ ├── storageclass.go │ │ │ │ └── volumeattachment.go │ │ ├── pkg │ │ │ ├── apis │ │ │ │ └── clientauthentication │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── version │ │ │ │ ├── .gitattributes │ │ │ │ ├── base.go │ │ │ │ ├── doc.go │ │ │ │ └── version.go │ │ ├── plugin │ │ │ └── pkg │ │ │ │ └── client │ │ │ │ └── auth │ │ │ │ ├── OWNERS │ │ │ │ ├── azure │ │ │ │ ├── README.md │ │ │ │ └── azure.go │ │ │ │ ├── exec │ │ │ │ ├── exec.go │ │ │ │ └── metrics.go │ │ │ │ ├── gcp │ │ │ │ ├── OWNERS │ │ │ │ └── gcp.go │ │ │ │ ├── oidc │ │ │ │ ├── OWNERS │ │ │ │ └── oidc.go │ │ │ │ ├── openstack │ │ │ │ └── openstack_stub.go │ │ │ │ ├── plugins.go │ │ │ │ └── plugins_providers.go │ │ ├── rest │ │ │ ├── OWNERS │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── exec.go │ │ │ ├── plugin.go │ │ │ ├── request.go │ │ │ ├── transport.go │ │ │ ├── url_utils.go │ │ │ ├── urlbackoff.go │ │ │ ├── warnings.go │ │ │ ├── watch │ │ │ │ ├── decoder.go │ │ │ │ └── encoder.go │ │ │ └── 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 │ │ ├── third_party │ │ │ └── forked │ │ │ │ └── golang │ │ │ │ └── template │ │ │ │ ├── exec.go │ │ │ │ └── funcs.go │ │ ├── tools │ │ │ ├── auth │ │ │ │ ├── OWNERS │ │ │ │ └── clientauth.go │ │ │ ├── cache │ │ │ │ ├── OWNERS │ │ │ │ ├── controller.go │ │ │ │ ├── delta_fifo.go │ │ │ │ ├── doc.go │ │ │ │ ├── expiration_cache.go │ │ │ │ ├── expiration_cache_fakes.go │ │ │ │ ├── fake_custom_store.go │ │ │ │ ├── fifo.go │ │ │ │ ├── heap.go │ │ │ │ ├── index.go │ │ │ │ ├── listers.go │ │ │ │ ├── listwatch.go │ │ │ │ ├── mutation_cache.go │ │ │ │ ├── mutation_detector.go │ │ │ │ ├── reflector.go │ │ │ │ ├── reflector_metrics.go │ │ │ │ ├── shared_informer.go │ │ │ │ ├── store.go │ │ │ │ ├── thread_safe_store.go │ │ │ │ └── undelta_store.go │ │ │ ├── clientcmd │ │ │ │ ├── api │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── latest │ │ │ │ │ │ └── latest.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── auth_loaders.go │ │ │ │ ├── client_config.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── flag.go │ │ │ │ ├── helpers.go │ │ │ │ ├── loader.go │ │ │ │ ├── merged_client_builder.go │ │ │ │ ├── overrides.go │ │ │ │ └── validation.go │ │ │ ├── metrics │ │ │ │ ├── OWNERS │ │ │ │ └── metrics.go │ │ │ ├── pager │ │ │ │ └── pager.go │ │ │ ├── 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 │ ├── component-base │ │ ├── LICENSE │ │ ├── config │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── featuregate │ │ │ └── feature_gate.go │ │ └── version │ │ │ ├── .gitattributes │ │ │ ├── base.go │ │ │ └── version.go │ ├── klog │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── RELEASE.md │ │ │ ├── SECURITY.md │ │ │ ├── SECURITY_CONTACTS │ │ │ ├── code-of-conduct.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── klog.go │ │ │ └── klog_file.go │ ├── kube-aggregator │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── apis │ │ │ └── apiregistration │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ ├── zz_generated.defaults.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── client │ │ │ └── clientset_generated │ │ │ └── clientset │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── apiregistration │ │ │ ├── v1 │ │ │ ├── apiregistration_client.go │ │ │ ├── apiservice.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ │ │ └── v1beta1 │ │ │ ├── apiregistration_client.go │ │ │ ├── apiservice.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ ├── kube-openapi │ │ ├── LICENSE │ │ └── pkg │ │ │ └── util │ │ │ └── proto │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ ├── openapi.go │ │ │ └── validation │ │ │ ├── errors.go │ │ │ ├── types.go │ │ │ └── validation.go │ ├── kubectl │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── cmd │ │ │ └── util │ │ │ │ ├── env_file.go │ │ │ │ ├── factory.go │ │ │ │ ├── factory_client_access.go │ │ │ │ ├── helpers.go │ │ │ │ ├── kubectl_match_version.go │ │ │ │ └── printing.go │ │ │ ├── drain │ │ │ ├── cordon.go │ │ │ ├── default.go │ │ │ ├── drain.go │ │ │ └── filters.go │ │ │ ├── scheme │ │ │ ├── install.go │ │ │ └── scheme.go │ │ │ ├── util │ │ │ ├── interrupt │ │ │ │ └── interrupt.go │ │ │ ├── openapi │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── extensions.go │ │ │ │ ├── openapi.go │ │ │ │ ├── openapi_getter.go │ │ │ │ └── validation │ │ │ │ │ └── validation.go │ │ │ ├── templates │ │ │ │ ├── command_groups.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 │ │ │ ├── features │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ └── kube_features.go │ │ │ ├── kubelet │ │ │ └── apis │ │ │ │ ├── BUILD │ │ │ │ ├── well_known_annotations_windows.go │ │ │ │ └── well_known_labels.go │ │ │ └── scheduler │ │ │ └── apis │ │ │ └── config │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── legacy_types.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_pluginargs.go │ │ │ └── zz_generated.deepcopy.go │ └── utils │ │ ├── LICENSE │ │ ├── buffer │ │ └── ring_growing.go │ │ ├── exec │ │ ├── README.md │ │ ├── doc.go │ │ └── exec.go │ │ ├── integer │ │ └── integer.go │ │ ├── pointer │ │ ├── OWNERS │ │ ├── README.md │ │ └── pointer.go │ │ └── trace │ │ ├── README.md │ │ └── trace.go ├── modules.txt └── sigs.k8s.io │ ├── kustomize │ ├── api │ │ ├── LICENSE │ │ ├── builtins │ │ │ ├── AnnotationsTransformer.go │ │ │ ├── ConfigMapGenerator.go │ │ │ ├── HashTransformer.go │ │ │ ├── HelmChartInflationGenerator.go │ │ │ ├── ImageTagTransformer.go │ │ │ ├── LabelTransformer.go │ │ │ ├── LegacyOrderTransformer.go │ │ │ ├── NamespaceTransformer.go │ │ │ ├── PatchJson6902Transformer.go │ │ │ ├── PatchStrategicMergeTransformer.go │ │ │ ├── PatchTransformer.go │ │ │ ├── PrefixSuffixTransformer.go │ │ │ ├── ReplicaCountTransformer.go │ │ │ ├── SecretGenerator.go │ │ │ ├── ValueAddTransformer.go │ │ │ └── doc.go │ │ ├── filesys │ │ │ ├── confirmeddir.go │ │ │ ├── file.go │ │ │ ├── fileinfo.go │ │ │ ├── fileondisk.go │ │ │ ├── filesystem.go │ │ │ ├── fsnode.go │ │ │ ├── fsondisk.go │ │ │ └── util.go │ │ ├── filters │ │ │ ├── annotations │ │ │ │ ├── annotations.go │ │ │ │ └── doc.go │ │ │ ├── fieldspec │ │ │ │ ├── doc.go │ │ │ │ ├── fieldspec.go │ │ │ │ └── gvk.go │ │ │ ├── filtersutil │ │ │ │ └── setters.go │ │ │ ├── fsslice │ │ │ │ ├── doc.go │ │ │ │ └── fsslice.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 │ │ │ ├── prefixsuffix │ │ │ │ ├── doc.go │ │ │ │ └── prefixsuffix.go │ │ │ ├── refvar │ │ │ │ ├── doc.go │ │ │ │ ├── expand.go │ │ │ │ └── refvar.go │ │ │ ├── replicacount │ │ │ │ ├── doc.go │ │ │ │ └── replicacount.go │ │ │ └── valueadd │ │ │ │ └── valueadd.go │ │ ├── hasher │ │ │ └── hasher.go │ │ ├── ifc │ │ │ └── ifc.go │ │ ├── image │ │ │ └── image.go │ │ ├── internal │ │ │ ├── accumulator │ │ │ │ ├── loadconfigfromcrds.go │ │ │ │ ├── namereferencetransformer.go │ │ │ │ ├── refvartransformer.go │ │ │ │ └── resaccumulator.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 │ │ │ │ ├── errtimeout.go │ │ │ │ ├── pathsplitter.go │ │ │ │ └── timedcall.go │ │ │ └── validate │ │ │ │ └── fieldvalidator.go │ │ ├── konfig │ │ │ ├── builtinpluginconsts │ │ │ │ ├── commonannotations.go │ │ │ │ ├── commonlabels.go │ │ │ │ ├── defaultconfig.go │ │ │ │ ├── doc.go │ │ │ │ ├── images.go │ │ │ │ ├── nameprefix.go │ │ │ │ ├── namereference.go │ │ │ │ ├── namespace.go │ │ │ │ ├── replicas.go │ │ │ │ └── varreference.go │ │ │ ├── doc.go │ │ │ ├── general.go │ │ │ └── plugins.go │ │ ├── krusty │ │ │ ├── doc.go │ │ │ ├── kustomizer.go │ │ │ └── options.go │ │ ├── kv │ │ │ └── kv.go │ │ ├── loader │ │ │ ├── fileloader.go │ │ │ ├── loader.go │ │ │ └── loadrestrictions.go │ │ ├── provenance │ │ │ └── provenance.go │ │ ├── provider │ │ │ └── depprovider.go │ │ ├── resid │ │ │ ├── gvk.go │ │ │ └── resid.go │ │ ├── resmap │ │ │ ├── factory.go │ │ │ ├── idslice.go │ │ │ ├── resmap.go │ │ │ └── reswrangler.go │ │ ├── resource │ │ │ ├── doc.go │ │ │ ├── factory.go │ │ │ ├── idset.go │ │ │ └── resource.go │ │ └── types │ │ │ ├── builtinpluginloadingoptions_string.go │ │ │ ├── configmapargs.go │ │ │ ├── doc.go │ │ │ ├── erronlybuiltinpluginsallowed.go │ │ │ ├── errunabletofind.go │ │ │ ├── fieldspec.go │ │ │ ├── fix.go │ │ │ ├── genargs.go │ │ │ ├── generationbehavior.go │ │ │ ├── generatorargs.go │ │ │ ├── generatoroptions.go │ │ │ ├── helmchartargs.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 │ │ │ ├── replica.go │ │ │ ├── secretargs.go │ │ │ ├── selector.go │ │ │ ├── typemeta.go │ │ │ └── var.go │ └── kyaml │ │ ├── LICENSE │ │ ├── LICENSE_TEMPLATE │ │ ├── comments │ │ └── comments.go │ │ ├── errors │ │ └── errors.go │ │ ├── ext │ │ └── ext.go │ │ ├── fieldmeta │ │ └── fieldmeta.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 │ │ │ └── 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 │ │ ├── testing.go │ │ └── tree.go │ │ ├── openapi │ │ ├── Makefile │ │ ├── README.md │ │ ├── kubernetesapi │ │ │ ├── openapiinfo.go │ │ │ └── v1204 │ │ │ │ ├── swagger.go │ │ │ │ └── swagger.json │ │ ├── kustomizationapi │ │ │ ├── swagger.go │ │ │ └── swagger.json │ │ └── openapi.go │ │ ├── runfn │ │ └── runfn.go │ │ ├── sets │ │ ├── string.go │ │ └── stringlist.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 │ │ ├── serialization.go │ │ ├── types.go │ │ └── walk │ │ ├── associative_sequence.go │ │ ├── map.go │ │ ├── nonassociative_sequence.go │ │ ├── scalar.go │ │ ├── visitor.go │ │ └── walk.go │ ├── structured-merge-diff │ └── v4 │ │ ├── LICENSE │ │ ├── fieldpath │ │ ├── doc.go │ │ ├── element.go │ │ ├── fromvalue.go │ │ ├── managers.go │ │ ├── path.go │ │ ├── pathelementmap.go │ │ ├── serialize-pe.go │ │ ├── serialize.go │ │ └── set.go │ │ ├── schema │ │ ├── doc.go │ │ ├── elements.go │ │ ├── equals.go │ │ └── schemaschema.go │ │ ├── typed │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── merge.go │ │ ├── parser.go │ │ ├── reconcile_schema.go │ │ ├── remove.go │ │ ├── tofieldset.go │ │ ├── typed.go │ │ ├── union.go │ │ └── validate.go │ │ └── value │ │ ├── allocator.go │ │ ├── doc.go │ │ ├── fields.go │ │ ├── jsontagutil.go │ │ ├── list.go │ │ ├── listreflect.go │ │ ├── listunstructured.go │ │ ├── map.go │ │ ├── mapreflect.go │ │ ├── mapunstructured.go │ │ ├── reflectcache.go │ │ ├── scalar.go │ │ ├── structreflect.go │ │ ├── value.go │ │ ├── valuereflect.go │ │ └── valueunstructured.go │ └── yaml │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── fields.go │ ├── go.mod │ ├── go.sum │ ├── yaml.go │ └── yaml_go110.go ├── version.sh ├── versions.mk └── web ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── Dockerfile ├── Dockerfile.buildx ├── Makefile ├── README.md ├── babel.config.js ├── devServer.js ├── devServerUtils.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── shared ├── assets │ ├── icomoon │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ ├── icomoon.woff │ │ │ └── icomoon.woff2 │ │ └── style.css │ ├── images │ │ ├── app-logo.svg │ │ ├── gravitational-logo.svg │ │ ├── gravity-community-logo.svg │ │ ├── gravity-hub.svg │ │ ├── gravity-logo.svg │ │ ├── gravity-medallion.svg │ │ ├── kube-logo.svg │ │ ├── sample-logo-long.svg │ │ ├── sample-logo-squire.svg │ │ ├── teleport-logo.svg │ │ └── teleport-medallion.svg │ └── ubuntu │ │ ├── fonts │ │ ├── Ubuntu-Bold.eot │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-Bold.woff │ │ ├── Ubuntu-Bold.woff2 │ │ ├── Ubuntu-BoldItalic.eot │ │ ├── Ubuntu-BoldItalic.ttf │ │ ├── Ubuntu-BoldItalic.woff │ │ ├── Ubuntu-BoldItalic.woff2 │ │ ├── Ubuntu-Italic.eot │ │ ├── Ubuntu-Italic.ttf │ │ ├── Ubuntu-Italic.woff │ │ ├── Ubuntu-Italic.woff2 │ │ ├── Ubuntu-Light.eot │ │ ├── Ubuntu-Light.ttf │ │ ├── Ubuntu-Light.woff │ │ ├── Ubuntu-Light.woff2 │ │ ├── Ubuntu-LightItalic.eot │ │ ├── Ubuntu-LightItalic.ttf │ │ ├── Ubuntu-LightItalic.woff │ │ ├── Ubuntu-LightItalic.woff2 │ │ ├── Ubuntu-Medium.eot │ │ ├── Ubuntu-Medium.ttf │ │ ├── Ubuntu-Medium.woff │ │ ├── Ubuntu-Medium.woff2 │ │ ├── Ubuntu-MediumItalic.eot │ │ ├── Ubuntu-MediumItalic.ttf │ │ ├── Ubuntu-MediumItalic.woff │ │ ├── Ubuntu-MediumItalic.woff2 │ │ ├── Ubuntu-Regular.eot │ │ ├── Ubuntu-Regular.ttf │ │ ├── Ubuntu-Regular.woff │ │ └── Ubuntu-Regular.woff2 │ │ └── style.css ├── components │ ├── .storybook │ │ ├── config.js │ │ └── webpack.config.js │ ├── Alert │ │ ├── Alert.jsx │ │ ├── alert.story.js │ │ └── index.jsx │ ├── Box │ │ ├── Box.jsx │ │ ├── box.story.js │ │ └── index.js │ ├── Button │ │ ├── Button.jsx │ │ ├── button.story.js │ │ └── index.js │ ├── ButtonIcon │ │ ├── ButtonIcon.jsx │ │ └── index.js │ ├── ButtonLink │ │ ├── ButtonLink.jsx │ │ └── index.js │ ├── ButtonOutlined │ │ ├── ButtonOutlined.jsx │ │ └── index.js │ ├── ButtonSso │ │ ├── ButtonSso.jsx │ │ ├── ButtonSso.story.js │ │ ├── index.jsx │ │ └── utils.js │ ├── Card │ │ ├── Card.jsx │ │ ├── Card.story.js │ │ └── index.js │ ├── CardError │ │ ├── CardError.jsx │ │ ├── CardError.story.js │ │ └── index.js │ ├── CardSuccess │ │ ├── CardSuccess.jsx │ │ └── index.js │ ├── DataTable │ │ ├── Paged │ │ │ ├── Paged.jsx │ │ │ ├── Pager │ │ │ │ ├── Pager.jsx │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── usePages.jsx │ │ ├── StyledTable.jsx │ │ ├── Table.jsx │ │ ├── Table.story.js │ │ └── index.js │ ├── Dialog │ │ ├── Dialog.jsx │ │ ├── Dialog.story.js │ │ ├── DialogContent.jsx │ │ ├── DialogFooter.jsx │ │ ├── DialogHeader.jsx │ │ ├── DialogTitle.jsx │ │ └── index.js │ ├── DialogConfirmation │ │ ├── DialogConfirmation.jsx │ │ ├── DialogConfirmation.story.js │ │ └── index.js │ ├── DocumentTitle │ │ ├── DocumentTitle.jsx │ │ └── index.js │ ├── FieldInput │ │ ├── FieldInput.jsx │ │ └── index.js │ ├── FieldSelect │ │ ├── FieldSelect.jsx │ │ └── index.js │ ├── Flex │ │ ├── Flex.jsx │ │ ├── Flex.story.js │ │ └── index.js │ ├── FormInvite │ │ ├── Expired.jsx │ │ ├── FormInvite.jsx │ │ ├── FormInvite.story.js │ │ ├── TwoFaInfo.jsx │ │ └── index.js │ ├── FormLogin │ │ ├── FormLogin.jsx │ │ ├── FormLogin.story.js │ │ ├── SsoButtons.jsx │ │ └── index.js │ ├── FormPassword │ │ ├── FormPassword.jsx │ │ ├── FormPassword.story.js │ │ └── index.js │ ├── Icon │ │ ├── Icon.jsx │ │ ├── Icon.story.js │ │ └── index.js │ ├── Image │ │ ├── Image.jsx │ │ ├── Image.story.js │ │ └── index.js │ ├── Indicator │ │ ├── Indicator.jsx │ │ ├── Indicator.story.js │ │ └── index.js │ ├── Input │ │ ├── Input.jsx │ │ ├── Input.story.js │ │ └── index.js │ ├── Label │ │ ├── Label.jsx │ │ ├── Label.story.js │ │ └── index.js │ ├── LabelInput │ │ ├── LabelInput.jsx │ │ └── index.js │ ├── LabelState │ │ ├── LabelState.jsx │ │ ├── LabelState.story.js │ │ └── index.js │ ├── Link │ │ ├── Link.jsx │ │ └── index.js │ ├── Menu │ │ ├── Menu.jsx │ │ ├── Menu.story.js │ │ ├── MenuItem.jsx │ │ ├── MenuItemIcon.jsx │ │ ├── MenuList.jsx │ │ └── index.js │ ├── Modal │ │ ├── Modal.jsx │ │ ├── Portal.jsx │ │ ├── RootRef.jsx │ │ └── index.js │ ├── Popover │ │ ├── Popover.jsx │ │ ├── Popover.story.js │ │ ├── Transition.jsx │ │ └── index.js │ ├── Select │ │ ├── Select.jsx │ │ └── index.js │ ├── SideNav │ │ ├── SideNav.jsx │ │ ├── SideNavItem.jsx │ │ ├── SideNavItemIcon.jsx │ │ ├── Sidenav.story.js │ │ └── index.js │ ├── Text │ │ ├── Text.jsx │ │ ├── Text.story.js │ │ └── index.js │ ├── ThemeProvider │ │ ├── globals.js │ │ └── index.js │ ├── TopNav │ │ ├── TopNav.jsx │ │ ├── TopNav.story.js │ │ ├── TopNavItem.jsx │ │ ├── TopNavUserMenu │ │ │ ├── TopNavUserMenu.jsx │ │ │ ├── avatar.png │ │ │ └── index.js │ │ └── index.js │ ├── Validation │ │ ├── Validation.jsx │ │ ├── Validation.test.js │ │ ├── index.js │ │ └── rules.js │ ├── index.js │ └── utils │ │ ├── index.js │ │ └── match.js ├── hooks │ ├── index.js │ ├── useAttempt.js │ └── withState.js ├── libs │ └── logger.js ├── services │ └── enums.js ├── system │ ├── borderRadius.js │ ├── index.js │ └── typography.js └── theme │ ├── fonts.js │ ├── index.js │ ├── palette.js │ ├── paletter.story.js │ ├── theme.js │ ├── typography.js │ ├── typography.story.js │ └── utils │ ├── colorManipulator.js │ ├── getPlatform.js │ ├── index.js │ └── warning.js ├── src ├── .storybook │ └── index.js ├── assets │ └── favicon.ico ├── boot.js ├── cluster │ ├── CommunityCluster.jsx │ ├── components │ │ ├── Account │ │ │ ├── Account.jsx │ │ │ └── index.js │ │ ├── Audit │ │ │ ├── Audit.jsx │ │ │ ├── Audit.story.js │ │ │ ├── EventDialog │ │ │ │ ├── EventDialog.jsx │ │ │ │ └── index.js │ │ │ ├── EventList │ │ │ │ ├── EventDescCell │ │ │ │ │ ├── EventDescCell.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── EventList.jsx │ │ │ │ ├── EventListCells.jsx │ │ │ │ ├── EventTypeCell │ │ │ │ │ ├── EventTypeCell.jsx │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── RangePicker │ │ │ │ ├── Custom │ │ │ │ │ ├── Custom.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── RangePicker.jsx │ │ │ │ ├── RangePicker.story.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── Certificate │ │ │ ├── Certificate.jsx │ │ │ ├── Certificate.story.js │ │ │ ├── UpdateCertDialog │ │ │ │ ├── UpdateCertDialog.jsx │ │ │ │ ├── UpdateCertDialog.story.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── Cluster.jsx │ │ ├── Dashboard │ │ │ ├── AppList │ │ │ │ ├── AppList.jsx │ │ │ │ ├── AppList.story.js │ │ │ │ ├── AppListCells.jsx │ │ │ │ └── index.js │ │ │ ├── Dashboard.jsx │ │ │ ├── DebugInfoButton │ │ │ │ ├── DebugInfoButton.jsx │ │ │ │ └── index.js │ │ │ ├── LatestEventList │ │ │ │ ├── LatestEventList.jsx │ │ │ │ └── index.js │ │ │ ├── MetricsCharts │ │ │ │ ├── CircleGraph │ │ │ │ │ ├── CircleGraph.jsx │ │ │ │ │ ├── CircleGraph.story.js │ │ │ │ │ └── index.js │ │ │ │ ├── MetricsCharts.jsx │ │ │ │ ├── OvertimeChart │ │ │ │ │ ├── LineChart.jsx │ │ │ │ │ ├── LineChart.story.js │ │ │ │ │ ├── OvertimeChart.jsx │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── OperationBanner │ │ │ │ ├── OperationBanner.jsx │ │ │ │ ├── OperationBanner.story.js │ │ │ │ ├── Progress.jsx │ │ │ │ └── index.js │ │ │ ├── OperationList │ │ │ │ ├── ActionCell.jsx │ │ │ │ ├── CreatedCell.jsx │ │ │ │ ├── DescCell.jsx │ │ │ │ ├── OperationList.jsx │ │ │ │ ├── OpertaionList.story.js │ │ │ │ ├── Progress.jsx │ │ │ │ ├── TypeCell.jsx │ │ │ │ ├── UserCell.jsx │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── K8s │ │ │ ├── ConfigMaps │ │ │ │ ├── ConfigMapEditor │ │ │ │ │ ├── Attempt │ │ │ │ │ │ ├── Attempt.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── ConfigMapEditor.jsx │ │ │ │ │ ├── ConfigMapEditor.story.js │ │ │ │ │ ├── Tabs │ │ │ │ │ │ ├── Tabs.jsx │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── ConfigMapList │ │ │ │ │ ├── ConfigMapList.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── ConfigMaps.jsx │ │ │ │ ├── ConfigMaps.story.js │ │ │ │ └── index.js │ │ │ ├── DaemonSets │ │ │ │ ├── DaemonSetList │ │ │ │ │ ├── DaemonSetList.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── DaemonSets.jsx │ │ │ │ ├── DaemonSets.story.js │ │ │ │ └── index.js │ │ │ ├── Deployments │ │ │ │ ├── DeploymentList │ │ │ │ │ ├── DeploymentList.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── Deployments.jsx │ │ │ │ ├── Deployments.story.js │ │ │ │ └── index.js │ │ │ ├── Jobs │ │ │ │ ├── JobList │ │ │ │ │ ├── JobList.jsx │ │ │ │ │ ├── JobListCells.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── Jobs.jsx │ │ │ │ ├── Jobs.story.js │ │ │ │ └── index.js │ │ │ ├── K8s.jsx │ │ │ ├── K8s.story.js │ │ │ ├── K8sResourceDialog │ │ │ │ ├── K8sResourceDialog.jsx │ │ │ │ ├── K8sResourceDialog.story.js │ │ │ │ └── index.js │ │ │ ├── Pods │ │ │ │ ├── PodList │ │ │ │ │ ├── ContainerMenu │ │ │ │ │ │ ├── ContainerMenu.jsx │ │ │ │ │ │ ├── ContainerMenu.story.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── PodList.jsx │ │ │ │ │ ├── PodListCells.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── Pods.jsx │ │ │ │ ├── Pods.story.js │ │ │ │ └── index.js │ │ │ ├── Secrets │ │ │ │ ├── SecretList │ │ │ │ │ ├── SecretList.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── Secrets.jsx │ │ │ │ ├── Secrets.story.js │ │ │ │ └── index.js │ │ │ ├── SelectNamespace │ │ │ │ ├── SelectNamespace.jsx │ │ │ │ └── index.js │ │ │ ├── Services │ │ │ │ ├── ServiceList │ │ │ │ │ ├── ServiceList.jsx │ │ │ │ │ ├── ServiceListCells.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── Services.jsx │ │ │ │ ├── Services.story.js │ │ │ │ └── index.js │ │ │ ├── Tabs │ │ │ │ ├── Tabs.jsx │ │ │ │ └── index.js │ │ │ ├── components │ │ │ │ ├── Poller.jsx │ │ │ │ ├── ResourceActionCell │ │ │ │ │ ├── ResourceActionCell.jsx │ │ │ │ │ └── index.js │ │ │ │ └── ResourceCard │ │ │ │ │ ├── ResourceCard.jsx │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── k8sContext.js │ │ ├── Layout │ │ │ ├── Layout.jsx │ │ │ └── index.js │ │ ├── Logs │ │ │ ├── LogForwarderDialog │ │ │ │ ├── EditMode │ │ │ │ │ ├── EditMode.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── LogForwarderDialog.jsx │ │ │ │ ├── LogForwarderDialog.story.js │ │ │ │ ├── ViewMode │ │ │ │ │ ├── ItemList.jsx │ │ │ │ │ ├── ViewMode.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── store.js │ │ │ │ └── template │ │ │ │ │ ├── forwarder.yaml │ │ │ │ │ └── index.js │ │ │ ├── LogProvider │ │ │ │ ├── LogProvider.jsx │ │ │ │ └── index.js │ │ │ ├── Logs.jsx │ │ │ ├── Logs.story.js │ │ │ ├── QueryEditor │ │ │ │ ├── MenuFilter │ │ │ │ │ ├── MenuFilter.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── QueryEditor.jsx │ │ │ │ ├── Suggestions │ │ │ │ │ ├── Suggestions.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── enums.js │ │ │ │ └── index.js │ │ │ ├── QueryEditorBasic │ │ │ │ ├── QueryEditorBasic.jsx │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── Monitoring │ │ │ ├── Monitoring.jsx │ │ │ ├── Monitoring.story.js │ │ │ └── index.js │ │ ├── Nodes │ │ │ ├── AddNodeDialog │ │ │ │ ├── AddNodeDialog.jsx │ │ │ │ ├── AddNodeDialog.story.js │ │ │ │ ├── ProfileInstructions │ │ │ │ │ ├── ProfileInstructions.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── ProfileSelector │ │ │ │ │ ├── ProfileSelector.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── DeleteNodeDialog │ │ │ │ ├── DeleteNodeDialog.jsx │ │ │ │ ├── DeleteNodeDialog.story.js │ │ │ │ └── index.js │ │ │ ├── MenuLogin │ │ │ │ ├── MenuLogin.jsx │ │ │ │ ├── MenuLogin.story.js │ │ │ │ └── index.js │ │ │ ├── NodeList │ │ │ │ ├── NodeList.jsx │ │ │ │ ├── NodeList.story.js │ │ │ │ ├── NodeMenuAction │ │ │ │ │ ├── NodeMenuAction.jsx │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── Nodes.jsx │ │ │ ├── Nodes.story.js │ │ │ └── index.js │ │ ├── Offline │ │ │ ├── Offline.jsx │ │ │ ├── Offline.story.js │ │ │ └── index.js │ │ ├── SideNav │ │ │ ├── SideNav.jsx │ │ │ ├── SideNav.story.js │ │ │ └── index.js │ │ ├── TopBar │ │ │ ├── ClusterInfoDialog │ │ │ │ ├── ClusterInfoDialog.jsx │ │ │ │ └── index.js │ │ │ ├── ClusterStatus │ │ │ │ ├── ClusterStatus.jsx │ │ │ │ └── index.js │ │ │ ├── RemoteAccess │ │ │ │ ├── RemoteAccess.jsx │ │ │ │ ├── RemoteAccess.story.js │ │ │ │ ├── RemoteAccesssDialog │ │ │ │ │ ├── RemoteAccessDialog.jsx │ │ │ │ │ ├── RemoteAccessDialog.story.js │ │ │ │ │ └── index.js │ │ │ │ ├── Switch.jsx │ │ │ │ └── index.js │ │ │ ├── TopBar.jsx │ │ │ ├── TopBar.story.js │ │ │ └── index.js │ │ ├── Users │ │ │ ├── UserDeleteDialog │ │ │ │ ├── UserDeleteDialog.jsx │ │ │ │ ├── UserDeleteDialog.story.js │ │ │ │ └── index.js │ │ │ ├── UserEditDialog │ │ │ │ ├── UserEditDialog.jsx │ │ │ │ ├── UserEditDialog.story.js │ │ │ │ └── index.js │ │ │ ├── UserInviteDialog │ │ │ │ ├── UserInviteDialog.jsx │ │ │ │ ├── UserInviteDialog.story.js │ │ │ │ └── index.js │ │ │ ├── UserList │ │ │ │ ├── ActionMenu │ │ │ │ │ ├── ActionMenu.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── UserList.jsx │ │ │ │ ├── UserList.story.js │ │ │ │ ├── UserListCells.jsx │ │ │ │ └── index.js │ │ │ ├── UserResetDialog │ │ │ │ ├── UserResetDialog.jsx │ │ │ │ ├── UserResetDialog.story.js │ │ │ │ └── index.js │ │ │ ├── Users.jsx │ │ │ ├── components │ │ │ │ ├── InviteLink.jsx │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── components │ │ │ ├── ActionMenu │ │ │ │ ├── ActionMenu.jsx │ │ │ │ └── index.js │ │ │ └── InputSearch │ │ │ │ ├── InputSearch.jsx │ │ │ │ └── index.js │ │ └── index.js │ ├── featureFlags.js │ ├── features │ │ ├── featureAccount.js │ │ ├── featureAudit.js │ │ ├── featureCertificate.js │ │ ├── featureDashboard.js │ │ ├── featureK8s.js │ │ ├── featureLogs.js │ │ ├── featureMonitoring.js │ │ ├── featureNodes.js │ │ └── featureUsers.js │ ├── flux │ │ ├── actions.js │ │ ├── apps │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ ├── events │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ ├── index.js │ │ ├── info │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ ├── k8s │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── daemonSetsStore.js │ │ │ ├── deploymentsStore.js │ │ │ ├── index.js │ │ │ └── jobsStore.js │ │ ├── k8sConfigMaps │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ ├── k8sNamespaces │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ ├── k8sPods │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ ├── k8sServices │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ ├── metrics │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ ├── nav │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ ├── nodes │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ ├── operations │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ ├── resourceRecords.js │ │ ├── sessions │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ ├── tlscert │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ └── users │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ ├── index.js │ └── services │ │ ├── events │ │ ├── event.js │ │ └── index.js │ │ ├── info │ │ ├── index.js │ │ ├── info.js │ │ ├── makeInfo.js │ │ ├── makeJoinToken.js │ │ └── makeRemoteStatus.js │ │ ├── k8s │ │ ├── index.js │ │ ├── makeK8sNode.js │ │ └── makeK8sSecret.js │ │ ├── metrics │ │ ├── index.js │ │ ├── makeMetric.js │ │ └── metrics.js │ │ ├── nodes │ │ ├── index.js │ │ └── makeNode.js │ │ └── sessions │ │ └── index.js ├── components │ ├── AjaxPoller │ │ ├── AjaxPoller.jsx │ │ └── index.js │ ├── CardEmpty │ │ ├── CardEmpty.jsx │ │ └── index.js │ ├── CatchError │ │ ├── CatchError.jsx │ │ └── index.js │ ├── CheckBox │ │ ├── CheckBox.jsx │ │ └── index.js │ ├── CmdText │ │ ├── CmdText.jsx │ │ └── index.js │ ├── Hocs │ │ ├── index.js │ │ └── withAuth.jsx │ ├── Invite │ │ ├── Invite.jsx │ │ ├── Invite.story.js │ │ └── index.js │ ├── LogViewer │ │ ├── LogViewer.jsx │ │ ├── Viewer │ │ │ ├── Viewer.jsx │ │ │ └── index.js │ │ └── index.js │ ├── Login │ │ ├── Login.jsx │ │ ├── Login.story.js │ │ ├── LoginFailed.jsx │ │ ├── LoginSuccess.jsx │ │ └── index.js │ ├── LogoHero │ │ ├── LogoHero.jsx │ │ └── index.js │ ├── ResourceEditor │ │ ├── ResourceEditor.jsx │ │ ├── ResourceEditor.story.js │ │ └── index.js │ ├── Router │ │ ├── Router.jsx │ │ └── index.js │ ├── Select │ │ ├── Select.jsx │ │ └── index.js │ ├── TextEditor │ │ ├── StyledTextEditor.jsx │ │ ├── TextEditor.jsx │ │ └── index.js │ ├── nuclear.js │ └── withFeature.jsx ├── config.js ├── console │ ├── components │ │ ├── Player │ │ │ ├── Player.jsx │ │ │ ├── Player.story.js │ │ │ ├── ProgressBar │ │ │ │ ├── ProgressBar.jsx │ │ │ │ ├── ProgressBar.story.js │ │ │ │ ├── Slider │ │ │ │ │ ├── Slider.jsx │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── Xterm │ │ │ │ ├── Xterm.jsx │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── SessionCreator.jsx │ │ ├── StyledXterm │ │ │ ├── StyledXterm.jsx │ │ │ └── index.js │ │ ├── Terminal │ │ │ ├── ActionBar │ │ │ │ ├── ActionBar.jsx │ │ │ │ └── ActionBar.story.js │ │ │ ├── Elements │ │ │ │ ├── CloseButton.jsx │ │ │ │ └── index.js │ │ │ ├── FileTransfer │ │ │ │ ├── DownloadForm │ │ │ │ │ ├── DownloadForm.jsx │ │ │ │ │ ├── downloadForm.test.js │ │ │ │ │ └── index.js │ │ │ │ ├── Elements │ │ │ │ │ ├── Button.jsx │ │ │ │ │ ├── Input.jsx │ │ │ │ │ ├── Label.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── FileList │ │ │ │ │ ├── FileList.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── FileListItem │ │ │ │ │ ├── FileListItem.jsx │ │ │ │ │ ├── index.js │ │ │ │ │ └── withHttpRequest.jsx │ │ │ │ ├── FileTransfer.jsx │ │ │ │ ├── FileTransfer.story.js │ │ │ │ ├── UploadForm │ │ │ │ │ ├── UploadForm.jsx │ │ │ │ │ ├── UploadForm.story.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── uploadForm.test.js │ │ │ │ ├── index.jsx │ │ │ │ └── index.test.js │ │ │ ├── Terminal.jsx │ │ │ ├── Terminal.story.js │ │ │ ├── UserList │ │ │ │ ├── UserLIst.story.js │ │ │ │ ├── UserList.jsx │ │ │ │ └── index.js │ │ │ ├── Xterm │ │ │ │ └── Xterm.jsx │ │ │ └── index.js │ │ ├── colors.js │ │ └── index.js │ ├── flux │ │ ├── index.js │ │ ├── scp │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ │ └── terminal │ │ │ ├── actionTypes.js │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── store.js │ ├── index.js │ └── services │ │ └── fileTransfer.js ├── flux │ ├── cluster │ │ ├── actionTypes.js │ │ ├── actions.js │ │ ├── index.js │ │ └── store.js │ ├── index.js │ ├── opProgress │ │ ├── actionTypes.js │ │ ├── actions.js │ │ ├── getters.js │ │ └── opProgressStore.js │ ├── user │ │ ├── actionTypes.js │ │ ├── actions.js │ │ ├── getters.js │ │ └── userStore.js │ └── userAcl │ │ ├── actionTypes.js │ │ ├── getters.js │ │ ├── index.js │ │ └── store.js ├── index.ejs ├── index.jsx ├── installer │ ├── components │ │ ├── Description │ │ │ ├── Description.jsx │ │ │ └── index.js │ │ ├── Eula │ │ │ ├── Eula.jsx │ │ │ └── index.js │ │ ├── Installer.jsx │ │ ├── Installer.story.js │ │ ├── Layout.jsx │ │ ├── Logo.jsx │ │ ├── Radio │ │ │ ├── Radio.jsx │ │ │ └── index.js │ │ ├── StepCapacity │ │ │ ├── Flavor │ │ │ │ ├── Flavor.jsx │ │ │ │ ├── Profile.jsx │ │ │ │ ├── Server │ │ │ │ │ ├── FieldInterface.jsx │ │ │ │ │ ├── FieldMount.jsx │ │ │ │ │ ├── Server.jsx │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── FlavorSelector │ │ │ │ ├── FlavorSelector.jsx │ │ │ │ ├── Slider.jsx │ │ │ │ └── index.js │ │ │ ├── StepCapacity.jsx │ │ │ └── index.js │ │ ├── StepLicense │ │ │ ├── StepLicense.jsx │ │ │ └── index.js │ │ ├── StepList │ │ │ ├── StepList.jsx │ │ │ └── index.js │ │ ├── StepProgress │ │ │ ├── Completed.jsx │ │ │ ├── Failed.jsx │ │ │ ├── InstallLogsProvider │ │ │ │ ├── InstallLogsProvider.jsx │ │ │ │ └── index.js │ │ │ ├── ProgressBar.jsx │ │ │ ├── ProgressDescription.jsx │ │ │ ├── StepProgress.jsx │ │ │ ├── StepProgress.story.js │ │ │ ├── TogglePanel.jsx │ │ │ └── index.js │ │ ├── StepProvider │ │ │ ├── AdvancedOptions │ │ │ │ ├── AdvancedOptions.jsx │ │ │ │ ├── ClusterTags │ │ │ │ │ ├── ClusterTags.jsx │ │ │ │ │ ├── Tag.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── Subnets │ │ │ │ │ ├── Subnets.jsx │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── StepProvider.jsx │ │ │ └── index.js │ │ ├── fixtures │ │ │ ├── app.json │ │ │ ├── cluster.json │ │ │ ├── eula.js │ │ │ ├── flavors.json │ │ │ ├── index.js │ │ │ └── operations.json │ │ ├── index.js │ │ └── store.js │ ├── index.js │ └── services │ │ ├── index.js │ │ ├── installer.js │ │ ├── makeAgentServer.js │ │ └── makeFlavors.js ├── lib │ ├── dateUtils.js │ ├── featureBase.js │ ├── htmlUtils.js │ ├── humanize.js │ ├── paramUtils.js │ ├── stores │ │ ├── index.js │ │ ├── logger.js │ │ ├── store.js │ │ └── useStore.js │ └── term │ │ ├── enums.js │ │ ├── fixtures │ │ └── streamData.js │ │ ├── protobuf.js │ │ ├── terminal.js │ │ ├── tty.js │ │ ├── ttyAddressResolver.js │ │ └── ttyPlayer.js ├── reactor.js └── services │ ├── api.js │ ├── applications │ ├── applications.js │ ├── index.js │ ├── makeApplication.js │ └── makeNodeProfile.js │ ├── auth │ ├── auth.js │ ├── index.js │ └── makeUserToken.js │ ├── browser.js │ ├── clusters │ ├── applyConfig.js │ ├── clusters.js │ ├── index.js │ ├── makeCluster.js │ └── makeLicense.js │ ├── downloader.js │ ├── enums.js │ ├── history.js │ ├── localStorage.js │ ├── operations │ ├── index.js │ ├── makeOperation.js │ ├── makeProgress.js │ └── operations.js │ ├── releases │ ├── index.js │ ├── makeRelease.js │ └── releases.js │ ├── resources.js │ └── session.js └── webpack ├── webpack.base.js ├── webpack.dev.config.js ├── webpack.prod.config.js └── webpack.test.config.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/.dockerignore -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/.drone.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/.gitmodules -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.buildx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/Makefile.buildx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/certs/.gitignore: -------------------------------------------------------------------------------- 1 | ca.srl 2 | -------------------------------------------------------------------------------- /assets/certs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/Makefile -------------------------------------------------------------------------------- /assets/certs/ca.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/ca.config -------------------------------------------------------------------------------- /assets/certs/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/ca.crt -------------------------------------------------------------------------------- /assets/certs/ca.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/ca.csr -------------------------------------------------------------------------------- /assets/certs/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/ca.key -------------------------------------------------------------------------------- /assets/certs/crt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/crt.config -------------------------------------------------------------------------------- /assets/certs/etcd1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/etcd1.crt -------------------------------------------------------------------------------- /assets/certs/etcd1.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/etcd1.csr -------------------------------------------------------------------------------- /assets/certs/etcd1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/etcd1.key -------------------------------------------------------------------------------- /assets/certs/etcd2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/etcd2.crt -------------------------------------------------------------------------------- /assets/certs/etcd2.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/etcd2.csr -------------------------------------------------------------------------------- /assets/certs/etcd2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/etcd2.key -------------------------------------------------------------------------------- /assets/certs/etcd3.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/etcd3.crt -------------------------------------------------------------------------------- /assets/certs/etcd3.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/etcd3.csr -------------------------------------------------------------------------------- /assets/certs/etcd3.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/etcd3.key -------------------------------------------------------------------------------- /assets/certs/proxy1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/proxy1.crt -------------------------------------------------------------------------------- /assets/certs/proxy1.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/proxy1.csr -------------------------------------------------------------------------------- /assets/certs/proxy1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/certs/proxy1.key -------------------------------------------------------------------------------- /assets/dns-app/.gitignore: -------------------------------------------------------------------------------- 1 | registry 2 | -------------------------------------------------------------------------------- /assets/dns-app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/dns-app/Makefile -------------------------------------------------------------------------------- /assets/docs/debug-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/docs/debug-pod.yaml -------------------------------------------------------------------------------- /assets/fio/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/fio/Dockerfile -------------------------------------------------------------------------------- /assets/onprem/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/onprem/Vagrantfile -------------------------------------------------------------------------------- /assets/rbac-app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/rbac-app/Makefile -------------------------------------------------------------------------------- /assets/rbac-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/rbac-app/README.md -------------------------------------------------------------------------------- /assets/rhel/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/rhel/Vagrantfile -------------------------------------------------------------------------------- /assets/robotest/.gitignore: -------------------------------------------------------------------------------- 1 | .gcp-credentials.json 2 | -------------------------------------------------------------------------------- /assets/robotest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/robotest/Dockerfile -------------------------------------------------------------------------------- /assets/robotest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/robotest/Makefile -------------------------------------------------------------------------------- /assets/robotest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/robotest/README.md -------------------------------------------------------------------------------- /assets/robotest/config/pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/robotest/config/pr.sh -------------------------------------------------------------------------------- /assets/robotest/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/robotest/run.sh -------------------------------------------------------------------------------- /assets/site-app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/site-app/Makefile -------------------------------------------------------------------------------- /assets/site-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/site-app/README.md -------------------------------------------------------------------------------- /assets/site-app/images/hook/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /assets/site/fixtures/README.md: -------------------------------------------------------------------------------- 1 | Files in this directory are used by tests. 2 | -------------------------------------------------------------------------------- /assets/site/fixtures/glob/one.json: -------------------------------------------------------------------------------- 1 | { "one": 1 } 2 | -------------------------------------------------------------------------------- /assets/site/fixtures/glob/one.yaml: -------------------------------------------------------------------------------- 1 | one: 1 2 | -------------------------------------------------------------------------------- /assets/site/fixtures/glob/subdir/two.yaml: -------------------------------------------------------------------------------- 1 | two: 2 2 | -------------------------------------------------------------------------------- /assets/test-app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/test-app/Makefile -------------------------------------------------------------------------------- /assets/test-app/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/test-app/banner.png -------------------------------------------------------------------------------- /assets/tiller-app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/assets/tiller-app/Makefile -------------------------------------------------------------------------------- /docs/4.x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x.yaml -------------------------------------------------------------------------------- /docs/4.x/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/changelog.md -------------------------------------------------------------------------------- /docs/4.x/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/cli.md -------------------------------------------------------------------------------- /docs/4.x/cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/cluster.md -------------------------------------------------------------------------------- /docs/4.x/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/faq.md -------------------------------------------------------------------------------- /docs/4.x/guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/guides.md -------------------------------------------------------------------------------- /docs/4.x/images/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/images/build.svg -------------------------------------------------------------------------------- /docs/4.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/index.md -------------------------------------------------------------------------------- /docs/4.x/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/installation.md -------------------------------------------------------------------------------- /docs/4.x/manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/manage.md -------------------------------------------------------------------------------- /docs/4.x/milv.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/milv.config.yaml -------------------------------------------------------------------------------- /docs/4.x/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/monitoring.md -------------------------------------------------------------------------------- /docs/4.x/opscenter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/opscenter.md -------------------------------------------------------------------------------- /docs/4.x/pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/pack.md -------------------------------------------------------------------------------- /docs/4.x/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/quickstart.md -------------------------------------------------------------------------------- /docs/4.x/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/4.x/requirements.md -------------------------------------------------------------------------------- /docs/5.x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x.yaml -------------------------------------------------------------------------------- /docs/5.x/catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/catalog.md -------------------------------------------------------------------------------- /docs/5.x/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/changelog.md -------------------------------------------------------------------------------- /docs/5.x/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/cli.md -------------------------------------------------------------------------------- /docs/5.x/cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/cluster.md -------------------------------------------------------------------------------- /docs/5.x/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/faq.md -------------------------------------------------------------------------------- /docs/5.x/guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/guides.md -------------------------------------------------------------------------------- /docs/5.x/images/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/images/build.svg -------------------------------------------------------------------------------- /docs/5.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/index.md -------------------------------------------------------------------------------- /docs/5.x/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/installation.md -------------------------------------------------------------------------------- /docs/5.x/manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/manage.md -------------------------------------------------------------------------------- /docs/5.x/milv.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/milv.config.yaml -------------------------------------------------------------------------------- /docs/5.x/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/monitoring.md -------------------------------------------------------------------------------- /docs/5.x/opscenter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/opscenter.md -------------------------------------------------------------------------------- /docs/5.x/pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/pack.md -------------------------------------------------------------------------------- /docs/5.x/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/quickstart.md -------------------------------------------------------------------------------- /docs/5.x/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/requirements.md -------------------------------------------------------------------------------- /docs/5.x/terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/5.x/terraform.md -------------------------------------------------------------------------------- /docs/6.x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x.yaml -------------------------------------------------------------------------------- /docs/6.x/access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/access.md -------------------------------------------------------------------------------- /docs/6.x/catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/catalog.md -------------------------------------------------------------------------------- /docs/6.x/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/changelog.md -------------------------------------------------------------------------------- /docs/6.x/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/cli.md -------------------------------------------------------------------------------- /docs/6.x/cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/cluster.md -------------------------------------------------------------------------------- /docs/6.x/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/config.md -------------------------------------------------------------------------------- /docs/6.x/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/faq.md -------------------------------------------------------------------------------- /docs/6.x/guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/guides.md -------------------------------------------------------------------------------- /docs/6.x/hub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/hub.md -------------------------------------------------------------------------------- /docs/6.x/images/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/images/build.svg -------------------------------------------------------------------------------- /docs/6.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/index.md -------------------------------------------------------------------------------- /docs/6.x/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/installation.md -------------------------------------------------------------------------------- /docs/6.x/milv.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/milv.config.yaml -------------------------------------------------------------------------------- /docs/6.x/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/monitoring.md -------------------------------------------------------------------------------- /docs/6.x/pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/pack.md -------------------------------------------------------------------------------- /docs/6.x/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/quickstart.md -------------------------------------------------------------------------------- /docs/6.x/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/requirements.md -------------------------------------------------------------------------------- /docs/6.x/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/storage.md -------------------------------------------------------------------------------- /docs/6.x/terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/6.x/terraform.md -------------------------------------------------------------------------------- /docs/7.x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x.yaml -------------------------------------------------------------------------------- /docs/7.x/access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/access.md -------------------------------------------------------------------------------- /docs/7.x/catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/catalog.md -------------------------------------------------------------------------------- /docs/7.x/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/changelog.md -------------------------------------------------------------------------------- /docs/7.x/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/cli.md -------------------------------------------------------------------------------- /docs/7.x/cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/cluster.md -------------------------------------------------------------------------------- /docs/7.x/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/config.md -------------------------------------------------------------------------------- /docs/7.x/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/faq.md -------------------------------------------------------------------------------- /docs/7.x/guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/guides.md -------------------------------------------------------------------------------- /docs/7.x/hub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/hub.md -------------------------------------------------------------------------------- /docs/7.x/images/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/images/build.svg -------------------------------------------------------------------------------- /docs/7.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/index.md -------------------------------------------------------------------------------- /docs/7.x/ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/ingress.md -------------------------------------------------------------------------------- /docs/7.x/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/installation.md -------------------------------------------------------------------------------- /docs/7.x/milv.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/milv.config.yaml -------------------------------------------------------------------------------- /docs/7.x/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/monitoring.md -------------------------------------------------------------------------------- /docs/7.x/pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/pack.md -------------------------------------------------------------------------------- /docs/7.x/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/quickstart.md -------------------------------------------------------------------------------- /docs/7.x/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/requirements.md -------------------------------------------------------------------------------- /docs/7.x/selinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/selinux.md -------------------------------------------------------------------------------- /docs/7.x/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/7.x/storage.md -------------------------------------------------------------------------------- /docs/8.x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x.yaml -------------------------------------------------------------------------------- /docs/8.x/access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/access.md -------------------------------------------------------------------------------- /docs/8.x/catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/catalog.md -------------------------------------------------------------------------------- /docs/8.x/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/changelog.md -------------------------------------------------------------------------------- /docs/8.x/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/cli.md -------------------------------------------------------------------------------- /docs/8.x/cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/cluster.md -------------------------------------------------------------------------------- /docs/8.x/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/config.md -------------------------------------------------------------------------------- /docs/8.x/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/faq.md -------------------------------------------------------------------------------- /docs/8.x/guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/guides.md -------------------------------------------------------------------------------- /docs/8.x/hub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/hub.md -------------------------------------------------------------------------------- /docs/8.x/images/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/images/build.svg -------------------------------------------------------------------------------- /docs/8.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/index.md -------------------------------------------------------------------------------- /docs/8.x/ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/ingress.md -------------------------------------------------------------------------------- /docs/8.x/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/installation.md -------------------------------------------------------------------------------- /docs/8.x/milv.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/milv.config.yaml -------------------------------------------------------------------------------- /docs/8.x/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/monitoring.md -------------------------------------------------------------------------------- /docs/8.x/pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/pack.md -------------------------------------------------------------------------------- /docs/8.x/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/quickstart.md -------------------------------------------------------------------------------- /docs/8.x/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/requirements.md -------------------------------------------------------------------------------- /docs/8.x/selinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/selinux.md -------------------------------------------------------------------------------- /docs/8.x/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/8.x/storage.md -------------------------------------------------------------------------------- /docs/9.x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x.yaml -------------------------------------------------------------------------------- /docs/9.x/access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/access.md -------------------------------------------------------------------------------- /docs/9.x/catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/catalog.md -------------------------------------------------------------------------------- /docs/9.x/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/changelog.md -------------------------------------------------------------------------------- /docs/9.x/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/cli.md -------------------------------------------------------------------------------- /docs/9.x/cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/cluster.md -------------------------------------------------------------------------------- /docs/9.x/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/config.md -------------------------------------------------------------------------------- /docs/9.x/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/faq.md -------------------------------------------------------------------------------- /docs/9.x/guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/guides.md -------------------------------------------------------------------------------- /docs/9.x/hub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/hub.md -------------------------------------------------------------------------------- /docs/9.x/images/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/images/build.svg -------------------------------------------------------------------------------- /docs/9.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/index.md -------------------------------------------------------------------------------- /docs/9.x/ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/ingress.md -------------------------------------------------------------------------------- /docs/9.x/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/installation.md -------------------------------------------------------------------------------- /docs/9.x/milv.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/milv.config.yaml -------------------------------------------------------------------------------- /docs/9.x/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/monitoring.md -------------------------------------------------------------------------------- /docs/9.x/pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/pack.md -------------------------------------------------------------------------------- /docs/9.x/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/quickstart.md -------------------------------------------------------------------------------- /docs/9.x/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/requirements.md -------------------------------------------------------------------------------- /docs/9.x/selinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/selinux.md -------------------------------------------------------------------------------- /docs/9.x/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/9.x/storage.md -------------------------------------------------------------------------------- /docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/Dockerfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/testplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/testplan.md -------------------------------------------------------------------------------- /docs/theme/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/theme/cta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/cta.html -------------------------------------------------------------------------------- /docs/theme/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/footer.html -------------------------------------------------------------------------------- /docs/theme/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/head.html -------------------------------------------------------------------------------- /docs/theme/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/images/github.svg -------------------------------------------------------------------------------- /docs/theme/img/bridge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/img/bridge.svg -------------------------------------------------------------------------------- /docs/theme/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/img/favicon.ico -------------------------------------------------------------------------------- /docs/theme/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/img/logo.svg -------------------------------------------------------------------------------- /docs/theme/jumpnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/jumpnav.html -------------------------------------------------------------------------------- /docs/theme/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/main.html -------------------------------------------------------------------------------- /docs/theme/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/pagination.html -------------------------------------------------------------------------------- /docs/theme/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/scripts.html -------------------------------------------------------------------------------- /docs/theme/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/search.html -------------------------------------------------------------------------------- /docs/theme/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/searchbox.html -------------------------------------------------------------------------------- /docs/theme/src/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/src/default.css -------------------------------------------------------------------------------- /docs/theme/src/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/src/docs.css -------------------------------------------------------------------------------- /docs/theme/src/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/src/docs.js -------------------------------------------------------------------------------- /docs/theme/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/src/main.js -------------------------------------------------------------------------------- /docs/theme/src/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/src/prettify.js -------------------------------------------------------------------------------- /docs/theme/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/toc.html -------------------------------------------------------------------------------- /docs/theme/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/topnav.html -------------------------------------------------------------------------------- /docs/theme/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/docs/theme/versions.html -------------------------------------------------------------------------------- /e/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/.gitattributes -------------------------------------------------------------------------------- /e/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/Makefile -------------------------------------------------------------------------------- /e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/README.md -------------------------------------------------------------------------------- /e/assets/robotest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/assets/robotest/Makefile -------------------------------------------------------------------------------- /e/assets/robotest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/assets/robotest/README.md -------------------------------------------------------------------------------- /e/lib/builder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/builder/builder.go -------------------------------------------------------------------------------- /e/lib/catalog/lister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/catalog/lister.go -------------------------------------------------------------------------------- /e/lib/catalog/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/catalog/remote.go -------------------------------------------------------------------------------- /e/lib/constants/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/constants/constants.go -------------------------------------------------------------------------------- /e/lib/defaults/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/defaults/defaults.go -------------------------------------------------------------------------------- /e/lib/environment/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/environment/local.go -------------------------------------------------------------------------------- /e/lib/environment/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/environment/remote.go -------------------------------------------------------------------------------- /e/lib/events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/events/events.go -------------------------------------------------------------------------------- /e/lib/install/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/install/bootstrap.go -------------------------------------------------------------------------------- /e/lib/install/fsmspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/install/fsmspec.go -------------------------------------------------------------------------------- /e/lib/install/installer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/install/installer.go -------------------------------------------------------------------------------- /e/lib/install/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/install/plan.go -------------------------------------------------------------------------------- /e/lib/install/plan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/install/plan_test.go -------------------------------------------------------------------------------- /e/lib/install/planbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/install/planbuilder.go -------------------------------------------------------------------------------- /e/lib/install/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/install/process.go -------------------------------------------------------------------------------- /e/lib/install/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/install/register.go -------------------------------------------------------------------------------- /e/lib/modules/modules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/modules/modules.go -------------------------------------------------------------------------------- /e/lib/ops/acl/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/acl/operator.go -------------------------------------------------------------------------------- /e/lib/ops/client/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/client/operator.go -------------------------------------------------------------------------------- /e/lib/ops/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/config.go -------------------------------------------------------------------------------- /e/lib/ops/handler/oidc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/handler/oidc.go -------------------------------------------------------------------------------- /e/lib/ops/handler/roles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/handler/roles.go -------------------------------------------------------------------------------- /e/lib/ops/handler/saml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/handler/saml.go -------------------------------------------------------------------------------- /e/lib/ops/handler/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/handler/utils.go -------------------------------------------------------------------------------- /e/lib/ops/ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/ops.go -------------------------------------------------------------------------------- /e/lib/ops/router/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/router/operator.go -------------------------------------------------------------------------------- /e/lib/ops/service/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/service/license.go -------------------------------------------------------------------------------- /e/lib/ops/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/services.go -------------------------------------------------------------------------------- /e/lib/ops/services_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/services_test.go -------------------------------------------------------------------------------- /e/lib/ops/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/ops/utils.go -------------------------------------------------------------------------------- /e/lib/process/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/process/migrate.go -------------------------------------------------------------------------------- /e/lib/process/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/process/mux.go -------------------------------------------------------------------------------- /e/lib/process/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/process/process.go -------------------------------------------------------------------------------- /e/lib/process/sni.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/process/sni.go -------------------------------------------------------------------------------- /e/lib/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/status/status.go -------------------------------------------------------------------------------- /e/lib/webapi/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/webapi/access.go -------------------------------------------------------------------------------- /e/lib/webapi/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/webapi/auth.go -------------------------------------------------------------------------------- /e/lib/webapi/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/webapi/auth_test.go -------------------------------------------------------------------------------- /e/lib/webapi/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/webapi/license.go -------------------------------------------------------------------------------- /e/lib/webapi/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/webapi/oauth2.go -------------------------------------------------------------------------------- /e/lib/webapi/webapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/lib/webapi/webapi.go -------------------------------------------------------------------------------- /e/tool/gravity/cli/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/gravity/cli/access.go -------------------------------------------------------------------------------- /e/tool/gravity/cli/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/gravity/cli/config.go -------------------------------------------------------------------------------- /e/tool/gravity/cli/ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/gravity/cli/ops.go -------------------------------------------------------------------------------- /e/tool/gravity/cli/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/gravity/cli/run.go -------------------------------------------------------------------------------- /e/tool/gravity/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/gravity/main.go -------------------------------------------------------------------------------- /e/tool/tele/cli/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/tele/cli/build.go -------------------------------------------------------------------------------- /e/tool/tele/cli/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/tele/cli/commands.go -------------------------------------------------------------------------------- /e/tool/tele/cli/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/tele/cli/helm.go -------------------------------------------------------------------------------- /e/tool/tele/cli/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/tele/cli/login.go -------------------------------------------------------------------------------- /e/tool/tele/cli/ls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/tele/cli/ls.go -------------------------------------------------------------------------------- /e/tool/tele/cli/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/tele/cli/pull.go -------------------------------------------------------------------------------- /e/tool/tele/cli/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/tele/cli/push.go -------------------------------------------------------------------------------- /e/tool/tele/cli/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/tele/cli/register.go -------------------------------------------------------------------------------- /e/tool/tele/cli/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/tele/cli/resources.go -------------------------------------------------------------------------------- /e/tool/tele/cli/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/tele/cli/run.go -------------------------------------------------------------------------------- /e/tool/tele/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/tool/tele/main.go -------------------------------------------------------------------------------- /e/web/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | */**/.git 4 | -------------------------------------------------------------------------------- /e/web/.eslintignore: -------------------------------------------------------------------------------- 1 | #oss-src -------------------------------------------------------------------------------- /e/web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/.eslintrc.js -------------------------------------------------------------------------------- /e/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/.gitignore -------------------------------------------------------------------------------- /e/web/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/.prettierrc -------------------------------------------------------------------------------- /e/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/Dockerfile -------------------------------------------------------------------------------- /e/web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/Makefile -------------------------------------------------------------------------------- /e/web/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/babel.config.js -------------------------------------------------------------------------------- /e/web/devServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/devServer.js -------------------------------------------------------------------------------- /e/web/devServerUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/devServerUtils.js -------------------------------------------------------------------------------- /e/web/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/jsconfig.json -------------------------------------------------------------------------------- /e/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/package-lock.json -------------------------------------------------------------------------------- /e/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/package.json -------------------------------------------------------------------------------- /e/web/src/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/src/boot.js -------------------------------------------------------------------------------- /e/web/src/cluster/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/src/cluster/index.js -------------------------------------------------------------------------------- /e/web/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/src/config.js -------------------------------------------------------------------------------- /e/web/src/hub/Hub.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/src/hub/Hub.jsx -------------------------------------------------------------------------------- /e/web/src/hub/Hub.story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/src/hub/Hub.story.js -------------------------------------------------------------------------------- /e/web/src/hub/flux/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/src/hub/flux/index.js -------------------------------------------------------------------------------- /e/web/src/hub/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/src/hub/index.js -------------------------------------------------------------------------------- /e/web/src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/src/index.ejs -------------------------------------------------------------------------------- /e/web/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/e/web/src/index.jsx -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/wordpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/examples/wordpress/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/buildkitd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/hack/buildkitd -------------------------------------------------------------------------------- /hack/buildkitd.config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/hack/buildkitd.config.toml -------------------------------------------------------------------------------- /hack/mage: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | set -eu 3 | 4 | exec go run mage.go -w . "$@" 5 | -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /hack/verify-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/hack/verify-codegen.sh -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/apis/cluster/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/apis/cluster/register.go -------------------------------------------------------------------------------- /lib/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/README.md -------------------------------------------------------------------------------- /lib/app/acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/acl.go -------------------------------------------------------------------------------- /lib/app/api/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/api/export.go -------------------------------------------------------------------------------- /lib/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/app.go -------------------------------------------------------------------------------- /lib/app/apps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/apps.go -------------------------------------------------------------------------------- /lib/app/apps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/apps_test.go -------------------------------------------------------------------------------- /lib/app/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/client/client.go -------------------------------------------------------------------------------- /lib/app/dependency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/dependency.go -------------------------------------------------------------------------------- /lib/app/handler/charts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/handler/charts.go -------------------------------------------------------------------------------- /lib/app/handler/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/handler/handler.go -------------------------------------------------------------------------------- /lib/app/hooks/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/hooks/configure.go -------------------------------------------------------------------------------- /lib/app/hooks/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/hooks/constants.go -------------------------------------------------------------------------------- /lib/app/hooks/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/hooks/diff.go -------------------------------------------------------------------------------- /lib/app/hooks/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/hooks/hooks.go -------------------------------------------------------------------------------- /lib/app/hooks/hooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/hooks/hooks_test.go -------------------------------------------------------------------------------- /lib/app/phony.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/phony.go -------------------------------------------------------------------------------- /lib/app/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/progress.go -------------------------------------------------------------------------------- /lib/app/resources/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/resources/decode.go -------------------------------------------------------------------------------- /lib/app/resources/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/resources/doc.go -------------------------------------------------------------------------------- /lib/app/resources/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/resources/utils.go -------------------------------------------------------------------------------- /lib/app/service/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/service/app.go -------------------------------------------------------------------------------- /lib/app/service/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/service/docker.go -------------------------------------------------------------------------------- /lib/app/service/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/service/import.go -------------------------------------------------------------------------------- /lib/app/service/installer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/service/installer.go -------------------------------------------------------------------------------- /lib/app/service/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/service/manifest.go -------------------------------------------------------------------------------- /lib/app/service/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/service/merge.go -------------------------------------------------------------------------------- /lib/app/service/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/service/pull.go -------------------------------------------------------------------------------- /lib/app/service/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/service/pull_test.go -------------------------------------------------------------------------------- /lib/app/service/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/service/sync.go -------------------------------------------------------------------------------- /lib/app/service/vendor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/service/vendor.go -------------------------------------------------------------------------------- /lib/app/suite/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/app/suite/suite.go -------------------------------------------------------------------------------- /lib/archive/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/archive/archive.go -------------------------------------------------------------------------------- /lib/archive/archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/archive/archive_test.go -------------------------------------------------------------------------------- /lib/archive/fileutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/archive/fileutils.go -------------------------------------------------------------------------------- /lib/archive/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/archive/test_utils.go -------------------------------------------------------------------------------- /lib/autoscale/aws/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/autoscale/aws/doc.go -------------------------------------------------------------------------------- /lib/autoscale/aws/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/autoscale/aws/events.go -------------------------------------------------------------------------------- /lib/blob/acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/blob/acl.go -------------------------------------------------------------------------------- /lib/blob/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/blob/blob.go -------------------------------------------------------------------------------- /lib/blob/cluster/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/blob/cluster/cluster.go -------------------------------------------------------------------------------- /lib/blob/fs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/blob/fs/fs.go -------------------------------------------------------------------------------- /lib/blob/fs/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/blob/fs/fs_test.go -------------------------------------------------------------------------------- /lib/blob/suite/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/blob/suite/suite.go -------------------------------------------------------------------------------- /lib/builder/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/builder/application.go -------------------------------------------------------------------------------- /lib/builder/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/builder/cluster.go -------------------------------------------------------------------------------- /lib/builder/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/builder/engine.go -------------------------------------------------------------------------------- /lib/builder/engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/builder/engine_test.go -------------------------------------------------------------------------------- /lib/builder/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/builder/generator.go -------------------------------------------------------------------------------- /lib/builder/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/builder/manifest.go -------------------------------------------------------------------------------- /lib/builder/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/builder/source.go -------------------------------------------------------------------------------- /lib/builder/syncer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/builder/syncer.go -------------------------------------------------------------------------------- /lib/builder/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/builder/util.go -------------------------------------------------------------------------------- /lib/catalog/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/catalog/api.go -------------------------------------------------------------------------------- /lib/catalog/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/catalog/catalog.go -------------------------------------------------------------------------------- /lib/catalog/catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/catalog/catalog_test.go -------------------------------------------------------------------------------- /lib/catalog/lister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/catalog/lister.go -------------------------------------------------------------------------------- /lib/catalog/lister_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/catalog/lister_test.go -------------------------------------------------------------------------------- /lib/catalog/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/catalog/local.go -------------------------------------------------------------------------------- /lib/catalog/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/catalog/remote.go -------------------------------------------------------------------------------- /lib/checks/autofix/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/checks/autofix/utils.go -------------------------------------------------------------------------------- /lib/checks/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/checks/checks.go -------------------------------------------------------------------------------- /lib/checks/checks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/checks/checks_test.go -------------------------------------------------------------------------------- /lib/checks/disks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/checks/disks.go -------------------------------------------------------------------------------- /lib/checks/pingpong.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/checks/pingpong.go -------------------------------------------------------------------------------- /lib/checks/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/checks/remote.go -------------------------------------------------------------------------------- /lib/checks/requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/checks/requirements.go -------------------------------------------------------------------------------- /lib/checks/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/checks/server.go -------------------------------------------------------------------------------- /lib/clients/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/clients/clients.go -------------------------------------------------------------------------------- /lib/clients/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/clients/etcd.go -------------------------------------------------------------------------------- /lib/clients/teleport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/clients/teleport.go -------------------------------------------------------------------------------- /lib/cloudprovider/aws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/cloudprovider/aws/aws.go -------------------------------------------------------------------------------- /lib/compare/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/compare/compare.go -------------------------------------------------------------------------------- /lib/constants/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/constants/constants.go -------------------------------------------------------------------------------- /lib/defaults/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/defaults/defaults.go -------------------------------------------------------------------------------- /lib/defaults/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/defaults/labels.go -------------------------------------------------------------------------------- /lib/docker/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/api.go -------------------------------------------------------------------------------- /lib/docker/cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/cleaner.go -------------------------------------------------------------------------------- /lib/docker/cleaner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/cleaner_test.go -------------------------------------------------------------------------------- /lib/docker/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/client.go -------------------------------------------------------------------------------- /lib/docker/distribution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/distribution.go -------------------------------------------------------------------------------- /lib/docker/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/doc.go -------------------------------------------------------------------------------- /lib/docker/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/docker.go -------------------------------------------------------------------------------- /lib/docker/http/acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/http/acl.go -------------------------------------------------------------------------------- /lib/docker/http/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/http/registry.go -------------------------------------------------------------------------------- /lib/docker/imageservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/imageservice.go -------------------------------------------------------------------------------- /lib/docker/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/reference.go -------------------------------------------------------------------------------- /lib/docker/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/runtime.go -------------------------------------------------------------------------------- /lib/docker/synchronizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/synchronizer.go -------------------------------------------------------------------------------- /lib/docker/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/tag.go -------------------------------------------------------------------------------- /lib/docker/tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/tag_test.go -------------------------------------------------------------------------------- /lib/docker/testhelpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/docker/testhelpers.go -------------------------------------------------------------------------------- /lib/expand/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/expand/bootstrap.go -------------------------------------------------------------------------------- /lib/expand/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/expand/builder.go -------------------------------------------------------------------------------- /lib/expand/fsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/expand/fsm.go -------------------------------------------------------------------------------- /lib/expand/fsmspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/expand/fsmspec.go -------------------------------------------------------------------------------- /lib/expand/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/expand/join.go -------------------------------------------------------------------------------- /lib/expand/phases/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/expand/phases/agent.go -------------------------------------------------------------------------------- /lib/expand/phases/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/expand/phases/checks.go -------------------------------------------------------------------------------- /lib/expand/phases/elect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/expand/phases/elect.go -------------------------------------------------------------------------------- /lib/expand/phases/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/expand/phases/etcd.go -------------------------------------------------------------------------------- /lib/expand/phases/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/expand/phases/wait.go -------------------------------------------------------------------------------- /lib/expand/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/expand/plan.go -------------------------------------------------------------------------------- /lib/expand/plan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/expand/plan_test.go -------------------------------------------------------------------------------- /lib/fsm/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/fsm/executor.go -------------------------------------------------------------------------------- /lib/fsm/follow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/fsm/follow.go -------------------------------------------------------------------------------- /lib/fsm/follow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/fsm/follow_test.go -------------------------------------------------------------------------------- /lib/fsm/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/fsm/format.go -------------------------------------------------------------------------------- /lib/fsm/fsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/fsm/fsm.go -------------------------------------------------------------------------------- /lib/fsm/fsm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/fsm/fsm_test.go -------------------------------------------------------------------------------- /lib/fsm/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/fsm/kubernetes.go -------------------------------------------------------------------------------- /lib/fsm/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/fsm/logger.go -------------------------------------------------------------------------------- /lib/fsm/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/fsm/rpc.go -------------------------------------------------------------------------------- /lib/fsm/testhelpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/fsm/testhelpers.go -------------------------------------------------------------------------------- /lib/fsm/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/fsm/utils.go -------------------------------------------------------------------------------- /lib/fsm/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/fsm/utils_test.go -------------------------------------------------------------------------------- /lib/helm/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/helm/action.go -------------------------------------------------------------------------------- /lib/helm/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/helm/index.go -------------------------------------------------------------------------------- /lib/helm/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/helm/index_test.go -------------------------------------------------------------------------------- /lib/helm/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/helm/repo.go -------------------------------------------------------------------------------- /lib/httplib/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/httplib/client.go -------------------------------------------------------------------------------- /lib/httplib/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/httplib/env.go -------------------------------------------------------------------------------- /lib/httplib/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/httplib/http.go -------------------------------------------------------------------------------- /lib/httplib/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/httplib/http_test.go -------------------------------------------------------------------------------- /lib/httplib/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/httplib/websocket.go -------------------------------------------------------------------------------- /lib/hub/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/hub/hub.go -------------------------------------------------------------------------------- /lib/hub/hub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/hub/hub_test.go -------------------------------------------------------------------------------- /lib/install/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/agent.go -------------------------------------------------------------------------------- /lib/install/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/client/client.go -------------------------------------------------------------------------------- /lib/install/client/resume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/client/resume.go -------------------------------------------------------------------------------- /lib/install/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/config.go -------------------------------------------------------------------------------- /lib/install/engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/engine/engine.go -------------------------------------------------------------------------------- /lib/install/fsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/fsm.go -------------------------------------------------------------------------------- /lib/install/fsmspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/fsmspec.go -------------------------------------------------------------------------------- /lib/install/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/install.go -------------------------------------------------------------------------------- /lib/install/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/operation.go -------------------------------------------------------------------------------- /lib/install/phases/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/phases/app.go -------------------------------------------------------------------------------- /lib/install/phases/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/phases/checks.go -------------------------------------------------------------------------------- /lib/install/phases/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/phases/export.go -------------------------------------------------------------------------------- /lib/install/phases/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/phases/init.go -------------------------------------------------------------------------------- /lib/install/phases/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/phases/pull.go -------------------------------------------------------------------------------- /lib/install/phases/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/phases/system.go -------------------------------------------------------------------------------- /lib/install/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/plan.go -------------------------------------------------------------------------------- /lib/install/plan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/plan_test.go -------------------------------------------------------------------------------- /lib/install/planbuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/planbuilder.go -------------------------------------------------------------------------------- /lib/install/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/process.go -------------------------------------------------------------------------------- /lib/install/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/proto/Makefile -------------------------------------------------------------------------------- /lib/install/proto/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/proto/client.go -------------------------------------------------------------------------------- /lib/install/proto/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/proto/proto.go -------------------------------------------------------------------------------- /lib/install/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/server/server.go -------------------------------------------------------------------------------- /lib/install/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/suite.go -------------------------------------------------------------------------------- /lib/install/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/install/utils.go -------------------------------------------------------------------------------- /lib/kubernetes/drain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/kubernetes/drain.go -------------------------------------------------------------------------------- /lib/kubernetes/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/kubernetes/errors.go -------------------------------------------------------------------------------- /lib/kubernetes/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/kubernetes/format.go -------------------------------------------------------------------------------- /lib/kubernetes/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/kubernetes/nodes.go -------------------------------------------------------------------------------- /lib/kubernetes/pods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/kubernetes/pods.go -------------------------------------------------------------------------------- /lib/loc/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/loc/cli.go -------------------------------------------------------------------------------- /lib/loc/compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/loc/compat.go -------------------------------------------------------------------------------- /lib/loc/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/loc/docker.go -------------------------------------------------------------------------------- /lib/loc/loc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/loc/loc.go -------------------------------------------------------------------------------- /lib/loc/loc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/loc/loc_test.go -------------------------------------------------------------------------------- /lib/loc/make.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/loc/make.go -------------------------------------------------------------------------------- /lib/localenv/clusterenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/localenv/clusterenv.go -------------------------------------------------------------------------------- /lib/localenv/detect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/localenv/detect.go -------------------------------------------------------------------------------- /lib/localenv/imageenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/localenv/imageenv.go -------------------------------------------------------------------------------- /lib/localenv/localenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/localenv/localenv.go -------------------------------------------------------------------------------- /lib/localenv/remoteenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/localenv/remoteenv.go -------------------------------------------------------------------------------- /lib/localenv/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/localenv/state.go -------------------------------------------------------------------------------- /lib/localenv/tarballenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/localenv/tarballenv.go -------------------------------------------------------------------------------- /lib/localenv/teleport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/localenv/teleport.go -------------------------------------------------------------------------------- /lib/localenv/wizard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/localenv/wizard.go -------------------------------------------------------------------------------- /lib/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/log/log.go -------------------------------------------------------------------------------- /lib/modules/modules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/modules/modules.go -------------------------------------------------------------------------------- /lib/ops/agents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/agents.go -------------------------------------------------------------------------------- /lib/ops/agents_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/agents_test.go -------------------------------------------------------------------------------- /lib/ops/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/checks.go -------------------------------------------------------------------------------- /lib/ops/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/cluster.go -------------------------------------------------------------------------------- /lib/ops/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/constants.go -------------------------------------------------------------------------------- /lib/ops/election.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/election.go -------------------------------------------------------------------------------- /lib/ops/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/endpoints.go -------------------------------------------------------------------------------- /lib/ops/endpoints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/endpoints_test.go -------------------------------------------------------------------------------- /lib/ops/events/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/events/codes.go -------------------------------------------------------------------------------- /lib/ops/events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/events/events.go -------------------------------------------------------------------------------- /lib/ops/events/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/events/fields.go -------------------------------------------------------------------------------- /lib/ops/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/kubernetes.go -------------------------------------------------------------------------------- /lib/ops/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/operation.go -------------------------------------------------------------------------------- /lib/ops/operatoracl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/operatoracl.go -------------------------------------------------------------------------------- /lib/ops/ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/ops.go -------------------------------------------------------------------------------- /lib/ops/ops_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/ops_test.go -------------------------------------------------------------------------------- /lib/ops/opsroute/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsroute/forward.go -------------------------------------------------------------------------------- /lib/ops/opsroute/opsroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsroute/opsroute.go -------------------------------------------------------------------------------- /lib/ops/opsservice/agents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/agents.go -------------------------------------------------------------------------------- /lib/ops/opsservice/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/auth.go -------------------------------------------------------------------------------- /lib/ops/opsservice/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/checks.go -------------------------------------------------------------------------------- /lib/ops/opsservice/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/cmd.go -------------------------------------------------------------------------------- /lib/ops/opsservice/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/common.go -------------------------------------------------------------------------------- /lib/ops/opsservice/ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/ctx.go -------------------------------------------------------------------------------- /lib/ops/opsservice/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/deploy.go -------------------------------------------------------------------------------- /lib/ops/opsservice/expand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/expand.go -------------------------------------------------------------------------------- /lib/ops/opsservice/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/gc.go -------------------------------------------------------------------------------- /lib/ops/opsservice/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/hooks.go -------------------------------------------------------------------------------- /lib/ops/opsservice/leader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/leader.go -------------------------------------------------------------------------------- /lib/ops/opsservice/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/plan.go -------------------------------------------------------------------------------- /lib/ops/opsservice/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/report.go -------------------------------------------------------------------------------- /lib/ops/opsservice/resume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/resume.go -------------------------------------------------------------------------------- /lib/ops/opsservice/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/runner.go -------------------------------------------------------------------------------- /lib/ops/opsservice/shrink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/shrink.go -------------------------------------------------------------------------------- /lib/ops/opsservice/site.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/site.go -------------------------------------------------------------------------------- /lib/ops/opsservice/smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/smtp.go -------------------------------------------------------------------------------- /lib/ops/opsservice/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/status.go -------------------------------------------------------------------------------- /lib/ops/opsservice/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/update.go -------------------------------------------------------------------------------- /lib/ops/opsservice/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/users.go -------------------------------------------------------------------------------- /lib/ops/opsservice/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/opsservice/utils.go -------------------------------------------------------------------------------- /lib/ops/site.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/site.go -------------------------------------------------------------------------------- /lib/ops/suite/opssuite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/suite/opssuite.go -------------------------------------------------------------------------------- /lib/ops/suite/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/suite/proxy.go -------------------------------------------------------------------------------- /lib/ops/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/ops/utils.go -------------------------------------------------------------------------------- /lib/pack/acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/acl.go -------------------------------------------------------------------------------- /lib/pack/cautils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/cautils.go -------------------------------------------------------------------------------- /lib/pack/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/config.go -------------------------------------------------------------------------------- /lib/pack/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/constants.go -------------------------------------------------------------------------------- /lib/pack/layerpack/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/layerpack/layer.go -------------------------------------------------------------------------------- /lib/pack/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/manifest.go -------------------------------------------------------------------------------- /lib/pack/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/options.go -------------------------------------------------------------------------------- /lib/pack/pack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/pack.go -------------------------------------------------------------------------------- /lib/pack/readwrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/readwrite.go -------------------------------------------------------------------------------- /lib/pack/suite/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/suite/suite.go -------------------------------------------------------------------------------- /lib/pack/test/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/test/helpers.go -------------------------------------------------------------------------------- /lib/pack/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/utils.go -------------------------------------------------------------------------------- /lib/pack/webpack/webpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/pack/webpack/webpack.go -------------------------------------------------------------------------------- /lib/process/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/process/config_test.go -------------------------------------------------------------------------------- /lib/process/enterprise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/process/enterprise.go -------------------------------------------------------------------------------- /lib/process/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/process/handler.go -------------------------------------------------------------------------------- /lib/process/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/process/import.go -------------------------------------------------------------------------------- /lib/process/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/process/process.go -------------------------------------------------------------------------------- /lib/process/process_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/process/process_test.go -------------------------------------------------------------------------------- /lib/process/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/process/profile.go -------------------------------------------------------------------------------- /lib/process/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/process/proxy.go -------------------------------------------------------------------------------- /lib/process/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/process/service.go -------------------------------------------------------------------------------- /lib/process/teleport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/process/teleport.go -------------------------------------------------------------------------------- /lib/process/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/process/watch.go -------------------------------------------------------------------------------- /lib/process/wizard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/process/wizard.go -------------------------------------------------------------------------------- /lib/processconfig/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/processconfig/config.go -------------------------------------------------------------------------------- /lib/processconfig/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/processconfig/merge.go -------------------------------------------------------------------------------- /lib/report/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/report/collector.go -------------------------------------------------------------------------------- /lib/report/collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/report/collector_test.go -------------------------------------------------------------------------------- /lib/report/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/report/command.go -------------------------------------------------------------------------------- /lib/report/k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/report/k8s.go -------------------------------------------------------------------------------- /lib/report/packages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/report/packages.go -------------------------------------------------------------------------------- /lib/report/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/report/report.go -------------------------------------------------------------------------------- /lib/report/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/report/resources.go -------------------------------------------------------------------------------- /lib/report/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/report/system.go -------------------------------------------------------------------------------- /lib/report/timeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/report/timeline.go -------------------------------------------------------------------------------- /lib/rpc/client/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/client/agent.go -------------------------------------------------------------------------------- /lib/rpc/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/client/client.go -------------------------------------------------------------------------------- /lib/rpc/client/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/client/discovery.go -------------------------------------------------------------------------------- /lib/rpc/client/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/client/validation.go -------------------------------------------------------------------------------- /lib/rpc/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/deploy.go -------------------------------------------------------------------------------- /lib/rpc/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/proto/Makefile -------------------------------------------------------------------------------- /lib/rpc/proto/agent.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/proto/agent.pb.go -------------------------------------------------------------------------------- /lib/rpc/proto/agent.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/proto/agent.proto -------------------------------------------------------------------------------- /lib/rpc/proto/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/proto/utils.go -------------------------------------------------------------------------------- /lib/rpc/server/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/server/agent.go -------------------------------------------------------------------------------- /lib/rpc/server/agent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/server/agent_test.go -------------------------------------------------------------------------------- /lib/rpc/server/callable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/server/callable.go -------------------------------------------------------------------------------- /lib/rpc/server/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/server/logger.go -------------------------------------------------------------------------------- /lib/rpc/server/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/server/peer.go -------------------------------------------------------------------------------- /lib/rpc/server/peer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/server/peer_test.go -------------------------------------------------------------------------------- /lib/rpc/server/peers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/server/peers.go -------------------------------------------------------------------------------- /lib/rpc/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/server/server.go -------------------------------------------------------------------------------- /lib/rpc/server/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/server/suite_test.go -------------------------------------------------------------------------------- /lib/rpc/server/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/server/testing.go -------------------------------------------------------------------------------- /lib/rpc/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/shutdown.go -------------------------------------------------------------------------------- /lib/rpc/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/status.go -------------------------------------------------------------------------------- /lib/rpc/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/rpc/tls.go -------------------------------------------------------------------------------- /lib/run/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/run/run.go -------------------------------------------------------------------------------- /lib/run/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/run/run_test.go -------------------------------------------------------------------------------- /lib/schema/checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/checks.go -------------------------------------------------------------------------------- /lib/schema/compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/compat.go -------------------------------------------------------------------------------- /lib/schema/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/constants.go -------------------------------------------------------------------------------- /lib/schema/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/convert.go -------------------------------------------------------------------------------- /lib/schema/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/convert_test.go -------------------------------------------------------------------------------- /lib/schema/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/diff.go -------------------------------------------------------------------------------- /lib/schema/diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/diff_test.go -------------------------------------------------------------------------------- /lib/schema/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/doc.go -------------------------------------------------------------------------------- /lib/schema/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/extensions.go -------------------------------------------------------------------------------- /lib/schema/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/hooks.go -------------------------------------------------------------------------------- /lib/schema/hooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/hooks_test.go -------------------------------------------------------------------------------- /lib/schema/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/manifest.go -------------------------------------------------------------------------------- /lib/schema/manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/manifest_test.go -------------------------------------------------------------------------------- /lib/schema/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/parse.go -------------------------------------------------------------------------------- /lib/schema/ports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/ports.go -------------------------------------------------------------------------------- /lib/schema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/schema.go -------------------------------------------------------------------------------- /lib/schema/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/template.go -------------------------------------------------------------------------------- /lib/schema/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/template_test.go -------------------------------------------------------------------------------- /lib/schema/v1/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/v1/constants.go -------------------------------------------------------------------------------- /lib/schema/v1/dependency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/v1/dependency.go -------------------------------------------------------------------------------- /lib/schema/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/v1/doc.go -------------------------------------------------------------------------------- /lib/schema/v1/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/v1/hooks.go -------------------------------------------------------------------------------- /lib/schema/v1/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/schema/v1/manifest.go -------------------------------------------------------------------------------- /lib/sni/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/sni/mux.go -------------------------------------------------------------------------------- /lib/state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/state/state.go -------------------------------------------------------------------------------- /lib/status/alertmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/status/alertmanager.go -------------------------------------------------------------------------------- /lib/status/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/status/extension.go -------------------------------------------------------------------------------- /lib/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/status/status.go -------------------------------------------------------------------------------- /lib/status/timeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/status/timeline.go -------------------------------------------------------------------------------- /lib/status/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/status/wait.go -------------------------------------------------------------------------------- /lib/storage/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/app.go -------------------------------------------------------------------------------- /lib/storage/authgateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/authgateway.go -------------------------------------------------------------------------------- /lib/storage/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/cluster.go -------------------------------------------------------------------------------- /lib/storage/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/cluster_test.go -------------------------------------------------------------------------------- /lib/storage/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/endpoints.go -------------------------------------------------------------------------------- /lib/storage/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/environment.go -------------------------------------------------------------------------------- /lib/storage/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/functions.go -------------------------------------------------------------------------------- /lib/storage/keyval/bolt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/bolt.go -------------------------------------------------------------------------------- /lib/storage/keyval/charts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/charts.go -------------------------------------------------------------------------------- /lib/storage/keyval/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/etcd.go -------------------------------------------------------------------------------- /lib/storage/keyval/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/kv.go -------------------------------------------------------------------------------- /lib/storage/keyval/leader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/leader.go -------------------------------------------------------------------------------- /lib/storage/keyval/links.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/links.go -------------------------------------------------------------------------------- /lib/storage/keyval/locks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/locks.go -------------------------------------------------------------------------------- /lib/storage/keyval/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/nodes.go -------------------------------------------------------------------------------- /lib/storage/keyval/peers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/peers.go -------------------------------------------------------------------------------- /lib/storage/keyval/roles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/roles.go -------------------------------------------------------------------------------- /lib/storage/keyval/sites.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/sites.go -------------------------------------------------------------------------------- /lib/storage/keyval/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/system.go -------------------------------------------------------------------------------- /lib/storage/keyval/tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/tokens.go -------------------------------------------------------------------------------- /lib/storage/keyval/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/keyval/users.go -------------------------------------------------------------------------------- /lib/storage/logforwarder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/logforwarder.go -------------------------------------------------------------------------------- /lib/storage/monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/monitoring.go -------------------------------------------------------------------------------- /lib/storage/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/operation.go -------------------------------------------------------------------------------- /lib/storage/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/plan.go -------------------------------------------------------------------------------- /lib/storage/plan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/plan_test.go -------------------------------------------------------------------------------- /lib/storage/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/release.go -------------------------------------------------------------------------------- /lib/storage/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/repo.go -------------------------------------------------------------------------------- /lib/storage/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/resources.go -------------------------------------------------------------------------------- /lib/storage/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/role.go -------------------------------------------------------------------------------- /lib/storage/smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/smtp.go -------------------------------------------------------------------------------- /lib/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/storage.go -------------------------------------------------------------------------------- /lib/storage/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/storage_test.go -------------------------------------------------------------------------------- /lib/storage/suite/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/suite/suite.go -------------------------------------------------------------------------------- /lib/storage/systeminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/systeminfo.go -------------------------------------------------------------------------------- /lib/storage/tlskeypair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/tlskeypair.go -------------------------------------------------------------------------------- /lib/storage/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/token.go -------------------------------------------------------------------------------- /lib/storage/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/user.go -------------------------------------------------------------------------------- /lib/storage/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/storage/utils.go -------------------------------------------------------------------------------- /lib/system/caps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/system/caps.go -------------------------------------------------------------------------------- /lib/system/caps_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/system/caps_linux.go -------------------------------------------------------------------------------- /lib/system/chroot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/system/chroot.go -------------------------------------------------------------------------------- /lib/system/environ/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/system/environ/state.go -------------------------------------------------------------------------------- /lib/system/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/system/fs.go -------------------------------------------------------------------------------- /lib/system/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/system/fs_test.go -------------------------------------------------------------------------------- /lib/system/mount/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/system/mount/mount.go -------------------------------------------------------------------------------- /lib/system/mount/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/system/mount/service.go -------------------------------------------------------------------------------- /lib/system/selinux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/system/selinux/Makefile -------------------------------------------------------------------------------- /lib/system/selinux/internal/policy/assets/centos/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/system/selinux/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/system/selinux/update.go -------------------------------------------------------------------------------- /lib/system/service/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/system/service/simple.go -------------------------------------------------------------------------------- /lib/systeminfo/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/systeminfo/dns.go -------------------------------------------------------------------------------- /lib/systeminfo/dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/systeminfo/dns_test.go -------------------------------------------------------------------------------- /lib/systeminfo/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/systeminfo/id.go -------------------------------------------------------------------------------- /lib/systeminfo/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/systeminfo/network.go -------------------------------------------------------------------------------- /lib/systeminfo/packages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/systeminfo/packages.go -------------------------------------------------------------------------------- /lib/systeminfo/systeminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/systeminfo/systeminfo.go -------------------------------------------------------------------------------- /lib/systeminfo/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/systeminfo/user.go -------------------------------------------------------------------------------- /lib/systemservice/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/systemservice/escape.go -------------------------------------------------------------------------------- /lib/systemservice/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/systemservice/merge.go -------------------------------------------------------------------------------- /lib/systemservice/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/systemservice/service.go -------------------------------------------------------------------------------- /lib/systemservice/systemd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/systemservice/systemd.go -------------------------------------------------------------------------------- /lib/testutils/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/testutils/auth.go -------------------------------------------------------------------------------- /lib/testutils/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/testutils/s3.go -------------------------------------------------------------------------------- /lib/transfer/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/transfer/copy.go -------------------------------------------------------------------------------- /lib/transfer/transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/transfer/transfer.go -------------------------------------------------------------------------------- /lib/update/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/update/builder.go -------------------------------------------------------------------------------- /lib/update/cluster/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/update/cluster/engine.go -------------------------------------------------------------------------------- /lib/update/cluster/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/update/cluster/plan.go -------------------------------------------------------------------------------- /lib/update/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/update/engine.go -------------------------------------------------------------------------------- /lib/update/environ/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/update/environ/plan.go -------------------------------------------------------------------------------- /lib/update/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/update/reconciler.go -------------------------------------------------------------------------------- /lib/update/updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/update/updater.go -------------------------------------------------------------------------------- /lib/update/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/update/utils.go -------------------------------------------------------------------------------- /lib/users/accesspoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/users/accesspoint.go -------------------------------------------------------------------------------- /lib/users/acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/users/acl.go -------------------------------------------------------------------------------- /lib/users/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/users/auth.go -------------------------------------------------------------------------------- /lib/users/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/users/context.go -------------------------------------------------------------------------------- /lib/users/roles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/users/roles.go -------------------------------------------------------------------------------- /lib/users/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/users/users.go -------------------------------------------------------------------------------- /lib/utils/bandwidth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/bandwidth.go -------------------------------------------------------------------------------- /lib/utils/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/buf.go -------------------------------------------------------------------------------- /lib/utils/chanutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/chanutils.go -------------------------------------------------------------------------------- /lib/utils/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/check.go -------------------------------------------------------------------------------- /lib/utils/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/cli/cli.go -------------------------------------------------------------------------------- /lib/utils/cli/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/cli/cli_test.go -------------------------------------------------------------------------------- /lib/utils/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/commands.go -------------------------------------------------------------------------------- /lib/utils/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/crypto.go -------------------------------------------------------------------------------- /lib/utils/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/dns.go -------------------------------------------------------------------------------- /lib/utils/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/encrypt.go -------------------------------------------------------------------------------- /lib/utils/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/env.go -------------------------------------------------------------------------------- /lib/utils/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/env_test.go -------------------------------------------------------------------------------- /lib/utils/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/error.go -------------------------------------------------------------------------------- /lib/utils/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/etcd.go -------------------------------------------------------------------------------- /lib/utils/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/exec.go -------------------------------------------------------------------------------- /lib/utils/fileutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/fileutils.go -------------------------------------------------------------------------------- /lib/utils/form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/form.go -------------------------------------------------------------------------------- /lib/utils/form_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/form_test.go -------------------------------------------------------------------------------- /lib/utils/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/hash.go -------------------------------------------------------------------------------- /lib/utils/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/helm/helm.go -------------------------------------------------------------------------------- /lib/utils/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/kubernetes.go -------------------------------------------------------------------------------- /lib/utils/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/logging.go -------------------------------------------------------------------------------- /lib/utils/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/marshal.go -------------------------------------------------------------------------------- /lib/utils/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/math.go -------------------------------------------------------------------------------- /lib/utils/math_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/math_test.go -------------------------------------------------------------------------------- /lib/utils/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/net.go -------------------------------------------------------------------------------- /lib/utils/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/net_test.go -------------------------------------------------------------------------------- /lib/utils/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/parse.go -------------------------------------------------------------------------------- /lib/utils/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/parse_test.go -------------------------------------------------------------------------------- /lib/utils/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/progress.go -------------------------------------------------------------------------------- /lib/utils/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/retry.go -------------------------------------------------------------------------------- /lib/utils/safe_buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/safe_buffer.go -------------------------------------------------------------------------------- /lib/utils/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/semver.go -------------------------------------------------------------------------------- /lib/utils/semver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/semver_test.go -------------------------------------------------------------------------------- /lib/utils/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/ssh.go -------------------------------------------------------------------------------- /lib/utils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/strings.go -------------------------------------------------------------------------------- /lib/utils/stringset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/stringset.go -------------------------------------------------------------------------------- /lib/utils/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/syslog.go -------------------------------------------------------------------------------- /lib/utils/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/time.go -------------------------------------------------------------------------------- /lib/utils/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/tls.go -------------------------------------------------------------------------------- /lib/utils/tls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/tls_test.go -------------------------------------------------------------------------------- /lib/utils/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/units.go -------------------------------------------------------------------------------- /lib/utils/units_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/units_test.go -------------------------------------------------------------------------------- /lib/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/utils_test.go -------------------------------------------------------------------------------- /lib/utils/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/utils/writer.go -------------------------------------------------------------------------------- /lib/vacuum/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/vacuum/plan.go -------------------------------------------------------------------------------- /lib/vacuum/vacuum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/vacuum/vacuum.go -------------------------------------------------------------------------------- /lib/validate/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/validate/net.go -------------------------------------------------------------------------------- /lib/validate/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/validate/net_test.go -------------------------------------------------------------------------------- /lib/webapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/README.md -------------------------------------------------------------------------------- /lib/webapi/clusterinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/clusterinfo.go -------------------------------------------------------------------------------- /lib/webapi/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/connect.go -------------------------------------------------------------------------------- /lib/webapi/forwarder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/forwarder.go -------------------------------------------------------------------------------- /lib/webapi/grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/grafana.go -------------------------------------------------------------------------------- /lib/webapi/operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/operations.go -------------------------------------------------------------------------------- /lib/webapi/providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/providers.go -------------------------------------------------------------------------------- /lib/webapi/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/resources.go -------------------------------------------------------------------------------- /lib/webapi/tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/tokens.go -------------------------------------------------------------------------------- /lib/webapi/ui/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/ui/configs.go -------------------------------------------------------------------------------- /lib/webapi/ui/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/ui/user.go -------------------------------------------------------------------------------- /lib/webapi/webapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/webapi.go -------------------------------------------------------------------------------- /lib/webapi/webhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/lib/webapi/webhandler.go -------------------------------------------------------------------------------- /mage.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/mage.dockerfile -------------------------------------------------------------------------------- /mage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/mage.go -------------------------------------------------------------------------------- /mage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/mage/README.md -------------------------------------------------------------------------------- /mage/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/mage/build.go -------------------------------------------------------------------------------- /mage/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/mage/cluster.go -------------------------------------------------------------------------------- /mage/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/mage/misc.go -------------------------------------------------------------------------------- /mage/packages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/mage/packages.go -------------------------------------------------------------------------------- /mage/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/mage/tests.go -------------------------------------------------------------------------------- /mage/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/mage/vars.go -------------------------------------------------------------------------------- /scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/scripts/cleanup.sh -------------------------------------------------------------------------------- /site.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/site.mk -------------------------------------------------------------------------------- /terraform-dev/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/terraform-dev/.gitignore -------------------------------------------------------------------------------- /terraform-dev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/terraform-dev/Makefile -------------------------------------------------------------------------------- /terraform-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/terraform-dev/README.md -------------------------------------------------------------------------------- /terraform-dev/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/terraform-dev/ansible.cfg -------------------------------------------------------------------------------- /terraform-dev/cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/terraform-dev/cluster.tf -------------------------------------------------------------------------------- /terraform-dev/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/terraform-dev/hosts -------------------------------------------------------------------------------- /terraform-dev/ssh/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/terraform-dev/ssh/config -------------------------------------------------------------------------------- /tool/common/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/common/error.go -------------------------------------------------------------------------------- /tool/common/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/common/input.go -------------------------------------------------------------------------------- /tool/common/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/common/print.go -------------------------------------------------------------------------------- /tool/common/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/common/progress.go -------------------------------------------------------------------------------- /tool/gravity/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/cli/app.go -------------------------------------------------------------------------------- /tool/gravity/cli/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/cli/gc.go -------------------------------------------------------------------------------- /tool/gravity/cli/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/cli/helm.go -------------------------------------------------------------------------------- /tool/gravity/cli/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/cli/input.go -------------------------------------------------------------------------------- /tool/gravity/cli/ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/cli/ops.go -------------------------------------------------------------------------------- /tool/gravity/cli/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/cli/plan.go -------------------------------------------------------------------------------- /tool/gravity/cli/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/cli/run.go -------------------------------------------------------------------------------- /tool/gravity/cli/site.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/cli/site.go -------------------------------------------------------------------------------- /tool/gravity/cli/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/cli/sync.go -------------------------------------------------------------------------------- /tool/gravity/cli/top.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/cli/top.go -------------------------------------------------------------------------------- /tool/gravity/cli/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/cli/user.go -------------------------------------------------------------------------------- /tool/gravity/cli/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/cli/utils.go -------------------------------------------------------------------------------- /tool/gravity/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/gravity/main.go -------------------------------------------------------------------------------- /tool/tele/cli/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/tele/cli/build.go -------------------------------------------------------------------------------- /tool/tele/cli/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/tele/cli/commands.go -------------------------------------------------------------------------------- /tool/tele/cli/ls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/tele/cli/ls.go -------------------------------------------------------------------------------- /tool/tele/cli/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/tele/cli/pull.go -------------------------------------------------------------------------------- /tool/tele/cli/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/tele/cli/register.go -------------------------------------------------------------------------------- /tool/tele/cli/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/tele/cli/run.go -------------------------------------------------------------------------------- /tool/tele/cli/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/tele/cli/version.go -------------------------------------------------------------------------------- /tool/tele/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/tool/tele/main.go -------------------------------------------------------------------------------- /trace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/trace.yml -------------------------------------------------------------------------------- /vagrant/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/vagrant/.gitignore -------------------------------------------------------------------------------- /vagrant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/vagrant/Makefile -------------------------------------------------------------------------------- /vagrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/vagrant/README.md -------------------------------------------------------------------------------- /vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/vagrant/Vagrantfile -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/.gitignore: -------------------------------------------------------------------------------- 1 | _fuzz/ -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/Masterminds/semver/v3 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /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/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat 2 | 3 | /hcn/* @nagiesek -------------------------------------------------------------------------------- /vendor/github.com/boltdb/bolt/.gitignore: -------------------------------------------------------------------------------- 1 | *.prof 2 | *.test 3 | *.swp 4 | /bin/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry/gosigar/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.2 2 | -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/vendor.conf: -------------------------------------------------------------------------------- 1 | github.com/pkg/errors v0.8.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/manifest/doc.go: -------------------------------------------------------------------------------- 1 | package manifest 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/form3tech-oss/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/errors/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /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/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/strfmt/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/v5/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/shlex 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/gorilla/mux 2 | -------------------------------------------------------------------------------- /vendor/github.com/gravitational/rigging/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.test 3 | /fixtures 4 | /build -------------------------------------------------------------------------------- /vendor/github.com/gravitational/tail/.gitignore: -------------------------------------------------------------------------------- 1 | .test 2 | .go 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/gravitational/ttlmap/.gitignore: -------------------------------------------------------------------------------- 1 | *.test -------------------------------------------------------------------------------- /vendor/github.com/gravitational/ttlmap/v2/.gitignore: -------------------------------------------------------------------------------- 1 | *.test -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hashicorp/golang-lru 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/huandu/xstrings/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/huandu/xstrings 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/jaguilar/vt100/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go -------------------------------------------------------------------------------- /vendor/github.com/jonboulle/clockwork/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/jonboulle/clockwork 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/lann/builder/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | \#*# 3 | -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.gitignore: -------------------------------------------------------------------------------- 1 | .db 2 | *.test 3 | *~ 4 | *.swp 5 | .idea 6 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/lib/pq 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/github.com/mailgun/minheap/.gitignore: -------------------------------------------------------------------------------- 1 | *.test -------------------------------------------------------------------------------- /vendor/github.com/mailgun/ttlmap/.gitignore: -------------------------------------------------------------------------------- 1 | *.test -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mattn/go-sqlite3 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-ps/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-ps/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.2.1 5 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-ps/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/go-ps 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/go-wordwrap/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/go-wordwrap 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/reflectwalk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/reflectwalk/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/reflectwalk 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/mreiferson/go-httpclient/.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[op] 2 | -------------------------------------------------------------------------------- /vendor/github.com/niemeyer/pretty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/russellhaering/goxmldsig/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/santhosh-tekuri/jsonschema/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/santhosh-tekuri/jsonschema 2 | -------------------------------------------------------------------------------- /vendor/github.com/shopspring/decimal/.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | *.swp 3 | 4 | # IntelliJ 5 | .idea/ 6 | *.iml 7 | -------------------------------------------------------------------------------- /vendor/github.com/shopspring/decimal/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/shopspring/decimal 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/github.com/shurcooL/sanitized_anchor_name/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/shurcooL/sanitized_anchor_name 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/pflag 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[nop] 2 | *.iml 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.uber.org/tools/update-license/.gitignore: -------------------------------------------------------------------------------- 1 | update-license 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/go.mod: -------------------------------------------------------------------------------- 1 | module golang.org/x/xerrors 2 | 3 | go 1.11 4 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go_import_path: gopkg.in/check.v1 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/TODO: -------------------------------------------------------------------------------- 1 | - Assert(slice, Contains, item) 2 | - Parallel test support 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/component-base/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/version.sh -------------------------------------------------------------------------------- /versions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/versions.mk -------------------------------------------------------------------------------- /web/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | */**/.git 4 | -------------------------------------------------------------------------------- /web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/.eslintrc.js -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/.prettierrc -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/Dockerfile.buildx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/Dockerfile.buildx -------------------------------------------------------------------------------- /web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/Makefile -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/README.md -------------------------------------------------------------------------------- /web/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/babel.config.js -------------------------------------------------------------------------------- /web/devServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/devServer.js -------------------------------------------------------------------------------- /web/devServerUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/devServerUtils.js -------------------------------------------------------------------------------- /web/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/jsconfig.json -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/package.json -------------------------------------------------------------------------------- /web/shared/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/shared/hooks/index.js -------------------------------------------------------------------------------- /web/shared/libs/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/shared/libs/logger.js -------------------------------------------------------------------------------- /web/shared/theme/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/shared/theme/fonts.js -------------------------------------------------------------------------------- /web/shared/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/shared/theme/index.js -------------------------------------------------------------------------------- /web/shared/theme/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/shared/theme/theme.js -------------------------------------------------------------------------------- /web/src/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/boot.js -------------------------------------------------------------------------------- /web/src/cluster/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/cluster/index.js -------------------------------------------------------------------------------- /web/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/config.js -------------------------------------------------------------------------------- /web/src/console/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/console/index.js -------------------------------------------------------------------------------- /web/src/flux/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/flux/index.js -------------------------------------------------------------------------------- /web/src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/index.ejs -------------------------------------------------------------------------------- /web/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/index.jsx -------------------------------------------------------------------------------- /web/src/lib/dateUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/lib/dateUtils.js -------------------------------------------------------------------------------- /web/src/lib/htmlUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/lib/htmlUtils.js -------------------------------------------------------------------------------- /web/src/lib/humanize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/lib/humanize.js -------------------------------------------------------------------------------- /web/src/lib/paramUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/lib/paramUtils.js -------------------------------------------------------------------------------- /web/src/lib/term/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/lib/term/enums.js -------------------------------------------------------------------------------- /web/src/lib/term/tty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/lib/term/tty.js -------------------------------------------------------------------------------- /web/src/reactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/reactor.js -------------------------------------------------------------------------------- /web/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/services/api.js -------------------------------------------------------------------------------- /web/src/services/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravitational/gravity/HEAD/web/src/services/enums.js --------------------------------------------------------------------------------