├── .dockerignore ├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── DCO ├── Documentation ├── README.md ├── contrib │ └── modify-installer.md ├── dev │ ├── audiences.md │ ├── digitalocean │ │ └── README.md │ ├── gcp │ │ └── README.md │ ├── govcloud │ │ └── README.md │ └── node-bootstrap-flow.md ├── platform-features.md └── variables │ ├── aws.md │ ├── azure.md │ ├── config.md │ ├── gcp.md │ ├── govcloud.md │ ├── metal.md │ ├── openstack-neutron.md │ └── vmware.md ├── Jenkinsfile ├── LICENSE ├── MAINTAINERS ├── Makefile ├── NOTICE ├── README.md ├── ROADMAP.md ├── bill-of-materials.json ├── changes.md ├── code-of-conduct.md ├── config.tf ├── contrib ├── govcloud │ ├── README.md │ ├── main.tf │ ├── powerdns.tf │ ├── resources │ │ ├── gateway.service │ │ ├── nginx.conf │ │ ├── nginx.service │ │ ├── openvpn.service │ │ └── powerdns.service │ ├── services.tf │ ├── vars.tf │ └── vpn.tf └── internal-cluster │ ├── README.md │ ├── main.tf │ ├── vars.tf │ └── vpn.tf ├── examples ├── fake-creds │ ├── ca.crt │ └── ca.key ├── terraform.tfvars.aws ├── terraform.tfvars.azure ├── terraform.tfvars.digitalocean ├── terraform.tfvars.gcp ├── terraform.tfvars.govcloud ├── terraform.tfvars.metal ├── terraform.tfvars.openstack-neutron └── terraform.tfvars.vmware ├── git-version ├── images ├── kubernetes-e2e │ ├── Dockerfile │ └── build.sh ├── tectonic-builder │ ├── Dockerfile │ └── README.md ├── tectonic-error-server │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── binassets │ │ └── doc.go │ ├── build-docker │ ├── glide.lock │ ├── glide.yaml │ ├── push │ ├── server.go │ └── web │ │ ├── error.html │ │ └── index.html ├── tectonic-installer │ ├── Dockerfile │ └── README.md ├── tectonic-smoke-test-env │ ├── Dockerfile │ ├── Dockerfile.builder │ ├── Dockerfile.runtime │ └── Makefile └── tectonic-stats-extender │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── build │ ├── cmd │ └── extender │ │ └── main.go │ ├── glide.lock │ ├── glide.yaml │ ├── pkg │ ├── extender │ │ ├── extender.go │ │ ├── extensions.go │ │ └── extensions_test.go │ └── version │ │ └── version.go │ ├── push │ ├── test │ └── vendor │ ├── github.com │ ├── Sirupsen │ │ └── logrus │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_solaris.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── coreos-inc │ │ └── tectonic-licensing │ │ │ └── license │ │ │ ├── joseutil.go │ │ │ ├── keys.go │ │ │ └── license.go │ └── golang │ │ └── lint │ │ ├── LICENSE │ │ ├── golint │ │ ├── golint.go │ │ └── import.go │ │ ├── lint.go │ │ └── lint16.go │ ├── golang.org │ └── x │ │ └── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── unix │ │ ├── asm.s │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── constants.go │ │ ├── env_unix.go │ │ ├── env_unset.go │ │ ├── flock.go │ │ ├── flock_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── mkpost.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_no_getwd.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_linux.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_solaris_amd64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ └── ztypes_solaris_amd64.go │ └── gopkg.in │ └── square │ └── go-jose.v2 │ ├── LICENSE │ ├── asymmetric.go │ ├── cipher │ ├── cbc_hmac.go │ ├── concat_kdf.go │ ├── ecdh_es.go │ └── key_wrap.go │ ├── crypter.go │ ├── doc.go │ ├── encoding.go │ ├── json │ ├── LICENSE │ ├── decode.go │ ├── encode.go │ ├── indent.go │ ├── scanner.go │ ├── stream.go │ └── tags.go │ ├── jwe.go │ ├── jwk.go │ ├── jws.go │ ├── shared.go │ ├── signing.go │ └── symmetric.go ├── installer ├── .dockerignore ├── .gitignore ├── CONTRIBUTING.md ├── Makefile ├── README.md ├── api │ ├── api.go │ ├── errors.go │ ├── handlers_aws.go │ ├── handlers_containerlinux.go │ ├── handlers_frontend.go │ ├── handlers_latest_release.go │ ├── handlers_tectonic.go │ └── handlers_terraform.go ├── assets │ ├── assets.go │ ├── doc.go │ └── frontend │ │ ├── css │ │ └── styles.css │ │ ├── index.html.tmpl │ │ └── lib │ │ ├── font-awesome │ │ ├── css │ │ │ └── font-awesome.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ └── mochi │ │ ├── fonts │ │ ├── core-icons.eot │ │ ├── core-icons.svg │ │ ├── core-icons.ttf │ │ ├── core-icons.woff │ │ ├── sourcesanspro-bold-webfont.eot │ │ ├── sourcesanspro-bold-webfont.svg │ │ ├── sourcesanspro-bold-webfont.ttf │ │ ├── sourcesanspro-bold-webfont.woff │ │ ├── sourcesanspro-bolditalic-webfont.eot │ │ ├── sourcesanspro-bolditalic-webfont.svg │ │ ├── sourcesanspro-bolditalic-webfont.ttf │ │ ├── sourcesanspro-bolditalic-webfont.woff │ │ ├── sourcesanspro-italic-webfont.eot │ │ ├── sourcesanspro-italic-webfont.svg │ │ ├── sourcesanspro-italic-webfont.ttf │ │ ├── sourcesanspro-italic-webfont.woff │ │ ├── sourcesanspro-light-webfont.eot │ │ ├── sourcesanspro-light-webfont.svg │ │ ├── sourcesanspro-light-webfont.ttf │ │ ├── sourcesanspro-light-webfont.woff │ │ ├── sourcesanspro-lightitalic-webfont.eot │ │ ├── sourcesanspro-lightitalic-webfont.svg │ │ ├── sourcesanspro-lightitalic-webfont.ttf │ │ ├── sourcesanspro-lightitalic-webfont.woff │ │ ├── sourcesanspro-regular-webfont.eot │ │ ├── sourcesanspro-regular-webfont.svg │ │ ├── sourcesanspro-regular-webfont.ttf │ │ ├── sourcesanspro-regular-webfont.woff │ │ ├── sourcesanspro-semibold-webfont.eot │ │ ├── sourcesanspro-semibold-webfont.svg │ │ ├── sourcesanspro-semibold-webfont.ttf │ │ ├── sourcesanspro-semibold-webfont.woff │ │ ├── sourcesanspro-semibolditalic-webfont.eot │ │ ├── sourcesanspro-semibolditalic-webfont.svg │ │ ├── sourcesanspro-semibolditalic-webfont.ttf │ │ └── sourcesanspro-semibolditalic-webfont.woff │ │ ├── hashes.json │ │ ├── img │ │ ├── bg │ │ │ ├── cells.png │ │ │ ├── hexagons.png │ │ │ ├── network-circles.png │ │ │ └── xyz-grid.png │ │ ├── favicon │ │ │ ├── coreos │ │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ │ └── favicon.png │ │ │ └── tectonic │ │ │ │ ├── apple-touch-icon-114x114.png │ │ │ │ ├── apple-touch-icon-144x144.png │ │ │ │ ├── apple-touch-icon-57x57.png │ │ │ │ ├── apple-touch-icon-72x72.png │ │ │ │ └── favicon-96x96.png │ │ ├── icon │ │ │ ├── icon-add.svg │ │ │ ├── icon-back.svg │ │ │ ├── icon-builds.svg │ │ │ ├── icon-delete.svg │ │ │ ├── icon-history.svg │ │ │ ├── icon-info.svg │ │ │ ├── icon-layers.svg │ │ │ ├── icon-list.svg │ │ │ ├── icon-reboot.svg │ │ │ ├── icon-receipt.svg │ │ │ ├── icon-right-arrow.svg │ │ │ ├── icon-settings.svg │ │ │ └── icon-tags.svg │ │ ├── logo │ │ │ ├── coreos │ │ │ │ ├── logo-globe-only.svg │ │ │ │ └── logo.svg │ │ │ └── tectonic │ │ │ │ ├── quay-enterprise.svg │ │ │ │ ├── tectonic-enterprise.svg │ │ │ │ ├── tectonic-horizontal-white.svg │ │ │ │ ├── tectonic-icon-white.svg │ │ │ │ ├── tectonic-logo.svg │ │ │ │ ├── tectonic-preview.svg │ │ │ │ └── tectonic-support.svg │ │ └── tectonic-error.svg │ │ └── mochi.css ├── cmd │ └── installer │ │ ├── main.go │ │ └── platforms.go ├── frontend │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc │ ├── __tests__ │ │ ├── examples │ │ │ ├── aws-vpc.json │ │ │ ├── aws.json │ │ │ ├── metal.json │ │ │ ├── tectonic-aws-vpc.progress │ │ │ ├── tectonic-aws.progress │ │ │ └── tectonic-baremetal.progress │ │ ├── fields.js │ │ ├── protocols.js │ │ └── reducer.js │ ├── actions.js │ ├── app.jsx │ ├── aws-actions.js │ ├── aws-api.js │ ├── check-versions.js │ ├── cluster-config.js │ ├── components │ │ ├── alert.jsx │ │ ├── aws-cloud-credentials.jsx │ │ ├── aws-cluster-info.jsx │ │ ├── aws-define-nodes.jsx │ │ ├── aws-domain-validation.jsx │ │ ├── aws-submit-keys.jsx │ │ ├── aws-tags.jsx │ │ ├── aws-vpc.jsx │ │ ├── base.jsx │ │ ├── bm-credentials.jsx │ │ ├── bm-hostname.jsx │ │ ├── bm-matchbox.jsx │ │ ├── bm-nodeforms.jsx │ │ ├── bm-sshkeys.jsx │ │ ├── certificate-authority.jsx │ │ ├── cidr.jsx │ │ ├── cluster-info.jsx │ │ ├── cluster-type.jsx │ │ ├── dry-run.jsx │ │ ├── etcd.jsx │ │ ├── footer.jsx │ │ ├── header.jsx │ │ ├── k8s-cidrs.jsx │ │ ├── loader.jsx │ │ ├── make-node-form.jsx │ │ ├── restore.jsx │ │ ├── submit-definition.jsx │ │ ├── success.jsx │ │ ├── tf-poweron.jsx │ │ ├── ui.jsx │ │ └── users.jsx │ ├── facts.js │ ├── fields.js │ ├── form.js │ ├── nav.jsx │ ├── nightwatch.json │ ├── package.json │ ├── platforms.js │ ├── readfile.js │ ├── reducer.js │ ├── server.js │ ├── store.js │ ├── tectonic-ga.js │ ├── trail.js │ ├── ui-tests │ │ ├── README.md │ │ ├── commands │ │ │ ├── expectNoValidationError.js │ │ │ ├── expectValidationErrorContains.js │ │ │ ├── selectOption.js │ │ │ └── setField.js │ │ ├── globals.js │ │ ├── output │ │ │ ├── aws.tfvars │ │ │ └── metal.tfvars │ │ ├── pages │ │ │ ├── awsCredentialsPage.js │ │ │ ├── certificateAuthorityPage.js │ │ │ ├── clusterDnsPage.js │ │ │ ├── clusterInfoPage.js │ │ │ ├── consoleLoginPage.js │ │ │ ├── defineMastersPage.js │ │ │ ├── defineWorkersPage.js │ │ │ ├── downloadAssetsPage.js │ │ │ ├── etcdConnectionPage.js │ │ │ ├── keysPage.js │ │ │ ├── matchboxAddressPage.js │ │ │ ├── matchboxCredentialsPage.js │ │ │ ├── networkConfigurationPage.js │ │ │ ├── networkingPage.js │ │ │ ├── nodesPage.js │ │ │ ├── platformPage.js │ │ │ ├── sshKeysPage.js │ │ │ └── submitPage.js │ │ ├── tests │ │ │ ├── awsInstaller.js │ │ │ └── bareMetalInstaller.js │ │ └── utils │ │ │ ├── log.js │ │ │ ├── terraformTfvars.js │ │ │ └── wizard.js │ ├── utils.js │ ├── validate.js │ └── yarn.lock ├── glide.lock ├── glide.yaml ├── pkg │ ├── aws │ │ ├── getters.go │ │ ├── validations.go │ │ └── validations_test.go │ ├── containerlinux │ │ └── images.go │ ├── tectonic │ │ └── defaults.go │ └── terraform │ │ ├── credentials.go │ │ ├── executor.go │ │ ├── executor_test.go │ │ └── sources.go ├── scripts │ ├── add_matchbox_hosts.sh │ ├── filter.sh │ ├── license-gen │ │ ├── collect_project_licenses.sh │ │ └── pkg_lists │ │ │ ├── go_pkg_inputs.txt │ │ │ └── js_pkg_inputs.txt │ ├── lint-backend │ ├── maintenance │ │ ├── clean-aws.sh │ │ ├── tag-aws.sh │ │ └── tag-route53-hosted-zones.sh │ └── test-backend └── vendor │ ├── cloud.google.com │ └── go │ │ ├── LICENSE │ │ ├── cloud.go │ │ ├── compute │ │ └── metadata │ │ │ └── metadata.go │ │ └── internal │ │ └── cloud.go │ ├── github.com │ ├── PuerkitoBio │ │ ├── purell │ │ │ ├── LICENSE │ │ │ └── purell.go │ │ └── urlesc │ │ │ ├── LICENSE │ │ │ └── urlesc.go │ ├── Sirupsen │ │ └── logrus │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_solaris.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── StackExchange │ │ └── wmi │ │ │ ├── LICENSE │ │ │ ├── swbemservices.go │ │ │ └── wmi.go │ ├── agext │ │ └── levenshtein │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── levenshtein.go │ │ │ └── params.go │ ├── ajeddeloh │ │ └── yaml │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ ├── alecthomas │ │ └── units │ │ │ ├── COPYING │ │ │ ├── bytes.go │ │ │ ├── doc.go │ │ │ ├── si.go │ │ │ └── util.go │ ├── apparentlymart │ │ ├── go-cidr │ │ │ ├── LICENSE │ │ │ └── cidr │ │ │ │ ├── cidr.go │ │ │ │ └── wrangling.go │ │ └── go-textseg │ │ │ ├── LICENSE │ │ │ └── textseg │ │ │ ├── all_tokens.go │ │ │ ├── generate.go │ │ │ ├── grapheme_clusters.go │ │ │ ├── make_tables.go │ │ │ ├── make_test_tables.go │ │ │ ├── tables.go │ │ │ └── utf8_seqs.go │ ├── armon │ │ └── go-radix │ │ │ ├── LICENSE │ │ │ └── radix.go │ ├── 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 │ │ │ │ └── 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 │ │ │ ├── credentials │ │ │ │ ├── chain_provider.go │ │ │ │ ├── credentials.go │ │ │ │ ├── ec2rolecreds │ │ │ │ │ └── ec2_role_provider.go │ │ │ │ ├── endpointcreds │ │ │ │ │ └── provider.go │ │ │ │ ├── env_provider.go │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ ├── static_provider.go │ │ │ │ └── stscreds │ │ │ │ │ └── assume_role_provider.go │ │ │ ├── defaults │ │ │ │ └── defaults.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 │ │ │ │ ├── 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 │ │ │ │ ├── serialization_error.go │ │ │ │ ├── serialization_error_appengine.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 │ │ │ ├── private │ │ │ └── protocol │ │ │ │ ├── ec2query │ │ │ │ ├── build.go │ │ │ │ └── unmarshal.go │ │ │ │ ├── idempotency.go │ │ │ │ ├── json │ │ │ │ └── jsonutil │ │ │ │ │ ├── build.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── jsonrpc │ │ │ │ └── jsonrpc.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 │ │ │ ├── sdk.go │ │ │ └── service │ │ │ ├── ec2 │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── waiters.go │ │ │ ├── iam │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── waiters.go │ │ │ ├── route53 │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ ├── unmarshal_error.go │ │ │ └── waiters.go │ │ │ ├── route53domains │ │ │ ├── api.go │ │ │ ├── errors.go │ │ │ └── service.go │ │ │ ├── s3 │ │ │ ├── api.go │ │ │ ├── bucket_location.go │ │ │ ├── content_md5.go │ │ │ ├── customizations.go │ │ │ ├── errors.go │ │ │ ├── host_style_bucket.go │ │ │ ├── platform_handlers.go │ │ │ ├── platform_handlers_go1.6.go │ │ │ ├── service.go │ │ │ ├── sse.go │ │ │ ├── statusok_error.go │ │ │ ├── unmarshal_error.go │ │ │ └── waiters.go │ │ │ └── sts │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── errors.go │ │ │ └── service.go │ ├── bgentry │ │ ├── go-netrc │ │ │ ├── LICENSE │ │ │ └── netrc │ │ │ │ └── netrc.go │ │ └── speakeasy │ │ │ ├── LICENSE │ │ │ ├── LICENSE_WINDOWS │ │ │ ├── speakeasy.go │ │ │ ├── speakeasy_unix.go │ │ │ └── speakeasy_windows.go │ ├── blang │ │ └── semver │ │ │ ├── LICENSE │ │ │ ├── json.go │ │ │ ├── range.go │ │ │ ├── semver.go │ │ │ ├── sort.go │ │ │ └── sql.go │ ├── cloudfoundry-incubator │ │ └── candiedyaml │ │ │ ├── LICENSE │ │ │ ├── api.go │ │ │ ├── decode.go │ │ │ ├── emitter.go │ │ │ ├── encode.go │ │ │ ├── parser.go │ │ │ ├── reader.go │ │ │ ├── resolver.go │ │ │ ├── run_parser.go │ │ │ ├── scanner.go │ │ │ ├── tags.go │ │ │ ├── writer.go │ │ │ ├── yaml_definesh.go │ │ │ ├── yaml_privateh.go │ │ │ └── yamlh.go │ ├── coreos │ │ ├── container-linux-config-transpiler │ │ │ ├── LICENSE │ │ │ └── NOTICE │ │ ├── coreos-cloudinit │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── config │ │ │ │ └── validate │ │ │ │ │ ├── context.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── report.go │ │ │ │ │ ├── rules.go │ │ │ │ │ └── validate.go │ │ │ └── coreos-cloudinit.go │ │ ├── go-oidc │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── http │ │ │ │ ├── client.go │ │ │ │ ├── http.go │ │ │ │ └── url.go │ │ │ ├── jose │ │ │ │ ├── claims.go │ │ │ │ ├── jose.go │ │ │ │ ├── jwk.go │ │ │ │ ├── jws.go │ │ │ │ ├── jwt.go │ │ │ │ ├── sig.go │ │ │ │ ├── sig_hmac.go │ │ │ │ └── sig_rsa.go │ │ │ ├── key │ │ │ │ ├── key.go │ │ │ │ ├── manager.go │ │ │ │ ├── repo.go │ │ │ │ ├── rotate.go │ │ │ │ └── sync.go │ │ │ ├── oauth2 │ │ │ │ ├── error.go │ │ │ │ └── oauth2.go │ │ │ └── oidc │ │ │ │ ├── client.go │ │ │ │ ├── identity.go │ │ │ │ ├── interface.go │ │ │ │ ├── key.go │ │ │ │ ├── provider.go │ │ │ │ ├── transport.go │ │ │ │ ├── util.go │ │ │ │ └── verification.go │ │ ├── go-semver │ │ │ ├── LICENSE │ │ │ ├── example.go │ │ │ └── semver │ │ │ │ ├── semver.go │ │ │ │ └── sort.go │ │ ├── go-systemd │ │ │ ├── LICENSE │ │ │ ├── journal │ │ │ │ └── journal.go │ │ │ └── unit │ │ │ │ ├── deserialize.go │ │ │ │ ├── escape.go │ │ │ │ ├── option.go │ │ │ │ └── serialize.go │ │ ├── ignition │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── config │ │ │ │ ├── append.go │ │ │ │ ├── cloudinit.go │ │ │ │ ├── config.go │ │ │ │ └── translate.go │ │ ├── ipnets │ │ │ ├── LICENSE │ │ │ └── ipnets.go │ │ ├── matchbox │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── matchbox │ │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ └── doc.go │ │ │ │ ├── rpc │ │ │ │ └── rpcpb │ │ │ │ │ ├── doc.go │ │ │ │ │ └── rpc.pb.go │ │ │ │ ├── server │ │ │ │ └── serverpb │ │ │ │ │ ├── doc.go │ │ │ │ │ └── messages.pb.go │ │ │ │ └── storage │ │ │ │ └── storagepb │ │ │ │ ├── doc.go │ │ │ │ ├── group.go │ │ │ │ ├── profile.go │ │ │ │ └── storage.pb.go │ │ ├── pkg │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── flagutil │ │ │ │ ├── env.go │ │ │ │ ├── env_file.go │ │ │ │ └── types.go │ │ │ ├── health │ │ │ │ └── health.go │ │ │ ├── httputil │ │ │ │ ├── cookie.go │ │ │ │ └── json.go │ │ │ └── timeutil │ │ │ │ └── backoff.go │ │ ├── terraform-provider-matchbox │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── main.go │ │ │ └── matchbox │ │ │ │ ├── matchbox.go │ │ │ │ ├── provider.go │ │ │ │ ├── resource_group.go │ │ │ │ └── resource_profile.go │ │ └── yaml │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── dghubble │ │ └── sessions │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── sessions.go │ │ │ └── store.go │ ├── docker │ │ └── distribution │ │ │ ├── LICENSE │ │ │ ├── blobs.go │ │ │ ├── digest │ │ │ ├── digest.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ ├── set.go │ │ │ └── verifiers.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── manifests.go │ │ │ ├── reference │ │ │ ├── reference.go │ │ │ └── regexp.go │ │ │ ├── registry.go │ │ │ └── tags.go │ ├── emicklei │ │ └── go-restful │ │ │ ├── LICENSE │ │ │ ├── compress.go │ │ │ ├── compressor_cache.go │ │ │ ├── compressor_pools.go │ │ │ ├── compressors.go │ │ │ ├── constants.go │ │ │ ├── container.go │ │ │ ├── cors_filter.go │ │ │ ├── curly.go │ │ │ ├── curly_route.go │ │ │ ├── doc.go │ │ │ ├── entity_accessors.go │ │ │ ├── filter.go │ │ │ ├── jsr311.go │ │ │ ├── log │ │ │ └── log.go │ │ │ ├── logger.go │ │ │ ├── mime.go │ │ │ ├── options_filter.go │ │ │ ├── parameter.go │ │ │ ├── path_expression.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── route.go │ │ │ ├── route_builder.go │ │ │ ├── router.go │ │ │ ├── service_error.go │ │ │ ├── swagger │ │ │ ├── api_declaration_list.go │ │ │ ├── config.go │ │ │ ├── model_builder.go │ │ │ ├── model_list.go │ │ │ ├── model_property_ext.go │ │ │ ├── model_property_list.go │ │ │ ├── ordered_route_map.go │ │ │ ├── swagger.go │ │ │ ├── swagger_builder.go │ │ │ └── swagger_webservice.go │ │ │ ├── web_service.go │ │ │ └── web_service_container.go │ ├── ghodss │ │ └── yaml │ │ │ ├── LICENSE │ │ │ ├── fields.go │ │ │ └── yaml.go │ ├── go-ini │ │ └── ini │ │ │ ├── LICENSE │ │ │ ├── error.go │ │ │ ├── ini.go │ │ │ ├── key.go │ │ │ ├── parser.go │ │ │ ├── section.go │ │ │ └── struct.go │ ├── go-ole │ │ └── go-ole │ │ │ ├── LICENSE │ │ │ ├── com.go │ │ │ ├── com_func.go │ │ │ ├── connect.go │ │ │ ├── constants.go │ │ │ ├── error.go │ │ │ ├── error_func.go │ │ │ ├── error_windows.go │ │ │ ├── guid.go │ │ │ ├── iconnectionpoint.go │ │ │ ├── iconnectionpoint_func.go │ │ │ ├── iconnectionpoint_windows.go │ │ │ ├── iconnectionpointcontainer.go │ │ │ ├── iconnectionpointcontainer_func.go │ │ │ ├── iconnectionpointcontainer_windows.go │ │ │ ├── idispatch.go │ │ │ ├── idispatch_func.go │ │ │ ├── idispatch_windows.go │ │ │ ├── ienumvariant.go │ │ │ ├── ienumvariant_func.go │ │ │ ├── ienumvariant_windows.go │ │ │ ├── iinspectable.go │ │ │ ├── iinspectable_func.go │ │ │ ├── iinspectable_windows.go │ │ │ ├── iprovideclassinfo.go │ │ │ ├── iprovideclassinfo_func.go │ │ │ ├── iprovideclassinfo_windows.go │ │ │ ├── itypeinfo.go │ │ │ ├── itypeinfo_func.go │ │ │ ├── itypeinfo_windows.go │ │ │ ├── iunknown.go │ │ │ ├── iunknown_func.go │ │ │ ├── iunknown_windows.go │ │ │ ├── ole.go │ │ │ ├── oleutil │ │ │ ├── connection.go │ │ │ ├── connection_func.go │ │ │ ├── connection_windows.go │ │ │ ├── go-get.go │ │ │ └── oleutil.go │ │ │ ├── safearray.go │ │ │ ├── safearray_func.go │ │ │ ├── safearray_windows.go │ │ │ ├── safearrayconversion.go │ │ │ ├── safearrayslices.go │ │ │ ├── utility.go │ │ │ ├── variables.go │ │ │ ├── variant.go │ │ │ ├── variant_386.go │ │ │ ├── variant_amd64.go │ │ │ ├── variant_s390x.go │ │ │ ├── vt_string.go │ │ │ ├── winrt.go │ │ │ └── winrt_doc.go │ ├── go-openapi │ │ ├── jsonpointer │ │ │ ├── LICENSE │ │ │ └── pointer.go │ │ ├── jsonreference │ │ │ ├── LICENSE │ │ │ └── reference.go │ │ ├── spec │ │ │ ├── LICENSE │ │ │ ├── bindata.go │ │ │ ├── contact_info.go │ │ │ ├── expander.go │ │ │ ├── external_docs.go │ │ │ ├── header.go │ │ │ ├── info.go │ │ │ ├── items.go │ │ │ ├── license.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path_item.go │ │ │ ├── paths.go │ │ │ ├── ref.go │ │ │ ├── response.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── security_scheme.go │ │ │ ├── spec.go │ │ │ ├── swagger.go │ │ │ ├── tag.go │ │ │ └── xml_object.go │ │ └── swag │ │ │ ├── LICENSE │ │ │ ├── convert.go │ │ │ ├── convert_types.go │ │ │ ├── json.go │ │ │ ├── loading.go │ │ │ ├── net.go │ │ │ ├── path.go │ │ │ └── util.go │ ├── go-yaml │ │ └── yaml │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ ├── gogo │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ ├── gogoproto │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ └── helper.go │ │ │ ├── plugin │ │ │ ├── defaultcheck │ │ │ │ └── defaultcheck.go │ │ │ ├── description │ │ │ │ ├── description.go │ │ │ │ └── descriptiontest.go │ │ │ ├── embedcheck │ │ │ │ └── embedcheck.go │ │ │ ├── enumstringer │ │ │ │ └── enumstringer.go │ │ │ ├── equal │ │ │ │ ├── equal.go │ │ │ │ └── equaltest.go │ │ │ ├── face │ │ │ │ ├── face.go │ │ │ │ └── facetest.go │ │ │ ├── gostring │ │ │ │ ├── gostring.go │ │ │ │ └── gostringtest.go │ │ │ ├── marshalto │ │ │ │ └── marshalto.go │ │ │ ├── oneofcheck │ │ │ │ └── oneofcheck.go │ │ │ ├── populate │ │ │ │ └── populate.go │ │ │ ├── size │ │ │ │ ├── size.go │ │ │ │ └── sizetest.go │ │ │ ├── stringer │ │ │ │ ├── stringer.go │ │ │ │ └── stringertest.go │ │ │ ├── testgen │ │ │ │ └── testgen.go │ │ │ ├── union │ │ │ │ ├── union.go │ │ │ │ └── uniontest.go │ │ │ └── unmarshal │ │ │ │ └── unmarshal.go │ │ │ ├── proto │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── decode_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_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ └── text_parser.go │ │ │ ├── protoc-gen-gogo │ │ │ ├── descriptor │ │ │ │ ├── descriptor.pb.go │ │ │ │ ├── gostring.go │ │ │ │ └── helper.go │ │ │ ├── generator │ │ │ │ ├── generator.go │ │ │ │ └── helper.go │ │ │ └── plugin │ │ │ │ └── plugin.pb.go │ │ │ ├── sortkeys │ │ │ └── sortkeys.go │ │ │ └── vanity │ │ │ ├── command │ │ │ └── command.go │ │ │ ├── enum.go │ │ │ ├── field.go │ │ │ ├── file.go │ │ │ ├── foreach.go │ │ │ └── msg.go │ ├── golang │ │ ├── glog │ │ │ ├── LICENSE │ │ │ ├── glog.go │ │ │ └── glog_file.go │ │ ├── lint │ │ │ ├── LICENSE │ │ │ ├── golint │ │ │ │ ├── golint.go │ │ │ │ └── import.go │ │ │ ├── lint.go │ │ │ └── lint16.go │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ │ │ └── protoc-gen-go │ │ │ ├── doc.go │ │ │ ├── link_grpc.go │ │ │ └── main.go │ ├── google │ │ └── gofuzz │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ └── fuzz.go │ ├── gorilla │ │ └── securecookie │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── fuzz.go │ │ │ └── securecookie.go │ ├── hashicorp │ │ ├── errwrap │ │ │ ├── LICENSE │ │ │ └── errwrap.go │ │ ├── go-cleanhttp │ │ │ ├── LICENSE │ │ │ ├── cleanhttp.go │ │ │ ├── doc.go │ │ │ └── handlers.go │ │ ├── go-getter │ │ │ ├── LICENSE │ │ │ ├── client.go │ │ │ ├── client_mode.go │ │ │ ├── copy_dir.go │ │ │ ├── decompress.go │ │ │ ├── decompress_bzip2.go │ │ │ ├── decompress_gzip.go │ │ │ ├── decompress_tar.go │ │ │ ├── decompress_tbz2.go │ │ │ ├── decompress_testing.go │ │ │ ├── decompress_tgz.go │ │ │ ├── decompress_txz.go │ │ │ ├── decompress_xz.go │ │ │ ├── decompress_zip.go │ │ │ ├── detect.go │ │ │ ├── detect_bitbucket.go │ │ │ ├── detect_file.go │ │ │ ├── detect_github.go │ │ │ ├── detect_s3.go │ │ │ ├── folder_storage.go │ │ │ ├── get.go │ │ │ ├── get_file.go │ │ │ ├── get_file_unix.go │ │ │ ├── get_file_windows.go │ │ │ ├── get_git.go │ │ │ ├── get_hg.go │ │ │ ├── get_http.go │ │ │ ├── get_mock.go │ │ │ ├── get_s3.go │ │ │ ├── helper │ │ │ │ └── url │ │ │ │ │ ├── url.go │ │ │ │ │ ├── url_unix.go │ │ │ │ │ └── url_windows.go │ │ │ ├── netrc.go │ │ │ ├── source.go │ │ │ └── storage.go │ │ ├── go-multierror │ │ │ ├── LICENSE │ │ │ ├── append.go │ │ │ ├── flatten.go │ │ │ ├── format.go │ │ │ ├── multierror.go │ │ │ └── prefix.go │ │ ├── go-plugin │ │ │ ├── LICENSE │ │ │ ├── client.go │ │ │ ├── discover.go │ │ │ ├── error.go │ │ │ ├── mux_broker.go │ │ │ ├── plugin.go │ │ │ ├── process.go │ │ │ ├── process_posix.go │ │ │ ├── process_windows.go │ │ │ ├── rpc_client.go │ │ │ ├── rpc_server.go │ │ │ ├── server.go │ │ │ ├── server_mux.go │ │ │ ├── stream.go │ │ │ └── testing.go │ │ ├── go-uuid │ │ │ ├── LICENSE │ │ │ └── uuid.go │ │ ├── go-version │ │ │ ├── LICENSE │ │ │ ├── constraint.go │ │ │ ├── version.go │ │ │ └── version_collection.go │ │ ├── hcl │ │ │ ├── LICENSE │ │ │ ├── decoder.go │ │ │ ├── hcl.go │ │ │ ├── hcl │ │ │ │ ├── ast │ │ │ │ │ ├── ast.go │ │ │ │ │ └── walk.go │ │ │ │ ├── parser │ │ │ │ │ ├── error.go │ │ │ │ │ └── parser.go │ │ │ │ ├── scanner │ │ │ │ │ └── scanner.go │ │ │ │ ├── strconv │ │ │ │ │ └── quote.go │ │ │ │ └── token │ │ │ │ │ ├── position.go │ │ │ │ │ └── token.go │ │ │ ├── json │ │ │ │ ├── parser │ │ │ │ │ ├── flatten.go │ │ │ │ │ └── parser.go │ │ │ │ ├── scanner │ │ │ │ │ └── scanner.go │ │ │ │ └── token │ │ │ │ │ ├── position.go │ │ │ │ │ └── token.go │ │ │ ├── lex.go │ │ │ └── parse.go │ │ ├── hcl2 │ │ │ ├── LICENSE │ │ │ ├── gohcl │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ ├── schema.go │ │ │ │ └── types.go │ │ │ ├── hcl │ │ │ │ ├── diagnostic.go │ │ │ │ ├── diagnostic_text.go │ │ │ │ ├── didyoumean.go │ │ │ │ ├── doc.go │ │ │ │ ├── eval_context.go │ │ │ │ ├── hclsyntax │ │ │ │ │ ├── didyoumean.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── expression.go │ │ │ │ │ ├── expression_ops.go │ │ │ │ │ ├── expression_template.go │ │ │ │ │ ├── expression_vars.go │ │ │ │ │ ├── expression_vars_gen.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── generate.go │ │ │ │ │ ├── keywords.go │ │ │ │ │ ├── navigation.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── parser_template.go │ │ │ │ │ ├── parser_traversal.go │ │ │ │ │ ├── peeker.go │ │ │ │ │ ├── public.go │ │ │ │ │ ├── scan_tokens.go │ │ │ │ │ ├── structure.go │ │ │ │ │ ├── token.go │ │ │ │ │ ├── token_type_string.go │ │ │ │ │ ├── variables.go │ │ │ │ │ └── walk.go │ │ │ │ ├── json │ │ │ │ │ ├── ast.go │ │ │ │ │ ├── didyoumean.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── navigation.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── peeker.go │ │ │ │ │ ├── public.go │ │ │ │ │ ├── scanner.go │ │ │ │ │ ├── structure.go │ │ │ │ │ └── tokentype_string.go │ │ │ │ ├── merged.go │ │ │ │ ├── ops.go │ │ │ │ ├── pos.go │ │ │ │ ├── schema.go │ │ │ │ ├── static_expr.go │ │ │ │ ├── structure.go │ │ │ │ └── traversal.go │ │ │ ├── hcldec │ │ │ │ ├── block_labels.go │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ ├── gob.go │ │ │ │ ├── public.go │ │ │ │ ├── schema.go │ │ │ │ ├── spec.go │ │ │ │ └── variables.go │ │ │ └── hclparse │ │ │ │ └── parser.go │ │ ├── hil │ │ │ ├── LICENSE │ │ │ ├── ast │ │ │ │ ├── arithmetic.go │ │ │ │ ├── arithmetic_op.go │ │ │ │ ├── ast.go │ │ │ │ ├── call.go │ │ │ │ ├── conditional.go │ │ │ │ ├── index.go │ │ │ │ ├── literal.go │ │ │ │ ├── output.go │ │ │ │ ├── scope.go │ │ │ │ ├── stack.go │ │ │ │ ├── type_string.go │ │ │ │ ├── unknown.go │ │ │ │ ├── variable_access.go │ │ │ │ └── variables_helper.go │ │ │ ├── builtins.go │ │ │ ├── check_identifier.go │ │ │ ├── check_types.go │ │ │ ├── convert.go │ │ │ ├── eval.go │ │ │ ├── eval_type.go │ │ │ ├── evaltype_string.go │ │ │ ├── parse.go │ │ │ ├── parser │ │ │ │ ├── binary_op.go │ │ │ │ ├── error.go │ │ │ │ ├── fuzz.go │ │ │ │ └── parser.go │ │ │ ├── scanner │ │ │ │ ├── peeker.go │ │ │ │ ├── scanner.go │ │ │ │ ├── token.go │ │ │ │ └── tokentype_string.go │ │ │ ├── transform_fixed.go │ │ │ └── walk.go │ │ ├── terraform │ │ │ ├── LICENSE │ │ │ ├── checkpoint.go │ │ │ ├── commands.go │ │ │ ├── config.go │ │ │ ├── config │ │ │ │ ├── append.go │ │ │ │ ├── config.go │ │ │ │ ├── config_string.go │ │ │ │ ├── config_terraform.go │ │ │ │ ├── config_tree.go │ │ │ │ ├── configschema │ │ │ │ │ ├── decoder_spec.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── implied_type.go │ │ │ │ │ ├── internal_validate.go │ │ │ │ │ ├── nestingmode_string.go │ │ │ │ │ └── schema.go │ │ │ │ ├── hcl2_shim_util.go │ │ │ │ ├── hcl2shim │ │ │ │ │ ├── single_attr_body.go │ │ │ │ │ └── values.go │ │ │ │ ├── import_tree.go │ │ │ │ ├── interpolate.go │ │ │ │ ├── interpolate_funcs.go │ │ │ │ ├── interpolate_walk.go │ │ │ │ ├── lang.go │ │ │ │ ├── loader.go │ │ │ │ ├── loader_hcl.go │ │ │ │ ├── loader_hcl2.go │ │ │ │ ├── merge.go │ │ │ │ ├── module │ │ │ │ │ ├── copy_dir.go │ │ │ │ │ ├── get.go │ │ │ │ │ ├── inode.go │ │ │ │ │ ├── inode_freebsd.go │ │ │ │ │ ├── inode_windows.go │ │ │ │ │ ├── module.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── testing.go │ │ │ │ │ ├── tree.go │ │ │ │ │ ├── tree_gob.go │ │ │ │ │ ├── validate_provider_alias.go │ │ │ │ │ └── versions.go │ │ │ │ ├── providers.go │ │ │ │ ├── provisioner_enums.go │ │ │ │ ├── raw_config.go │ │ │ │ ├── resource_mode.go │ │ │ │ ├── resource_mode_string.go │ │ │ │ └── testing.go │ │ │ ├── config_unix.go │ │ │ ├── config_windows.go │ │ │ ├── dag │ │ │ │ ├── dag.go │ │ │ │ ├── dot.go │ │ │ │ ├── edge.go │ │ │ │ ├── graph.go │ │ │ │ ├── marshal.go │ │ │ │ ├── set.go │ │ │ │ ├── tarjan.go │ │ │ │ └── walk.go │ │ │ ├── flatmap │ │ │ │ ├── expand.go │ │ │ │ ├── flatten.go │ │ │ │ └── map.go │ │ │ ├── help.go │ │ │ ├── helper │ │ │ │ ├── config │ │ │ │ │ ├── decode.go │ │ │ │ │ └── validator.go │ │ │ │ ├── experiment │ │ │ │ │ ├── experiment.go │ │ │ │ │ └── id.go │ │ │ │ ├── hashcode │ │ │ │ │ └── hashcode.go │ │ │ │ ├── hilmapstructure │ │ │ │ │ └── hilmapstructure.go │ │ │ │ ├── logging │ │ │ │ │ ├── logging.go │ │ │ │ │ └── transport.go │ │ │ │ ├── pathorcontents │ │ │ │ │ └── read.go │ │ │ │ ├── resource │ │ │ │ │ ├── error.go │ │ │ │ │ ├── id.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── resource.go │ │ │ │ │ ├── state.go │ │ │ │ │ ├── testing.go │ │ │ │ │ ├── testing_config.go │ │ │ │ │ ├── testing_import_state.go │ │ │ │ │ └── wait.go │ │ │ │ ├── schema │ │ │ │ │ ├── backend.go │ │ │ │ │ ├── core_schema.go │ │ │ │ │ ├── data_source_resource_shim.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── field_reader.go │ │ │ │ │ ├── field_reader_config.go │ │ │ │ │ ├── field_reader_diff.go │ │ │ │ │ ├── field_reader_map.go │ │ │ │ │ ├── field_reader_multi.go │ │ │ │ │ ├── field_writer.go │ │ │ │ │ ├── field_writer_map.go │ │ │ │ │ ├── getsource_string.go │ │ │ │ │ ├── provider.go │ │ │ │ │ ├── provisioner.go │ │ │ │ │ ├── resource.go │ │ │ │ │ ├── resource_data.go │ │ │ │ │ ├── resource_data_get_source.go │ │ │ │ │ ├── resource_diff.go │ │ │ │ │ ├── resource_importer.go │ │ │ │ │ ├── resource_timeout.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── serialize.go │ │ │ │ │ ├── set.go │ │ │ │ │ ├── testing.go │ │ │ │ │ ├── valuetype.go │ │ │ │ │ └── valuetype_string.go │ │ │ │ └── shadow │ │ │ │ │ ├── closer.go │ │ │ │ │ ├── compared_value.go │ │ │ │ │ ├── keyed_value.go │ │ │ │ │ ├── ordered_value.go │ │ │ │ │ └── value.go │ │ │ ├── main.go │ │ │ ├── moduledeps │ │ │ │ ├── dependencies.go │ │ │ │ ├── doc.go │ │ │ │ ├── module.go │ │ │ │ └── provider.go │ │ │ ├── panic.go │ │ │ ├── plugin │ │ │ │ ├── client.go │ │ │ │ ├── discovery │ │ │ │ │ ├── error.go │ │ │ │ │ ├── find.go │ │ │ │ │ ├── get.go │ │ │ │ │ ├── get_cache.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── meta_set.go │ │ │ │ │ ├── requirements.go │ │ │ │ │ ├── signature.go │ │ │ │ │ ├── version.go │ │ │ │ │ └── version_set.go │ │ │ │ ├── plugin.go │ │ │ │ ├── resource_provider.go │ │ │ │ ├── resource_provisioner.go │ │ │ │ ├── serve.go │ │ │ │ ├── ui_input.go │ │ │ │ └── ui_output.go │ │ │ ├── plugins.go │ │ │ ├── registry │ │ │ │ ├── regsrc │ │ │ │ │ ├── friendly_host.go │ │ │ │ │ ├── module.go │ │ │ │ │ └── regsrc.go │ │ │ │ └── response │ │ │ │ │ ├── module.go │ │ │ │ │ ├── module_list.go │ │ │ │ │ ├── module_provider.go │ │ │ │ │ ├── module_versions.go │ │ │ │ │ ├── pagination.go │ │ │ │ │ └── redirect.go │ │ │ ├── signal_unix.go │ │ │ ├── signal_windows.go │ │ │ ├── svchost │ │ │ │ ├── auth │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── from_map.go │ │ │ │ │ ├── helper_program.go │ │ │ │ │ ├── static.go │ │ │ │ │ └── token_credentials.go │ │ │ │ ├── disco │ │ │ │ │ ├── disco.go │ │ │ │ │ └── host.go │ │ │ │ ├── label_iter.go │ │ │ │ └── svchost.go │ │ │ ├── synchronized_writers.go │ │ │ ├── terraform │ │ │ │ ├── context.go │ │ │ │ ├── context_components.go │ │ │ │ ├── context_graph_type.go │ │ │ │ ├── context_import.go │ │ │ │ ├── debug.go │ │ │ │ ├── diff.go │ │ │ │ ├── edge_destroy.go │ │ │ │ ├── eval.go │ │ │ │ ├── eval_apply.go │ │ │ │ ├── eval_check_prevent_destroy.go │ │ │ │ ├── eval_context.go │ │ │ │ ├── eval_context_builtin.go │ │ │ │ ├── eval_context_mock.go │ │ │ │ ├── eval_count.go │ │ │ │ ├── eval_count_boundary.go │ │ │ │ ├── eval_count_computed.go │ │ │ │ ├── eval_diff.go │ │ │ │ ├── eval_error.go │ │ │ │ ├── eval_filter.go │ │ │ │ ├── eval_filter_operation.go │ │ │ │ ├── eval_if.go │ │ │ │ ├── eval_import_state.go │ │ │ │ ├── eval_interpolate.go │ │ │ │ ├── eval_local.go │ │ │ │ ├── eval_noop.go │ │ │ │ ├── eval_output.go │ │ │ │ ├── eval_provider.go │ │ │ │ ├── eval_provisioner.go │ │ │ │ ├── eval_read_data.go │ │ │ │ ├── eval_refresh.go │ │ │ │ ├── eval_resource.go │ │ │ │ ├── eval_sequence.go │ │ │ │ ├── eval_state.go │ │ │ │ ├── eval_validate.go │ │ │ │ ├── eval_validate_selfref.go │ │ │ │ ├── eval_variable.go │ │ │ │ ├── evaltree_provider.go │ │ │ │ ├── features.go │ │ │ │ ├── graph.go │ │ │ │ ├── graph_builder.go │ │ │ │ ├── graph_builder_apply.go │ │ │ │ ├── graph_builder_destroy_plan.go │ │ │ │ ├── graph_builder_import.go │ │ │ │ ├── graph_builder_input.go │ │ │ │ ├── graph_builder_plan.go │ │ │ │ ├── graph_builder_refresh.go │ │ │ │ ├── graph_builder_validate.go │ │ │ │ ├── graph_dot.go │ │ │ │ ├── graph_interface_subgraph.go │ │ │ │ ├── graph_walk.go │ │ │ │ ├── graph_walk_context.go │ │ │ │ ├── graph_walk_operation.go │ │ │ │ ├── graphtype_string.go │ │ │ │ ├── hook.go │ │ │ │ ├── hook_mock.go │ │ │ │ ├── hook_stop.go │ │ │ │ ├── instancetype.go │ │ │ │ ├── instancetype_string.go │ │ │ │ ├── interpolate.go │ │ │ │ ├── module_dependencies.go │ │ │ │ ├── node_count_boundary.go │ │ │ │ ├── node_data_destroy.go │ │ │ │ ├── node_data_refresh.go │ │ │ │ ├── node_local.go │ │ │ │ ├── node_module_removed.go │ │ │ │ ├── node_module_variable.go │ │ │ │ ├── node_output.go │ │ │ │ ├── node_output_orphan.go │ │ │ │ ├── node_provider.go │ │ │ │ ├── node_provider_abstract.go │ │ │ │ ├── node_provider_disabled.go │ │ │ │ ├── node_provisioner.go │ │ │ │ ├── node_resource_abstract.go │ │ │ │ ├── node_resource_abstract_count.go │ │ │ │ ├── node_resource_apply.go │ │ │ │ ├── node_resource_destroy.go │ │ │ │ ├── node_resource_plan.go │ │ │ │ ├── node_resource_plan_destroy.go │ │ │ │ ├── node_resource_plan_instance.go │ │ │ │ ├── node_resource_plan_orphan.go │ │ │ │ ├── node_resource_refresh.go │ │ │ │ ├── node_resource_validate.go │ │ │ │ ├── node_root_variable.go │ │ │ │ ├── path.go │ │ │ │ ├── plan.go │ │ │ │ ├── resource.go │ │ │ │ ├── resource_address.go │ │ │ │ ├── resource_provider.go │ │ │ │ ├── resource_provider_mock.go │ │ │ │ ├── resource_provisioner.go │ │ │ │ ├── resource_provisioner_mock.go │ │ │ │ ├── schemas.go │ │ │ │ ├── semantics.go │ │ │ │ ├── state.go │ │ │ │ ├── state_add.go │ │ │ │ ├── state_filter.go │ │ │ │ ├── state_upgrade_v1_to_v2.go │ │ │ │ ├── state_upgrade_v2_to_v3.go │ │ │ │ ├── state_v1.go │ │ │ │ ├── testing.go │ │ │ │ ├── transform.go │ │ │ │ ├── transform_attach_config_provider.go │ │ │ │ ├── transform_attach_config_resource.go │ │ │ │ ├── transform_attach_state.go │ │ │ │ ├── transform_config.go │ │ │ │ ├── transform_config_flat.go │ │ │ │ ├── transform_config_old.go │ │ │ │ ├── transform_count_boundary.go │ │ │ │ ├── transform_deposed.go │ │ │ │ ├── transform_destroy_cbd.go │ │ │ │ ├── transform_destroy_edge.go │ │ │ │ ├── transform_diff.go │ │ │ │ ├── transform_expand.go │ │ │ │ ├── transform_import_provider.go │ │ │ │ ├── transform_import_state.go │ │ │ │ ├── transform_local.go │ │ │ │ ├── transform_module_variable.go │ │ │ │ ├── transform_orphan_count.go │ │ │ │ ├── transform_orphan_output.go │ │ │ │ ├── transform_orphan_resource.go │ │ │ │ ├── transform_output.go │ │ │ │ ├── transform_provider.go │ │ │ │ ├── transform_provisioner.go │ │ │ │ ├── transform_reference.go │ │ │ │ ├── transform_removed_modules.go │ │ │ │ ├── transform_resource_count.go │ │ │ │ ├── transform_root.go │ │ │ │ ├── transform_state.go │ │ │ │ ├── transform_targets.go │ │ │ │ ├── transform_transitive_reduction.go │ │ │ │ ├── transform_variable.go │ │ │ │ ├── transform_vertex.go │ │ │ │ ├── ui_input.go │ │ │ │ ├── ui_input_mock.go │ │ │ │ ├── ui_input_prefix.go │ │ │ │ ├── ui_output.go │ │ │ │ ├── ui_output_callback.go │ │ │ │ ├── ui_output_mock.go │ │ │ │ ├── ui_output_provisioner.go │ │ │ │ ├── user_agent.go │ │ │ │ ├── util.go │ │ │ │ ├── variables.go │ │ │ │ ├── version.go │ │ │ │ ├── version_required.go │ │ │ │ └── walkoperation_string.go │ │ │ ├── tfdiags │ │ │ │ ├── diagnostic.go │ │ │ │ ├── diagnostics.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── hcl.go │ │ │ │ ├── rpc_friendly.go │ │ │ │ ├── severity_string.go │ │ │ │ ├── simple_warning.go │ │ │ │ └── source_range.go │ │ │ ├── version.go │ │ │ └── version │ │ │ │ └── version.go │ │ └── vault │ │ │ ├── LICENSE │ │ │ ├── helper │ │ │ ├── compressutil │ │ │ │ └── compress.go │ │ │ ├── jsonutil │ │ │ │ └── json.go │ │ │ └── pgpkeys │ │ │ │ ├── encrypt_decrypt.go │ │ │ │ ├── flag.go │ │ │ │ ├── keybase.go │ │ │ │ └── test_keys.go │ │ │ └── main.go │ ├── howeyc │ │ └── gopass │ │ │ ├── LICENSE.txt │ │ │ ├── pass.go │ │ │ ├── terminal.go │ │ │ └── terminal_solaris.go │ ├── imdario │ │ └── mergo │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── merge.go │ │ │ └── mergo.go │ ├── jmespath │ │ └── go-jmespath │ │ │ ├── LICENSE │ │ │ ├── api.go │ │ │ ├── astnodetype_string.go │ │ │ ├── functions.go │ │ │ ├── interpreter.go │ │ │ ├── lexer.go │ │ │ ├── parser.go │ │ │ ├── toktype_string.go │ │ │ └── util.go │ ├── jonboulle │ │ └── clockwork │ │ │ ├── LICENSE │ │ │ └── clockwork.go │ ├── jteeuwen │ │ └── go-bindata │ │ │ ├── LICENSE │ │ │ ├── asset.go │ │ │ ├── bytewriter.go │ │ │ ├── config.go │ │ │ ├── convert.go │ │ │ ├── debug.go │ │ │ ├── doc.go │ │ │ ├── go-bindata │ │ │ ├── AppendSliceValue.go │ │ │ ├── main.go │ │ │ └── version.go │ │ │ ├── release.go │ │ │ ├── restore.go │ │ │ ├── stringwriter.go │ │ │ └── toc.go │ ├── kardianos │ │ └── osext │ │ │ ├── LICENSE │ │ │ ├── osext.go │ │ │ ├── osext_plan9.go │ │ │ ├── osext_procfs.go │ │ │ ├── osext_sysctl.go │ │ │ └── osext_windows.go │ ├── kubernetes-incubator │ │ └── bootkube │ │ │ ├── LICENSE │ │ │ └── NOTICE │ ├── mailru │ │ └── easyjson │ │ │ ├── LICENSE │ │ │ ├── buffer │ │ │ └── pool.go │ │ │ ├── helpers.go │ │ │ ├── jlexer │ │ │ ├── error.go │ │ │ └── lexer.go │ │ │ ├── jwriter │ │ │ └── writer.go │ │ │ └── raw.go │ ├── mattn │ │ └── go-isatty │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── isatty_appengine.go │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_linux.go │ │ │ ├── isatty_linux_ppc64x.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_solaris.go │ │ │ └── isatty_windows.go │ ├── mitchellh │ │ ├── cli │ │ │ ├── LICENSE │ │ │ ├── autocomplete.go │ │ │ ├── cli.go │ │ │ ├── command.go │ │ │ ├── command_mock.go │ │ │ ├── help.go │ │ │ ├── ui.go │ │ │ ├── ui_colored.go │ │ │ ├── ui_concurrent.go │ │ │ ├── ui_mock.go │ │ │ └── ui_writer.go │ │ ├── copystructure │ │ │ ├── LICENSE │ │ │ ├── copier_time.go │ │ │ └── copystructure.go │ │ ├── go-homedir │ │ │ ├── LICENSE │ │ │ └── homedir.go │ │ ├── go-testing-interface │ │ │ ├── LICENSE │ │ │ ├── testing.go │ │ │ └── testing_go19.go │ │ ├── go-wordwrap │ │ │ ├── LICENSE.md │ │ │ └── wordwrap.go │ │ ├── hashstructure │ │ │ ├── LICENSE │ │ │ ├── hashstructure.go │ │ │ └── include.go │ │ ├── mapstructure │ │ │ ├── LICENSE │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ └── mapstructure.go │ │ └── reflectwalk │ │ │ ├── LICENSE │ │ │ ├── location.go │ │ │ ├── location_string.go │ │ │ └── reflectwalk.go │ ├── pborman │ │ └── uuid │ │ │ ├── LICENSE │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── json.go │ │ │ ├── node.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── posener │ │ └── complete │ │ │ ├── LICENSE.txt │ │ │ ├── args.go │ │ │ ├── cmd │ │ │ ├── cmd.go │ │ │ └── install │ │ │ │ ├── bash.go │ │ │ │ ├── install.go │ │ │ │ ├── utils.go │ │ │ │ └── zsh.go │ │ │ ├── command.go │ │ │ ├── complete.go │ │ │ ├── log.go │ │ │ ├── match │ │ │ ├── file.go │ │ │ ├── match.go │ │ │ └── prefix.go │ │ │ ├── predict.go │ │ │ ├── predict_files.go │ │ │ ├── predict_set.go │ │ │ └── utils.go │ ├── satori │ │ └── go.uuid │ │ │ ├── LICENSE │ │ │ └── uuid.go │ ├── shirou │ │ ├── gopsutil │ │ │ ├── LICENSE │ │ │ ├── cpu │ │ │ │ ├── cpu.go │ │ │ │ ├── cpu_darwin.go │ │ │ │ ├── cpu_darwin_cgo.go │ │ │ │ ├── cpu_darwin_nocgo.go │ │ │ │ ├── cpu_fallback.go │ │ │ │ ├── cpu_freebsd.go │ │ │ │ ├── cpu_linux.go │ │ │ │ ├── cpu_openbsd.go │ │ │ │ ├── cpu_solaris.go │ │ │ │ └── cpu_windows.go │ │ │ ├── doc.go │ │ │ ├── host │ │ │ │ ├── host.go │ │ │ │ ├── host_darwin.go │ │ │ │ ├── host_darwin_386.go │ │ │ │ ├── host_darwin_amd64.go │ │ │ │ ├── host_fallback.go │ │ │ │ ├── host_freebsd.go │ │ │ │ ├── host_freebsd_386.go │ │ │ │ ├── host_freebsd_amd64.go │ │ │ │ ├── host_freebsd_arm.go │ │ │ │ ├── host_linux.go │ │ │ │ ├── host_linux_386.go │ │ │ │ ├── host_linux_amd64.go │ │ │ │ ├── host_linux_arm.go │ │ │ │ ├── host_linux_arm64.go │ │ │ │ ├── host_linux_ppc64le.go │ │ │ │ ├── host_linux_s390x.go │ │ │ │ ├── host_openbsd.go │ │ │ │ ├── host_openbsd_amd64.go │ │ │ │ ├── host_solaris.go │ │ │ │ ├── host_windows.go │ │ │ │ ├── types_darwin.go │ │ │ │ ├── types_freebsd.go │ │ │ │ ├── types_linux.go │ │ │ │ └── types_openbsd.go │ │ │ ├── internal │ │ │ │ └── common │ │ │ │ │ ├── binary.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── common_darwin.go │ │ │ │ │ ├── common_freebsd.go │ │ │ │ │ ├── common_linux.go │ │ │ │ │ ├── common_openbsd.go │ │ │ │ │ ├── common_unix.go │ │ │ │ │ └── common_windows.go │ │ │ ├── mem │ │ │ │ ├── mem.go │ │ │ │ ├── mem_darwin.go │ │ │ │ ├── mem_darwin_cgo.go │ │ │ │ ├── mem_darwin_nocgo.go │ │ │ │ ├── mem_fallback.go │ │ │ │ ├── mem_freebsd.go │ │ │ │ ├── mem_linux.go │ │ │ │ ├── mem_openbsd.go │ │ │ │ ├── mem_openbsd_amd64.go │ │ │ │ ├── mem_solaris.go │ │ │ │ ├── mem_windows.go │ │ │ │ └── types_openbsd.go │ │ │ ├── net │ │ │ │ ├── net.go │ │ │ │ ├── net_darwin.go │ │ │ │ ├── net_fallback.go │ │ │ │ ├── net_freebsd.go │ │ │ │ ├── net_linux.go │ │ │ │ ├── net_openbsd.go │ │ │ │ ├── net_unix.go │ │ │ │ └── net_windows.go │ │ │ └── process │ │ │ │ ├── process.go │ │ │ │ ├── process_darwin.go │ │ │ │ ├── process_darwin_386.go │ │ │ │ ├── process_darwin_amd64.go │ │ │ │ ├── process_fallback.go │ │ │ │ ├── process_freebsd.go │ │ │ │ ├── process_freebsd_386.go │ │ │ │ ├── process_freebsd_amd64.go │ │ │ │ ├── process_freebsd_arm.go │ │ │ │ ├── process_linux.go │ │ │ │ ├── process_openbsd.go │ │ │ │ ├── process_openbsd_amd64.go │ │ │ │ ├── process_posix.go │ │ │ │ ├── process_windows.go │ │ │ │ ├── process_windows_386.go │ │ │ │ ├── process_windows_amd64.go │ │ │ │ ├── types_darwin.go │ │ │ │ ├── types_freebsd.go │ │ │ │ └── types_openbsd.go │ │ └── w32 │ │ │ ├── LICENSE │ │ │ ├── advapi32.go │ │ │ ├── comctl32.go │ │ │ ├── comdlg32.go │ │ │ ├── constants.go │ │ │ ├── dwmapi.go │ │ │ ├── gdi32.go │ │ │ ├── gdiplus.go │ │ │ ├── idispatch.go │ │ │ ├── istream.go │ │ │ ├── iunknown.go │ │ │ ├── kernel32.go │ │ │ ├── ole32.go │ │ │ ├── oleaut32.go │ │ │ ├── opengl32.go │ │ │ ├── psapi.go │ │ │ ├── shell32.go │ │ │ ├── typedef.go │ │ │ ├── user32.go │ │ │ ├── utils.go │ │ │ └── vars.go │ ├── spf13 │ │ └── pflag │ │ │ ├── LICENSE │ │ │ ├── bool.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_slice.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ └── uint8.go │ ├── stretchr │ │ └── testify │ │ │ ├── LICENCE.txt │ │ │ ├── LICENSE │ │ │ ├── assert │ │ │ ├── assertion_forward.go │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ └── http_assertions.go │ │ │ └── doc.go │ ├── toqueteos │ │ └── webbrowser │ │ │ ├── LICENSE.md │ │ │ ├── doc.go │ │ │ └── webbrowser.go │ ├── ugorji │ │ └── go │ │ │ ├── LICENSE │ │ │ └── codec │ │ │ ├── 0doc.go │ │ │ ├── binc.go │ │ │ ├── cbor.go │ │ │ ├── codecgen │ │ │ ├── gen.go │ │ │ └── z.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── fast-path.generated.go │ │ │ ├── fast-path.not.go │ │ │ ├── gen-helper.generated.go │ │ │ ├── gen.generated.go │ │ │ ├── gen.go │ │ │ ├── helper.go │ │ │ ├── helper_internal.go │ │ │ ├── helper_not_unsafe.go │ │ │ ├── helper_unsafe.go │ │ │ ├── json.go │ │ │ ├── msgpack.go │ │ │ ├── noop.go │ │ │ ├── prebuild.go │ │ │ ├── rpc.go │ │ │ ├── simple.go │ │ │ └── time.go │ ├── ulikunitz │ │ └── xz │ │ │ ├── LICENSE │ │ │ ├── bits.go │ │ │ ├── crc.go │ │ │ ├── example.go │ │ │ ├── format.go │ │ │ ├── internal │ │ │ ├── hash │ │ │ │ ├── cyclic_poly.go │ │ │ │ ├── doc.go │ │ │ │ ├── rabin_karp.go │ │ │ │ └── roller.go │ │ │ └── xlog │ │ │ │ └── xlog.go │ │ │ ├── lzma │ │ │ ├── bintree.go │ │ │ ├── bitops.go │ │ │ ├── breader.go │ │ │ ├── buffer.go │ │ │ ├── bytewriter.go │ │ │ ├── decoder.go │ │ │ ├── decoderdict.go │ │ │ ├── directcodec.go │ │ │ ├── distcodec.go │ │ │ ├── encoder.go │ │ │ ├── encoderdict.go │ │ │ ├── hashtable.go │ │ │ ├── header.go │ │ │ ├── header2.go │ │ │ ├── lengthcodec.go │ │ │ ├── literalcodec.go │ │ │ ├── matchalgorithm.go │ │ │ ├── operation.go │ │ │ ├── prob.go │ │ │ ├── properties.go │ │ │ ├── rangecodec.go │ │ │ ├── reader.go │ │ │ ├── reader2.go │ │ │ ├── state.go │ │ │ ├── treecodecs.go │ │ │ ├── writer.go │ │ │ └── writer2.go │ │ │ ├── lzmafilter.go │ │ │ ├── reader.go │ │ │ └── writer.go │ ├── vincent-petithory │ │ └── dataurl │ │ │ ├── LICENSE │ │ │ ├── dataurl.go │ │ │ ├── doc.go │ │ │ ├── lex.go │ │ │ └── rfc2396.go │ └── zclconf │ │ └── go-cty │ │ └── cty │ │ ├── capsule.go │ │ ├── collection.go │ │ ├── convert │ │ ├── compare_types.go │ │ ├── conversion.go │ │ ├── conversion_collection.go │ │ ├── conversion_dynamic.go │ │ ├── conversion_primitive.go │ │ ├── doc.go │ │ ├── public.go │ │ ├── sort_types.go │ │ └── unify.go │ │ ├── doc.go │ │ ├── element_iterator.go │ │ ├── error.go │ │ ├── function │ │ ├── argument.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── function.go │ │ └── stdlib │ │ │ ├── bool.go │ │ │ ├── bytes.go │ │ │ ├── collection.go │ │ │ ├── doc.go │ │ │ ├── general.go │ │ │ ├── json.go │ │ │ ├── number.go │ │ │ ├── sequence.go │ │ │ └── string.go │ │ ├── gob.go │ │ ├── gocty │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── in.go │ │ ├── out.go │ │ └── type_implied.go │ │ ├── helper.go │ │ ├── json.go │ │ ├── json │ │ ├── doc.go │ │ ├── marshal.go │ │ ├── simple.go │ │ ├── type.go │ │ ├── type_implied.go │ │ ├── unmarshal.go │ │ └── value.go │ │ ├── list_type.go │ │ ├── map_type.go │ │ ├── null.go │ │ ├── object_type.go │ │ ├── path.go │ │ ├── primitive_type.go │ │ ├── set │ │ ├── gob.go │ │ ├── iterator.go │ │ ├── ops.go │ │ ├── rules.go │ │ └── set.go │ │ ├── set_internals.go │ │ ├── set_type.go │ │ ├── tuple_type.go │ │ ├── type.go │ │ ├── type_conform.go │ │ ├── types_to_register.go │ │ ├── unknown.go │ │ ├── value.go │ │ ├── value_init.go │ │ └── value_ops.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ └── bcrypt.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── cast5 │ │ │ └── cast5.go │ │ ├── curve25519 │ │ │ ├── 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 │ │ ├── openpgp │ │ │ ├── armor │ │ │ │ ├── armor.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.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 │ │ └── ssh │ │ │ ├── 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 │ │ │ ├── tcpip.go │ │ │ ├── terminal │ │ │ ├── terminal.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ └── util_windows.go │ │ │ └── transport.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── context │ │ │ ├── context.go │ │ │ ├── ctxhttp │ │ │ │ ├── ctxhttp.go │ │ │ │ └── ctxhttp_pre17.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ ├── gen.go │ │ │ │ └── table.go │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── escape.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ ├── render.go │ │ │ └── token.go │ │ ├── http2 │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── go19.go │ │ │ ├── gotrack.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── not_go19.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ └── writesched_random.go │ │ ├── idna │ │ │ ├── idna.go │ │ │ ├── punycode.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ └── timeseries │ │ │ │ └── timeseries.go │ │ ├── lex │ │ │ └── httplex │ │ │ │ └── httplex.go │ │ └── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ └── trace_go17.go │ │ ├── oauth2 │ │ ├── LICENSE │ │ ├── client_appengine.go │ │ ├── google │ │ │ ├── appengine.go │ │ │ ├── appengine_hook.go │ │ │ ├── appenginevm_hook.go │ │ │ ├── default.go │ │ │ ├── google.go │ │ │ ├── jwt.go │ │ │ └── sdk.go │ │ ├── internal │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ ├── jws │ │ │ └── jws.go │ │ ├── jwt │ │ │ └── jwt.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── unix │ │ │ ├── asm.s │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── constants.go │ │ │ ├── env_unix.go │ │ │ ├── env_unset.go │ │ │ ├── flock.go │ │ │ ├── flock_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── mkpost.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_no_getwd.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_linux.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.go │ │ │ ├── zerrors_darwin_386.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd.go │ │ │ ├── zsysnum_darwin_386.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ ├── ztypes_darwin_386.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ └── ztypes_solaris_amd64.go │ │ ├── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cases │ │ │ ├── cases.go │ │ │ ├── context.go │ │ │ ├── fold.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── icu.go │ │ │ ├── info.go │ │ │ ├── map.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ ├── doc.go │ │ ├── gen.go │ │ ├── internal │ │ │ ├── gen.go │ │ │ ├── internal.go │ │ │ ├── match.go │ │ │ ├── tables.go │ │ │ └── tag │ │ │ │ └── tag.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── coverage.go │ │ │ ├── doc.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── gen_index.go │ │ │ ├── go1_1.go │ │ │ ├── go1_2.go │ │ │ ├── index.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ └── runes.go │ │ ├── secure │ │ │ ├── bidirule │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ └── bidirule9.0.0.go │ │ │ └── precis │ │ │ │ ├── class.go │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── nickname.go │ │ │ │ ├── options.go │ │ │ │ ├── profile.go │ │ │ │ ├── profiles.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transformer.go │ │ │ │ └── trieval.go │ │ ├── transform │ │ │ └── transform.go │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_ranges.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── maketables.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ ├── trie.go │ │ │ │ └── triegen.go │ │ └── width │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── gen_trieval.go │ │ │ ├── kind_string.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ └── tools │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── go │ │ └── gcimporter15 │ │ ├── bexport.go │ │ ├── bimport.go │ │ ├── exportdata.go │ │ ├── gcimporter.go │ │ ├── setname15.go │ │ └── setname16.go │ ├── google.golang.org │ ├── appengine │ │ ├── LICENSE │ │ ├── appengine.go │ │ ├── appengine_vm.go │ │ ├── errors.go │ │ ├── identity.go │ │ ├── internal │ │ │ ├── api.go │ │ │ ├── api_classic.go │ │ │ ├── api_common.go │ │ │ ├── app_id.go │ │ │ ├── app_identity │ │ │ │ └── app_identity_service.pb.go │ │ │ ├── base │ │ │ │ └── api_base.pb.go │ │ │ ├── datastore │ │ │ │ └── datastore_v3.pb.go │ │ │ ├── identity.go │ │ │ ├── identity_classic.go │ │ │ ├── identity_vm.go │ │ │ ├── internal.go │ │ │ ├── log │ │ │ │ └── log_service.pb.go │ │ │ ├── main.go │ │ │ ├── main_vm.go │ │ │ ├── metadata.go │ │ │ ├── modules │ │ │ │ └── modules_service.pb.go │ │ │ ├── net.go │ │ │ ├── remote_api │ │ │ │ └── remote_api.pb.go │ │ │ ├── transaction.go │ │ │ └── urlfetch │ │ │ │ └── urlfetch_service.pb.go │ │ ├── namespace.go │ │ ├── timeout.go │ │ └── urlfetch │ │ │ └── urlfetch.go │ └── grpc │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── backoff.go │ │ ├── balancer.go │ │ ├── call.go │ │ ├── clientconn.go │ │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ │ ├── credentials │ │ ├── credentials.go │ │ ├── credentials_util_go17.go │ │ ├── credentials_util_go18.go │ │ └── credentials_util_pre_go17.go │ │ ├── doc.go │ │ ├── grpclog │ │ └── logger.go │ │ ├── interceptor.go │ │ ├── internal │ │ └── internal.go │ │ ├── keepalive │ │ └── keepalive.go │ │ ├── metadata │ │ └── metadata.go │ │ ├── naming │ │ └── naming.go │ │ ├── peer │ │ └── peer.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── stats │ │ ├── handlers.go │ │ └── stats.go │ │ ├── stream.go │ │ ├── tap │ │ └── tap.go │ │ ├── trace.go │ │ └── transport │ │ ├── control.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── handler_server.go │ │ ├── http2_client.go │ │ ├── http2_server.go │ │ ├── http_util.go │ │ ├── pre_go16.go │ │ └── transport.go │ ├── gopkg.in │ ├── inf.v0 │ │ ├── LICENSE │ │ ├── dec.go │ │ └── rounder.go │ ├── square │ │ └── go-jose.v2 │ │ │ ├── LICENSE │ │ │ ├── asymmetric.go │ │ │ ├── crypter.go │ │ │ ├── doc.go │ │ │ ├── encoding.go │ │ │ ├── jwe.go │ │ │ ├── jwk.go │ │ │ ├── jws.go │ │ │ ├── shared.go │ │ │ ├── signing.go │ │ │ └── symmetric.go │ └── yaml.v2 │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── k8s.io │ ├── client-go │ ├── LICENSE │ ├── discovery │ │ ├── discovery_client.go │ │ ├── helper.go │ │ ├── restmapper.go │ │ └── unstructured.go │ ├── kubernetes │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── import_known_versions.go │ │ └── typed │ │ │ ├── apps │ │ │ └── v1beta1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication │ │ │ └── v1beta1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── tokenreview.go │ │ │ │ └── tokenreview_expansion.go │ │ │ ├── authorization │ │ │ └── v1beta1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ ├── autoscaling │ │ │ └── v1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ └── v2alpha1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ ├── certificates │ │ │ └── v1alpha1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.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 │ │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── job.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── scale.go │ │ │ │ ├── scale_expansion.go │ │ │ │ └── thirdpartyresource.go │ │ │ ├── policy │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac │ │ │ └── v1alpha1 │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── storage │ │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── storageclass.go │ ├── pkg │ │ ├── api │ │ │ ├── context.go │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── field_constants.go │ │ │ ├── generate.go │ │ │ ├── helpers.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── mapper.go │ │ │ ├── meta.go │ │ │ ├── meta │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ ├── help.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── meta.go │ │ │ │ ├── metatypes │ │ │ │ │ └── types.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── priority.go │ │ │ │ ├── restmapper.go │ │ │ │ └── unstructured.go │ │ │ ├── ref.go │ │ │ ├── register.go │ │ │ ├── requestcontext.go │ │ │ ├── resource │ │ │ │ ├── amount.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── scale_int.go │ │ │ │ └── suffix.go │ │ │ ├── resource_helpers.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── unversioned │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── group_version.go │ │ │ │ ├── helpers.go │ │ │ │ ├── meta.go │ │ │ │ ├── register.go │ │ │ │ ├── time.go │ │ │ │ ├── time_proto.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1 │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── helpers.go │ │ │ │ ├── meta.go │ │ │ │ ├── ref.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ ├── validation │ │ │ │ └── path │ │ │ │ │ └── name.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── apimachinery │ │ │ ├── announced │ │ │ │ ├── announced.go │ │ │ │ └── group_factory.go │ │ │ ├── doc.go │ │ │ ├── registered │ │ │ │ └── registered.go │ │ │ └── types.go │ │ ├── apis │ │ │ ├── apps │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── authentication │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── authorization │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── autoscaling │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── batch │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v2alpha1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── certificates │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── extensions │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── policy │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── rbac │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── storage │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── auth │ │ │ └── user │ │ │ │ ├── doc.go │ │ │ │ └── user.go │ │ ├── conversion │ │ │ ├── cloner.go │ │ │ ├── converter.go │ │ │ ├── deep_equal.go │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ └── queryparams │ │ │ │ ├── convert.go │ │ │ │ └── doc.go │ │ ├── fields │ │ │ ├── doc.go │ │ │ ├── fields.go │ │ │ ├── requirements.go │ │ │ └── selector.go │ │ ├── genericapiserver │ │ │ └── openapi │ │ │ │ └── common │ │ │ │ ├── common.go │ │ │ │ └── doc.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ ├── labels.go │ │ │ └── selector.go │ │ ├── runtime │ │ │ ├── codec.go │ │ │ ├── codec_check.go │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── embedded.go │ │ │ ├── error.go │ │ │ ├── extension.go │ │ │ ├── generated.pb.go │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── register.go │ │ │ ├── scheme.go │ │ │ ├── scheme_builder.go │ │ │ ├── serializer │ │ │ │ ├── codec_factory.go │ │ │ │ ├── json │ │ │ │ │ ├── json.go │ │ │ │ │ └── meta.go │ │ │ │ ├── negotiated_codec.go │ │ │ │ ├── protobuf │ │ │ │ │ ├── doc.go │ │ │ │ │ └── protobuf.go │ │ │ │ ├── protobuf_extension.go │ │ │ │ ├── recognizer │ │ │ │ │ └── recognizer.go │ │ │ │ ├── streaming │ │ │ │ │ └── streaming.go │ │ │ │ └── versioning │ │ │ │ │ └── versioning.go │ │ │ ├── swagger_doc_generator.go │ │ │ ├── types.go │ │ │ ├── types_proto.go │ │ │ ├── unstructured.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── selection │ │ │ └── operator.go │ │ ├── third_party │ │ │ └── forked │ │ │ │ └── golang │ │ │ │ ├── reflect │ │ │ │ ├── deep_equal.go │ │ │ │ └── type.go │ │ │ │ └── template │ │ │ │ ├── exec.go │ │ │ │ └── funcs.go │ │ ├── types │ │ │ ├── doc.go │ │ │ ├── namespacedname.go │ │ │ ├── nodename.go │ │ │ ├── uid.go │ │ │ └── unix_user_id.go │ │ ├── util │ │ │ ├── cert │ │ │ │ ├── cert.go │ │ │ │ ├── csr.go │ │ │ │ ├── io.go │ │ │ │ └── pem.go │ │ │ ├── clock │ │ │ │ └── clock.go │ │ │ ├── doc.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── flowcontrol │ │ │ │ ├── backoff.go │ │ │ │ └── throttle.go │ │ │ ├── framer │ │ │ │ └── framer.go │ │ │ ├── homedir │ │ │ │ └── homedir.go │ │ │ ├── integer │ │ │ │ └── integer.go │ │ │ ├── intstr │ │ │ │ ├── generated.pb.go │ │ │ │ └── intstr.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── jsonpath │ │ │ │ ├── doc.go │ │ │ │ ├── jsonpath.go │ │ │ │ ├── node.go │ │ │ │ └── parser.go │ │ │ ├── labels │ │ │ │ ├── doc.go │ │ │ │ └── labels.go │ │ │ ├── net │ │ │ │ ├── http.go │ │ │ │ ├── interface.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_split.go │ │ │ │ └── util.go │ │ │ ├── parsers │ │ │ │ └── parsers.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── ratelimit │ │ │ │ └── bucket.go │ │ │ ├── runtime │ │ │ │ └── runtime.go │ │ │ ├── sets │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int64.go │ │ │ │ └── string.go │ │ │ ├── template.go │ │ │ ├── trace.go │ │ │ ├── trie.go │ │ │ ├── umask.go │ │ │ ├── umask_windows.go │ │ │ ├── util.go │ │ │ ├── uuid │ │ │ │ └── uuid.go │ │ │ ├── validation │ │ │ │ ├── field │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ └── validation.go │ │ │ ├── wait │ │ │ │ ├── doc.go │ │ │ │ └── wait.go │ │ │ └── yaml │ │ │ │ └── decoder.go │ │ ├── version │ │ │ ├── base.go │ │ │ ├── doc.go │ │ │ ├── semver.go │ │ │ └── version.go │ │ └── watch │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── mux.go │ │ │ ├── streamwatcher.go │ │ │ ├── until.go │ │ │ ├── versioned │ │ │ ├── decoder.go │ │ │ ├── encoder.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ └── types.go │ │ │ └── watch.go │ ├── plugin │ │ └── pkg │ │ │ └── client │ │ │ └── auth │ │ │ ├── gcp │ │ │ └── gcp.go │ │ │ ├── oidc │ │ │ └── oidc.go │ │ │ └── plugins.go │ ├── rest │ │ ├── client.go │ │ ├── config.go │ │ ├── plugin.go │ │ ├── request.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── urlbackoff.go │ │ └── versions.go │ ├── tools │ │ ├── auth │ │ │ └── clientauth.go │ │ ├── clientcmd │ │ │ ├── api │ │ │ │ ├── helpers.go │ │ │ │ ├── latest │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── types.go │ │ │ ├── auth_loaders.go │ │ │ ├── client_config.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── loader.go │ │ │ ├── merged_client_builder.go │ │ │ ├── overrides.go │ │ │ └── validation.go │ │ └── metrics │ │ │ └── metrics.go │ └── transport │ │ ├── cache.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ └── transport.go │ └── kubernetes │ ├── LICENSE │ ├── pkg │ ├── api │ │ ├── meta │ │ │ └── metatypes │ │ │ │ └── types.go │ │ └── unversioned │ │ │ ├── deep_copy_generated.go │ │ │ ├── duration.go │ │ │ ├── generated.pb.go │ │ │ ├── group_version.go │ │ │ ├── helpers.go │ │ │ ├── meta.go │ │ │ ├── register.go │ │ │ ├── time.go │ │ │ ├── time_proto.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── well_known_labels.go │ ├── apis │ │ └── abac │ │ │ ├── latest │ │ │ └── latest.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v0 │ │ │ ├── conversion.go │ │ │ ├── register.go │ │ │ └── types.go │ │ │ └── v1beta1 │ │ │ ├── register.go │ │ │ └── types.go │ ├── conversion │ │ ├── cloner.go │ │ ├── converter.go │ │ ├── deep_equal.go │ │ ├── doc.go │ │ ├── helper.go │ │ └── queryparams │ │ │ ├── convert.go │ │ │ └── doc.go │ ├── labels │ │ ├── doc.go │ │ ├── labels.go │ │ └── selector.go │ ├── runtime │ │ ├── codec.go │ │ ├── codec_check.go │ │ ├── conversion.go │ │ ├── deep_copy_generated.go │ │ ├── doc.go │ │ ├── embedded.go │ │ ├── error.go │ │ ├── extension.go │ │ ├── generated.pb.go │ │ ├── helper.go │ │ ├── interfaces.go │ │ ├── register.go │ │ ├── scheme.go │ │ ├── serializer │ │ │ ├── codec_factory.go │ │ │ ├── json │ │ │ │ ├── json.go │ │ │ │ └── meta.go │ │ │ ├── negotiated_codec.go │ │ │ ├── protobuf │ │ │ │ ├── doc.go │ │ │ │ └── protobuf.go │ │ │ ├── protobuf_extension.go │ │ │ ├── recognizer │ │ │ │ └── recognizer.go │ │ │ └── versioning │ │ │ │ └── versioning.go │ │ ├── swagger_doc_generator.go │ │ ├── types.go │ │ ├── types_proto.go │ │ └── unstructured.go │ ├── types │ │ ├── doc.go │ │ ├── namespacedname.go │ │ ├── uid.go │ │ └── unix_user_id.go │ └── util │ │ ├── errors │ │ ├── doc.go │ │ └── errors.go │ │ ├── framer │ │ └── framer.go │ │ ├── json │ │ └── json.go │ │ ├── sets │ │ ├── byte.go │ │ ├── doc.go │ │ ├── empty.go │ │ ├── int.go │ │ ├── int64.go │ │ └── string.go │ │ ├── validation │ │ └── validation.go │ │ └── yaml │ │ └── decoder.go │ └── third_party │ └── forked │ └── reflect │ ├── LICENSE │ └── deep_equal.go ├── makelib └── custom-providers.mk ├── modules ├── aws │ ├── etcd │ │ ├── ignition.tf │ │ ├── ignition_s3.tf │ │ ├── nodes.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── master-asg │ │ ├── ignition.tf │ │ ├── ignition_s3.tf │ │ ├── master.tf │ │ ├── resources │ │ │ ├── detect-master.sh │ │ │ ├── init-assets.sh │ │ │ └── rm-assets.sh │ │ ├── variables-ignition.tf │ │ └── variables.tf │ ├── vpc │ │ ├── existing-vpc.tf │ │ ├── master-elb.tf │ │ ├── outputs.tf │ │ ├── sg-elb.tf │ │ ├── sg-etcd.tf │ │ ├── sg-master.tf │ │ ├── sg-worker.tf │ │ ├── variables.tf │ │ ├── vpc-private.tf │ │ ├── vpc-public.tf │ │ └── vpc.tf │ └── worker-asg │ │ ├── ignition.tf │ │ ├── ignition_s3.tf │ │ ├── variables-ignition.tf │ │ ├── variables.tf │ │ └── worker.tf ├── azure │ ├── etcd │ │ ├── etcd.tf │ │ ├── ignition.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── master-as │ │ ├── ignition-master.tf │ │ ├── master.tf │ │ ├── outputs.tf │ │ ├── variables-ignition.tf │ │ └── variables.tf │ ├── resource-group │ │ └── resource-group.tf │ ├── udev-rules │ │ ├── outputs.tf │ │ └── udev.tf │ ├── vnet │ │ ├── lb-api.tf │ │ ├── lb-console.tf │ │ ├── lb.tf │ │ ├── nic-etcd.tf │ │ ├── nic-master.tf │ │ ├── nic-worker.tf │ │ ├── nsg-etcd.tf │ │ ├── nsg-master.tf │ │ ├── nsg-worker.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── vnet-subnets.tf │ └── worker-as │ │ ├── ignition-worker.tf │ │ ├── output.tf │ │ ├── resources │ │ └── 66-azure-storage.rules │ │ ├── variables-ignition.tf │ │ ├── variables.tf │ │ └── workers.tf ├── bootkube │ ├── assets.tf │ ├── outputs.tf │ ├── resources │ │ ├── bootkube.path │ │ ├── bootkube.service │ │ ├── bootkube.sh │ │ ├── bootstrap-manifests │ │ │ ├── bootstrap-apiserver.yaml │ │ │ ├── bootstrap-controller-manager.yaml │ │ │ └── bootstrap-scheduler.yaml │ │ ├── kubeconfig │ │ ├── manifests │ │ │ ├── 01-tectonic-namespace.yaml │ │ │ ├── kube-apiserver-secret.yaml │ │ │ ├── kube-apiserver.yaml │ │ │ ├── kube-cloud-config.yaml │ │ │ ├── kube-controller-manager-disruption.yaml │ │ │ ├── kube-controller-manager-secret.yaml │ │ │ ├── kube-controller-manager.yaml │ │ │ ├── kube-dns.yaml │ │ │ ├── kube-proxy.yaml │ │ │ ├── kube-scheduler-disruption.yaml │ │ │ ├── kube-scheduler.yaml │ │ │ ├── kube-system-rbac-role-binding.yaml │ │ │ └── pod-checkpointer.yaml │ │ └── self-hosted-etcd │ │ │ ├── bootstrap-etcd-service.json │ │ │ ├── bootstrap-manifests │ │ │ └── bootstrap-etcd.yaml │ │ │ ├── manifests │ │ │ ├── etcd-client-tls.yaml │ │ │ ├── etcd-operator.yaml │ │ │ ├── etcd-peer-tls.yaml │ │ │ ├── etcd-server-tls.yaml │ │ │ ├── etcd-service.yaml │ │ │ └── kenc.yaml │ │ │ ├── migrate-etcd-cluster-pv-backup.json │ │ │ └── migrate-etcd-cluster.json │ ├── self-hosted-etcd.tf │ ├── service-account.tf │ └── variables.tf ├── bootstrap-ssh │ ├── main.tf │ └── variables.tf ├── container_linux │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── digitalocean │ ├── etcd │ │ ├── dns.tf │ │ ├── ignition.tf │ │ ├── nodes.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── master │ │ ├── ignition.tf │ │ ├── loadbalancer.tf │ │ ├── master.tf │ │ ├── outputs.tf │ │ ├── resources │ │ │ ├── init-assets.sh │ │ │ ├── register-master.sh │ │ │ └── rm-assets.sh │ │ ├── variables-ignition.tf │ │ └── variables.tf │ └── worker │ │ ├── ignition.tf │ │ ├── variables-ignition.tf │ │ ├── variables.tf │ │ └── worker.tf ├── dns │ ├── azure │ │ ├── records.tf │ │ └── variables.tf │ ├── ddns │ │ ├── README.md │ │ ├── main.tf │ │ └── variables.tf │ ├── designate │ │ ├── etcd.tf │ │ ├── master.tf │ │ ├── outputs.tf │ │ ├── tectonic.tf │ │ ├── variables.tf │ │ └── worker.tf │ ├── gcp │ │ ├── outputs.tf │ │ ├── records.tf │ │ └── variables.tf │ ├── powerdns │ │ ├── outputs.tf │ │ ├── records.tf │ │ └── variables.tf │ └── route53 │ │ ├── etcd.tf │ │ ├── master.tf │ │ ├── outputs.tf │ │ ├── tectonic.tf │ │ ├── variables.tf │ │ └── worker.tf ├── gcp │ ├── etcd │ │ ├── etcd.tf │ │ ├── ignition.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── master-igm │ │ ├── iam.tf │ │ ├── ignition.tf │ │ ├── master.tf │ │ ├── outputs.tf │ │ ├── resources │ │ │ ├── detect-master.sh │ │ │ └── init-assets.sh │ │ ├── variables-ignition.tf │ │ └── variables.tf │ ├── network │ │ ├── firewall-etcd.tf │ │ ├── firewall-master.tf │ │ ├── firewall-worker.tf │ │ ├── loadbalancer.tf │ │ ├── network.tf │ │ ├── outputs.tf │ │ └── variables.tf │ └── worker-igm │ │ ├── iam.tf │ │ ├── ignition.tf │ │ ├── variables-ignition.tf │ │ ├── variables.tf │ │ └── worker.tf ├── govcloud │ ├── etcd │ │ ├── ignition.tf │ │ ├── ignition_s3.tf │ │ ├── nodes.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── master-asg │ │ ├── ignition.tf │ │ ├── ignition_s3.tf │ │ ├── master.tf │ │ ├── resources │ │ │ ├── detect-master.sh │ │ │ ├── init-assets.sh │ │ │ └── rm-assets.sh │ │ ├── variables-ignition.tf │ │ └── variables.tf │ └── worker-asg │ │ ├── ignition.tf │ │ ├── ignition_s3.tf │ │ ├── variables-ignition.tf │ │ ├── variables.tf │ │ └── worker.tf ├── ignition │ ├── assets.tf │ ├── ca_certs.tf │ ├── etcd.tf │ ├── outputs.import │ ├── outputs.tf │ ├── resources │ │ ├── bin │ │ │ ├── gcs-puller.sh │ │ │ └── s3-puller.sh │ │ ├── dropins │ │ │ ├── 10-always-update-ca-certificates.conf │ │ │ ├── 10-dockeropts.conf │ │ │ ├── 10-metadata.conf │ │ │ ├── 10-timesyncd.conf │ │ │ └── 40-etcd-cluster.conf │ │ ├── kubernetes │ │ │ ├── kubelet.env │ │ │ └── runtime-mappings.yaml │ │ ├── paths │ │ │ └── rm-assets.path │ │ ├── proxy │ │ │ ├── 10-default-env.conf │ │ │ └── profile.env │ │ ├── services │ │ │ ├── init-assets.service │ │ │ ├── k8s-node-bootstrap.service │ │ │ ├── kubelet.service │ │ │ ├── rm-assets.service │ │ │ └── tx-off.service │ │ ├── sysctl.d │ │ │ └── max-user-watches.conf │ │ └── udev │ │ │ └── 66-azure-storage.rules │ └── variables.tf ├── net │ ├── calico │ │ ├── assets.tf │ │ ├── outputs.tf │ │ ├── resources │ │ │ └── manifests │ │ │ │ └── kube-calico.yaml │ │ └── variables.tf │ ├── canal │ │ ├── assets.tf │ │ ├── outputs.tf │ │ ├── resources │ │ │ └── manifests │ │ │ │ ├── kube-calico.yaml │ │ │ │ └── kube-flannel.yaml │ │ └── variables.tf │ └── flannel_vxlan │ │ ├── assets.tf │ │ ├── outputs.tf │ │ ├── resources │ │ └── manifests │ │ │ └── kube-flannel.yaml │ │ └── variables.tf ├── openstack │ ├── etcd │ │ ├── ignition.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── nodes │ │ ├── ignition.tf │ │ ├── output.tf │ │ ├── resources │ │ │ └── etcd-member.service │ │ ├── variables-ignition.tf │ │ └── variables.tf │ ├── secgroups │ │ ├── output.tf │ │ ├── rules │ │ │ ├── default │ │ │ │ ├── secgroup.tf │ │ │ │ └── variables.tf │ │ │ ├── etcd │ │ │ │ ├── secgroup.tf │ │ │ │ └── variables.tf │ │ │ ├── k8s │ │ │ │ ├── secgroup.tf │ │ │ │ └── variables.tf │ │ │ └── k8s_nodes │ │ │ │ ├── secgroup.tf │ │ │ │ └── variables.tf │ │ ├── secgroup.tf │ │ └── variables.tf │ └── secrets │ │ ├── secrets.tf │ │ └── variables.tf ├── tectonic │ ├── assets.tf │ ├── crypto.tf │ ├── output.tf │ ├── resources │ │ ├── manifests │ │ │ ├── config.yaml │ │ │ ├── console │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ ├── etcd │ │ │ │ └── etcd-operator.yaml │ │ │ ├── heapster │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ ├── identity │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── services.yaml │ │ │ ├── ingress │ │ │ │ ├── console-ingress.yaml │ │ │ │ ├── default-backend │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── service.yaml │ │ │ │ ├── hostport │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ └── service.yaml │ │ │ │ ├── identity-ingress.yaml │ │ │ │ └── nodeport │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── service.yaml │ │ │ ├── rbac │ │ │ │ ├── binding-admin.yaml │ │ │ │ ├── binding-discovery.yaml │ │ │ │ ├── role-admin.yaml │ │ │ │ └── role-user.yaml │ │ │ ├── secrets │ │ │ │ ├── ca-cert.yaml │ │ │ │ ├── identity-grpc-client.yaml │ │ │ │ ├── identity-grpc-server.yaml │ │ │ │ ├── ingress-tls.yaml │ │ │ │ ├── license.json │ │ │ │ └── pull.json │ │ │ ├── stats-emitter.yaml │ │ │ └── updater │ │ │ │ ├── app-version-kind.yaml │ │ │ │ ├── app_versions │ │ │ │ ├── app-version-kubernetes.yaml │ │ │ │ ├── app-version-tectonic-alm.yaml │ │ │ │ ├── app-version-tectonic-cluo.yaml │ │ │ │ ├── app-version-tectonic-cluster.yaml │ │ │ │ ├── app-version-tectonic-etcd.yaml │ │ │ │ └── app-version-tectonic-monitoring.yaml │ │ │ │ ├── cluster-config.yaml │ │ │ │ ├── migration-status-kind.yaml │ │ │ │ ├── node-agent.yaml │ │ │ │ ├── operators │ │ │ │ ├── kube-version-operator.yaml │ │ │ │ ├── tectonic-alm-operator.yaml │ │ │ │ ├── tectonic-channel-operator.yaml │ │ │ │ ├── tectonic-cluo-operator.yaml │ │ │ │ ├── tectonic-etcd-operator.yaml │ │ │ │ └── tectonic-prometheus-operator.yaml │ │ │ │ ├── tectonic-channel-operator-config.yaml │ │ │ │ ├── tectonic-channel-operator-kind.yaml │ │ │ │ └── tectonic-monitoring-config.yaml │ │ ├── tectonic-wrapper.sh │ │ ├── tectonic.path │ │ ├── tectonic.service │ │ └── tectonic.sh │ └── variables.tf ├── tls │ ├── etcd │ │ ├── signed │ │ │ ├── assets.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ └── user-provided │ │ │ ├── README.md │ │ │ ├── assets.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ ├── identity │ │ ├── self-signed │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ └── user-provided │ │ │ ├── README.md │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ ├── ingress │ │ ├── self-signed │ │ │ ├── main.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ └── user-provided │ │ │ ├── README.md │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ └── kube │ │ ├── self-signed │ │ ├── api.tf │ │ ├── assets.tf │ │ ├── ca.tf │ │ ├── kubelet.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ └── user-provided │ │ ├── README.md │ │ ├── assets.tf │ │ ├── outputs.tf │ │ └── variables.tf ├── update-payload │ ├── assets.tf │ └── config.tf └── vmware │ ├── etcd │ ├── ignition.tf │ ├── nodes.tf │ ├── outputs.tf │ ├── resources │ │ └── etcd-cluster │ └── variables.tf │ └── node │ ├── ignition.tf │ ├── nodes.tf │ ├── outputs.tf │ ├── variables-ignition.tf │ └── variables.tf ├── platforms ├── aws │ ├── config.tf │ ├── main.tf │ ├── s3.tf │ ├── tectonic.tf │ ├── tls.tf │ └── variables.tf ├── azure │ ├── bootstrap.tf │ ├── config.tf │ ├── main.tf │ ├── tectonic.tf │ ├── tls.tf │ └── variables.tf ├── digitalocean │ ├── assets.tf │ ├── config.tf │ ├── main.tf │ ├── resources │ │ ├── do-puller.sh │ │ ├── do-pusher.sh │ │ └── etc │ │ │ └── resolved.conf │ ├── spaces.tf │ ├── tectonic.tf │ ├── tls.tf │ └── variables.tf ├── gcp │ ├── config.tf │ ├── gcs.tf │ ├── main.tf │ ├── tectonic.tf │ ├── tls.tf │ └── variables.tf ├── govcloud │ ├── config.tf │ ├── main.tf │ ├── s3.tf │ ├── tectonic.tf │ ├── tls.tf │ └── variables.tf ├── metal │ ├── cl │ │ ├── bootkube-controller.yaml.tmpl │ │ ├── bootkube-worker.yaml.tmpl │ │ ├── coreos-install.yaml.tmpl │ │ └── custom-ca.yaml.tmpl │ ├── config.tf │ ├── matchers.tf │ ├── profiles.tf │ ├── provider.tf │ ├── remote.tf │ ├── tectonic.tf │ ├── tls.tf │ └── variables.tf ├── openstack │ └── neutron │ │ ├── config.tf │ │ ├── lbaas.tf │ │ ├── main.tf │ │ ├── network.tf │ │ ├── nodes.tf │ │ └── variables.tf └── vmware │ ├── config.tf │ ├── main.tf │ ├── provider.tf │ ├── remote.tf │ ├── tectonic.tf │ └── variables.tf └── tests ├── README.md ├── jenkins-jobs ├── README.md ├── maintenance │ └── tag_clean_aws_grafiti_job.groovy ├── scripts │ ├── log-analyzer-copy.sh │ └── report-status-to-github.sh ├── tectonic_builder_docker_image.groovy ├── tectonic_installer_hyperkube_trigger_job.groovy ├── tectonic_installer_multibranch_job.groovy ├── tectonic_installer_nightly_trigger.groovy ├── tectonic_installer_nightly_trigger_with_k8s_conformance.groovy ├── tectonic_installer_public_pr_trigger.groovy └── tectonic_smoke_test_docker_image_job.groovy ├── rspec ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── lib │ ├── aws_cluster.rb │ ├── aws_iam.rb │ ├── aws_region.rb │ ├── aws_support.rb │ ├── aws_vpc.rb │ ├── azure_cluster.rb │ ├── azure_support.rb │ ├── azure_vpn.rb │ ├── cluster.rb │ ├── cluster_factory.rb │ ├── cluster_support.rb │ ├── container_linux.rb │ ├── env_var.rb │ ├── forensic.rb │ ├── gcloud_helper.rb │ ├── gcp_cluster.rb │ ├── govcloud_cluster.rb │ ├── govcloud_vpc.rb │ ├── grafiti.rb │ ├── jenkins.rb │ ├── k8s_conformance_tests.rb │ ├── kubectl_helpers.rb │ ├── metal_cluster.rb │ ├── metal_support.rb │ ├── name_generator.rb │ ├── operators.rb │ ├── pages │ │ ├── base_page.rb │ │ └── login_page.rb │ ├── password_generator.rb │ ├── shared_examples │ │ ├── build_folder_setup.rb │ │ ├── k8s.rb │ │ └── tls_setup.rb │ ├── smoke_test.rb │ ├── ssh.rb │ ├── tfstate_file.rb │ ├── tfvars_file.rb │ ├── tls_certs.rb │ ├── webdriver_helpers.rb │ └── with_retries.rb ├── spec │ ├── aws │ │ ├── basic_spec.rb │ │ ├── ca_spec.rb │ │ ├── custom_tls_spec.rb │ │ ├── exp_spec.rb │ │ ├── network_canal_spec.rb │ │ └── vpc_internal_spec.rb │ ├── azure │ │ ├── basic_spec.rb │ │ ├── custom_tls_spec.rb │ │ ├── dns_spec.rb │ │ ├── example_spec.rb │ │ ├── external_self_hosted_etcd_spec.rb │ │ ├── external_spec.rb │ │ ├── private_external_spec.rb │ │ └── self_hosted_etcd_spec.rb │ ├── gcp │ │ ├── basic_spec.rb │ │ ├── custom_tls_spec.rb │ │ └── ha_spec.rb │ ├── govcloud │ │ └── vpc_internal_spec.rb │ ├── meta-tests │ │ ├── aws_vpc_spec.rb │ │ ├── name_generator_spec.rb │ │ └── tfvars_file_spec.rb │ ├── metal │ │ ├── basic_spec.rb │ │ └── custom_tls_spec.rb │ └── spec_helper.rb ├── ssh-agent.sh └── utils │ └── 20-metal.conf └── smoke ├── README.md ├── aws ├── README.md ├── cluster-foreach.sh └── vars │ ├── aws-ca.tfvars.json │ ├── aws-exp.tfvars.json │ ├── aws-net-canal.tfvars.json │ ├── aws-vpc-internal.tfvars.json │ └── aws.tfvars.json ├── azure ├── README.md ├── fixtures │ ├── external-dns │ │ └── main.tf │ ├── external-vnet │ │ └── main.tf │ └── private-cluster │ │ ├── outputs.tf │ │ ├── private-vnet-vpn.tf │ │ └── variables.tf └── vars │ ├── basic.tfvars │ ├── dns.tfvars │ ├── example.tfvars │ ├── external-self-hosted-etcd.tfvars │ ├── external.tfvars │ ├── private-cluster.tfvars │ └── self-hosted-etcd.tfvars ├── bare-metal ├── README.md ├── fake-creds │ ├── ca.crt │ ├── ca.key │ ├── client.crt │ ├── client.key │ ├── server.crt │ └── server.key ├── packet │ └── main.tf ├── smoke.sh └── vars │ └── metal.tfvars.json ├── cluster_test.go ├── common_test.go ├── forensics.sh ├── gcp └── vars │ ├── gcp.ha.tfvars.json │ └── gcp.tfvars.json ├── glide.lock ├── glide.yaml ├── govcloud └── vars │ └── govcloud-vpc-internal.tfvars.json ├── qa_test.go ├── smoke_test.go ├── user_provided_tls └── tls.tf └── vendor ├── cloud.google.com └── go │ ├── LICENSE │ ├── bigquery │ ├── bigquery.go │ ├── copy.go │ ├── dataset.go │ ├── doc.go │ ├── error.go │ ├── extract.go │ ├── file.go │ ├── gcs.go │ ├── iterator.go │ ├── job.go │ ├── load.go │ ├── params.go │ ├── query.go │ ├── schema.go │ ├── service.go │ ├── table.go │ ├── uploader.go │ └── value.go │ ├── civil │ └── civil.go │ ├── cloud.go │ ├── compute │ └── metadata │ │ └── metadata.go │ └── internal │ ├── atomiccache │ └── atomiccache.go │ ├── fields │ ├── fields.go │ └── fold.go │ ├── optional │ └── optional.go │ ├── retry.go │ └── version │ └── version.go ├── github.com ├── PuerkitoBio │ ├── purell │ │ ├── LICENSE │ │ └── purell.go │ └── urlesc │ │ ├── LICENSE │ │ └── urlesc.go ├── coreos │ ├── go-oidc │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── gen.go │ │ ├── http │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── http.go │ │ │ └── url.go │ │ ├── jose.go │ │ ├── jose │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── jose.go │ │ │ ├── jwk.go │ │ │ ├── jws.go │ │ │ ├── jwt.go │ │ │ ├── sig.go │ │ │ └── sig_rsa.go │ │ ├── jwks.go │ │ ├── key │ │ │ ├── doc.go │ │ │ ├── key.go │ │ │ ├── manager.go │ │ │ ├── repo.go │ │ │ ├── rotate.go │ │ │ └── sync.go │ │ ├── oauth2 │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ └── oauth2.go │ │ ├── oidc.go │ │ ├── oidc │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── identity.go │ │ │ ├── interface.go │ │ │ ├── key.go │ │ │ ├── provider.go │ │ │ ├── transport.go │ │ │ ├── util.go │ │ │ └── verification.go │ │ └── verify.go │ ├── ktestutil │ │ ├── LICENSE │ │ └── testworkload │ │ │ └── nginx_workload.go │ └── pkg │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── health │ │ └── health.go │ │ ├── httputil │ │ ├── cookie.go │ │ └── json.go │ │ └── timeutil │ │ └── backoff.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── dgrijalva │ └── jwt-go │ │ ├── LICENSE │ │ ├── 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 ├── docker │ ├── distribution │ │ ├── LICENSE │ │ ├── blobs.go │ │ ├── digest │ │ │ ├── digest.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ ├── set.go │ │ │ └── verifiers.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── manifests.go │ │ ├── reference │ │ │ ├── reference.go │ │ │ └── regexp.go │ │ ├── registry.go │ │ └── tags.go │ ├── engine-api │ │ ├── LICENSE │ │ ├── client │ │ │ ├── client.go │ │ │ ├── client_darwin.go │ │ │ ├── client_unix.go │ │ │ ├── client_windows.go │ │ │ ├── container_attach.go │ │ │ ├── container_commit.go │ │ │ ├── container_copy.go │ │ │ ├── container_create.go │ │ │ ├── container_diff.go │ │ │ ├── container_exec.go │ │ │ ├── container_export.go │ │ │ ├── container_inspect.go │ │ │ ├── container_kill.go │ │ │ ├── container_list.go │ │ │ ├── container_logs.go │ │ │ ├── container_pause.go │ │ │ ├── container_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 │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── hijack.go │ │ │ ├── image_build.go │ │ │ ├── image_create.go │ │ │ ├── image_history.go │ │ │ ├── image_import.go │ │ │ ├── image_inspect.go │ │ │ ├── image_list.go │ │ │ ├── image_load.go │ │ │ ├── image_pull.go │ │ │ ├── image_push.go │ │ │ ├── image_remove.go │ │ │ ├── image_save.go │ │ │ ├── image_search.go │ │ │ ├── image_tag.go │ │ │ ├── info.go │ │ │ ├── interface.go │ │ │ ├── login.go │ │ │ ├── network_connect.go │ │ │ ├── network_create.go │ │ │ ├── network_disconnect.go │ │ │ ├── network_inspect.go │ │ │ ├── network_list.go │ │ │ ├── network_remove.go │ │ │ ├── request.go │ │ │ ├── transport │ │ │ │ ├── cancellable │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── canceler.go │ │ │ │ │ ├── canceler_go14.go │ │ │ │ │ └── cancellable.go │ │ │ │ ├── client.go │ │ │ │ └── transport.go │ │ │ ├── version.go │ │ │ ├── volume_create.go │ │ │ ├── volume_inspect.go │ │ │ ├── volume_list.go │ │ │ └── volume_remove.go │ │ ├── doc.go │ │ └── types │ │ │ ├── auth.go │ │ │ ├── blkiodev │ │ │ └── blkio.go │ │ │ ├── client.go │ │ │ ├── configs.go │ │ │ ├── container │ │ │ ├── config.go │ │ │ ├── host_config.go │ │ │ ├── hostconfig_unix.go │ │ │ └── hostconfig_windows.go │ │ │ ├── filters │ │ │ └── parse.go │ │ │ ├── network │ │ │ └── network.go │ │ │ ├── reference │ │ │ └── image_reference.go │ │ │ ├── registry │ │ │ └── registry.go │ │ │ ├── seccomp.go │ │ │ ├── stats.go │ │ │ ├── strslice │ │ │ └── strslice.go │ │ │ ├── time │ │ │ └── timestamp.go │ │ │ ├── types.go │ │ │ └── versions │ │ │ └── compare.go │ ├── go-connections │ │ ├── LICENSE │ │ ├── doc.go │ │ ├── nat │ │ │ ├── nat.go │ │ │ ├── parse.go │ │ │ └── sort.go │ │ ├── sockets │ │ │ ├── inmem_socket.go │ │ │ ├── proxy.go │ │ │ ├── sockets.go │ │ │ ├── sockets_unix.go │ │ │ ├── sockets_windows.go │ │ │ ├── tcp_socket.go │ │ │ └── unix_socket.go │ │ └── tlsconfig │ │ │ ├── config.go │ │ │ ├── config_client_ciphers.go │ │ │ └── config_legacy_client_ciphers.go │ └── go-units │ │ ├── LICENSE │ │ ├── duration.go │ │ ├── size.go │ │ └── ulimit.go ├── emicklei │ └── go-restful │ │ ├── LICENSE │ │ ├── compress.go │ │ ├── compressor_cache.go │ │ ├── compressor_pools.go │ │ ├── compressors.go │ │ ├── constants.go │ │ ├── container.go │ │ ├── cors_filter.go │ │ ├── curly.go │ │ ├── curly_route.go │ │ ├── doc.go │ │ ├── entity_accessors.go │ │ ├── filter.go │ │ ├── jsr311.go │ │ ├── log │ │ └── log.go │ │ ├── logger.go │ │ ├── mime.go │ │ ├── options_filter.go │ │ ├── parameter.go │ │ ├── path_expression.go │ │ ├── request.go │ │ ├── response.go │ │ ├── route.go │ │ ├── route_builder.go │ │ ├── router.go │ │ ├── service_error.go │ │ ├── swagger │ │ ├── api_declaration_list.go │ │ ├── config.go │ │ ├── model_builder.go │ │ ├── model_list.go │ │ ├── model_property_ext.go │ │ ├── model_property_list.go │ │ ├── ordered_route_map.go │ │ ├── swagger.go │ │ ├── swagger_builder.go │ │ └── swagger_webservice.go │ │ ├── web_service.go │ │ └── web_service_container.go ├── evanphx │ └── json-patch │ │ ├── LICENSE │ │ ├── merge.go │ │ └── patch.go ├── exponent-io │ └── jsonpath │ │ ├── LICENSE │ │ ├── decoder.go │ │ ├── path.go │ │ └── pathaction.go ├── ghodss │ └── yaml │ │ ├── LICENSE │ │ ├── fields.go │ │ └── yaml.go ├── go-openapi │ ├── jsonpointer │ │ ├── LICENSE │ │ └── pointer.go │ ├── jsonreference │ │ ├── LICENSE │ │ └── reference.go │ ├── spec │ │ ├── LICENSE │ │ ├── bindata.go │ │ ├── contact_info.go │ │ ├── expander.go │ │ ├── external_docs.go │ │ ├── header.go │ │ ├── info.go │ │ ├── items.go │ │ ├── license.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path_item.go │ │ ├── paths.go │ │ ├── ref.go │ │ ├── response.go │ │ ├── responses.go │ │ ├── schema.go │ │ ├── security_scheme.go │ │ ├── spec.go │ │ ├── swagger.go │ │ ├── tag.go │ │ └── xml_object.go │ └── swag │ │ ├── LICENSE │ │ ├── convert.go │ │ ├── convert_types.go │ │ ├── json.go │ │ ├── loading.go │ │ ├── net.go │ │ ├── path.go │ │ └── util.go ├── gogo │ └── protobuf │ │ ├── LICENSE │ │ ├── proto │ │ ├── clone.go │ │ ├── decode.go │ │ ├── decode_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_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ └── text_parser.go │ │ └── sortkeys │ │ └── sortkeys.go ├── golang │ ├── glog │ │ ├── LICENSE │ │ ├── glog.go │ │ └── glog_file.go │ ├── groupcache │ │ ├── LICENSE │ │ ├── byteview.go │ │ ├── groupcache.go │ │ ├── http.go │ │ ├── lru │ │ │ └── lru.go │ │ ├── peers.go │ │ └── sinks.go │ └── protobuf │ │ ├── LICENSE │ │ ├── proto │ │ ├── clone.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── lib.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── text.go │ │ └── text_parser.go │ │ └── ptypes │ │ └── any │ │ └── any.pb.go ├── google │ └── gofuzz │ │ ├── LICENSE │ │ ├── doc.go │ │ └── fuzz.go ├── googleapis │ └── gax-go │ │ ├── LICENSE │ │ ├── call_option.go │ │ ├── gax.go │ │ ├── header.go │ │ ├── invoke.go │ │ ├── path_template.go │ │ └── path_template_parser.go ├── howeyc │ └── gopass │ │ ├── LICENSE.txt │ │ ├── pass.go │ │ ├── terminal.go │ │ └── terminal_solaris.go ├── imdario │ └── mergo │ │ ├── LICENSE │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ └── mergo.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── trap_others.go │ │ ├── trap_windows.go │ │ └── trap_windows_1.4.go ├── jonboulle │ └── clockwork │ │ ├── LICENSE │ │ └── clockwork.go ├── juju │ └── ratelimit │ │ ├── LICENSE │ │ ├── ratelimit.go │ │ └── reader.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── helpers.go │ │ ├── jlexer │ │ ├── error.go │ │ └── lexer.go │ │ ├── jwriter │ │ └── writer.go │ │ └── raw.go ├── pborman │ └── uuid │ │ ├── LICENSE │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── json.go │ │ ├── node.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── spf13 │ ├── cobra │ │ ├── LICENSE.txt │ │ ├── bash_completions.go │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ └── doc │ │ │ ├── man_docs.go │ │ │ ├── md_docs.go │ │ │ └── util.go │ └── pflag │ │ ├── LICENSE │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float64.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int32.go │ │ ├── int64.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go └── ugorji │ └── go │ ├── LICENSE │ └── codec │ ├── 0doc.go │ ├── binc.go │ ├── cbor.go │ ├── decode.go │ ├── decode_go.go │ ├── decode_go14.go │ ├── encode.go │ ├── fast-path.generated.go │ ├── fast-path.not.go │ ├── gen-helper.generated.go │ ├── gen.generated.go │ ├── gen.go │ ├── gen_15.go │ ├── gen_16.go │ ├── gen_17.go │ ├── helper.go │ ├── helper_internal.go │ ├── helper_not_unsafe.go │ ├── helper_unsafe.go │ ├── json.go │ ├── msgpack.go │ ├── noop.go │ ├── prebuild.go │ ├── rpc.go │ ├── simple.go │ └── time.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ └── ssh │ │ └── terminal │ │ ├── terminal.go │ │ ├── util.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_plan9.go │ │ ├── util_solaris.go │ │ └── util_windows.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ ├── context.go │ │ ├── ctxhttp │ │ │ ├── ctxhttp.go │ │ │ └── ctxhttp_pre17.go │ │ ├── go17.go │ │ ├── go19.go │ │ ├── pre_go17.go │ │ └── pre_go19.go │ ├── http2 │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── configure_transport.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go17_not18.go │ │ ├── go18.go │ │ ├── go19.go │ │ ├── gotrack.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── not_go16.go │ │ ├── not_go17.go │ │ ├── not_go18.go │ │ ├── not_go19.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ └── writesched_random.go │ ├── idna │ │ ├── idna.go │ │ ├── punycode.go │ │ ├── tables.go │ │ ├── trie.go │ │ └── trieval.go │ ├── internal │ │ └── timeseries │ │ │ └── timeseries.go │ ├── lex │ │ └── httplex │ │ │ └── httplex.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ ├── trace.go │ │ ├── trace_go16.go │ │ └── trace_go17.go │ ├── oauth2 │ ├── LICENSE │ ├── client_appengine.go │ ├── google │ │ ├── appengine.go │ │ ├── appengine_hook.go │ │ ├── appenginevm_hook.go │ │ ├── default.go │ │ ├── google.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── internal │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── token.go │ └── transport.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ └── unix │ │ ├── asm.s │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── constants.go │ │ ├── env_unix.go │ │ ├── env_unset.go │ │ ├── flock.go │ │ ├── flock_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── mkpost.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_no_getwd.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_linux.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_solaris_amd64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ └── ztypes_solaris_amd64.go │ └── text │ ├── LICENSE │ ├── PATENTS │ ├── cases │ ├── cases.go │ ├── context.go │ ├── fold.go │ ├── gen.go │ ├── gen_trieval.go │ ├── icu.go │ ├── info.go │ ├── map.go │ ├── tables.go │ └── trieval.go │ ├── doc.go │ ├── encoding │ ├── encoding.go │ ├── internal │ │ ├── identifier │ │ │ ├── gen.go │ │ │ ├── identifier.go │ │ │ └── mib.go │ │ └── internal.go │ └── unicode │ │ ├── override.go │ │ └── unicode.go │ ├── gen.go │ ├── internal │ ├── gen.go │ ├── internal.go │ ├── match.go │ ├── tables.go │ ├── tag │ │ └── tag.go │ └── utf8internal │ │ └── utf8internal.go │ ├── language │ ├── common.go │ ├── coverage.go │ ├── gen.go │ ├── gen_common.go │ ├── gen_index.go │ ├── go1_1.go │ ├── go1_2.go │ ├── index.go │ ├── language.go │ ├── lookup.go │ ├── match.go │ ├── parse.go │ ├── tables.go │ └── tags.go │ ├── runes │ ├── cond.go │ └── runes.go │ ├── secure │ ├── bidirule │ │ └── bidirule.go │ └── precis │ │ ├── class.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── gen.go │ │ ├── gen_trieval.go │ │ ├── nickname.go │ │ ├── options.go │ │ ├── profile.go │ │ ├── profiles.go │ │ ├── tables.go │ │ ├── transformer.go │ │ └── trieval.go │ ├── transform │ └── transform.go │ ├── unicode │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── gen.go │ │ ├── gen_ranges.go │ │ ├── gen_trieval.go │ │ ├── prop.go │ │ ├── tables.go │ │ └── trieval.go │ └── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── maketables.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables.go │ │ ├── transform.go │ │ ├── trie.go │ │ └── triegen.go │ └── width │ ├── gen.go │ ├── gen_common.go │ ├── gen_trieval.go │ ├── kind_string.go │ ├── tables.go │ ├── transform.go │ ├── trieval.go │ └── width.go ├── google.golang.org ├── api │ ├── LICENSE │ ├── bigquery │ │ └── v2 │ │ │ └── bigquery-gen.go │ ├── gensupport │ │ ├── backoff.go │ │ ├── buffer.go │ │ ├── doc.go │ │ ├── header.go │ │ ├── json.go │ │ ├── jsonfloat.go │ │ ├── media.go │ │ ├── params.go │ │ ├── resumable.go │ │ ├── retry.go │ │ └── send.go │ ├── googleapi │ │ ├── googleapi.go │ │ ├── internal │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── internal │ │ ├── creds.go │ │ ├── pool.go │ │ └── settings.go │ ├── iterator │ │ └── iterator.go │ ├── option │ │ └── option.go │ └── transport │ │ ├── dial.go │ │ ├── grpc │ │ ├── dial.go │ │ └── dial_appengine.go │ │ └── http │ │ ├── dial.go │ │ └── dial_appengine.go ├── appengine │ ├── LICENSE │ ├── appengine.go │ ├── appengine_vm.go │ ├── errors.go │ ├── identity.go │ ├── internal │ │ ├── api.go │ │ ├── api_classic.go │ │ ├── api_common.go │ │ ├── app_id.go │ │ ├── app_identity │ │ │ └── app_identity_service.pb.go │ │ ├── base │ │ │ └── api_base.pb.go │ │ ├── datastore │ │ │ └── datastore_v3.pb.go │ │ ├── identity.go │ │ ├── identity_classic.go │ │ ├── identity_vm.go │ │ ├── internal.go │ │ ├── log │ │ │ └── log_service.pb.go │ │ ├── main.go │ │ ├── main_vm.go │ │ ├── metadata.go │ │ ├── modules │ │ │ └── modules_service.pb.go │ │ ├── net.go │ │ ├── remote_api │ │ │ └── remote_api.pb.go │ │ ├── socket │ │ │ └── socket_service.pb.go │ │ ├── transaction.go │ │ └── urlfetch │ │ │ └── urlfetch_service.pb.go │ ├── namespace.go │ ├── socket │ │ ├── doc.go │ │ ├── socket_classic.go │ │ └── socket_vm.go │ ├── timeout.go │ └── urlfetch │ │ └── urlfetch.go ├── genproto │ ├── LICENSE │ ├── googleapis │ │ └── rpc │ │ │ └── status │ │ │ └── status.pb.go │ └── regen.go └── grpc │ ├── LICENSE │ ├── backoff.go │ ├── balancer.go │ ├── call.go │ ├── clientconn.go │ ├── codec.go │ ├── codes │ ├── code_string.go │ └── codes.go │ ├── credentials │ ├── credentials.go │ ├── credentials_util_go17.go │ ├── credentials_util_go18.go │ ├── credentials_util_pre_go17.go │ └── oauth │ │ └── oauth.go │ ├── doc.go │ ├── go16.go │ ├── go17.go │ ├── grpclb.go │ ├── grpclb │ └── grpc_lb_v1 │ │ └── grpclb.pb.go │ ├── grpclog │ ├── grpclog.go │ ├── logger.go │ └── loggerv2.go │ ├── interceptor.go │ ├── internal │ └── internal.go │ ├── keepalive │ └── keepalive.go │ ├── metadata │ └── metadata.go │ ├── naming │ └── naming.go │ ├── peer │ └── peer.go │ ├── proxy.go │ ├── rpc_util.go │ ├── server.go │ ├── stats │ ├── handlers.go │ └── stats.go │ ├── status │ └── status.go │ ├── stream.go │ ├── tap │ └── tap.go │ ├── trace.go │ └── transport │ ├── bdp_estimator.go │ ├── control.go │ ├── go16.go │ ├── go17.go │ ├── handler_server.go │ ├── http2_client.go │ ├── http2_server.go │ ├── http_util.go │ ├── log.go │ └── transport.go ├── gopkg.in ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go └── yaml.v2 │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── k8s.io ├── apimachinery │ ├── LICENSE │ ├── pkg │ │ ├── api │ │ │ ├── equality │ │ │ │ └── semantic.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── meta │ │ │ │ ├── default.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ ├── help.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── meta.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── priority.go │ │ │ │ ├── restmapper.go │ │ │ │ └── unstructured.go │ │ │ ├── resource │ │ │ │ ├── amount.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── scale_int.go │ │ │ │ └── suffix.go │ │ │ └── validation │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ └── objectmeta.go │ │ ├── apimachinery │ │ │ ├── announced │ │ │ │ ├── announced.go │ │ │ │ └── group_factory.go │ │ │ ├── doc.go │ │ │ ├── registered │ │ │ │ └── registered.go │ │ │ └── types.go │ │ ├── apis │ │ │ └── meta │ │ │ │ └── v1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── group_version.go │ │ │ │ ├── helpers.go │ │ │ │ ├── labels.go │ │ │ │ ├── meta.go │ │ │ │ ├── register.go │ │ │ │ ├── time.go │ │ │ │ ├── time_proto.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── unstructured │ │ │ │ └── unstructured.go │ │ │ │ ├── validation │ │ │ │ └── validation.go │ │ │ │ ├── watch.go │ │ │ │ ├── well_known_labels.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ ├── conversion │ │ │ ├── cloner.go │ │ │ ├── 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 │ │ ├── openapi │ │ │ ├── common.go │ │ │ └── doc.go │ │ ├── runtime │ │ │ ├── codec.go │ │ │ ├── codec_check.go │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── embedded.go │ │ │ ├── error.go │ │ │ ├── extension.go │ │ │ ├── generated.pb.go │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── register.go │ │ │ ├── schema │ │ │ │ ├── generated.pb.go │ │ │ │ ├── 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 │ │ │ │ ├── protobuf_extension.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 │ │ │ └── unix_user_id.go │ │ ├── util │ │ │ ├── diff │ │ │ │ └── diff.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── framer │ │ │ │ └── framer.go │ │ │ ├── intstr │ │ │ │ ├── generated.pb.go │ │ │ │ └── intstr.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── mergepatch │ │ │ │ ├── errors.go │ │ │ │ └── util.go │ │ │ ├── net │ │ │ │ ├── http.go │ │ │ │ ├── interface.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_split.go │ │ │ │ └── util.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── runtime │ │ │ │ └── runtime.go │ │ │ ├── sets │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int64.go │ │ │ │ └── string.go │ │ │ ├── strategicpatch │ │ │ │ └── patch.go │ │ │ ├── uuid │ │ │ │ └── uuid.go │ │ │ ├── validation │ │ │ │ ├── field │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ └── validation.go │ │ │ ├── wait │ │ │ │ ├── doc.go │ │ │ │ └── wait.go │ │ │ └── yaml │ │ │ │ └── decoder.go │ │ ├── version │ │ │ ├── doc.go │ │ │ └── types.go │ │ └── watch │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── mux.go │ │ │ ├── streamwatcher.go │ │ │ ├── until.go │ │ │ └── watch.go │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── json │ │ └── fields.go │ │ └── reflect │ │ ├── deep_equal.go │ │ └── type.go ├── apiserver │ ├── LICENSE │ └── pkg │ │ ├── authentication │ │ ├── authenticator │ │ │ └── interfaces.go │ │ ├── serviceaccount │ │ │ └── util.go │ │ └── user │ │ │ ├── doc.go │ │ │ └── user.go │ │ ├── features │ │ └── kube_features.go │ │ └── util │ │ ├── feature │ │ └── feature_gate.go │ │ └── flag │ │ ├── configuration_map.go │ │ ├── flags.go │ │ ├── namedcertkey_flag.go │ │ ├── string_flag.go │ │ └── tristate.go ├── client-go │ ├── LICENSE │ ├── discovery │ │ ├── discovery_client.go │ │ ├── helper.go │ │ ├── restmapper.go │ │ └── unstructured.go │ ├── dynamic │ │ ├── client.go │ │ ├── client_pool.go │ │ └── dynamic_util.go │ ├── kubernetes │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── import_known_versions.go │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed │ │ │ ├── apps │ │ │ └── v1beta1 │ │ │ │ ├── apps_client.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── scale.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── tokenreview.go │ │ │ │ └── tokenreview_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── tokenreview.go │ │ │ │ └── tokenreview_expansion.go │ │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2alpha1 │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ └── v2alpha1 │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── certificates │ │ │ └── v1beta1 │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.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 │ │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── scale.go │ │ │ │ ├── scale_expansion.go │ │ │ │ └── thirdpartyresource.go │ │ │ ├── policy │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac │ │ │ ├── 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 │ │ │ ├── settings │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── podpreset.go │ │ │ │ └── settings_client.go │ │ │ └── storage │ │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── storageclass.go │ │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── storageclass.go │ ├── pkg │ │ ├── api │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── field_constants.go │ │ │ ├── helpers.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── json.go │ │ │ ├── ref.go │ │ │ ├── register.go │ │ │ ├── resource_helpers.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generate.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── helpers.go │ │ │ │ ├── meta.go │ │ │ │ ├── ref.go │ │ │ │ ├── register.go │ │ │ │ ├── resource_helpers.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── apis │ │ │ ├── apps │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── authentication │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── authorization │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── autoscaling │ │ │ │ ├── annotations.go │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v2alpha1 │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── batch │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v2alpha1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── certificates │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── extensions │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── policy │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── rbac │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── settings │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── storage │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── util │ │ │ ├── doc.go │ │ │ ├── parsers │ │ │ │ └── parsers.go │ │ │ ├── template.go │ │ │ ├── umask.go │ │ │ ├── umask_windows.go │ │ │ └── util.go │ │ └── version │ │ │ ├── base.go │ │ │ ├── doc.go │ │ │ └── version.go │ ├── plugin │ │ └── pkg │ │ │ └── client │ │ │ └── auth │ │ │ ├── gcp │ │ │ └── gcp.go │ │ │ ├── oidc │ │ │ └── oidc.go │ │ │ └── plugins.go │ ├── rest │ │ ├── client.go │ │ ├── config.go │ │ ├── plugin.go │ │ ├── request.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── urlbackoff.go │ │ ├── versions.go │ │ └── watch │ │ │ ├── decoder.go │ │ │ └── encoder.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ └── template │ │ │ ├── exec.go │ │ │ └── funcs.go │ ├── tools │ │ ├── auth │ │ │ └── clientauth.go │ │ ├── cache │ │ │ ├── controller.go │ │ │ ├── delta_fifo.go │ │ │ ├── doc.go │ │ │ ├── expiration_cache.go │ │ │ ├── expiration_cache_fakes.go │ │ │ ├── fake_custom_store.go │ │ │ ├── fifo.go │ │ │ ├── index.go │ │ │ ├── listers.go │ │ │ ├── listwatch.go │ │ │ ├── mutation_detector.go │ │ │ ├── reflector.go │ │ │ ├── shared_informer.go │ │ │ ├── store.go │ │ │ ├── thread_safe_store.go │ │ │ └── undelta_store.go │ │ ├── clientcmd │ │ │ ├── api │ │ │ │ ├── helpers.go │ │ │ │ ├── latest │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── types.go │ │ │ ├── auth_loaders.go │ │ │ ├── client_config.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── loader.go │ │ │ ├── merged_client_builder.go │ │ │ ├── overrides.go │ │ │ └── validation.go │ │ ├── metrics │ │ │ └── metrics.go │ │ └── record │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_cache.go │ │ │ └── fake.go │ ├── transport │ │ ├── cache.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ └── transport.go │ └── util │ │ ├── cert │ │ ├── cert.go │ │ ├── csr.go │ │ ├── io.go │ │ └── pem.go │ │ ├── clock │ │ └── clock.go │ │ ├── flowcontrol │ │ ├── backoff.go │ │ └── throttle.go │ │ ├── homedir │ │ └── homedir.go │ │ ├── integer │ │ └── integer.go │ │ └── jsonpath │ │ ├── doc.go │ │ ├── jsonpath.go │ │ ├── node.go │ │ └── parser.go └── kubernetes │ ├── LICENSE │ ├── federation │ ├── apis │ │ └── federation │ │ │ ├── doc.go │ │ │ ├── install │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1beta1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ └── client │ │ └── clientset_generated │ │ └── federation_internalclientset │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ ├── autoscaling │ │ └── internalversion │ │ │ ├── autoscaling_client.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ └── horizontalpodautoscaler.go │ │ ├── batch │ │ └── internalversion │ │ │ ├── batch_client.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ └── job.go │ │ ├── core │ │ └── internalversion │ │ │ ├── configmap.go │ │ │ ├── core_client.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── generated_expansion.go │ │ │ ├── namespace.go │ │ │ ├── namespace_expansion.go │ │ │ ├── secret.go │ │ │ └── service.go │ │ ├── extensions │ │ └── internalversion │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── doc.go │ │ │ ├── extensions_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── ingress.go │ │ │ └── replicaset.go │ │ └── federation │ │ └── internalversion │ │ ├── cluster.go │ │ ├── doc.go │ │ ├── federation_client.go │ │ └── generated_expansion.go │ └── pkg │ ├── api │ ├── annotations │ │ ├── annotations.go │ │ └── doc.go │ ├── defaults.go │ ├── doc.go │ ├── events │ │ └── sorted_event_list.go │ ├── field_constants.go │ ├── helpers.go │ ├── install │ │ └── install.go │ ├── json.go │ ├── pod │ │ └── util.go │ ├── ref.go │ ├── register.go │ ├── resource_helpers.go │ ├── service │ │ ├── annotations.go │ │ └── util.go │ ├── types.go │ ├── util │ │ └── group_version.go │ ├── v1 │ │ ├── conversion.go │ │ ├── defaults.go │ │ ├── doc.go │ │ ├── generate.go │ │ ├── generated.pb.go │ │ ├── helpers.go │ │ ├── meta.go │ │ ├── ref.go │ │ ├── register.go │ │ ├── resource_helpers.go │ │ ├── types.generated.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ ├── zz_generated.conversion.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.defaults.go │ ├── validation │ │ ├── doc.go │ │ ├── events.go │ │ ├── schema.go │ │ └── validation.go │ └── zz_generated.deepcopy.go │ ├── apis │ ├── apps │ │ ├── doc.go │ │ ├── install │ │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1beta1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ └── zz_generated.deepcopy.go │ ├── authentication │ │ ├── doc.go │ │ ├── install │ │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ ├── v1beta1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ └── zz_generated.deepcopy.go │ ├── authorization │ │ ├── doc.go │ │ ├── install │ │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ ├── v1beta1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ └── zz_generated.deepcopy.go │ ├── autoscaling │ │ ├── annotations.go │ │ ├── doc.go │ │ ├── install │ │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ ├── v2alpha1 │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.deepcopy.go │ │ └── zz_generated.deepcopy.go │ ├── batch │ │ ├── doc.go │ │ ├── install │ │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ ├── v2alpha1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ └── zz_generated.deepcopy.go │ ├── certificates │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── install │ │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1beta1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ └── zz_generated.deepcopy.go │ ├── componentconfig │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── install │ │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1alpha1 │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ └── zz_generated.deepcopy.go │ ├── extensions │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── install │ │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1beta1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ └── zz_generated.deepcopy.go │ ├── policy │ │ ├── doc.go │ │ ├── install │ │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.deepcopy.go │ │ └── zz_generated.deepcopy.go │ ├── rbac │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── install │ │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1alpha1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ ├── v1beta1 │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── helpers.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ └── zz_generated.deepcopy.go │ ├── settings │ │ ├── doc.go │ │ ├── install │ │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ └── zz_generated.deepcopy.go │ └── storage │ │ ├── doc.go │ │ ├── install │ │ └── install.go │ │ ├── register.go │ │ ├── types.go │ │ ├── util │ │ └── helpers.go │ │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ ├── zz_generated.conversion.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.defaults.go │ │ ├── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── register.go │ │ ├── types.generated.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ ├── zz_generated.conversion.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.defaults.go │ │ └── zz_generated.deepcopy.go │ ├── capabilities │ ├── capabilities.go │ └── doc.go │ ├── client │ ├── clientset_generated │ │ ├── clientset │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── import_known_versions.go │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ └── typed │ │ │ │ ├── apps │ │ │ │ └── v1beta1 │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── scale.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── authentication │ │ │ │ ├── v1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── tokenreview.go │ │ │ │ │ └── tokenreview_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── tokenreview.go │ │ │ │ │ └── tokenreview_expansion.go │ │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ │ ├── subjectaccessreview.go │ │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ │ ├── subjectaccessreview.go │ │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── v2alpha1 │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── job.go │ │ │ │ └── v2alpha1 │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── certificates │ │ │ │ └── v1beta1 │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── generated_expansion.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 │ │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── extensions_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── scale.go │ │ │ │ │ ├── scale_expansion.go │ │ │ │ │ └── thirdpartyresource.go │ │ │ │ ├── policy │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── policy_client.go │ │ │ │ ├── rbac │ │ │ │ ├── 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 │ │ │ │ ├── settings │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── podpreset.go │ │ │ │ │ └── settings_client.go │ │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ └── storageclass.go │ │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ └── storageclass.go │ │ └── internalclientset │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ └── register_custom.go │ │ │ └── typed │ │ │ ├── apps │ │ │ └── internalversion │ │ │ │ ├── apps_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication │ │ │ └── internalversion │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── tokenreview.go │ │ │ │ └── tokenreview_expansion.go │ │ │ ├── authorization │ │ │ └── internalversion │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ ├── autoscaling │ │ │ └── internalversion │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ └── internalversion │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ ├── certificates │ │ │ └── internalversion │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.go │ │ │ ├── core │ │ │ └── internalversion │ │ │ │ ├── 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 │ │ │ ├── extensions │ │ │ └── internalversion │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── scale.go │ │ │ │ ├── scale_expansion.go │ │ │ │ └── thirdpartyresource.go │ │ │ ├── policy │ │ │ └── internalversion │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac │ │ │ └── internalversion │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── settings │ │ │ └── internalversion │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── podpreset.go │ │ │ │ └── settings_client.go │ │ │ └── storage │ │ │ └── internalversion │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── storageclass.go │ ├── listers │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── node_expansion.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontroller_expansion.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_expansion.go │ │ │ │ └── serviceaccount.go │ │ └── extensions │ │ │ └── v1beta1 │ │ │ ├── daemonset.go │ │ │ ├── daemonset_expansion.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── expansion_generated.go │ │ │ ├── ingress.go │ │ │ ├── podsecuritypolicy.go │ │ │ ├── replicaset.go │ │ │ ├── replicaset_expansion.go │ │ │ ├── scale.go │ │ │ └── thirdpartyresource.go │ ├── retry │ │ └── util.go │ └── unversioned │ │ ├── conditions.go │ │ └── helper.go │ ├── controller │ ├── client_builder.go │ ├── controller_ref_manager.go │ ├── controller_utils.go │ ├── deployment │ │ └── util │ │ │ ├── deployment_util.go │ │ │ ├── pod_util.go │ │ │ └── replicaset_util.go │ ├── doc.go │ └── lookup_cache.go │ ├── credentialprovider │ ├── config.go │ ├── doc.go │ ├── keyring.go │ ├── plugins.go │ └── provider.go │ ├── features │ └── kube_features.go │ ├── fieldpath │ ├── doc.go │ └── fieldpath.go │ ├── kubectl │ ├── apply.go │ ├── autoscale.go │ ├── bash_comp_utils.go │ ├── cluster.go │ ├── clusterrolebinding.go │ ├── cmd │ │ └── util │ │ │ ├── cached_discovery.go │ │ │ ├── clientcache.go │ │ │ ├── factory.go │ │ │ ├── factory_builder.go │ │ │ ├── factory_client_access.go │ │ │ ├── factory_object_mapping.go │ │ │ ├── helpers.go │ │ │ ├── printing.go │ │ │ └── shortcut_restmapper.go │ ├── configmap.go │ ├── deployment.go │ ├── doc.go │ ├── explain.go │ ├── generate.go │ ├── history.go │ ├── interfaces.go │ ├── kubectl.go │ ├── namespace.go │ ├── pdb.go │ ├── proxy_server.go │ ├── quota.go │ ├── resource │ │ ├── builder.go │ │ ├── doc.go │ │ ├── helper.go │ │ ├── interfaces.go │ │ ├── mapper.go │ │ ├── result.go │ │ ├── selector.go │ │ └── visitor.go │ ├── resource_filter.go │ ├── rolebinding.go │ ├── rollback.go │ ├── rolling_updater.go │ ├── rollout_status.go │ ├── run.go │ ├── scale.go │ ├── secret.go │ ├── secret_for_docker_registry.go │ ├── secret_for_tls.go │ ├── service.go │ ├── service_basic.go │ ├── serviceaccount.go │ ├── sorting_printer.go │ ├── stop.go │ └── versioned_client.go │ ├── kubelet │ ├── qos │ │ ├── doc.go │ │ ├── policy.go │ │ └── qos.go │ └── types │ │ ├── constants.go │ │ ├── doc.go │ │ ├── labels.go │ │ ├── pod_update.go │ │ └── types.go │ ├── master │ └── ports │ │ ├── doc.go │ │ └── ports.go │ ├── printers │ ├── common.go │ ├── customcolumn.go │ ├── humanreadable.go │ ├── interface.go │ ├── internalversion │ │ ├── describe.go │ │ └── printers.go │ ├── json.go │ ├── jsonpath.go │ ├── name.go │ ├── printers.go │ ├── tabwriter.go │ ├── template.go │ └── versioned.go │ ├── security │ └── apparmor │ │ ├── helpers.go │ │ ├── validate.go │ │ └── validate_disabled.go │ ├── serviceaccount │ ├── jwt.go │ └── util.go │ ├── util │ ├── doc.go │ ├── exec │ │ ├── doc.go │ │ ├── exec.go │ │ └── fake_exec.go │ ├── hash │ │ └── hash.go │ ├── labels │ │ ├── doc.go │ │ └── labels.go │ ├── net │ │ └── sets │ │ │ ├── doc.go │ │ │ └── ipnet.go │ ├── node │ │ └── node.go │ ├── parsers │ │ └── parsers.go │ ├── slice │ │ └── slice.go │ ├── template.go │ ├── umask.go │ ├── umask_windows.go │ └── util.go │ └── version │ ├── base.go │ ├── doc.go │ └── version.go └── vbom.ml └── util ├── LICENSE ├── doc.go ├── regexp.go └── sortorder ├── doc.go └── natsort.go /.dockerignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/DCO -------------------------------------------------------------------------------- /Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/README.md -------------------------------------------------------------------------------- /Documentation/contrib/modify-installer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/contrib/modify-installer.md -------------------------------------------------------------------------------- /Documentation/dev/audiences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/dev/audiences.md -------------------------------------------------------------------------------- /Documentation/dev/digitalocean/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/dev/digitalocean/README.md -------------------------------------------------------------------------------- /Documentation/dev/gcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/dev/gcp/README.md -------------------------------------------------------------------------------- /Documentation/dev/govcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/dev/govcloud/README.md -------------------------------------------------------------------------------- /Documentation/dev/node-bootstrap-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/dev/node-bootstrap-flow.md -------------------------------------------------------------------------------- /Documentation/platform-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/platform-features.md -------------------------------------------------------------------------------- /Documentation/variables/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/variables/aws.md -------------------------------------------------------------------------------- /Documentation/variables/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/variables/azure.md -------------------------------------------------------------------------------- /Documentation/variables/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/variables/config.md -------------------------------------------------------------------------------- /Documentation/variables/gcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/variables/gcp.md -------------------------------------------------------------------------------- /Documentation/variables/govcloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/variables/govcloud.md -------------------------------------------------------------------------------- /Documentation/variables/metal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/variables/metal.md -------------------------------------------------------------------------------- /Documentation/variables/openstack-neutron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/variables/openstack-neutron.md -------------------------------------------------------------------------------- /Documentation/variables/vmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Documentation/variables/vmware.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /bill-of-materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/bill-of-materials.json -------------------------------------------------------------------------------- /changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/changes.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/config.tf -------------------------------------------------------------------------------- /contrib/govcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/govcloud/README.md -------------------------------------------------------------------------------- /contrib/govcloud/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/govcloud/main.tf -------------------------------------------------------------------------------- /contrib/govcloud/powerdns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/govcloud/powerdns.tf -------------------------------------------------------------------------------- /contrib/govcloud/resources/gateway.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/govcloud/resources/gateway.service -------------------------------------------------------------------------------- /contrib/govcloud/resources/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/govcloud/resources/nginx.conf -------------------------------------------------------------------------------- /contrib/govcloud/resources/nginx.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/govcloud/resources/nginx.service -------------------------------------------------------------------------------- /contrib/govcloud/resources/openvpn.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/govcloud/resources/openvpn.service -------------------------------------------------------------------------------- /contrib/govcloud/resources/powerdns.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/govcloud/resources/powerdns.service -------------------------------------------------------------------------------- /contrib/govcloud/services.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/govcloud/services.tf -------------------------------------------------------------------------------- /contrib/govcloud/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/govcloud/vars.tf -------------------------------------------------------------------------------- /contrib/govcloud/vpn.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/govcloud/vpn.tf -------------------------------------------------------------------------------- /contrib/internal-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/internal-cluster/README.md -------------------------------------------------------------------------------- /contrib/internal-cluster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/internal-cluster/main.tf -------------------------------------------------------------------------------- /contrib/internal-cluster/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/internal-cluster/vars.tf -------------------------------------------------------------------------------- /contrib/internal-cluster/vpn.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/contrib/internal-cluster/vpn.tf -------------------------------------------------------------------------------- /examples/fake-creds/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/examples/fake-creds/ca.crt -------------------------------------------------------------------------------- /examples/fake-creds/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/examples/fake-creds/ca.key -------------------------------------------------------------------------------- /examples/terraform.tfvars.aws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/examples/terraform.tfvars.aws -------------------------------------------------------------------------------- /examples/terraform.tfvars.azure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/examples/terraform.tfvars.azure -------------------------------------------------------------------------------- /examples/terraform.tfvars.digitalocean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/examples/terraform.tfvars.digitalocean -------------------------------------------------------------------------------- /examples/terraform.tfvars.gcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/examples/terraform.tfvars.gcp -------------------------------------------------------------------------------- /examples/terraform.tfvars.govcloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/examples/terraform.tfvars.govcloud -------------------------------------------------------------------------------- /examples/terraform.tfvars.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/examples/terraform.tfvars.metal -------------------------------------------------------------------------------- /examples/terraform.tfvars.openstack-neutron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/examples/terraform.tfvars.openstack-neutron -------------------------------------------------------------------------------- /examples/terraform.tfvars.vmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/examples/terraform.tfvars.vmware -------------------------------------------------------------------------------- /git-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/git-version -------------------------------------------------------------------------------- /images/kubernetes-e2e/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/kubernetes-e2e/Dockerfile -------------------------------------------------------------------------------- /images/kubernetes-e2e/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/kubernetes-e2e/build.sh -------------------------------------------------------------------------------- /images/tectonic-builder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-builder/Dockerfile -------------------------------------------------------------------------------- /images/tectonic-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-builder/README.md -------------------------------------------------------------------------------- /images/tectonic-error-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-error-server/Dockerfile -------------------------------------------------------------------------------- /images/tectonic-error-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-error-server/Makefile -------------------------------------------------------------------------------- /images/tectonic-error-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-error-server/README.md -------------------------------------------------------------------------------- /images/tectonic-error-server/binassets/doc.go: -------------------------------------------------------------------------------- 1 | package binassets 2 | -------------------------------------------------------------------------------- /images/tectonic-error-server/build-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-error-server/build-docker -------------------------------------------------------------------------------- /images/tectonic-error-server/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-error-server/glide.lock -------------------------------------------------------------------------------- /images/tectonic-error-server/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-error-server/glide.yaml -------------------------------------------------------------------------------- /images/tectonic-error-server/push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-error-server/push -------------------------------------------------------------------------------- /images/tectonic-error-server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-error-server/server.go -------------------------------------------------------------------------------- /images/tectonic-error-server/web/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-error-server/web/error.html -------------------------------------------------------------------------------- /images/tectonic-error-server/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-error-server/web/index.html -------------------------------------------------------------------------------- /images/tectonic-installer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-installer/Dockerfile -------------------------------------------------------------------------------- /images/tectonic-installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-installer/README.md -------------------------------------------------------------------------------- /images/tectonic-smoke-test-env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-smoke-test-env/Dockerfile -------------------------------------------------------------------------------- /images/tectonic-smoke-test-env/Dockerfile.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-smoke-test-env/Dockerfile.builder -------------------------------------------------------------------------------- /images/tectonic-smoke-test-env/Dockerfile.runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-smoke-test-env/Dockerfile.runtime -------------------------------------------------------------------------------- /images/tectonic-smoke-test-env/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-smoke-test-env/Makefile -------------------------------------------------------------------------------- /images/tectonic-stats-extender/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | tools/ 3 | -------------------------------------------------------------------------------- /images/tectonic-stats-extender/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-stats-extender/Dockerfile -------------------------------------------------------------------------------- /images/tectonic-stats-extender/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-stats-extender/Makefile -------------------------------------------------------------------------------- /images/tectonic-stats-extender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-stats-extender/README.md -------------------------------------------------------------------------------- /images/tectonic-stats-extender/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-stats-extender/build -------------------------------------------------------------------------------- /images/tectonic-stats-extender/cmd/extender/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-stats-extender/cmd/extender/main.go -------------------------------------------------------------------------------- /images/tectonic-stats-extender/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-stats-extender/glide.lock -------------------------------------------------------------------------------- /images/tectonic-stats-extender/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-stats-extender/glide.yaml -------------------------------------------------------------------------------- /images/tectonic-stats-extender/push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-stats-extender/push -------------------------------------------------------------------------------- /images/tectonic-stats-extender/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/images/tectonic-stats-extender/test -------------------------------------------------------------------------------- /installer/.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !bin/linux/installer 3 | -------------------------------------------------------------------------------- /installer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/.gitignore -------------------------------------------------------------------------------- /installer/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/CONTRIBUTING.md -------------------------------------------------------------------------------- /installer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/Makefile -------------------------------------------------------------------------------- /installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/README.md -------------------------------------------------------------------------------- /installer/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/api/api.go -------------------------------------------------------------------------------- /installer/api/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/api/errors.go -------------------------------------------------------------------------------- /installer/api/handlers_aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/api/handlers_aws.go -------------------------------------------------------------------------------- /installer/api/handlers_containerlinux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/api/handlers_containerlinux.go -------------------------------------------------------------------------------- /installer/api/handlers_frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/api/handlers_frontend.go -------------------------------------------------------------------------------- /installer/api/handlers_latest_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/api/handlers_latest_release.go -------------------------------------------------------------------------------- /installer/api/handlers_tectonic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/api/handlers_tectonic.go -------------------------------------------------------------------------------- /installer/api/handlers_terraform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/api/handlers_terraform.go -------------------------------------------------------------------------------- /installer/assets/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/assets/assets.go -------------------------------------------------------------------------------- /installer/assets/doc.go: -------------------------------------------------------------------------------- 1 | // Stub file to keep glide happy. 2 | 3 | package assets 4 | -------------------------------------------------------------------------------- /installer/assets/frontend/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/assets/frontend/css/styles.css -------------------------------------------------------------------------------- /installer/assets/frontend/index.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/assets/frontend/index.html.tmpl -------------------------------------------------------------------------------- /installer/assets/frontend/lib/mochi/hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/assets/frontend/lib/mochi/hashes.json -------------------------------------------------------------------------------- /installer/assets/frontend/lib/mochi/mochi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/assets/frontend/lib/mochi/mochi.css -------------------------------------------------------------------------------- /installer/cmd/installer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/cmd/installer/main.go -------------------------------------------------------------------------------- /installer/cmd/installer/platforms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/cmd/installer/platforms.go -------------------------------------------------------------------------------- /installer/frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/.babelrc -------------------------------------------------------------------------------- /installer/frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/.editorconfig -------------------------------------------------------------------------------- /installer/frontend/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/.eslintrc -------------------------------------------------------------------------------- /installer/frontend/__tests__/examples/aws-vpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/__tests__/examples/aws-vpc.json -------------------------------------------------------------------------------- /installer/frontend/__tests__/examples/aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/__tests__/examples/aws.json -------------------------------------------------------------------------------- /installer/frontend/__tests__/examples/metal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/__tests__/examples/metal.json -------------------------------------------------------------------------------- /installer/frontend/__tests__/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/__tests__/fields.js -------------------------------------------------------------------------------- /installer/frontend/__tests__/protocols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/__tests__/protocols.js -------------------------------------------------------------------------------- /installer/frontend/__tests__/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/__tests__/reducer.js -------------------------------------------------------------------------------- /installer/frontend/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/actions.js -------------------------------------------------------------------------------- /installer/frontend/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/app.jsx -------------------------------------------------------------------------------- /installer/frontend/aws-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/aws-actions.js -------------------------------------------------------------------------------- /installer/frontend/aws-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/aws-api.js -------------------------------------------------------------------------------- /installer/frontend/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/check-versions.js -------------------------------------------------------------------------------- /installer/frontend/cluster-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/cluster-config.js -------------------------------------------------------------------------------- /installer/frontend/components/alert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/alert.jsx -------------------------------------------------------------------------------- /installer/frontend/components/aws-cluster-info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/aws-cluster-info.jsx -------------------------------------------------------------------------------- /installer/frontend/components/aws-define-nodes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/aws-define-nodes.jsx -------------------------------------------------------------------------------- /installer/frontend/components/aws-submit-keys.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/aws-submit-keys.jsx -------------------------------------------------------------------------------- /installer/frontend/components/aws-tags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/aws-tags.jsx -------------------------------------------------------------------------------- /installer/frontend/components/aws-vpc.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/aws-vpc.jsx -------------------------------------------------------------------------------- /installer/frontend/components/base.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/base.jsx -------------------------------------------------------------------------------- /installer/frontend/components/bm-credentials.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/bm-credentials.jsx -------------------------------------------------------------------------------- /installer/frontend/components/bm-hostname.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/bm-hostname.jsx -------------------------------------------------------------------------------- /installer/frontend/components/bm-matchbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/bm-matchbox.jsx -------------------------------------------------------------------------------- /installer/frontend/components/bm-nodeforms.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/bm-nodeforms.jsx -------------------------------------------------------------------------------- /installer/frontend/components/bm-sshkeys.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/bm-sshkeys.jsx -------------------------------------------------------------------------------- /installer/frontend/components/cidr.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/cidr.jsx -------------------------------------------------------------------------------- /installer/frontend/components/cluster-info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/cluster-info.jsx -------------------------------------------------------------------------------- /installer/frontend/components/cluster-type.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/cluster-type.jsx -------------------------------------------------------------------------------- /installer/frontend/components/dry-run.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/dry-run.jsx -------------------------------------------------------------------------------- /installer/frontend/components/etcd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/etcd.jsx -------------------------------------------------------------------------------- /installer/frontend/components/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/footer.jsx -------------------------------------------------------------------------------- /installer/frontend/components/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/header.jsx -------------------------------------------------------------------------------- /installer/frontend/components/k8s-cidrs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/k8s-cidrs.jsx -------------------------------------------------------------------------------- /installer/frontend/components/loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/loader.jsx -------------------------------------------------------------------------------- /installer/frontend/components/make-node-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/make-node-form.jsx -------------------------------------------------------------------------------- /installer/frontend/components/restore.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/restore.jsx -------------------------------------------------------------------------------- /installer/frontend/components/submit-definition.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/submit-definition.jsx -------------------------------------------------------------------------------- /installer/frontend/components/success.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/success.jsx -------------------------------------------------------------------------------- /installer/frontend/components/tf-poweron.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/tf-poweron.jsx -------------------------------------------------------------------------------- /installer/frontend/components/ui.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/ui.jsx -------------------------------------------------------------------------------- /installer/frontend/components/users.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/components/users.jsx -------------------------------------------------------------------------------- /installer/frontend/facts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/facts.js -------------------------------------------------------------------------------- /installer/frontend/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/fields.js -------------------------------------------------------------------------------- /installer/frontend/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/form.js -------------------------------------------------------------------------------- /installer/frontend/nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/nav.jsx -------------------------------------------------------------------------------- /installer/frontend/nightwatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/nightwatch.json -------------------------------------------------------------------------------- /installer/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/package.json -------------------------------------------------------------------------------- /installer/frontend/platforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/platforms.js -------------------------------------------------------------------------------- /installer/frontend/readfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/readfile.js -------------------------------------------------------------------------------- /installer/frontend/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/reducer.js -------------------------------------------------------------------------------- /installer/frontend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/server.js -------------------------------------------------------------------------------- /installer/frontend/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/store.js -------------------------------------------------------------------------------- /installer/frontend/tectonic-ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/tectonic-ga.js -------------------------------------------------------------------------------- /installer/frontend/trail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/trail.js -------------------------------------------------------------------------------- /installer/frontend/ui-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/README.md -------------------------------------------------------------------------------- /installer/frontend/ui-tests/commands/setField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/commands/setField.js -------------------------------------------------------------------------------- /installer/frontend/ui-tests/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/globals.js -------------------------------------------------------------------------------- /installer/frontend/ui-tests/output/aws.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/output/aws.tfvars -------------------------------------------------------------------------------- /installer/frontend/ui-tests/output/metal.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/output/metal.tfvars -------------------------------------------------------------------------------- /installer/frontend/ui-tests/pages/clusterDnsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/pages/clusterDnsPage.js -------------------------------------------------------------------------------- /installer/frontend/ui-tests/pages/keysPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/pages/keysPage.js -------------------------------------------------------------------------------- /installer/frontend/ui-tests/pages/networkingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/pages/networkingPage.js -------------------------------------------------------------------------------- /installer/frontend/ui-tests/pages/nodesPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/pages/nodesPage.js -------------------------------------------------------------------------------- /installer/frontend/ui-tests/pages/platformPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/pages/platformPage.js -------------------------------------------------------------------------------- /installer/frontend/ui-tests/pages/sshKeysPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/pages/sshKeysPage.js -------------------------------------------------------------------------------- /installer/frontend/ui-tests/pages/submitPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/pages/submitPage.js -------------------------------------------------------------------------------- /installer/frontend/ui-tests/tests/awsInstaller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/tests/awsInstaller.js -------------------------------------------------------------------------------- /installer/frontend/ui-tests/utils/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/utils/log.js -------------------------------------------------------------------------------- /installer/frontend/ui-tests/utils/wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/ui-tests/utils/wizard.js -------------------------------------------------------------------------------- /installer/frontend/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/utils.js -------------------------------------------------------------------------------- /installer/frontend/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/validate.js -------------------------------------------------------------------------------- /installer/frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/frontend/yarn.lock -------------------------------------------------------------------------------- /installer/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/glide.lock -------------------------------------------------------------------------------- /installer/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/glide.yaml -------------------------------------------------------------------------------- /installer/pkg/aws/getters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/pkg/aws/getters.go -------------------------------------------------------------------------------- /installer/pkg/aws/validations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/pkg/aws/validations.go -------------------------------------------------------------------------------- /installer/pkg/aws/validations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/pkg/aws/validations_test.go -------------------------------------------------------------------------------- /installer/pkg/containerlinux/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/pkg/containerlinux/images.go -------------------------------------------------------------------------------- /installer/pkg/tectonic/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/pkg/tectonic/defaults.go -------------------------------------------------------------------------------- /installer/pkg/terraform/credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/pkg/terraform/credentials.go -------------------------------------------------------------------------------- /installer/pkg/terraform/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/pkg/terraform/executor.go -------------------------------------------------------------------------------- /installer/pkg/terraform/executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/pkg/terraform/executor_test.go -------------------------------------------------------------------------------- /installer/pkg/terraform/sources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/pkg/terraform/sources.go -------------------------------------------------------------------------------- /installer/scripts/add_matchbox_hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/scripts/add_matchbox_hosts.sh -------------------------------------------------------------------------------- /installer/scripts/filter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/scripts/filter.sh -------------------------------------------------------------------------------- /installer/scripts/lint-backend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/scripts/lint-backend -------------------------------------------------------------------------------- /installer/scripts/maintenance/clean-aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/scripts/maintenance/clean-aws.sh -------------------------------------------------------------------------------- /installer/scripts/maintenance/tag-aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/scripts/maintenance/tag-aws.sh -------------------------------------------------------------------------------- /installer/scripts/test-backend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/scripts/test-backend -------------------------------------------------------------------------------- /installer/vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /installer/vendor/cloud.google.com/go/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/cloud.google.com/go/cloud.go -------------------------------------------------------------------------------- /installer/vendor/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/Sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/Sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /installer/vendor/github.com/ajeddeloh/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/ajeddeloh/yaml/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/ajeddeloh/yaml/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/ajeddeloh/yaml/apic.go -------------------------------------------------------------------------------- /installer/vendor/github.com/ajeddeloh/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/ajeddeloh/yaml/yaml.go -------------------------------------------------------------------------------- /installer/vendor/github.com/ajeddeloh/yaml/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/ajeddeloh/yaml/yamlh.go -------------------------------------------------------------------------------- /installer/vendor/github.com/blang/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/blang/semver/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/blang/semver/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/blang/semver/json.go -------------------------------------------------------------------------------- /installer/vendor/github.com/blang/semver/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/blang/semver/sort.go -------------------------------------------------------------------------------- /installer/vendor/github.com/blang/semver/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/blang/semver/sql.go -------------------------------------------------------------------------------- /installer/vendor/github.com/coreos/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/coreos/pkg/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/coreos/pkg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/coreos/pkg/NOTICE -------------------------------------------------------------------------------- /installer/vendor/github.com/coreos/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/coreos/yaml/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/coreos/yaml/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/coreos/yaml/apic.go -------------------------------------------------------------------------------- /installer/vendor/github.com/coreos/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/coreos/yaml/yaml.go -------------------------------------------------------------------------------- /installer/vendor/github.com/coreos/yaml/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/coreos/yaml/yamlh.go -------------------------------------------------------------------------------- /installer/vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /installer/vendor/github.com/go-ini/ini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/go-ini/ini/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/go-ini/ini/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/go-ini/ini/error.go -------------------------------------------------------------------------------- /installer/vendor/github.com/go-ini/ini/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/go-ini/ini/ini.go -------------------------------------------------------------------------------- /installer/vendor/github.com/go-ini/ini/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/go-ini/ini/key.go -------------------------------------------------------------------------------- /installer/vendor/github.com/go-ini/ini/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/go-ini/ini/parser.go -------------------------------------------------------------------------------- /installer/vendor/github.com/go-ini/ini/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/go-ini/ini/struct.go -------------------------------------------------------------------------------- /installer/vendor/github.com/go-ole/go-ole/com.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/go-ole/go-ole/com.go -------------------------------------------------------------------------------- /installer/vendor/github.com/go-ole/go-ole/ole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/go-ole/go-ole/ole.go -------------------------------------------------------------------------------- /installer/vendor/github.com/go-yaml/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/go-yaml/yaml/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/go-yaml/yaml/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/go-yaml/yaml/apic.go -------------------------------------------------------------------------------- /installer/vendor/github.com/go-yaml/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/go-yaml/yaml/yaml.go -------------------------------------------------------------------------------- /installer/vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /installer/vendor/github.com/golang/lint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/golang/lint/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/golang/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/golang/lint/lint.go -------------------------------------------------------------------------------- /installer/vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /installer/vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /installer/vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /installer/vendor/github.com/hashicorp/hcl2/hcl/doc.go: -------------------------------------------------------------------------------- 1 | package hcl 2 | -------------------------------------------------------------------------------- /installer/vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /installer/vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /installer/vendor/github.com/mitchellh/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/mitchellh/cli/cli.go -------------------------------------------------------------------------------- /installer/vendor/github.com/mitchellh/cli/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/mitchellh/cli/ui.go -------------------------------------------------------------------------------- /installer/vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /installer/vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /installer/vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /installer/vendor/github.com/pborman/uuid/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/pborman/uuid/json.go -------------------------------------------------------------------------------- /installer/vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /installer/vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /installer/vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /installer/vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /installer/vendor/github.com/shirou/gopsutil/doc.go: -------------------------------------------------------------------------------- 1 | package gopsutil 2 | -------------------------------------------------------------------------------- /installer/vendor/github.com/shirou/w32/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/shirou/w32/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/shirou/w32/dwmapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/shirou/w32/dwmapi.go -------------------------------------------------------------------------------- /installer/vendor/github.com/shirou/w32/gdi32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/shirou/w32/gdi32.go -------------------------------------------------------------------------------- /installer/vendor/github.com/shirou/w32/ole32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/shirou/w32/ole32.go -------------------------------------------------------------------------------- /installer/vendor/github.com/shirou/w32/psapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/shirou/w32/psapi.go -------------------------------------------------------------------------------- /installer/vendor/github.com/shirou/w32/user32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/shirou/w32/user32.go -------------------------------------------------------------------------------- /installer/vendor/github.com/shirou/w32/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/shirou/w32/utils.go -------------------------------------------------------------------------------- /installer/vendor/github.com/shirou/w32/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/shirou/w32/vars.go -------------------------------------------------------------------------------- /installer/vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /installer/vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /installer/vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /installer/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /installer/vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /installer/vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /installer/vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /installer/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /installer/vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /installer/vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /installer/vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /installer/vendor/github.com/ugorji/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/ugorji/go/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/ugorji/go/codec/codecgen/z.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const genCodecPath = "github.com/ugorji/go/codec" 4 | -------------------------------------------------------------------------------- /installer/vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /installer/vendor/github.com/ulikunitz/xz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/ulikunitz/xz/LICENSE -------------------------------------------------------------------------------- /installer/vendor/github.com/ulikunitz/xz/bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/ulikunitz/xz/bits.go -------------------------------------------------------------------------------- /installer/vendor/github.com/ulikunitz/xz/crc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/github.com/ulikunitz/xz/crc.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/sys/unix/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/sys/unix/asm.s -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /installer/vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /installer/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /installer/vendor/google.golang.org/grpc/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/google.golang.org/grpc/PATENTS -------------------------------------------------------------------------------- /installer/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /installer/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /installer/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /installer/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /installer/vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /installer/vendor/k8s.io/client-go/pkg/api/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/k8s.io/client-go/pkg/api/doc.go -------------------------------------------------------------------------------- /installer/vendor/k8s.io/client-go/pkg/api/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/k8s.io/client-go/pkg/api/ref.go -------------------------------------------------------------------------------- /installer/vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /installer/vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /installer/vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /installer/vendor/k8s.io/kubernetes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/installer/vendor/k8s.io/kubernetes/LICENSE -------------------------------------------------------------------------------- /makelib/custom-providers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/makelib/custom-providers.mk -------------------------------------------------------------------------------- /modules/aws/etcd/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/etcd/ignition.tf -------------------------------------------------------------------------------- /modules/aws/etcd/ignition_s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/etcd/ignition_s3.tf -------------------------------------------------------------------------------- /modules/aws/etcd/nodes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/etcd/nodes.tf -------------------------------------------------------------------------------- /modules/aws/etcd/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/etcd/outputs.tf -------------------------------------------------------------------------------- /modules/aws/etcd/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/etcd/variables.tf -------------------------------------------------------------------------------- /modules/aws/master-asg/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/master-asg/ignition.tf -------------------------------------------------------------------------------- /modules/aws/master-asg/ignition_s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/master-asg/ignition_s3.tf -------------------------------------------------------------------------------- /modules/aws/master-asg/master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/master-asg/master.tf -------------------------------------------------------------------------------- /modules/aws/master-asg/resources/init-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/master-asg/resources/init-assets.sh -------------------------------------------------------------------------------- /modules/aws/master-asg/resources/rm-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/master-asg/resources/rm-assets.sh -------------------------------------------------------------------------------- /modules/aws/master-asg/variables-ignition.tf: -------------------------------------------------------------------------------- 1 | ../../ignition/outputs.import -------------------------------------------------------------------------------- /modules/aws/master-asg/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/master-asg/variables.tf -------------------------------------------------------------------------------- /modules/aws/vpc/existing-vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/vpc/existing-vpc.tf -------------------------------------------------------------------------------- /modules/aws/vpc/master-elb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/vpc/master-elb.tf -------------------------------------------------------------------------------- /modules/aws/vpc/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/vpc/outputs.tf -------------------------------------------------------------------------------- /modules/aws/vpc/sg-elb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/vpc/sg-elb.tf -------------------------------------------------------------------------------- /modules/aws/vpc/sg-etcd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/vpc/sg-etcd.tf -------------------------------------------------------------------------------- /modules/aws/vpc/sg-master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/vpc/sg-master.tf -------------------------------------------------------------------------------- /modules/aws/vpc/sg-worker.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/vpc/sg-worker.tf -------------------------------------------------------------------------------- /modules/aws/vpc/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/vpc/variables.tf -------------------------------------------------------------------------------- /modules/aws/vpc/vpc-private.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/vpc/vpc-private.tf -------------------------------------------------------------------------------- /modules/aws/vpc/vpc-public.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/vpc/vpc-public.tf -------------------------------------------------------------------------------- /modules/aws/vpc/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/vpc/vpc.tf -------------------------------------------------------------------------------- /modules/aws/worker-asg/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/worker-asg/ignition.tf -------------------------------------------------------------------------------- /modules/aws/worker-asg/ignition_s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/worker-asg/ignition_s3.tf -------------------------------------------------------------------------------- /modules/aws/worker-asg/variables-ignition.tf: -------------------------------------------------------------------------------- 1 | ../../ignition/outputs.import -------------------------------------------------------------------------------- /modules/aws/worker-asg/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/worker-asg/variables.tf -------------------------------------------------------------------------------- /modules/aws/worker-asg/worker.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/aws/worker-asg/worker.tf -------------------------------------------------------------------------------- /modules/azure/etcd/etcd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/etcd/etcd.tf -------------------------------------------------------------------------------- /modules/azure/etcd/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/etcd/ignition.tf -------------------------------------------------------------------------------- /modules/azure/etcd/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/etcd/output.tf -------------------------------------------------------------------------------- /modules/azure/etcd/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/etcd/variables.tf -------------------------------------------------------------------------------- /modules/azure/master-as/ignition-master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/master-as/ignition-master.tf -------------------------------------------------------------------------------- /modules/azure/master-as/master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/master-as/master.tf -------------------------------------------------------------------------------- /modules/azure/master-as/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/master-as/outputs.tf -------------------------------------------------------------------------------- /modules/azure/master-as/variables-ignition.tf: -------------------------------------------------------------------------------- 1 | ../../ignition/outputs.import -------------------------------------------------------------------------------- /modules/azure/master-as/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/master-as/variables.tf -------------------------------------------------------------------------------- /modules/azure/resource-group/resource-group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/resource-group/resource-group.tf -------------------------------------------------------------------------------- /modules/azure/udev-rules/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/udev-rules/outputs.tf -------------------------------------------------------------------------------- /modules/azure/udev-rules/udev.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/udev-rules/udev.tf -------------------------------------------------------------------------------- /modules/azure/vnet/lb-api.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/vnet/lb-api.tf -------------------------------------------------------------------------------- /modules/azure/vnet/lb-console.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/vnet/lb-console.tf -------------------------------------------------------------------------------- /modules/azure/vnet/lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/vnet/lb.tf -------------------------------------------------------------------------------- /modules/azure/vnet/nic-etcd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/vnet/nic-etcd.tf -------------------------------------------------------------------------------- /modules/azure/vnet/nic-master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/vnet/nic-master.tf -------------------------------------------------------------------------------- /modules/azure/vnet/nic-worker.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/vnet/nic-worker.tf -------------------------------------------------------------------------------- /modules/azure/vnet/nsg-etcd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/vnet/nsg-etcd.tf -------------------------------------------------------------------------------- /modules/azure/vnet/nsg-master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/vnet/nsg-master.tf -------------------------------------------------------------------------------- /modules/azure/vnet/nsg-worker.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/vnet/nsg-worker.tf -------------------------------------------------------------------------------- /modules/azure/vnet/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/vnet/outputs.tf -------------------------------------------------------------------------------- /modules/azure/vnet/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/vnet/variables.tf -------------------------------------------------------------------------------- /modules/azure/vnet/vnet-subnets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/vnet/vnet-subnets.tf -------------------------------------------------------------------------------- /modules/azure/worker-as/ignition-worker.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/worker-as/ignition-worker.tf -------------------------------------------------------------------------------- /modules/azure/worker-as/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/worker-as/output.tf -------------------------------------------------------------------------------- /modules/azure/worker-as/variables-ignition.tf: -------------------------------------------------------------------------------- 1 | ../../ignition/outputs.import -------------------------------------------------------------------------------- /modules/azure/worker-as/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/worker-as/variables.tf -------------------------------------------------------------------------------- /modules/azure/worker-as/workers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/azure/worker-as/workers.tf -------------------------------------------------------------------------------- /modules/bootkube/assets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/bootkube/assets.tf -------------------------------------------------------------------------------- /modules/bootkube/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/bootkube/outputs.tf -------------------------------------------------------------------------------- /modules/bootkube/resources/bootkube.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/bootkube/resources/bootkube.path -------------------------------------------------------------------------------- /modules/bootkube/resources/bootkube.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/bootkube/resources/bootkube.service -------------------------------------------------------------------------------- /modules/bootkube/resources/bootkube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/bootkube/resources/bootkube.sh -------------------------------------------------------------------------------- /modules/bootkube/resources/kubeconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/bootkube/resources/kubeconfig -------------------------------------------------------------------------------- /modules/bootkube/self-hosted-etcd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/bootkube/self-hosted-etcd.tf -------------------------------------------------------------------------------- /modules/bootkube/service-account.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/bootkube/service-account.tf -------------------------------------------------------------------------------- /modules/bootkube/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/bootkube/variables.tf -------------------------------------------------------------------------------- /modules/bootstrap-ssh/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/bootstrap-ssh/main.tf -------------------------------------------------------------------------------- /modules/bootstrap-ssh/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/bootstrap-ssh/variables.tf -------------------------------------------------------------------------------- /modules/container_linux/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/container_linux/main.tf -------------------------------------------------------------------------------- /modules/container_linux/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/container_linux/outputs.tf -------------------------------------------------------------------------------- /modules/container_linux/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/container_linux/variables.tf -------------------------------------------------------------------------------- /modules/digitalocean/etcd/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/etcd/dns.tf -------------------------------------------------------------------------------- /modules/digitalocean/etcd/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/etcd/ignition.tf -------------------------------------------------------------------------------- /modules/digitalocean/etcd/nodes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/etcd/nodes.tf -------------------------------------------------------------------------------- /modules/digitalocean/etcd/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/etcd/outputs.tf -------------------------------------------------------------------------------- /modules/digitalocean/etcd/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/etcd/variables.tf -------------------------------------------------------------------------------- /modules/digitalocean/master/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/master/ignition.tf -------------------------------------------------------------------------------- /modules/digitalocean/master/loadbalancer.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/master/loadbalancer.tf -------------------------------------------------------------------------------- /modules/digitalocean/master/master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/master/master.tf -------------------------------------------------------------------------------- /modules/digitalocean/master/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/master/outputs.tf -------------------------------------------------------------------------------- /modules/digitalocean/master/variables-ignition.tf: -------------------------------------------------------------------------------- 1 | ../../ignition/outputs.import -------------------------------------------------------------------------------- /modules/digitalocean/master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/master/variables.tf -------------------------------------------------------------------------------- /modules/digitalocean/worker/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/worker/ignition.tf -------------------------------------------------------------------------------- /modules/digitalocean/worker/variables-ignition.tf: -------------------------------------------------------------------------------- 1 | ../../ignition/outputs.import -------------------------------------------------------------------------------- /modules/digitalocean/worker/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/worker/variables.tf -------------------------------------------------------------------------------- /modules/digitalocean/worker/worker.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/digitalocean/worker/worker.tf -------------------------------------------------------------------------------- /modules/dns/azure/records.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/azure/records.tf -------------------------------------------------------------------------------- /modules/dns/azure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/azure/variables.tf -------------------------------------------------------------------------------- /modules/dns/ddns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/ddns/README.md -------------------------------------------------------------------------------- /modules/dns/ddns/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/ddns/main.tf -------------------------------------------------------------------------------- /modules/dns/ddns/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/ddns/variables.tf -------------------------------------------------------------------------------- /modules/dns/designate/etcd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/designate/etcd.tf -------------------------------------------------------------------------------- /modules/dns/designate/master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/designate/master.tf -------------------------------------------------------------------------------- /modules/dns/designate/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/designate/outputs.tf -------------------------------------------------------------------------------- /modules/dns/designate/tectonic.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/designate/tectonic.tf -------------------------------------------------------------------------------- /modules/dns/designate/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/designate/variables.tf -------------------------------------------------------------------------------- /modules/dns/designate/worker.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/designate/worker.tf -------------------------------------------------------------------------------- /modules/dns/gcp/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/gcp/outputs.tf -------------------------------------------------------------------------------- /modules/dns/gcp/records.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/gcp/records.tf -------------------------------------------------------------------------------- /modules/dns/gcp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/gcp/variables.tf -------------------------------------------------------------------------------- /modules/dns/powerdns/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/powerdns/outputs.tf -------------------------------------------------------------------------------- /modules/dns/powerdns/records.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/powerdns/records.tf -------------------------------------------------------------------------------- /modules/dns/powerdns/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/powerdns/variables.tf -------------------------------------------------------------------------------- /modules/dns/route53/etcd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/route53/etcd.tf -------------------------------------------------------------------------------- /modules/dns/route53/master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/route53/master.tf -------------------------------------------------------------------------------- /modules/dns/route53/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/route53/outputs.tf -------------------------------------------------------------------------------- /modules/dns/route53/tectonic.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/route53/tectonic.tf -------------------------------------------------------------------------------- /modules/dns/route53/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/route53/variables.tf -------------------------------------------------------------------------------- /modules/dns/route53/worker.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/dns/route53/worker.tf -------------------------------------------------------------------------------- /modules/gcp/etcd/etcd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/etcd/etcd.tf -------------------------------------------------------------------------------- /modules/gcp/etcd/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/etcd/ignition.tf -------------------------------------------------------------------------------- /modules/gcp/etcd/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/etcd/outputs.tf -------------------------------------------------------------------------------- /modules/gcp/etcd/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/etcd/variables.tf -------------------------------------------------------------------------------- /modules/gcp/master-igm/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/master-igm/iam.tf -------------------------------------------------------------------------------- /modules/gcp/master-igm/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/master-igm/ignition.tf -------------------------------------------------------------------------------- /modules/gcp/master-igm/master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/master-igm/master.tf -------------------------------------------------------------------------------- /modules/gcp/master-igm/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/master-igm/outputs.tf -------------------------------------------------------------------------------- /modules/gcp/master-igm/resources/init-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/master-igm/resources/init-assets.sh -------------------------------------------------------------------------------- /modules/gcp/master-igm/variables-ignition.tf: -------------------------------------------------------------------------------- 1 | ../../ignition/outputs.import -------------------------------------------------------------------------------- /modules/gcp/master-igm/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/master-igm/variables.tf -------------------------------------------------------------------------------- /modules/gcp/network/firewall-etcd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/network/firewall-etcd.tf -------------------------------------------------------------------------------- /modules/gcp/network/firewall-master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/network/firewall-master.tf -------------------------------------------------------------------------------- /modules/gcp/network/firewall-worker.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/network/firewall-worker.tf -------------------------------------------------------------------------------- /modules/gcp/network/loadbalancer.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/network/loadbalancer.tf -------------------------------------------------------------------------------- /modules/gcp/network/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/network/network.tf -------------------------------------------------------------------------------- /modules/gcp/network/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/network/outputs.tf -------------------------------------------------------------------------------- /modules/gcp/network/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/network/variables.tf -------------------------------------------------------------------------------- /modules/gcp/worker-igm/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/worker-igm/iam.tf -------------------------------------------------------------------------------- /modules/gcp/worker-igm/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/worker-igm/ignition.tf -------------------------------------------------------------------------------- /modules/gcp/worker-igm/variables-ignition.tf: -------------------------------------------------------------------------------- 1 | ../../ignition/outputs.import -------------------------------------------------------------------------------- /modules/gcp/worker-igm/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/worker-igm/variables.tf -------------------------------------------------------------------------------- /modules/gcp/worker-igm/worker.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/gcp/worker-igm/worker.tf -------------------------------------------------------------------------------- /modules/govcloud/etcd/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/etcd/ignition.tf -------------------------------------------------------------------------------- /modules/govcloud/etcd/ignition_s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/etcd/ignition_s3.tf -------------------------------------------------------------------------------- /modules/govcloud/etcd/nodes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/etcd/nodes.tf -------------------------------------------------------------------------------- /modules/govcloud/etcd/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/etcd/outputs.tf -------------------------------------------------------------------------------- /modules/govcloud/etcd/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/etcd/variables.tf -------------------------------------------------------------------------------- /modules/govcloud/master-asg/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/master-asg/ignition.tf -------------------------------------------------------------------------------- /modules/govcloud/master-asg/ignition_s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/master-asg/ignition_s3.tf -------------------------------------------------------------------------------- /modules/govcloud/master-asg/master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/master-asg/master.tf -------------------------------------------------------------------------------- /modules/govcloud/master-asg/variables-ignition.tf: -------------------------------------------------------------------------------- 1 | ../../ignition/outputs.import -------------------------------------------------------------------------------- /modules/govcloud/master-asg/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/master-asg/variables.tf -------------------------------------------------------------------------------- /modules/govcloud/worker-asg/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/worker-asg/ignition.tf -------------------------------------------------------------------------------- /modules/govcloud/worker-asg/ignition_s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/worker-asg/ignition_s3.tf -------------------------------------------------------------------------------- /modules/govcloud/worker-asg/variables-ignition.tf: -------------------------------------------------------------------------------- 1 | ../../ignition/outputs.import -------------------------------------------------------------------------------- /modules/govcloud/worker-asg/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/worker-asg/variables.tf -------------------------------------------------------------------------------- /modules/govcloud/worker-asg/worker.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/govcloud/worker-asg/worker.tf -------------------------------------------------------------------------------- /modules/ignition/assets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/ignition/assets.tf -------------------------------------------------------------------------------- /modules/ignition/ca_certs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/ignition/ca_certs.tf -------------------------------------------------------------------------------- /modules/ignition/etcd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/ignition/etcd.tf -------------------------------------------------------------------------------- /modules/ignition/outputs.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/ignition/outputs.import -------------------------------------------------------------------------------- /modules/ignition/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/ignition/outputs.tf -------------------------------------------------------------------------------- /modules/ignition/resources/bin/gcs-puller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/ignition/resources/bin/gcs-puller.sh -------------------------------------------------------------------------------- /modules/ignition/resources/bin/s3-puller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/ignition/resources/bin/s3-puller.sh -------------------------------------------------------------------------------- /modules/ignition/resources/paths/rm-assets.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/ignition/resources/paths/rm-assets.path -------------------------------------------------------------------------------- /modules/ignition/resources/proxy/profile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/ignition/resources/proxy/profile.env -------------------------------------------------------------------------------- /modules/ignition/resources/sysctl.d/max-user-watches.conf: -------------------------------------------------------------------------------- 1 | fs.inotify.max_user_watches=16184 2 | -------------------------------------------------------------------------------- /modules/ignition/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/ignition/variables.tf -------------------------------------------------------------------------------- /modules/net/calico/assets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/net/calico/assets.tf -------------------------------------------------------------------------------- /modules/net/calico/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/net/calico/outputs.tf -------------------------------------------------------------------------------- /modules/net/calico/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/net/calico/variables.tf -------------------------------------------------------------------------------- /modules/net/canal/assets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/net/canal/assets.tf -------------------------------------------------------------------------------- /modules/net/canal/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/net/canal/outputs.tf -------------------------------------------------------------------------------- /modules/net/canal/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/net/canal/variables.tf -------------------------------------------------------------------------------- /modules/net/flannel_vxlan/assets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/net/flannel_vxlan/assets.tf -------------------------------------------------------------------------------- /modules/net/flannel_vxlan/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/net/flannel_vxlan/outputs.tf -------------------------------------------------------------------------------- /modules/net/flannel_vxlan/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/net/flannel_vxlan/variables.tf -------------------------------------------------------------------------------- /modules/openstack/etcd/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/openstack/etcd/ignition.tf -------------------------------------------------------------------------------- /modules/openstack/etcd/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/openstack/etcd/output.tf -------------------------------------------------------------------------------- /modules/openstack/etcd/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/openstack/etcd/variables.tf -------------------------------------------------------------------------------- /modules/openstack/nodes/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/openstack/nodes/ignition.tf -------------------------------------------------------------------------------- /modules/openstack/nodes/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/openstack/nodes/output.tf -------------------------------------------------------------------------------- /modules/openstack/nodes/variables-ignition.tf: -------------------------------------------------------------------------------- 1 | ../../ignition/outputs.import -------------------------------------------------------------------------------- /modules/openstack/nodes/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/openstack/nodes/variables.tf -------------------------------------------------------------------------------- /modules/openstack/secgroups/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/openstack/secgroups/output.tf -------------------------------------------------------------------------------- /modules/openstack/secgroups/rules/default/variables.tf: -------------------------------------------------------------------------------- 1 | variable "secgroup_id" { 2 | type = "string" 3 | } 4 | -------------------------------------------------------------------------------- /modules/openstack/secgroups/secgroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/openstack/secgroups/secgroup.tf -------------------------------------------------------------------------------- /modules/openstack/secgroups/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/openstack/secgroups/variables.tf -------------------------------------------------------------------------------- /modules/openstack/secrets/secrets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/openstack/secrets/secrets.tf -------------------------------------------------------------------------------- /modules/openstack/secrets/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/openstack/secrets/variables.tf -------------------------------------------------------------------------------- /modules/tectonic/assets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tectonic/assets.tf -------------------------------------------------------------------------------- /modules/tectonic/crypto.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tectonic/crypto.tf -------------------------------------------------------------------------------- /modules/tectonic/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tectonic/output.tf -------------------------------------------------------------------------------- /modules/tectonic/resources/manifests/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tectonic/resources/manifests/config.yaml -------------------------------------------------------------------------------- /modules/tectonic/resources/tectonic-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tectonic/resources/tectonic-wrapper.sh -------------------------------------------------------------------------------- /modules/tectonic/resources/tectonic.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tectonic/resources/tectonic.path -------------------------------------------------------------------------------- /modules/tectonic/resources/tectonic.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tectonic/resources/tectonic.service -------------------------------------------------------------------------------- /modules/tectonic/resources/tectonic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tectonic/resources/tectonic.sh -------------------------------------------------------------------------------- /modules/tectonic/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tectonic/variables.tf -------------------------------------------------------------------------------- /modules/tls/etcd/signed/assets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/etcd/signed/assets.tf -------------------------------------------------------------------------------- /modules/tls/etcd/signed/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/etcd/signed/main.tf -------------------------------------------------------------------------------- /modules/tls/etcd/signed/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/etcd/signed/outputs.tf -------------------------------------------------------------------------------- /modules/tls/etcd/signed/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/etcd/signed/variables.tf -------------------------------------------------------------------------------- /modules/tls/etcd/user-provided/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/etcd/user-provided/README.md -------------------------------------------------------------------------------- /modules/tls/etcd/user-provided/assets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/etcd/user-provided/assets.tf -------------------------------------------------------------------------------- /modules/tls/etcd/user-provided/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/etcd/user-provided/outputs.tf -------------------------------------------------------------------------------- /modules/tls/etcd/user-provided/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/etcd/user-provided/variables.tf -------------------------------------------------------------------------------- /modules/tls/identity/self-signed/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/identity/self-signed/main.tf -------------------------------------------------------------------------------- /modules/tls/identity/self-signed/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/identity/self-signed/outputs.tf -------------------------------------------------------------------------------- /modules/tls/identity/self-signed/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/identity/self-signed/variables.tf -------------------------------------------------------------------------------- /modules/tls/identity/user-provided/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/identity/user-provided/README.md -------------------------------------------------------------------------------- /modules/tls/identity/user-provided/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/identity/user-provided/outputs.tf -------------------------------------------------------------------------------- /modules/tls/identity/user-provided/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/identity/user-provided/variables.tf -------------------------------------------------------------------------------- /modules/tls/ingress/self-signed/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/ingress/self-signed/main.tf -------------------------------------------------------------------------------- /modules/tls/ingress/self-signed/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/ingress/self-signed/output.tf -------------------------------------------------------------------------------- /modules/tls/ingress/self-signed/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/ingress/self-signed/variables.tf -------------------------------------------------------------------------------- /modules/tls/ingress/user-provided/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/ingress/user-provided/README.md -------------------------------------------------------------------------------- /modules/tls/ingress/user-provided/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/ingress/user-provided/outputs.tf -------------------------------------------------------------------------------- /modules/tls/ingress/user-provided/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/ingress/user-provided/variables.tf -------------------------------------------------------------------------------- /modules/tls/kube/self-signed/api.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/kube/self-signed/api.tf -------------------------------------------------------------------------------- /modules/tls/kube/self-signed/assets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/kube/self-signed/assets.tf -------------------------------------------------------------------------------- /modules/tls/kube/self-signed/ca.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/kube/self-signed/ca.tf -------------------------------------------------------------------------------- /modules/tls/kube/self-signed/kubelet.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/kube/self-signed/kubelet.tf -------------------------------------------------------------------------------- /modules/tls/kube/self-signed/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/kube/self-signed/outputs.tf -------------------------------------------------------------------------------- /modules/tls/kube/self-signed/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/kube/self-signed/variables.tf -------------------------------------------------------------------------------- /modules/tls/kube/user-provided/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/kube/user-provided/README.md -------------------------------------------------------------------------------- /modules/tls/kube/user-provided/assets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/kube/user-provided/assets.tf -------------------------------------------------------------------------------- /modules/tls/kube/user-provided/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/kube/user-provided/outputs.tf -------------------------------------------------------------------------------- /modules/tls/kube/user-provided/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/tls/kube/user-provided/variables.tf -------------------------------------------------------------------------------- /modules/update-payload/assets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/update-payload/assets.tf -------------------------------------------------------------------------------- /modules/update-payload/config.tf: -------------------------------------------------------------------------------- 1 | ../../config.tf -------------------------------------------------------------------------------- /modules/vmware/etcd/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/vmware/etcd/ignition.tf -------------------------------------------------------------------------------- /modules/vmware/etcd/nodes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/vmware/etcd/nodes.tf -------------------------------------------------------------------------------- /modules/vmware/etcd/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/vmware/etcd/outputs.tf -------------------------------------------------------------------------------- /modules/vmware/etcd/resources/etcd-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/vmware/etcd/resources/etcd-cluster -------------------------------------------------------------------------------- /modules/vmware/etcd/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/vmware/etcd/variables.tf -------------------------------------------------------------------------------- /modules/vmware/node/ignition.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/vmware/node/ignition.tf -------------------------------------------------------------------------------- /modules/vmware/node/nodes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/vmware/node/nodes.tf -------------------------------------------------------------------------------- /modules/vmware/node/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/vmware/node/outputs.tf -------------------------------------------------------------------------------- /modules/vmware/node/variables-ignition.tf: -------------------------------------------------------------------------------- 1 | ../../ignition/outputs.import -------------------------------------------------------------------------------- /modules/vmware/node/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/modules/vmware/node/variables.tf -------------------------------------------------------------------------------- /platforms/aws/config.tf: -------------------------------------------------------------------------------- 1 | ../../config.tf -------------------------------------------------------------------------------- /platforms/aws/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/aws/main.tf -------------------------------------------------------------------------------- /platforms/aws/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/aws/s3.tf -------------------------------------------------------------------------------- /platforms/aws/tectonic.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/aws/tectonic.tf -------------------------------------------------------------------------------- /platforms/aws/tls.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/aws/tls.tf -------------------------------------------------------------------------------- /platforms/aws/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/aws/variables.tf -------------------------------------------------------------------------------- /platforms/azure/bootstrap.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/azure/bootstrap.tf -------------------------------------------------------------------------------- /platforms/azure/config.tf: -------------------------------------------------------------------------------- 1 | ../../config.tf -------------------------------------------------------------------------------- /platforms/azure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/azure/main.tf -------------------------------------------------------------------------------- /platforms/azure/tectonic.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/azure/tectonic.tf -------------------------------------------------------------------------------- /platforms/azure/tls.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/azure/tls.tf -------------------------------------------------------------------------------- /platforms/azure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/azure/variables.tf -------------------------------------------------------------------------------- /platforms/digitalocean/assets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/digitalocean/assets.tf -------------------------------------------------------------------------------- /platforms/digitalocean/config.tf: -------------------------------------------------------------------------------- 1 | ../../config.tf -------------------------------------------------------------------------------- /platforms/digitalocean/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/digitalocean/main.tf -------------------------------------------------------------------------------- /platforms/digitalocean/resources/do-puller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/digitalocean/resources/do-puller.sh -------------------------------------------------------------------------------- /platforms/digitalocean/resources/do-pusher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/digitalocean/resources/do-pusher.sh -------------------------------------------------------------------------------- /platforms/digitalocean/spaces.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/digitalocean/spaces.tf -------------------------------------------------------------------------------- /platforms/digitalocean/tectonic.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/digitalocean/tectonic.tf -------------------------------------------------------------------------------- /platforms/digitalocean/tls.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/digitalocean/tls.tf -------------------------------------------------------------------------------- /platforms/digitalocean/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/digitalocean/variables.tf -------------------------------------------------------------------------------- /platforms/gcp/config.tf: -------------------------------------------------------------------------------- 1 | ../../config.tf -------------------------------------------------------------------------------- /platforms/gcp/gcs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/gcp/gcs.tf -------------------------------------------------------------------------------- /platforms/gcp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/gcp/main.tf -------------------------------------------------------------------------------- /platforms/gcp/tectonic.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/gcp/tectonic.tf -------------------------------------------------------------------------------- /platforms/gcp/tls.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/gcp/tls.tf -------------------------------------------------------------------------------- /platforms/gcp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/gcp/variables.tf -------------------------------------------------------------------------------- /platforms/govcloud/config.tf: -------------------------------------------------------------------------------- 1 | ../../config.tf -------------------------------------------------------------------------------- /platforms/govcloud/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/govcloud/main.tf -------------------------------------------------------------------------------- /platforms/govcloud/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/govcloud/s3.tf -------------------------------------------------------------------------------- /platforms/govcloud/tectonic.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/govcloud/tectonic.tf -------------------------------------------------------------------------------- /platforms/govcloud/tls.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/govcloud/tls.tf -------------------------------------------------------------------------------- /platforms/govcloud/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/govcloud/variables.tf -------------------------------------------------------------------------------- /platforms/metal/cl/bootkube-controller.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/metal/cl/bootkube-controller.yaml.tmpl -------------------------------------------------------------------------------- /platforms/metal/cl/bootkube-worker.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/metal/cl/bootkube-worker.yaml.tmpl -------------------------------------------------------------------------------- /platforms/metal/cl/coreos-install.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/metal/cl/coreos-install.yaml.tmpl -------------------------------------------------------------------------------- /platforms/metal/cl/custom-ca.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/metal/cl/custom-ca.yaml.tmpl -------------------------------------------------------------------------------- /platforms/metal/config.tf: -------------------------------------------------------------------------------- 1 | ../../config.tf -------------------------------------------------------------------------------- /platforms/metal/matchers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/metal/matchers.tf -------------------------------------------------------------------------------- /platforms/metal/profiles.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/metal/profiles.tf -------------------------------------------------------------------------------- /platforms/metal/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/metal/provider.tf -------------------------------------------------------------------------------- /platforms/metal/remote.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/metal/remote.tf -------------------------------------------------------------------------------- /platforms/metal/tectonic.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/metal/tectonic.tf -------------------------------------------------------------------------------- /platforms/metal/tls.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/metal/tls.tf -------------------------------------------------------------------------------- /platforms/metal/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/metal/variables.tf -------------------------------------------------------------------------------- /platforms/openstack/neutron/config.tf: -------------------------------------------------------------------------------- 1 | ../../../config.tf -------------------------------------------------------------------------------- /platforms/openstack/neutron/lbaas.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/openstack/neutron/lbaas.tf -------------------------------------------------------------------------------- /platforms/openstack/neutron/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/openstack/neutron/main.tf -------------------------------------------------------------------------------- /platforms/openstack/neutron/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/openstack/neutron/network.tf -------------------------------------------------------------------------------- /platforms/openstack/neutron/nodes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/openstack/neutron/nodes.tf -------------------------------------------------------------------------------- /platforms/openstack/neutron/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/openstack/neutron/variables.tf -------------------------------------------------------------------------------- /platforms/vmware/config.tf: -------------------------------------------------------------------------------- 1 | ../../config.tf -------------------------------------------------------------------------------- /platforms/vmware/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/vmware/main.tf -------------------------------------------------------------------------------- /platforms/vmware/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/vmware/provider.tf -------------------------------------------------------------------------------- /platforms/vmware/remote.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/vmware/remote.tf -------------------------------------------------------------------------------- /platforms/vmware/tectonic.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/vmware/tectonic.tf -------------------------------------------------------------------------------- /platforms/vmware/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/platforms/vmware/variables.tf -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/jenkins-jobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/jenkins-jobs/README.md -------------------------------------------------------------------------------- /tests/jenkins-jobs/scripts/log-analyzer-copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/jenkins-jobs/scripts/log-analyzer-copy.sh -------------------------------------------------------------------------------- /tests/rspec/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/.gitignore -------------------------------------------------------------------------------- /tests/rspec/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /tests/rspec/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/.rubocop.yml -------------------------------------------------------------------------------- /tests/rspec/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4.1 2 | -------------------------------------------------------------------------------- /tests/rspec/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/Gemfile -------------------------------------------------------------------------------- /tests/rspec/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/Gemfile.lock -------------------------------------------------------------------------------- /tests/rspec/lib/aws_cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/aws_cluster.rb -------------------------------------------------------------------------------- /tests/rspec/lib/aws_iam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/aws_iam.rb -------------------------------------------------------------------------------- /tests/rspec/lib/aws_region.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/aws_region.rb -------------------------------------------------------------------------------- /tests/rspec/lib/aws_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/aws_support.rb -------------------------------------------------------------------------------- /tests/rspec/lib/aws_vpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/aws_vpc.rb -------------------------------------------------------------------------------- /tests/rspec/lib/azure_cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/azure_cluster.rb -------------------------------------------------------------------------------- /tests/rspec/lib/azure_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/azure_support.rb -------------------------------------------------------------------------------- /tests/rspec/lib/azure_vpn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/azure_vpn.rb -------------------------------------------------------------------------------- /tests/rspec/lib/cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/cluster.rb -------------------------------------------------------------------------------- /tests/rspec/lib/cluster_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/cluster_factory.rb -------------------------------------------------------------------------------- /tests/rspec/lib/cluster_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/cluster_support.rb -------------------------------------------------------------------------------- /tests/rspec/lib/container_linux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/container_linux.rb -------------------------------------------------------------------------------- /tests/rspec/lib/env_var.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/env_var.rb -------------------------------------------------------------------------------- /tests/rspec/lib/forensic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/forensic.rb -------------------------------------------------------------------------------- /tests/rspec/lib/gcloud_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/gcloud_helper.rb -------------------------------------------------------------------------------- /tests/rspec/lib/gcp_cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/gcp_cluster.rb -------------------------------------------------------------------------------- /tests/rspec/lib/govcloud_cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/govcloud_cluster.rb -------------------------------------------------------------------------------- /tests/rspec/lib/govcloud_vpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/govcloud_vpc.rb -------------------------------------------------------------------------------- /tests/rspec/lib/grafiti.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/grafiti.rb -------------------------------------------------------------------------------- /tests/rspec/lib/jenkins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/jenkins.rb -------------------------------------------------------------------------------- /tests/rspec/lib/k8s_conformance_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/k8s_conformance_tests.rb -------------------------------------------------------------------------------- /tests/rspec/lib/kubectl_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/kubectl_helpers.rb -------------------------------------------------------------------------------- /tests/rspec/lib/metal_cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/metal_cluster.rb -------------------------------------------------------------------------------- /tests/rspec/lib/metal_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/metal_support.rb -------------------------------------------------------------------------------- /tests/rspec/lib/name_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/name_generator.rb -------------------------------------------------------------------------------- /tests/rspec/lib/operators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/operators.rb -------------------------------------------------------------------------------- /tests/rspec/lib/pages/base_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/pages/base_page.rb -------------------------------------------------------------------------------- /tests/rspec/lib/pages/login_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/pages/login_page.rb -------------------------------------------------------------------------------- /tests/rspec/lib/password_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/password_generator.rb -------------------------------------------------------------------------------- /tests/rspec/lib/shared_examples/k8s.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/shared_examples/k8s.rb -------------------------------------------------------------------------------- /tests/rspec/lib/shared_examples/tls_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/shared_examples/tls_setup.rb -------------------------------------------------------------------------------- /tests/rspec/lib/smoke_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/smoke_test.rb -------------------------------------------------------------------------------- /tests/rspec/lib/ssh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/ssh.rb -------------------------------------------------------------------------------- /tests/rspec/lib/tfstate_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/tfstate_file.rb -------------------------------------------------------------------------------- /tests/rspec/lib/tfvars_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/tfvars_file.rb -------------------------------------------------------------------------------- /tests/rspec/lib/tls_certs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/tls_certs.rb -------------------------------------------------------------------------------- /tests/rspec/lib/webdriver_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/webdriver_helpers.rb -------------------------------------------------------------------------------- /tests/rspec/lib/with_retries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/lib/with_retries.rb -------------------------------------------------------------------------------- /tests/rspec/spec/aws/basic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/aws/basic_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/aws/ca_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/aws/ca_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/aws/custom_tls_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/aws/custom_tls_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/aws/exp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/aws/exp_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/aws/network_canal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/aws/network_canal_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/aws/vpc_internal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/aws/vpc_internal_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/azure/basic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/azure/basic_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/azure/custom_tls_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/azure/custom_tls_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/azure/dns_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/azure/dns_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/azure/example_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/azure/example_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/azure/external_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/azure/external_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/azure/private_external_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/azure/private_external_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/azure/self_hosted_etcd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/azure/self_hosted_etcd_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/gcp/basic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/gcp/basic_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/gcp/custom_tls_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/gcp/custom_tls_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/gcp/ha_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/gcp/ha_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/govcloud/vpc_internal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/govcloud/vpc_internal_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/meta-tests/aws_vpc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/meta-tests/aws_vpc_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/meta-tests/tfvars_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/meta-tests/tfvars_file_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/metal/basic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/metal/basic_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/metal/custom_tls_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/metal/custom_tls_spec.rb -------------------------------------------------------------------------------- /tests/rspec/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/spec/spec_helper.rb -------------------------------------------------------------------------------- /tests/rspec/ssh-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/ssh-agent.sh -------------------------------------------------------------------------------- /tests/rspec/utils/20-metal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/rspec/utils/20-metal.conf -------------------------------------------------------------------------------- /tests/smoke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/README.md -------------------------------------------------------------------------------- /tests/smoke/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/aws/README.md -------------------------------------------------------------------------------- /tests/smoke/aws/cluster-foreach.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/aws/cluster-foreach.sh -------------------------------------------------------------------------------- /tests/smoke/aws/vars/aws-ca.tfvars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/aws/vars/aws-ca.tfvars.json -------------------------------------------------------------------------------- /tests/smoke/aws/vars/aws-exp.tfvars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/aws/vars/aws-exp.tfvars.json -------------------------------------------------------------------------------- /tests/smoke/aws/vars/aws-net-canal.tfvars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/aws/vars/aws-net-canal.tfvars.json -------------------------------------------------------------------------------- /tests/smoke/aws/vars/aws.tfvars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/aws/vars/aws.tfvars.json -------------------------------------------------------------------------------- /tests/smoke/azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/azure/README.md -------------------------------------------------------------------------------- /tests/smoke/azure/fixtures/external-dns/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/azure/fixtures/external-dns/main.tf -------------------------------------------------------------------------------- /tests/smoke/azure/fixtures/external-vnet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/azure/fixtures/external-vnet/main.tf -------------------------------------------------------------------------------- /tests/smoke/azure/vars/basic.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/azure/vars/basic.tfvars -------------------------------------------------------------------------------- /tests/smoke/azure/vars/dns.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/azure/vars/dns.tfvars -------------------------------------------------------------------------------- /tests/smoke/azure/vars/example.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/azure/vars/example.tfvars -------------------------------------------------------------------------------- /tests/smoke/azure/vars/external.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/azure/vars/external.tfvars -------------------------------------------------------------------------------- /tests/smoke/azure/vars/private-cluster.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/azure/vars/private-cluster.tfvars -------------------------------------------------------------------------------- /tests/smoke/azure/vars/self-hosted-etcd.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/azure/vars/self-hosted-etcd.tfvars -------------------------------------------------------------------------------- /tests/smoke/bare-metal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/bare-metal/README.md -------------------------------------------------------------------------------- /tests/smoke/bare-metal/fake-creds/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/bare-metal/fake-creds/ca.crt -------------------------------------------------------------------------------- /tests/smoke/bare-metal/fake-creds/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/bare-metal/fake-creds/ca.key -------------------------------------------------------------------------------- /tests/smoke/bare-metal/fake-creds/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/bare-metal/fake-creds/client.crt -------------------------------------------------------------------------------- /tests/smoke/bare-metal/fake-creds/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/bare-metal/fake-creds/client.key -------------------------------------------------------------------------------- /tests/smoke/bare-metal/fake-creds/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/bare-metal/fake-creds/server.crt -------------------------------------------------------------------------------- /tests/smoke/bare-metal/fake-creds/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/bare-metal/fake-creds/server.key -------------------------------------------------------------------------------- /tests/smoke/bare-metal/packet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/bare-metal/packet/main.tf -------------------------------------------------------------------------------- /tests/smoke/bare-metal/smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/bare-metal/smoke.sh -------------------------------------------------------------------------------- /tests/smoke/bare-metal/vars/metal.tfvars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/bare-metal/vars/metal.tfvars.json -------------------------------------------------------------------------------- /tests/smoke/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/cluster_test.go -------------------------------------------------------------------------------- /tests/smoke/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/common_test.go -------------------------------------------------------------------------------- /tests/smoke/forensics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/forensics.sh -------------------------------------------------------------------------------- /tests/smoke/gcp/vars/gcp.ha.tfvars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/gcp/vars/gcp.ha.tfvars.json -------------------------------------------------------------------------------- /tests/smoke/gcp/vars/gcp.tfvars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/gcp/vars/gcp.tfvars.json -------------------------------------------------------------------------------- /tests/smoke/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/glide.lock -------------------------------------------------------------------------------- /tests/smoke/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/glide.yaml -------------------------------------------------------------------------------- /tests/smoke/qa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/qa_test.go -------------------------------------------------------------------------------- /tests/smoke/smoke_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/smoke_test.go -------------------------------------------------------------------------------- /tests/smoke/user_provided_tls/tls.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/user_provided_tls/tls.tf -------------------------------------------------------------------------------- /tests/smoke/vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/cloud.google.com/go/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/cloud.google.com/go/cloud.go -------------------------------------------------------------------------------- /tests/smoke/vendor/github.com/coreos/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/github.com/coreos/pkg/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/github.com/coreos/pkg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/github.com/coreos/pkg/NOTICE -------------------------------------------------------------------------------- /tests/smoke/vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /tests/smoke/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /tests/smoke/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /tests/smoke/vendor/github.com/ugorji/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/github.com/ugorji/go/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/sys/unix/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/sys/unix/asm.s -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /tests/smoke/vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /tests/smoke/vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /tests/smoke/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /tests/smoke/vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/k8s.io/apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/k8s.io/apiserver/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/k8s.io/kubernetes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/k8s.io/kubernetes/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/vbom.ml/util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/vbom.ml/util/LICENSE -------------------------------------------------------------------------------- /tests/smoke/vendor/vbom.ml/util/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/vbom.ml/util/doc.go -------------------------------------------------------------------------------- /tests/smoke/vendor/vbom.ml/util/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/vbom.ml/util/regexp.go -------------------------------------------------------------------------------- /tests/smoke/vendor/vbom.ml/util/sortorder/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreos/tectonic-installer/HEAD/tests/smoke/vendor/vbom.ml/util/sortorder/doc.go --------------------------------------------------------------------------------