├── .DEREK.yml ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yml │ └── publish.yaml ├── .gitignore ├── CONTRIBUTING.md ├── CUSTOMERS ├── LICENSE ├── Makefile ├── PRIVACY.md ├── README.md ├── audit-event ├── Gopkg.lock ├── Gopkg.toml ├── go.mod ├── handler.go └── vendor │ └── github.com │ ├── alexellis │ └── hmac │ │ ├── README.md │ │ └── pkg.go │ └── openfaas │ ├── faas-provider │ ├── LICENSE │ └── auth │ │ ├── basic_auth.go │ │ └── credentials.go │ └── openfaas-cloud │ ├── LICENSE │ ├── dashboard │ └── LICENSE │ └── sdk │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── audit.go │ ├── auth.go │ ├── build.go │ ├── constants.go │ ├── customers.go │ ├── event.go │ ├── events_scm.go │ ├── function.go │ ├── hmac.go │ ├── interfaces.go │ ├── pipeline.go │ ├── secrets.go │ ├── service.go │ ├── status.go │ └── url_builders.go ├── aws.yml ├── chart ├── Makefile ├── README.md ├── openfaas-cloud │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── ingress │ │ │ ├── ingress-auth.yml │ │ │ └── ingress-wildcard.yml │ │ ├── network-policy │ │ │ ├── ns-openfaas-fn-net-policy.yml │ │ │ └── ns-openfaas-net-policy.yml │ │ ├── ofc-core │ │ │ ├── edge-auth-dep.yaml │ │ │ ├── edge-auth-svc.yaml │ │ │ ├── edge-router-dep.yaml │ │ │ ├── edge-router-svc.yaml │ │ │ ├── of-builder-dep.yaml │ │ │ └── of-builder-svc.yaml │ │ ├── sealed-secrets │ │ │ ├── rbac-import-secrets-cluster-role.yml │ │ │ ├── rbac-import-secrets-role-binding.yml │ │ │ └── rbac-import-secrets-service-account.yml │ │ └── tls │ │ │ ├── issuer-prod.yml │ │ │ └── issuer-staging.yml │ └── values.yaml └── test │ ├── .gitignore │ ├── core_edge_auth_dep_test.go │ ├── core_edge_auth_svc_test.go │ ├── core_edge_router_dep_test.go │ ├── core_edge_router_svc_test.go │ ├── core_of_builder_dep_test.go │ ├── core_of_builder_svc_test.go │ ├── go.mod │ ├── go.sum │ ├── helm_runner.go │ ├── ingress_test.go │ ├── network_policy_test.go │ ├── sealed_secrets_clusterrole_test.go │ ├── sealed_secrets_role_test.go │ ├── sealed_secrets_serviceaccount_test.go │ ├── tls_issuer_prod_test.go │ ├── tls_issuer_stage_test.go │ ├── tools.go │ ├── types.go │ ├── values.yml │ └── vendor │ ├── github.com │ └── alexellis │ │ └── go-execute │ │ ├── LICENSE │ │ └── pkg │ │ └── v1 │ │ └── exec.go │ ├── gopkg.in │ └── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── modules.txt ├── contrib ├── ci.sh ├── publish.sh └── registry.yml ├── dashboard ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── client │ ├── .eslintrc │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logout.html │ │ └── manifest.json │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── api │ │ │ ├── functionsApi.js │ │ │ └── functionsApi.test.js │ │ ├── components │ │ │ ├── Breadcrumbs │ │ │ │ ├── Breadcrumbs.jsx │ │ │ │ └── index.js │ │ │ ├── Footer │ │ │ │ ├── Footer.jsx │ │ │ │ └── index.js │ │ │ ├── FunctionDetailSummary │ │ │ │ ├── FunctionDetailSummary.jsx │ │ │ │ └── index.js │ │ │ ├── FunctionEmptyState │ │ │ │ ├── FunctionEmptyState.css │ │ │ │ ├── FunctionEmptyState.jsx │ │ │ │ └── index.js │ │ │ ├── FunctionInvocation │ │ │ │ ├── FunctionInvocation.css │ │ │ │ └── index.jsx │ │ │ ├── FunctionOverviewPanel │ │ │ │ ├── FunctionOverviewPanel.jsx │ │ │ │ └── index.js │ │ │ ├── FunctionTable │ │ │ │ ├── FunctionTable.css │ │ │ │ ├── FunctionTable.jsx │ │ │ │ └── index.js │ │ │ ├── FunctionTableItem │ │ │ │ ├── FunctionTableItem.jsx │ │ │ │ └── index.js │ │ │ ├── GetBadgeModal │ │ │ │ ├── GetBadgeModal.jsx │ │ │ │ └── index.js │ │ │ ├── ModalRunOnMyOF │ │ │ │ ├── ModalRunOnMyOF.jsx │ │ │ │ └── index.js │ │ │ ├── NavBar │ │ │ │ ├── NavBar.jsx │ │ │ │ └── index.js │ │ │ ├── OFBadge │ │ │ │ ├── OFBadge.jsx │ │ │ │ └── index.js │ │ │ ├── OFIcon │ │ │ │ ├── OFIcon.jsx │ │ │ │ └── index.js │ │ │ └── ReplicasProgress │ │ │ │ ├── ReplicasProgress.jsx │ │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages │ │ │ ├── BuildLogPage.jsx │ │ │ ├── FunctionDetailPage.jsx │ │ │ ├── FunctionLogPage.jsx │ │ │ ├── FunctionsOverviewPage.jsx │ │ │ └── NotFoundPage.jsx │ │ └── setupProxy.js │ └── yarn.lock ├── dashboard_config.yml ├── of-cloud-dashboard │ ├── .gitignore │ ├── handler.js │ ├── package-lock.json │ └── package.json └── stack.yml ├── docs ├── COMPONENTS.md ├── GITLAB.md ├── README.md ├── README_LEGACY.md ├── ROADMAP.md ├── conceptual-overview.png ├── dashboard.png ├── details.png ├── gitlab-event-conceptual.jpg └── ofc-github-conceptual.png ├── echo └── handler.go ├── edge-auth ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── README.md ├── go.mod ├── handlers │ ├── common.go │ ├── common_test.go │ ├── config.go │ ├── const.go │ ├── homepage.go │ ├── login.go │ ├── oauth2.go │ └── query.go ├── main.go ├── provider │ ├── github_profile.go │ ├── gitlab_profile.go │ ├── types.go │ └── types_test.go ├── static │ └── bootstrap-social.css ├── template │ ├── home.html │ └── login.html └── vendor │ └── github.com │ ├── alexellis │ └── hmac │ │ ├── README.md │ │ └── pkg.go │ ├── dgrijalva │ └── jwt-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ └── token.go │ └── openfaas │ ├── faas-provider │ ├── LICENSE │ └── auth │ │ ├── basic_auth.go │ │ └── credentials.go │ └── openfaas-cloud │ ├── LICENSE │ ├── dashboard │ └── LICENSE │ └── sdk │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── audit.go │ ├── auth.go │ ├── build.go │ ├── constants.go │ ├── customers.go │ ├── event.go │ ├── events_scm.go │ ├── function.go │ ├── hmac.go │ ├── interfaces.go │ ├── pipeline.go │ ├── secrets.go │ ├── service.go │ ├── status.go │ └── url_builders.go ├── edge-router ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── README.md ├── auth_proxy.go ├── config.go ├── config_test.go ├── go.mod ├── health.go ├── main.go └── main_test.go ├── function-logs ├── Gopkg.lock ├── Gopkg.toml ├── go.mod ├── handler.go ├── handler_test.go └── vendor │ ├── github.com │ ├── alexellis │ │ └── hmac │ │ │ ├── README.md │ │ │ └── pkg.go │ ├── drone │ │ └── envsubst │ │ │ ├── .drone.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── eval.go │ │ │ ├── funcs.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── parse │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ └── scan.go │ │ │ ├── path │ │ │ └── match.go │ │ │ └── template.go │ ├── mitchellh │ │ └── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── homedir.go │ ├── openfaas │ │ ├── faas-cli │ │ │ ├── LICENSE │ │ │ ├── config │ │ │ │ └── config_file.go │ │ │ ├── proxy │ │ │ │ ├── auth.go │ │ │ │ ├── client.go │ │ │ │ ├── delete.go │ │ │ │ ├── deploy.go │ │ │ │ ├── describe.go │ │ │ │ ├── function_store.go │ │ │ │ ├── invoke.go │ │ │ │ ├── list.go │ │ │ │ ├── logs.go │ │ │ │ ├── namespaces.go │ │ │ │ ├── proxy.go │ │ │ │ ├── secret.go │ │ │ │ ├── utils.go │ │ │ │ └── version.go │ │ │ ├── schema │ │ │ │ ├── describe.go │ │ │ │ ├── image.go │ │ │ │ ├── metadata.go │ │ │ │ ├── secret.go │ │ │ │ └── store_item.go │ │ │ └── stack │ │ │ │ ├── language_template.go │ │ │ │ ├── schema.go │ │ │ │ └── stack.go │ │ ├── faas-provider │ │ │ ├── LICENSE │ │ │ ├── auth │ │ │ │ ├── basic_auth.go │ │ │ │ └── credentials.go │ │ │ ├── httputil │ │ │ │ └── writers.go │ │ │ ├── logs │ │ │ │ ├── handler.go │ │ │ │ └── logs.go │ │ │ └── types │ │ │ │ ├── config.go │ │ │ │ ├── model.go │ │ │ │ └── requests.go │ │ ├── faas │ │ │ ├── LICENSE │ │ │ └── gateway │ │ │ │ └── requests │ │ │ │ ├── forward_request.go │ │ │ │ ├── prometheus.go │ │ │ │ └── requests.go │ │ └── openfaas-cloud │ │ │ ├── LICENSE │ │ │ ├── dashboard │ │ │ └── LICENSE │ │ │ └── sdk │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── audit.go │ │ │ ├── auth.go │ │ │ ├── build.go │ │ │ ├── constants.go │ │ │ ├── customers.go │ │ │ ├── event.go │ │ │ ├── events_scm.go │ │ │ ├── function.go │ │ │ ├── hmac.go │ │ │ ├── interfaces.go │ │ │ ├── pipeline.go │ │ │ ├── secrets.go │ │ │ ├── service.go │ │ │ ├── status.go │ │ │ └── url_builders.go │ └── ryanuber │ │ └── go-glob │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── glob.go │ │ └── go.mod │ └── gopkg.in │ └── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── go.mod │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── garbage-collect ├── Gopkg.lock ├── Gopkg.toml ├── README.md ├── go.mod ├── handler.go └── vendor │ ├── github.com │ ├── alexellis │ │ └── hmac │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pkg.go │ ├── drone │ │ └── envsubst │ │ │ ├── .drone.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── eval.go │ │ │ ├── funcs.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── parse │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ └── scan.go │ │ │ ├── path │ │ │ └── match.go │ │ │ └── template.go │ ├── mitchellh │ │ └── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── homedir.go │ ├── openfaas │ │ ├── faas-cli │ │ │ ├── LICENSE │ │ │ ├── config │ │ │ │ └── config_file.go │ │ │ ├── proxy │ │ │ │ ├── auth.go │ │ │ │ ├── client.go │ │ │ │ ├── delete.go │ │ │ │ ├── deploy.go │ │ │ │ ├── describe.go │ │ │ │ ├── function_store.go │ │ │ │ ├── invoke.go │ │ │ │ ├── list.go │ │ │ │ ├── logs.go │ │ │ │ ├── namespaces.go │ │ │ │ ├── proxy.go │ │ │ │ ├── secret.go │ │ │ │ ├── utils.go │ │ │ │ └── version.go │ │ │ ├── schema │ │ │ │ ├── describe.go │ │ │ │ ├── image.go │ │ │ │ ├── metadata.go │ │ │ │ ├── secret.go │ │ │ │ └── store_item.go │ │ │ └── stack │ │ │ │ ├── language_template.go │ │ │ │ ├── schema.go │ │ │ │ └── stack.go │ │ ├── faas-provider │ │ │ ├── LICENSE │ │ │ ├── auth │ │ │ │ ├── basic_auth.go │ │ │ │ └── credentials.go │ │ │ ├── httputil │ │ │ │ └── writers.go │ │ │ ├── logs │ │ │ │ ├── handler.go │ │ │ │ └── logs.go │ │ │ └── types │ │ │ │ ├── config.go │ │ │ │ ├── model.go │ │ │ │ └── requests.go │ │ ├── faas │ │ │ ├── LICENSE │ │ │ └── gateway │ │ │ │ └── requests │ │ │ │ ├── forward_request.go │ │ │ │ ├── prometheus.go │ │ │ │ └── requests.go │ │ └── openfaas-cloud │ │ │ ├── LICENSE │ │ │ ├── dashboard │ │ │ └── LICENSE │ │ │ └── sdk │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── audit.go │ │ │ ├── auth.go │ │ │ ├── build.go │ │ │ ├── constants.go │ │ │ ├── customers.go │ │ │ ├── event.go │ │ │ ├── events_scm.go │ │ │ ├── function.go │ │ │ ├── hmac.go │ │ │ ├── interfaces.go │ │ │ ├── pipeline.go │ │ │ ├── secrets.go │ │ │ ├── service.go │ │ │ ├── status.go │ │ │ └── url_builders.go │ └── ryanuber │ │ └── go-glob │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── glob.go │ │ └── go.mod │ └── gopkg.in │ └── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── go.mod │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── gateway_config.yml ├── git-tar ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── function │ ├── format_test.go │ ├── handler.go │ ├── handler_test.go │ ├── ops.go │ ├── ops_test.go │ ├── repo_fetcher.go │ ├── repo_fetcher_test.go │ └── types.go ├── go.mod ├── main.go └── vendor │ ├── code.cloudfoundry.org │ └── bytefmt │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── bytes.go │ │ └── package.go │ ├── github.com │ ├── alexellis │ │ ├── derek │ │ │ ├── LICENSE │ │ │ └── auth │ │ │ │ ├── customers.go │ │ │ │ └── jwt_auth.go │ │ └── hmac │ │ │ ├── README.md │ │ │ └── pkg.go │ ├── dgrijalva │ │ └── jwt-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── MIGRATION_GUIDE.md │ │ │ ├── README.md │ │ │ ├── VERSION_HISTORY.md │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── ecdsa.go │ │ │ ├── ecdsa_utils.go │ │ │ ├── errors.go │ │ │ ├── hmac.go │ │ │ ├── map_claims.go │ │ │ ├── none.go │ │ │ ├── parser.go │ │ │ ├── rsa.go │ │ │ ├── rsa_pss.go │ │ │ ├── rsa_utils.go │ │ │ ├── signing_method.go │ │ │ └── token.go │ ├── drone │ │ └── envsubst │ │ │ ├── .drone.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── eval.go │ │ │ ├── funcs.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── parse │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ └── scan.go │ │ │ ├── path │ │ │ └── match.go │ │ │ └── template.go │ ├── openfaas │ │ ├── faas-cli │ │ │ ├── LICENSE │ │ │ ├── schema │ │ │ │ ├── describe.go │ │ │ │ ├── image.go │ │ │ │ ├── metadata.go │ │ │ │ ├── secret.go │ │ │ │ └── store_item.go │ │ │ └── stack │ │ │ │ ├── language_template.go │ │ │ │ ├── schema.go │ │ │ │ └── stack.go │ │ ├── faas-provider │ │ │ ├── LICENSE │ │ │ └── auth │ │ │ │ ├── basic_auth.go │ │ │ │ └── credentials.go │ │ └── openfaas-cloud │ │ │ ├── LICENSE │ │ │ ├── dashboard │ │ │ └── LICENSE │ │ │ └── sdk │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── audit.go │ │ │ ├── auth.go │ │ │ ├── build.go │ │ │ ├── constants.go │ │ │ ├── customers.go │ │ │ ├── event.go │ │ │ ├── events_scm.go │ │ │ ├── function.go │ │ │ ├── hmac.go │ │ │ ├── interfaces.go │ │ │ ├── pipeline.go │ │ │ ├── secrets.go │ │ │ ├── service.go │ │ │ ├── status.go │ │ │ └── url_builders.go │ └── ryanuber │ │ └── go-glob │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── glob.go │ │ └── go.mod │ └── gopkg.in │ └── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── go.mod │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── github-event ├── Gopkg.lock ├── Gopkg.toml ├── go.mod ├── go.sum ├── handler.go ├── handler_test.go └── vendor │ └── github.com │ ├── alexellis │ └── hmac │ │ ├── LICENSE │ │ ├── README.md │ │ └── pkg.go │ └── openfaas │ ├── faas-provider │ ├── LICENSE │ └── auth │ │ ├── basic_auth.go │ │ └── credentials.go │ └── openfaas-cloud │ ├── LICENSE │ ├── dashboard │ └── LICENSE │ └── sdk │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── audit.go │ ├── auth.go │ ├── build.go │ ├── constants.go │ ├── customers.go │ ├── event.go │ ├── events_scm.go │ ├── function.go │ ├── hmac.go │ ├── interfaces.go │ ├── pipeline.go │ ├── secrets.go │ ├── service.go │ ├── status.go │ └── url_builders.go ├── github-push ├── Gopkg.lock ├── Gopkg.toml ├── go.mod ├── handler.go ├── handler_test.go └── vendor │ └── github.com │ ├── alexellis │ └── hmac │ │ ├── LICENSE │ │ ├── README.md │ │ └── pkg.go │ └── openfaas │ ├── faas-provider │ ├── LICENSE │ └── auth │ │ ├── basic_auth.go │ │ └── credentials.go │ └── openfaas-cloud │ ├── LICENSE │ ├── dashboard │ └── LICENSE │ └── sdk │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── audit.go │ ├── auth.go │ ├── build.go │ ├── constants.go │ ├── customers.go │ ├── event.go │ ├── events_scm.go │ ├── function.go │ ├── hmac.go │ ├── interfaces.go │ ├── pipeline.go │ ├── secrets.go │ ├── service.go │ ├── status.go │ └── url_builders.go ├── github-status ├── Gopkg.lock ├── Gopkg.toml ├── go.mod ├── handler.go ├── handler_test.go ├── url_builder.go ├── url_builder_test.go └── vendor │ ├── github.com │ ├── alexellis │ │ ├── derek │ │ │ ├── LICENSE │ │ │ ├── auth │ │ │ │ ├── customers.go │ │ │ │ └── jwt_auth.go │ │ │ ├── config │ │ │ │ └── config.go │ │ │ └── factory │ │ │ │ └── client_factory.go │ │ └── hmac │ │ │ ├── README.md │ │ │ └── pkg.go │ ├── dgrijalva │ │ └── jwt-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── MIGRATION_GUIDE.md │ │ │ ├── README.md │ │ │ ├── VERSION_HISTORY.md │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── ecdsa.go │ │ │ ├── ecdsa_utils.go │ │ │ ├── errors.go │ │ │ ├── hmac.go │ │ │ ├── map_claims.go │ │ │ ├── none.go │ │ │ ├── parser.go │ │ │ ├── rsa.go │ │ │ ├── rsa_pss.go │ │ │ ├── rsa_utils.go │ │ │ ├── signing_method.go │ │ │ └── token.go │ ├── golang │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ └── proto │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── discard.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── table_marshal.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ ├── google │ │ ├── go-github │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ └── github │ │ │ │ ├── activity.go │ │ │ │ ├── activity_events.go │ │ │ │ ├── activity_notifications.go │ │ │ │ ├── activity_star.go │ │ │ │ ├── activity_watching.go │ │ │ │ ├── admin.go │ │ │ │ ├── admin_stats.go │ │ │ │ ├── apps.go │ │ │ │ ├── apps_installation.go │ │ │ │ ├── apps_marketplace.go │ │ │ │ ├── authorizations.go │ │ │ │ ├── checks.go │ │ │ │ ├── doc.go │ │ │ │ ├── event_types.go │ │ │ │ ├── gen-accessors.go │ │ │ │ ├── gists.go │ │ │ │ ├── gists_comments.go │ │ │ │ ├── git.go │ │ │ │ ├── git_blobs.go │ │ │ │ ├── git_commits.go │ │ │ │ ├── git_refs.go │ │ │ │ ├── git_tags.go │ │ │ │ ├── git_trees.go │ │ │ │ ├── github-accessors.go │ │ │ │ ├── github.go │ │ │ │ ├── gitignore.go │ │ │ │ ├── issues.go │ │ │ │ ├── issues_assignees.go │ │ │ │ ├── issues_comments.go │ │ │ │ ├── issues_events.go │ │ │ │ ├── issues_labels.go │ │ │ │ ├── issues_milestones.go │ │ │ │ ├── issues_timeline.go │ │ │ │ ├── licenses.go │ │ │ │ ├── messages.go │ │ │ │ ├── migrations.go │ │ │ │ ├── migrations_source_import.go │ │ │ │ ├── migrations_user.go │ │ │ │ ├── misc.go │ │ │ │ ├── orgs.go │ │ │ │ ├── orgs_hooks.go │ │ │ │ ├── orgs_members.go │ │ │ │ ├── orgs_outside_collaborators.go │ │ │ │ ├── orgs_projects.go │ │ │ │ ├── orgs_users_blocking.go │ │ │ │ ├── projects.go │ │ │ │ ├── pulls.go │ │ │ │ ├── pulls_comments.go │ │ │ │ ├── pulls_reviewers.go │ │ │ │ ├── pulls_reviews.go │ │ │ │ ├── reactions.go │ │ │ │ ├── repos.go │ │ │ │ ├── repos_collaborators.go │ │ │ │ ├── repos_comments.go │ │ │ │ ├── repos_commits.go │ │ │ │ ├── repos_community_health.go │ │ │ │ ├── repos_contents.go │ │ │ │ ├── repos_deployments.go │ │ │ │ ├── repos_forks.go │ │ │ │ ├── repos_hooks.go │ │ │ │ ├── repos_invitations.go │ │ │ │ ├── repos_keys.go │ │ │ │ ├── repos_merging.go │ │ │ │ ├── repos_pages.go │ │ │ │ ├── repos_prereceive_hooks.go │ │ │ │ ├── repos_projects.go │ │ │ │ ├── repos_releases.go │ │ │ │ ├── repos_stats.go │ │ │ │ ├── repos_statuses.go │ │ │ │ ├── repos_traffic.go │ │ │ │ ├── search.go │ │ │ │ ├── strings.go │ │ │ │ ├── teams.go │ │ │ │ ├── teams_discussion_comments.go │ │ │ │ ├── teams_discussions.go │ │ │ │ ├── teams_members.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── users.go │ │ │ │ ├── users_administration.go │ │ │ │ ├── users_blocking.go │ │ │ │ ├── users_emails.go │ │ │ │ ├── users_followers.go │ │ │ │ ├── users_gpg_keys.go │ │ │ │ ├── users_keys.go │ │ │ │ ├── with_appengine.go │ │ │ │ └── without_appengine.go │ │ └── go-querystring │ │ │ ├── LICENSE │ │ │ └── query │ │ │ └── encode.go │ └── openfaas │ │ ├── faas-provider │ │ ├── LICENSE │ │ └── auth │ │ │ ├── basic_auth.go │ │ │ └── credentials.go │ │ └── openfaas-cloud │ │ ├── LICENSE │ │ ├── dashboard │ │ └── LICENSE │ │ └── sdk │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── audit.go │ │ ├── auth.go │ │ ├── build.go │ │ ├── constants.go │ │ ├── customers.go │ │ ├── event.go │ │ ├── events_scm.go │ │ ├── function.go │ │ ├── hmac.go │ │ ├── interfaces.go │ │ ├── pipeline.go │ │ ├── secrets.go │ │ ├── service.go │ │ ├── status.go │ │ └── url_builders.go │ ├── golang.org │ └── x │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── context │ │ │ ├── context.go │ │ │ ├── ctxhttp │ │ │ ├── ctxhttp.go │ │ │ └── ctxhttp_pre17.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ └── oauth2 │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ ├── client_appengine.go │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ └── google.golang.org │ └── appengine │ ├── LICENSE │ ├── internal │ ├── api.go │ ├── api_classic.go │ ├── api_common.go │ ├── api_pre17.go │ ├── app_id.go │ ├── base │ │ ├── api_base.pb.go │ │ └── api_base.proto │ ├── datastore │ │ ├── datastore_v3.pb.go │ │ └── datastore_v3.proto │ ├── identity.go │ ├── identity_classic.go │ ├── identity_vm.go │ ├── internal.go │ ├── log │ │ ├── log_service.pb.go │ │ └── log_service.proto │ ├── main.go │ ├── main_vm.go │ ├── metadata.go │ ├── net.go │ ├── regen.sh │ ├── remote_api │ │ ├── remote_api.pb.go │ │ └── remote_api.proto │ ├── transaction.go │ └── urlfetch │ │ ├── urlfetch_service.pb.go │ │ └── urlfetch_service.proto │ └── urlfetch │ └── urlfetch.go ├── github.yml ├── gitlab-event ├── Gopkg.lock ├── Gopkg.toml ├── go.mod ├── handler.go ├── handler_test.go └── vendor │ └── github.com │ ├── alexellis │ └── hmac │ │ ├── README.md │ │ └── pkg.go │ └── openfaas │ ├── faas-provider │ ├── LICENSE │ └── auth │ │ ├── basic_auth.go │ │ └── credentials.go │ └── openfaas-cloud │ ├── LICENSE │ ├── dashboard │ └── LICENSE │ └── sdk │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── audit.go │ ├── auth.go │ ├── build.go │ ├── constants.go │ ├── customers.go │ ├── event.go │ ├── events_scm.go │ ├── function.go │ ├── hmac.go │ ├── interfaces.go │ ├── pipeline.go │ ├── secrets.go │ ├── service.go │ ├── status.go │ └── url_builders.go ├── gitlab-push ├── Gopkg.lock ├── Gopkg.toml ├── go.mod ├── handler.go ├── handler_test.go └── vendor │ └── github.com │ ├── alexellis │ └── hmac │ │ ├── README.md │ │ └── pkg.go │ └── openfaas │ ├── faas-provider │ ├── LICENSE │ └── auth │ │ ├── basic_auth.go │ │ └── credentials.go │ └── openfaas-cloud │ ├── LICENSE │ ├── dashboard │ └── LICENSE │ └── sdk │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── audit.go │ ├── auth.go │ ├── build.go │ ├── constants.go │ ├── customers.go │ ├── event.go │ ├── events_scm.go │ ├── function.go │ ├── hmac.go │ ├── interfaces.go │ ├── pipeline.go │ ├── secrets.go │ ├── service.go │ ├── status.go │ └── url_builders.go ├── gitlab-status ├── Gopkg.lock ├── Gopkg.toml ├── go.mod ├── handler.go ├── handler_test.go └── vendor │ └── github.com │ ├── alexellis │ └── hmac │ │ ├── README.md │ │ └── pkg.go │ └── openfaas │ ├── faas-provider │ ├── LICENSE │ └── auth │ │ ├── basic_auth.go │ │ └── credentials.go │ └── openfaas-cloud │ ├── LICENSE │ ├── dashboard │ └── LICENSE │ └── sdk │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── audit.go │ ├── auth.go │ ├── build.go │ ├── constants.go │ ├── customers.go │ ├── event.go │ ├── events_scm.go │ ├── function.go │ ├── hmac.go │ ├── interfaces.go │ ├── pipeline.go │ ├── secrets.go │ ├── service.go │ ├── status.go │ └── url_builders.go ├── gitlab.yml ├── go.mod ├── go.sum ├── import-secrets ├── Gopkg.lock ├── Gopkg.toml ├── go.mod ├── handler.go └── vendor │ ├── github.com │ ├── alexellis │ │ └── hmac │ │ │ ├── README.md │ │ │ └── pkg.go │ ├── bitnami-labs │ │ └── sealed-secrets │ │ │ ├── LICENSE │ │ │ ├── pkg │ │ │ ├── apis │ │ │ │ └── sealed-secrets │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── boilerplate.go.txt │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── sealedsecret_expansion.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── client │ │ │ │ └── clientset │ │ │ │ │ └── versioned │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── sealed-secrets │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── sealed-secrets_client.go │ │ │ │ │ └── sealedsecret.go │ │ │ └── crypto │ │ │ │ ├── crypto.go │ │ │ │ └── keys.go │ │ │ └── vendor_jsonnet │ │ │ └── kube-libsonnet │ │ │ └── LICENSE │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── gogo │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── GOLANG_CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── decode_gogo.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ └── timestamp_gogo.go │ │ │ └── sortkeys │ │ │ └── sortkeys.go │ ├── golang │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ └── proto │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── table_marshal.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ ├── google │ │ └── gofuzz │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ └── fuzz.go │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adapter.go │ │ │ ├── any.go │ │ │ ├── any_array.go │ │ │ ├── any_bool.go │ │ │ ├── any_float.go │ │ │ ├── any_int32.go │ │ │ ├── any_int64.go │ │ │ ├── any_invalid.go │ │ │ ├── any_nil.go │ │ │ ├── any_number.go │ │ │ ├── any_object.go │ │ │ ├── any_str.go │ │ │ ├── any_uint32.go │ │ │ ├── any_uint64.go │ │ │ ├── build.sh │ │ │ ├── config.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── iter.go │ │ │ ├── iter_array.go │ │ │ ├── iter_float.go │ │ │ ├── iter_int.go │ │ │ ├── iter_object.go │ │ │ ├── iter_skip.go │ │ │ ├── iter_skip_sloppy.go │ │ │ ├── iter_skip_strict.go │ │ │ ├── iter_str.go │ │ │ ├── jsoniter.go │ │ │ ├── pool.go │ │ │ ├── reflect.go │ │ │ ├── reflect_array.go │ │ │ ├── reflect_dynamic.go │ │ │ ├── reflect_extension.go │ │ │ ├── reflect_json_number.go │ │ │ ├── reflect_json_raw_message.go │ │ │ ├── reflect_map.go │ │ │ ├── reflect_marshaler.go │ │ │ ├── reflect_native.go │ │ │ ├── reflect_optional.go │ │ │ ├── reflect_slice.go │ │ │ ├── reflect_struct_decoder.go │ │ │ ├── reflect_struct_encoder.go │ │ │ ├── stream.go │ │ │ ├── stream_float.go │ │ │ ├── stream_int.go │ │ │ ├── stream_str.go │ │ │ └── test.sh │ ├── mkmik │ │ └── multierror │ │ │ ├── LICENSE │ │ │ ├── compat.go │ │ │ ├── compat_go113.go │ │ │ ├── go.mod │ │ │ └── multierror.go │ ├── modern-go │ │ ├── concurrent │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── executor.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_19.go │ │ │ ├── log.go │ │ │ ├── test.sh │ │ │ └── unbounded_executor.go │ │ └── reflect2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go_above_17.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_17.go │ │ │ ├── go_below_19.go │ │ │ ├── reflect2.go │ │ │ ├── reflect2_amd64.s │ │ │ ├── reflect2_kind.go │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── safe_field.go │ │ │ ├── safe_map.go │ │ │ ├── safe_slice.go │ │ │ ├── safe_struct.go │ │ │ ├── safe_type.go │ │ │ ├── test.sh │ │ │ ├── type_map.go │ │ │ ├── unsafe_array.go │ │ │ ├── unsafe_eface.go │ │ │ ├── unsafe_field.go │ │ │ ├── unsafe_iface.go │ │ │ ├── unsafe_link.go │ │ │ ├── unsafe_map.go │ │ │ ├── unsafe_ptr.go │ │ │ ├── unsafe_slice.go │ │ │ ├── unsafe_struct.go │ │ │ └── unsafe_type.go │ └── openfaas │ │ ├── faas-provider │ │ ├── LICENSE │ │ └── auth │ │ │ ├── basic_auth.go │ │ │ └── credentials.go │ │ └── openfaas-cloud │ │ ├── LICENSE │ │ ├── dashboard │ │ └── LICENSE │ │ └── sdk │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── audit.go │ │ ├── auth.go │ │ ├── build.go │ │ ├── constants.go │ │ ├── customers.go │ │ ├── event.go │ │ ├── events_scm.go │ │ ├── function.go │ │ ├── hmac.go │ │ ├── interfaces.go │ │ ├── pipeline.go │ │ ├── secrets.go │ │ ├── service.go │ │ ├── status.go │ │ └── url_builders.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── curve25519 │ │ │ ├── const_amd64.h │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ └── internal │ │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ ├── internal │ │ │ ├── chacha20 │ │ │ │ ├── chacha_generic.go │ │ │ │ ├── chacha_noasm.go │ │ │ │ ├── chacha_s390x.go │ │ │ │ ├── chacha_s390x.s │ │ │ │ └── xor.go │ │ │ └── subtle │ │ │ │ ├── aliasing.go │ │ │ │ └── aliasing_appengine.go │ │ ├── poly1305 │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_arm.go │ │ │ ├── sum_arm.s │ │ │ ├── sum_noasm.go │ │ │ ├── sum_ref.go │ │ │ ├── sum_s390x.go │ │ │ ├── sum_s390x.s │ │ │ └── sum_vmsl_s390x.s │ │ └── 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 │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ ├── terminal │ │ │ ├── terminal.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ │ │ └── transport.go │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── context │ │ │ ├── context.go │ │ │ ├── ctxhttp │ │ │ │ └── ctxhttp.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ ├── http │ │ │ └── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── go111.go │ │ │ ├── gotrack.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── not_go111.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ └── writesched_random.go │ │ └── idna │ │ │ ├── idna.go │ │ │ ├── punycode.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── oauth2 │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ │ ├── client_appengine.go │ │ │ ├── doc.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ │ ├── sys │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.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_freebsd_arm64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_netbsd_arm64.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ioctl.go │ │ │ ├── mkall.sh │ │ │ ├── mkasm_darwin.go │ │ │ ├── mkerrors.sh │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.go │ │ │ ├── mksyscall_aix_ppc.go │ │ │ ├── mksyscall_aix_ppc64.go │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum.go │ │ │ ├── openbsd_pledge.go │ │ │ ├── openbsd_unveil.go │ │ │ ├── pagesize_unix.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_libSystem.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_arm64.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_netbsd_arm64.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── timestruct.go │ │ │ ├── types_aix.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.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_freebsd_arm64.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zptrace386_linux.go │ │ │ ├── zptracearm_linux.go │ │ │ ├── zptracemips_linux.go │ │ │ ├── zptracemipsle_linux.go │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_386.1_11.go │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_386.s │ │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm.1_11.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm.s │ │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.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_freebsd_arm64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.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_freebsd_arm64.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── asm_windows_arm.s │ │ │ ├── dll_windows.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ └── zsyscall_windows.go │ │ ├── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── collate │ │ │ ├── collate.go │ │ │ ├── index.go │ │ │ ├── maketables.go │ │ │ ├── option.go │ │ │ ├── sort.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── colltab │ │ │ │ ├── collelem.go │ │ │ │ ├── colltab.go │ │ │ │ ├── contract.go │ │ │ │ ├── iter.go │ │ │ │ ├── numeric.go │ │ │ │ ├── table.go │ │ │ │ ├── trie.go │ │ │ │ └── weighter.go │ │ │ ├── gen │ │ │ │ ├── code.go │ │ │ │ └── gen.go │ │ │ ├── language │ │ │ │ ├── common.go │ │ │ │ ├── compact.go │ │ │ │ ├── compact │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_index.go │ │ │ │ │ ├── gen_parents.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── parents.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── compose.go │ │ │ │ ├── coverage.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ ├── triegen │ │ │ │ ├── compact.go │ │ │ │ ├── print.go │ │ │ │ └── triegen.go │ │ │ └── ucd │ │ │ │ └── ucd.go │ │ ├── language │ │ │ ├── coverage.go │ │ │ ├── doc.go │ │ │ ├── gen.go │ │ │ ├── go1_1.go │ │ │ ├── go1_2.go │ │ │ ├── language.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── secure │ │ │ └── bidirule │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ └── bidirule9.0.0.go │ │ ├── transform │ │ │ └── transform.go │ │ └── unicode │ │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── gen.go │ │ │ ├── gen_ranges.go │ │ │ ├── gen_trieval.go │ │ │ ├── prop.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ │ ├── cldr │ │ │ ├── base.go │ │ │ ├── cldr.go │ │ │ ├── collate.go │ │ │ ├── decode.go │ │ │ ├── makexml.go │ │ │ ├── resolve.go │ │ │ ├── slice.go │ │ │ └── xml.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 │ │ │ └── rangetable │ │ │ ├── gen.go │ │ │ ├── merge.go │ │ │ ├── rangetable.go │ │ │ ├── tables10.0.0.go │ │ │ └── tables9.0.0.go │ │ └── time │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── rate │ │ └── rate.go │ ├── google.golang.org │ └── appengine │ │ ├── LICENSE │ │ ├── internal │ │ ├── api.go │ │ ├── api_classic.go │ │ ├── api_common.go │ │ ├── app_id.go │ │ ├── base │ │ │ ├── api_base.pb.go │ │ │ └── api_base.proto │ │ ├── datastore │ │ │ ├── datastore_v3.pb.go │ │ │ └── datastore_v3.proto │ │ ├── identity.go │ │ ├── identity_classic.go │ │ ├── identity_flex.go │ │ ├── identity_vm.go │ │ ├── internal.go │ │ ├── log │ │ │ ├── log_service.pb.go │ │ │ └── log_service.proto │ │ ├── main.go │ │ ├── main_common.go │ │ ├── main_vm.go │ │ ├── metadata.go │ │ ├── net.go │ │ ├── regen.sh │ │ ├── remote_api │ │ │ ├── remote_api.pb.go │ │ │ └── remote_api.proto │ │ ├── transaction.go │ │ └── urlfetch │ │ │ ├── urlfetch_service.pb.go │ │ │ └── urlfetch_service.proto │ │ └── urlfetch │ │ └── urlfetch.go │ ├── gopkg.in │ ├── inf.v0 │ │ ├── LICENSE │ │ ├── dec.go │ │ └── rounder.go │ └── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ ├── k8s.io │ ├── api │ │ ├── LICENSE │ │ ├── admissionregistration │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── auditregistration │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v2beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v2beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v2alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── certificates │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── annotation_key_constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── objectreference.go │ │ │ │ ├── register.go │ │ │ │ ├── resource.go │ │ │ │ ├── taint.go │ │ │ │ ├── toleration.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── well_known_labels.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── events │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── node │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── policy │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── settings │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── storage │ │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── apimachinery │ │ ├── LICENSE │ │ ├── pkg │ │ │ ├── api │ │ │ │ ├── errors │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ └── resource │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── amount.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── math.go │ │ │ │ │ ├── quantity.go │ │ │ │ │ ├── quantity_proto.go │ │ │ │ │ ├── scale_int.go │ │ │ │ │ ├── suffix.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── apis │ │ │ │ └── meta │ │ │ │ │ └── v1 │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── micro_time.go │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── time_proto.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── unstructured │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── unstructured.go │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── watch.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ ├── conversion │ │ │ │ ├── converter.go │ │ │ │ ├── deep_equal.go │ │ │ │ ├── doc.go │ │ │ │ ├── helper.go │ │ │ │ └── queryparams │ │ │ │ │ ├── convert.go │ │ │ │ │ └── doc.go │ │ │ ├── fields │ │ │ │ ├── doc.go │ │ │ │ ├── fields.go │ │ │ │ ├── requirements.go │ │ │ │ └── selector.go │ │ │ ├── labels │ │ │ │ ├── doc.go │ │ │ │ ├── labels.go │ │ │ │ ├── selector.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── runtime │ │ │ │ ├── codec.go │ │ │ │ ├── codec_check.go │ │ │ │ ├── conversion.go │ │ │ │ ├── converter.go │ │ │ │ ├── doc.go │ │ │ │ ├── embedded.go │ │ │ │ ├── error.go │ │ │ │ ├── extension.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── helper.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── mapper.go │ │ │ │ ├── register.go │ │ │ │ ├── schema │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ └── interfaces.go │ │ │ │ ├── scheme.go │ │ │ │ ├── scheme_builder.go │ │ │ │ ├── serializer │ │ │ │ │ ├── codec_factory.go │ │ │ │ │ ├── json │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ └── meta.go │ │ │ │ │ ├── negotiated_codec.go │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── protobuf.go │ │ │ │ │ ├── recognizer │ │ │ │ │ │ └── recognizer.go │ │ │ │ │ ├── streaming │ │ │ │ │ │ └── streaming.go │ │ │ │ │ └── versioning │ │ │ │ │ │ └── versioning.go │ │ │ │ ├── swagger_doc_generator.go │ │ │ │ ├── types.go │ │ │ │ ├── types_proto.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── selection │ │ │ │ └── operator.go │ │ │ ├── types │ │ │ │ ├── doc.go │ │ │ │ ├── namespacedname.go │ │ │ │ ├── nodename.go │ │ │ │ ├── patch.go │ │ │ │ └── uid.go │ │ │ ├── util │ │ │ │ ├── clock │ │ │ │ │ └── clock.go │ │ │ │ ├── errors │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── framer │ │ │ │ │ └── framer.go │ │ │ │ ├── intstr │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ └── intstr.go │ │ │ │ ├── json │ │ │ │ │ └── json.go │ │ │ │ ├── naming │ │ │ │ │ └── from_stack.go │ │ │ │ ├── net │ │ │ │ │ ├── http.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── port_range.go │ │ │ │ │ ├── port_split.go │ │ │ │ │ └── util.go │ │ │ │ ├── runtime │ │ │ │ │ └── runtime.go │ │ │ │ ├── sets │ │ │ │ │ ├── byte.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int32.go │ │ │ │ │ ├── int64.go │ │ │ │ │ └── string.go │ │ │ │ ├── validation │ │ │ │ │ ├── field │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── path.go │ │ │ │ │ └── validation.go │ │ │ │ └── yaml │ │ │ │ │ └── decoder.go │ │ │ ├── version │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ └── types.go │ │ │ └── watch │ │ │ │ ├── doc.go │ │ │ │ ├── filter.go │ │ │ │ ├── mux.go │ │ │ │ ├── streamwatcher.go │ │ │ │ ├── watch.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ └── reflect │ │ │ └── deep_equal.go │ ├── client-go │ │ ├── LICENSE │ │ ├── kubernetes │ │ │ └── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ ├── pkg │ │ │ ├── apis │ │ │ │ └── clientauthentication │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── version │ │ │ │ ├── .gitattributes │ │ │ │ ├── base.go │ │ │ │ ├── def.bzl │ │ │ │ ├── doc.go │ │ │ │ └── version.go │ │ ├── plugin │ │ │ └── pkg │ │ │ │ └── client │ │ │ │ └── auth │ │ │ │ └── exec │ │ │ │ └── exec.go │ │ ├── rest │ │ │ ├── OWNERS │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── plugin.go │ │ │ ├── request.go │ │ │ ├── transport.go │ │ │ ├── url_utils.go │ │ │ ├── urlbackoff.go │ │ │ ├── watch │ │ │ │ ├── decoder.go │ │ │ │ └── encoder.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── tools │ │ │ ├── clientcmd │ │ │ │ └── api │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── metrics │ │ │ │ ├── OWNERS │ │ │ │ └── metrics.go │ │ ├── transport │ │ │ ├── OWNERS │ │ │ ├── cache.go │ │ │ ├── config.go │ │ │ ├── round_trippers.go │ │ │ ├── token_source.go │ │ │ └── transport.go │ │ └── util │ │ │ ├── cert │ │ │ ├── OWNERS │ │ │ ├── cert.go │ │ │ ├── csr.go │ │ │ ├── io.go │ │ │ └── pem.go │ │ │ ├── connrotation │ │ │ └── connrotation.go │ │ │ ├── flowcontrol │ │ │ ├── backoff.go │ │ │ └── throttle.go │ │ │ └── keyutil │ │ │ ├── OWNERS │ │ │ └── key.go │ ├── klog │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── SECURITY_CONTACTS │ │ ├── code-of-conduct.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── klog.go │ │ └── klog_file.go │ └── utils │ │ ├── LICENSE │ │ ├── inotify │ │ ├── LICENSE │ │ └── PATENTS │ │ ├── integer │ │ └── integer.go │ │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ └── PATENTS │ └── sigs.k8s.io │ └── yaml │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── fields.go │ ├── go.mod │ ├── go.sum │ ├── yaml.go │ └── yaml_go110.go ├── list-functions ├── Gopkg.lock ├── Gopkg.toml ├── go.mod ├── handler.go └── vendor │ ├── github.com │ ├── alexellis │ │ └── hmac │ │ │ ├── README.md │ │ │ └── pkg.go │ ├── drone │ │ └── envsubst │ │ │ ├── .drone.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── eval.go │ │ │ ├── funcs.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── parse │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ └── scan.go │ │ │ ├── path │ │ │ └── match.go │ │ │ └── template.go │ ├── mitchellh │ │ └── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── homedir.go │ ├── openfaas │ │ ├── faas-cli │ │ │ ├── LICENSE │ │ │ ├── config │ │ │ │ └── config_file.go │ │ │ ├── proxy │ │ │ │ ├── auth.go │ │ │ │ ├── client.go │ │ │ │ ├── delete.go │ │ │ │ ├── deploy.go │ │ │ │ ├── describe.go │ │ │ │ ├── function_store.go │ │ │ │ ├── invoke.go │ │ │ │ ├── list.go │ │ │ │ ├── logs.go │ │ │ │ ├── namespaces.go │ │ │ │ ├── proxy.go │ │ │ │ ├── secret.go │ │ │ │ ├── utils.go │ │ │ │ └── version.go │ │ │ ├── schema │ │ │ │ ├── describe.go │ │ │ │ ├── image.go │ │ │ │ ├── metadata.go │ │ │ │ ├── secret.go │ │ │ │ └── store_item.go │ │ │ └── stack │ │ │ │ ├── language_template.go │ │ │ │ ├── schema.go │ │ │ │ └── stack.go │ │ ├── faas-provider │ │ │ ├── LICENSE │ │ │ ├── auth │ │ │ │ ├── basic_auth.go │ │ │ │ └── credentials.go │ │ │ ├── httputil │ │ │ │ └── writers.go │ │ │ ├── logs │ │ │ │ ├── handler.go │ │ │ │ └── logs.go │ │ │ └── types │ │ │ │ ├── config.go │ │ │ │ ├── model.go │ │ │ │ └── requests.go │ │ ├── faas │ │ │ ├── LICENSE │ │ │ └── gateway │ │ │ │ └── requests │ │ │ │ ├── forward_request.go │ │ │ │ ├── prometheus.go │ │ │ │ └── requests.go │ │ └── openfaas-cloud │ │ │ ├── LICENSE │ │ │ ├── dashboard │ │ │ └── LICENSE │ │ │ └── sdk │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── audit.go │ │ │ ├── auth.go │ │ │ ├── build.go │ │ │ ├── constants.go │ │ │ ├── customers.go │ │ │ ├── event.go │ │ │ ├── events_scm.go │ │ │ ├── function.go │ │ │ ├── hmac.go │ │ │ ├── interfaces.go │ │ │ ├── pipeline.go │ │ │ ├── secrets.go │ │ │ ├── service.go │ │ │ ├── status.go │ │ │ └── url_builders.go │ └── ryanuber │ │ └── go-glob │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── glob.go │ │ └── go.mod │ └── gopkg.in │ └── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── go.mod │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── metrics ├── Gopkg.lock ├── Gopkg.toml ├── README.md ├── go.mod ├── go.sum ├── handler.go ├── handler_test.go └── vendor │ └── github.com │ ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go │ ├── golang │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ ├── clone.go │ │ ├── decode.go │ │ ├── discard.go │ │ ├── encode.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── lib.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── table_marshal.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── text.go │ │ └── text_parser.go │ ├── matttproud │ └── golang_protobuf_extensions │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pbutil │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ ├── openfaas │ ├── faas-provider │ │ ├── LICENSE │ │ ├── auth │ │ │ ├── basic_auth.go │ │ │ └── credentials.go │ │ └── types │ │ │ ├── config.go │ │ │ ├── model.go │ │ │ └── requests.go │ └── faas │ │ ├── LICENSE │ │ └── gateway │ │ └── metrics │ │ ├── add_metrics.go │ │ ├── exporter.go │ │ ├── metrics.go │ │ └── prometheus_query.go │ └── prometheus │ ├── client_golang │ ├── AUTHORS.md │ ├── LICENSE │ ├── NOTICE │ └── prometheus │ │ ├── .gitignore │ │ ├── README.md │ │ ├── collector.go │ │ ├── counter.go │ │ ├── desc.go │ │ ├── doc.go │ │ ├── expvar_collector.go │ │ ├── fnv.go │ │ ├── gauge.go │ │ ├── go_collector.go │ │ ├── histogram.go │ │ ├── http.go │ │ ├── metric.go │ │ ├── process_collector.go │ │ ├── promhttp │ │ └── http.go │ │ ├── registry.go │ │ ├── summary.go │ │ ├── untyped.go │ │ ├── value.go │ │ └── vec.go │ ├── client_model │ ├── LICENSE │ ├── NOTICE │ ├── go │ │ └── metrics.pb.go │ └── ruby │ │ └── LICENSE │ ├── common │ ├── LICENSE │ ├── NOTICE │ ├── expfmt │ │ ├── decode.go │ │ ├── encode.go │ │ ├── expfmt.go │ │ ├── fuzz.go │ │ ├── text_create.go │ │ └── text_parse.go │ ├── internal │ │ └── bitbucket.org │ │ │ └── ww │ │ │ └── goautoneg │ │ │ ├── README.txt │ │ │ └── autoneg.go │ └── model │ │ ├── alert.go │ │ ├── fingerprinting.go │ │ ├── fnv.go │ │ ├── labels.go │ │ ├── labelset.go │ │ ├── metric.go │ │ ├── model.go │ │ ├── signature.go │ │ ├── silence.go │ │ ├── time.go │ │ └── value.go │ └── procfs │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── Makefile │ ├── NOTICE │ ├── README.md │ ├── buddyinfo.go │ ├── doc.go │ ├── fixtures.ttar │ ├── fs.go │ ├── internal │ └── util │ │ └── parse.go │ ├── ipvs.go │ ├── mdstat.go │ ├── mountstats.go │ ├── net_dev.go │ ├── nfs │ ├── nfs.go │ ├── parse.go │ ├── parse_nfs.go │ └── parse_nfsd.go │ ├── proc.go │ ├── proc_io.go │ ├── proc_limits.go │ ├── proc_ns.go │ ├── proc_stat.go │ ├── stat.go │ ├── ttar │ ├── xfrm.go │ └── xfs │ ├── parse.go │ └── xfs.go ├── of-builder ├── .gitignore ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── README.md ├── deploy_swarm.sh ├── go.mod ├── healthz.go ├── local.md ├── main.go └── vendor │ ├── github.com │ ├── Azure │ │ └── go-ansiterm │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── constants.go │ │ │ ├── context.go │ │ │ ├── csi_entry_state.go │ │ │ ├── csi_param_state.go │ │ │ ├── escape_intermediate_state.go │ │ │ ├── escape_state.go │ │ │ ├── event_handler.go │ │ │ ├── ground_state.go │ │ │ ├── osc_string_state.go │ │ │ ├── parser.go │ │ │ ├── parser_action_helpers.go │ │ │ ├── parser_actions.go │ │ │ ├── states.go │ │ │ ├── utilities.go │ │ │ └── winterm │ │ │ ├── ansi.go │ │ │ ├── api.go │ │ │ ├── attr_translation.go │ │ │ ├── cursor_helpers.go │ │ │ ├── erase_helpers.go │ │ │ ├── scroll_helper.go │ │ │ ├── utilities.go │ │ │ └── win_event_handler.go │ ├── Microsoft │ │ └── go-winio │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── archive │ │ │ └── tar │ │ │ │ └── LICENSE │ │ │ ├── backup.go │ │ │ ├── ea.go │ │ │ ├── file.go │ │ │ ├── fileinfo.go │ │ │ ├── pipe.go │ │ │ ├── privilege.go │ │ │ ├── reparse.go │ │ │ ├── sd.go │ │ │ ├── syscall.go │ │ │ └── zsyscall_windows.go │ ├── Nvveen │ │ └── Gotty │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── attributes.go │ │ │ ├── gotty.go │ │ │ ├── parser.go │ │ │ └── types.go │ ├── alexellis │ │ └── hmac │ │ │ ├── README.md │ │ │ └── pkg.go │ ├── containerd │ │ └── continuity │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── pathdriver │ │ │ └── path_driver.go │ │ │ └── sysx │ │ │ ├── asm.s │ │ │ ├── chmod_darwin.go │ │ │ ├── chmod_darwin_386.go │ │ │ ├── chmod_darwin_amd64.go │ │ │ ├── chmod_freebsd.go │ │ │ ├── chmod_freebsd_amd64.go │ │ │ ├── chmod_linux.go │ │ │ ├── chmod_solaris.go │ │ │ ├── generate.sh │ │ │ ├── nodata_linux.go │ │ │ ├── nodata_solaris.go │ │ │ ├── nodata_unix.go │ │ │ ├── sys.go │ │ │ ├── xattr.go │ │ │ ├── xattr_darwin.go │ │ │ ├── xattr_darwin_386.go │ │ │ ├── xattr_darwin_amd64.go │ │ │ ├── xattr_freebsd.go │ │ │ ├── xattr_linux.go │ │ │ ├── xattr_openbsd.go │ │ │ ├── xattr_solaris.go │ │ │ └── xattr_unsupported.go │ ├── docker │ │ ├── cli │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── cli │ │ │ │ └── config │ │ │ │ │ ├── config.go │ │ │ │ │ ├── configfile │ │ │ │ │ └── file.go │ │ │ │ │ └── credentials │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── default_store.go │ │ │ │ │ ├── default_store_darwin.go │ │ │ │ │ ├── default_store_linux.go │ │ │ │ │ ├── default_store_unsupported.go │ │ │ │ │ ├── default_store_windows.go │ │ │ │ │ ├── file_store.go │ │ │ │ │ └── native_store.go │ │ │ ├── opts │ │ │ │ ├── config.go │ │ │ │ ├── duration.go │ │ │ │ ├── env.go │ │ │ │ ├── envfile.go │ │ │ │ ├── file.go │ │ │ │ ├── hosts.go │ │ │ │ ├── hosts_unix.go │ │ │ │ ├── hosts_windows.go │ │ │ │ ├── ip.go │ │ │ │ ├── mount.go │ │ │ │ ├── network.go │ │ │ │ ├── opts.go │ │ │ │ ├── opts_unix.go │ │ │ │ ├── opts_windows.go │ │ │ │ ├── parse.go │ │ │ │ ├── port.go │ │ │ │ ├── quotedstring.go │ │ │ │ ├── runtime.go │ │ │ │ ├── secret.go │ │ │ │ ├── throttledevice.go │ │ │ │ ├── ulimit.go │ │ │ │ └── weightdevice.go │ │ │ └── scripts │ │ │ │ └── docs │ │ │ │ └── generate-authors.sh │ │ ├── distribution │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── AUTHORS │ │ │ ├── BUILDING.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RELEASE-CHECKLIST.md │ │ │ ├── ROADMAP.md │ │ │ ├── blobs.go │ │ │ ├── circle.yml │ │ │ ├── coverpkg.sh │ │ │ ├── digestset │ │ │ │ └── set.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── manifests.go │ │ │ ├── reference │ │ │ │ ├── helpers.go │ │ │ │ ├── normalize.go │ │ │ │ ├── reference.go │ │ │ │ └── regexp.go │ │ │ ├── registry.go │ │ │ ├── registry │ │ │ │ ├── api │ │ │ │ │ ├── errcode │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── handler.go │ │ │ │ │ │ └── register.go │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── descriptors.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── headerparser.go │ │ │ │ │ │ ├── routes.go │ │ │ │ │ │ └── urls.go │ │ │ │ ├── client │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── api_version.go │ │ │ │ │ │ ├── challenge │ │ │ │ │ │ │ ├── addr.go │ │ │ │ │ │ │ └── authchallenge.go │ │ │ │ │ │ └── session.go │ │ │ │ │ ├── blob_writer.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── repository.go │ │ │ │ │ └── transport │ │ │ │ │ │ ├── http_reader.go │ │ │ │ │ │ └── transport.go │ │ │ │ └── storage │ │ │ │ │ └── cache │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cachedblobdescriptorstore.go │ │ │ │ │ └── memory │ │ │ │ │ └── memory.go │ │ │ ├── tags.go │ │ │ └── vendor.conf │ │ ├── docker-credential-helpers │ │ │ ├── LICENSE │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ └── command.go │ │ │ ├── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── error.go │ │ │ │ ├── helper.go │ │ │ │ └── version.go │ │ │ └── pass │ │ │ │ └── pass_linux.go │ │ ├── docker │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── api │ │ │ │ └── types │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── blkiodev │ │ │ │ │ └── blkio.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── configs.go │ │ │ │ │ ├── container │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container_changes.go │ │ │ │ │ ├── container_create.go │ │ │ │ │ ├── container_top.go │ │ │ │ │ ├── container_update.go │ │ │ │ │ ├── container_wait.go │ │ │ │ │ ├── host_config.go │ │ │ │ │ ├── hostconfig_unix.go │ │ │ │ │ ├── hostconfig_windows.go │ │ │ │ │ └── waitcondition.go │ │ │ │ │ ├── error_response.go │ │ │ │ │ ├── filters │ │ │ │ │ └── parse.go │ │ │ │ │ ├── graph_driver_data.go │ │ │ │ │ ├── id_response.go │ │ │ │ │ ├── image_delete_response_item.go │ │ │ │ │ ├── image_summary.go │ │ │ │ │ ├── mount │ │ │ │ │ └── mount.go │ │ │ │ │ ├── network │ │ │ │ │ └── network.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_device.go │ │ │ │ │ ├── plugin_env.go │ │ │ │ │ ├── plugin_interface_type.go │ │ │ │ │ ├── plugin_mount.go │ │ │ │ │ ├── plugin_responses.go │ │ │ │ │ ├── port.go │ │ │ │ │ ├── registry │ │ │ │ │ ├── authenticate.go │ │ │ │ │ └── registry.go │ │ │ │ │ ├── seccomp.go │ │ │ │ │ ├── service_update_response.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── strslice │ │ │ │ │ └── strslice.go │ │ │ │ │ ├── swarm │ │ │ │ │ ├── common.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── runtime.go │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ │ └── plugin.proto │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── swarm.go │ │ │ │ │ └── task.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── versions │ │ │ │ │ ├── README.md │ │ │ │ │ └── compare.go │ │ │ │ │ └── volume.go │ │ │ ├── contrib │ │ │ │ └── syntax │ │ │ │ │ └── vim │ │ │ │ │ └── LICENSE │ │ │ ├── docs │ │ │ │ └── static_files │ │ │ │ │ └── contributors.png │ │ │ ├── errdefs │ │ │ │ ├── defs.go │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ └── is.go │ │ │ ├── hack │ │ │ │ └── generate-authors.sh │ │ │ ├── pkg │ │ │ │ ├── archive │ │ │ │ │ ├── README.md │ │ │ │ │ ├── archive.go │ │ │ │ │ ├── archive_linux.go │ │ │ │ │ ├── archive_other.go │ │ │ │ │ ├── archive_unix.go │ │ │ │ │ ├── archive_windows.go │ │ │ │ │ ├── changes.go │ │ │ │ │ ├── changes_linux.go │ │ │ │ │ ├── changes_other.go │ │ │ │ │ ├── changes_unix.go │ │ │ │ │ ├── changes_windows.go │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── copy_unix.go │ │ │ │ │ ├── copy_windows.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── example_changes.go │ │ │ │ │ ├── time_linux.go │ │ │ │ │ ├── time_unsupported.go │ │ │ │ │ ├── whiteouts.go │ │ │ │ │ └── wrap.go │ │ │ │ ├── fileutils │ │ │ │ │ ├── fileutils.go │ │ │ │ │ ├── fileutils_darwin.go │ │ │ │ │ ├── fileutils_unix.go │ │ │ │ │ └── fileutils_windows.go │ │ │ │ ├── homedir │ │ │ │ │ ├── homedir_linux.go │ │ │ │ │ ├── homedir_others.go │ │ │ │ │ ├── homedir_unix.go │ │ │ │ │ └── homedir_windows.go │ │ │ │ ├── idtools │ │ │ │ │ ├── idtools.go │ │ │ │ │ ├── idtools_unix.go │ │ │ │ │ ├── idtools_windows.go │ │ │ │ │ ├── usergroupadd_linux.go │ │ │ │ │ ├── usergroupadd_unsupported.go │ │ │ │ │ └── utils_unix.go │ │ │ │ ├── ioutils │ │ │ │ │ ├── buffer.go │ │ │ │ │ ├── bytespipe.go │ │ │ │ │ ├── fswriters.go │ │ │ │ │ ├── readers.go │ │ │ │ │ ├── temp_unix.go │ │ │ │ │ ├── temp_windows.go │ │ │ │ │ ├── writeflusher.go │ │ │ │ │ └── writers.go │ │ │ │ ├── jsonmessage │ │ │ │ │ └── jsonmessage.go │ │ │ │ ├── longpath │ │ │ │ │ └── longpath.go │ │ │ │ ├── mount │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── flags_freebsd.go │ │ │ │ │ ├── flags_linux.go │ │ │ │ │ ├── flags_unsupported.go │ │ │ │ │ ├── mount.go │ │ │ │ │ ├── mounter_freebsd.go │ │ │ │ │ ├── mounter_linux.go │ │ │ │ │ ├── mounter_unsupported.go │ │ │ │ │ ├── mountinfo.go │ │ │ │ │ ├── mountinfo_freebsd.go │ │ │ │ │ ├── mountinfo_linux.go │ │ │ │ │ ├── mountinfo_unsupported.go │ │ │ │ │ ├── mountinfo_windows.go │ │ │ │ │ └── sharedsubtree_linux.go │ │ │ │ ├── pools │ │ │ │ │ └── pools.go │ │ │ │ ├── stringid │ │ │ │ │ ├── README.md │ │ │ │ │ └── stringid.go │ │ │ │ ├── symlink │ │ │ │ │ ├── LICENSE.APACHE │ │ │ │ │ └── LICENSE.BSD │ │ │ │ ├── system │ │ │ │ │ ├── chtimes.go │ │ │ │ │ ├── chtimes_unix.go │ │ │ │ │ ├── chtimes_windows.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── exitcode.go │ │ │ │ │ ├── filesys.go │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ ├── init.go │ │ │ │ │ ├── init_unix.go │ │ │ │ │ ├── init_windows.go │ │ │ │ │ ├── lcow.go │ │ │ │ │ ├── lcow_unix.go │ │ │ │ │ ├── lcow_windows.go │ │ │ │ │ ├── lstat_unix.go │ │ │ │ │ ├── lstat_windows.go │ │ │ │ │ ├── meminfo.go │ │ │ │ │ ├── meminfo_linux.go │ │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ │ ├── meminfo_windows.go │ │ │ │ │ ├── mknod.go │ │ │ │ │ ├── mknod_windows.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── process_unix.go │ │ │ │ │ ├── process_windows.go │ │ │ │ │ ├── rm.go │ │ │ │ │ ├── stat_darwin.go │ │ │ │ │ ├── stat_freebsd.go │ │ │ │ │ ├── stat_linux.go │ │ │ │ │ ├── stat_openbsd.go │ │ │ │ │ ├── stat_solaris.go │ │ │ │ │ ├── stat_unix.go │ │ │ │ │ ├── stat_windows.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ ├── umask.go │ │ │ │ │ ├── umask_windows.go │ │ │ │ │ ├── utimes_freebsd.go │ │ │ │ │ ├── utimes_linux.go │ │ │ │ │ ├── utimes_unsupported.go │ │ │ │ │ ├── xattrs_linux.go │ │ │ │ │ └── xattrs_unsupported.go │ │ │ │ ├── tarsum │ │ │ │ │ ├── builder_context.go │ │ │ │ │ ├── fileinfosums.go │ │ │ │ │ ├── tarsum.go │ │ │ │ │ ├── tarsum_spec.md │ │ │ │ │ ├── versioning.go │ │ │ │ │ └── writercloser.go │ │ │ │ └── term │ │ │ │ │ ├── ascii.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── tc.go │ │ │ │ │ ├── term.go │ │ │ │ │ ├── term_windows.go │ │ │ │ │ ├── termios_bsd.go │ │ │ │ │ ├── termios_linux.go │ │ │ │ │ ├── windows │ │ │ │ │ ├── ansi_reader.go │ │ │ │ │ ├── ansi_writer.go │ │ │ │ │ ├── console.go │ │ │ │ │ └── windows.go │ │ │ │ │ └── winsize.go │ │ │ ├── project │ │ │ │ └── CONTRIBUTING.md │ │ │ └── registry │ │ │ │ ├── auth.go │ │ │ │ ├── config.go │ │ │ │ ├── config_unix.go │ │ │ │ ├── config_windows.go │ │ │ │ ├── endpoint_v1.go │ │ │ │ ├── errors.go │ │ │ │ ├── registry.go │ │ │ │ ├── resumable │ │ │ │ └── resumablerequestreader.go │ │ │ │ ├── service.go │ │ │ │ ├── service_v1.go │ │ │ │ ├── service_v2.go │ │ │ │ ├── session.go │ │ │ │ └── types.go │ │ ├── go-connections │ │ │ ├── LICENSE │ │ │ ├── nat │ │ │ │ ├── nat.go │ │ │ │ ├── parse.go │ │ │ │ └── sort.go │ │ │ ├── sockets │ │ │ │ ├── README.md │ │ │ │ ├── inmem_socket.go │ │ │ │ ├── proxy.go │ │ │ │ ├── sockets.go │ │ │ │ ├── sockets_unix.go │ │ │ │ ├── sockets_windows.go │ │ │ │ ├── tcp_socket.go │ │ │ │ └── unix_socket.go │ │ │ └── tlsconfig │ │ │ │ ├── certpool_go17.go │ │ │ │ ├── certpool_other.go │ │ │ │ ├── config.go │ │ │ │ ├── config_client_ciphers.go │ │ │ │ └── config_legacy_client_ciphers.go │ │ └── go-units │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── duration.go │ │ │ ├── size.go │ │ │ └── ulimit.go │ ├── gogo │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── GOLANG_CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── gogoproto │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ ├── gogo.pb.golden │ │ │ ├── gogo.proto │ │ │ └── helper.go │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── decode_gogo.go │ │ │ ├── discard.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ └── timestamp_gogo.go │ │ │ ├── protoc-gen-gogo │ │ │ └── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.go │ │ │ │ ├── descriptor.pb.go │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ └── helper.go │ │ │ ├── sortkeys │ │ │ └── sortkeys.go │ │ │ └── types │ │ │ ├── Makefile │ │ │ ├── any.go │ │ │ ├── any.pb.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration.pb.go │ │ │ ├── duration_gogo.go │ │ │ ├── empty.pb.go │ │ │ ├── field_mask.pb.go │ │ │ ├── struct.pb.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp.pb.go │ │ │ ├── timestamp_gogo.go │ │ │ └── wrappers.pb.go │ ├── golang │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── discard.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── table_marshal.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ ├── any.pb.go │ │ │ └── any.proto │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ ├── duration.pb.go │ │ │ └── duration.proto │ │ │ ├── timestamp.go │ │ │ └── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ ├── google │ │ └── shlex │ │ │ ├── COPYING │ │ │ ├── README │ │ │ └── shlex.go │ ├── gorilla │ │ ├── context │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ └── doc.go │ │ └── mux │ │ │ ├── .travis.yml │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context_gorilla.go │ │ │ ├── context_native.go │ │ │ ├── doc.go │ │ │ ├── middleware.go │ │ │ ├── mux.go │ │ │ ├── regexp.go │ │ │ ├── route.go │ │ │ └── test_helpers.go │ ├── grpc-ecosystem │ │ └── grpc-opentracing │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── go │ │ │ └── otgrpc │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── errors.go │ │ │ ├── options.go │ │ │ ├── package.go │ │ │ ├── server.go │ │ │ └── shared.go │ ├── moby │ │ └── buildkit │ │ │ ├── LICENSE │ │ │ ├── api │ │ │ └── services │ │ │ │ └── control │ │ │ │ ├── control.pb.go │ │ │ │ ├── control.proto │ │ │ │ └── generate.go │ │ │ ├── client │ │ │ ├── client.go │ │ │ ├── client_unix.go │ │ │ ├── client_windows.go │ │ │ ├── diskusage.go │ │ │ ├── exporters.go │ │ │ ├── graph.go │ │ │ ├── llb │ │ │ │ ├── exec.go │ │ │ │ ├── marshal.go │ │ │ │ ├── meta.go │ │ │ │ ├── resolver.go │ │ │ │ ├── source.go │ │ │ │ └── state.go │ │ │ ├── prune.go │ │ │ ├── solve.go │ │ │ └── workers.go │ │ │ ├── identity │ │ │ └── randomid.go │ │ │ ├── session │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── auth.pb.go │ │ │ │ ├── auth.proto │ │ │ │ ├── authprovider │ │ │ │ │ └── authprovider.go │ │ │ │ └── generate.go │ │ │ ├── context.go │ │ │ ├── filesync │ │ │ │ ├── diffcopy.go │ │ │ │ ├── filesync.go │ │ │ │ ├── filesync.pb.go │ │ │ │ ├── filesync.proto │ │ │ │ └── generate.go │ │ │ ├── grpc.go │ │ │ ├── grpchijack │ │ │ │ ├── dial.go │ │ │ │ └── hijack.go │ │ │ ├── manager.go │ │ │ └── session.go │ │ │ ├── solver │ │ │ └── pb │ │ │ │ ├── attr.go │ │ │ │ ├── const.go │ │ │ │ ├── generate.go │ │ │ │ ├── ops.pb.go │ │ │ │ └── ops.proto │ │ │ └── util │ │ │ ├── appcontext │ │ │ ├── appcontext.go │ │ │ ├── appcontext_unix.go │ │ │ └── appcontext_windows.go │ │ │ ├── appdefaults │ │ │ ├── appdefaults_unix.go │ │ │ └── appdefaults_windows.go │ │ │ └── system │ │ │ ├── path_unix.go │ │ │ └── path_windows.go │ ├── opencontainers │ │ ├── go-digest │ │ │ ├── .mailmap │ │ │ ├── .pullapprove.yml │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.code │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── algorithm.go │ │ │ ├── digest.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ └── verifiers.go │ │ ├── image-spec │ │ │ ├── LICENSE │ │ │ └── specs-go │ │ │ │ ├── v1 │ │ │ │ ├── annotations.go │ │ │ │ ├── config.go │ │ │ │ ├── descriptor.go │ │ │ │ ├── index.go │ │ │ │ ├── layout.go │ │ │ │ ├── manifest.go │ │ │ │ └── mediatype.go │ │ │ │ ├── version.go │ │ │ │ └── versioned.go │ │ └── runc │ │ │ ├── Godeps │ │ │ └── _workspace │ │ │ │ └── src │ │ │ │ └── github.com │ │ │ │ ├── Sirupsen │ │ │ │ └── logrus │ │ │ │ │ └── LICENSE │ │ │ │ ├── codegangsta │ │ │ │ └── cli │ │ │ │ │ └── LICENSE │ │ │ │ ├── coreos │ │ │ │ └── go-systemd │ │ │ │ │ └── LICENSE │ │ │ │ ├── docker │ │ │ │ ├── docker │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── contrib │ │ │ │ │ │ └── syntax │ │ │ │ │ │ │ └── vim │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── docs │ │ │ │ │ │ └── project │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── red_notice.png │ │ │ │ │ └── pkg │ │ │ │ │ │ ├── mflag │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ └── symlink │ │ │ │ │ │ ├── LICENSE.APACHE │ │ │ │ │ │ └── LICENSE.BSD │ │ │ │ └── go-units │ │ │ │ │ └── LICENSE │ │ │ │ ├── godbus │ │ │ │ └── dbus │ │ │ │ │ └── LICENSE │ │ │ │ ├── golang │ │ │ │ └── protobuf │ │ │ │ │ └── LICENSE │ │ │ │ ├── opencontainers │ │ │ │ └── runtime-spec │ │ │ │ │ └── LICENSE │ │ │ │ ├── pquerna │ │ │ │ └── ffjson │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── NOTICE │ │ │ │ ├── seccomp │ │ │ │ └── libseccomp-golang │ │ │ │ │ └── LICENSE │ │ │ │ ├── syndtr │ │ │ │ └── gocapability │ │ │ │ │ └── LICENSE │ │ │ │ └── vishvananda │ │ │ │ └── netlink │ │ │ │ └── LICENSE │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── libcontainer │ │ │ ├── system │ │ │ ├── linux.go │ │ │ ├── proc.go │ │ │ ├── setns_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_64.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── sysconfig.go │ │ │ ├── sysconfig_notcgo.go │ │ │ ├── unsupported.go │ │ │ └── xattrs_linux.go │ │ │ └── user │ │ │ ├── MAINTAINERS │ │ │ ├── lookup.go │ │ │ ├── lookup_unix.go │ │ │ ├── lookup_unsupported.go │ │ │ └── user.go │ ├── openfaas │ │ ├── faas-provider │ │ │ ├── LICENSE │ │ │ └── auth │ │ │ │ ├── basic_auth.go │ │ │ │ └── credentials.go │ │ └── openfaas-cloud │ │ │ ├── LICENSE.md │ │ │ ├── dashboard │ │ │ └── LICENSE │ │ │ └── sdk │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── audit.go │ │ │ ├── auth.go │ │ │ ├── build.go │ │ │ ├── constants.go │ │ │ ├── events.go │ │ │ ├── hmac.go │ │ │ ├── interfaces.go │ │ │ ├── pipeline.go │ │ │ ├── secrets.go │ │ │ ├── service.go │ │ │ └── status.go │ ├── opentracing │ │ └── opentracing-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ext │ │ │ └── tags.go │ │ │ ├── globaltracer.go │ │ │ ├── gocontext.go │ │ │ ├── log │ │ │ ├── field.go │ │ │ └── util.go │ │ │ ├── noop.go │ │ │ ├── propagation.go │ │ │ ├── span.go │ │ │ └── tracer.go │ ├── pkg │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ └── stack.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_appengine.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_solaris.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ └── tonistiigi │ │ └── fsutil │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── chtimes_linux.go │ │ ├── chtimes_nolinux.go │ │ ├── diff.go │ │ ├── diff_containerd.go │ │ ├── diff_containerd_linux.go │ │ ├── diskwriter.go │ │ ├── diskwriter_unix.go │ │ ├── diskwriter_windows.go │ │ ├── generate.go │ │ ├── hardlinks.go │ │ ├── readme.md │ │ ├── receive.go │ │ ├── send.go │ │ ├── stat.pb.go │ │ ├── stat.proto │ │ ├── validator.go │ │ ├── walker.go │ │ ├── walker_unix.go │ │ ├── walker_windows.go │ │ ├── wire.pb.go │ │ └── wire.proto │ ├── golang.org │ └── x │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── context │ │ │ ├── context.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ ├── http │ │ │ └── httpguts │ │ │ │ └── guts.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── 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 │ │ │ ├── socks │ │ │ │ ├── client.go │ │ │ │ └── socks.go │ │ │ └── timeseries │ │ │ │ └── timeseries.go │ │ ├── lex │ │ │ └── httplex │ │ │ │ └── httplex.go │ │ ├── proxy │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── proxy.go │ │ │ └── socks5.go │ │ └── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ └── trace_go17.go │ │ ├── sync │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── errgroup │ │ │ └── errgroup.go │ │ ├── sys │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── 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_mipsx.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_openbsd_arm.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.pl │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── mksysnum_dragonfly.pl │ │ │ ├── mksysnum_freebsd.pl │ │ │ ├── mksysnum_netbsd.pl │ │ │ ├── mksysnum_openbsd.pl │ │ │ ├── openbsd_pledge.go │ │ │ ├── pagesize_unix.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_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gccgo.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── timestruct.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.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_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zptrace386_linux.go │ │ │ ├── zptracearm_linux.go │ │ │ ├── zptracemips_linux.go │ │ │ ├── zptracemipsle_linux.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_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.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_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.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_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── dll_windows.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ └── zsyscall_windows.go │ │ └── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── collate │ │ ├── collate.go │ │ ├── index.go │ │ ├── maketables.go │ │ ├── option.go │ │ ├── sort.go │ │ └── tables.go │ │ ├── internal │ │ ├── colltab │ │ │ ├── collelem.go │ │ │ ├── colltab.go │ │ │ ├── contract.go │ │ │ ├── iter.go │ │ │ ├── numeric.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ └── weighter.go │ │ ├── gen │ │ │ ├── code.go │ │ │ └── gen.go │ │ ├── tag │ │ │ └── tag.go │ │ ├── triegen │ │ │ ├── compact.go │ │ │ ├── print.go │ │ │ └── triegen.go │ │ └── ucd │ │ │ └── ucd.go │ │ ├── language │ │ ├── Makefile │ │ ├── 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 │ │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.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 │ │ ├── cldr │ │ ├── base.go │ │ ├── cldr.go │ │ ├── collate.go │ │ ├── decode.go │ │ ├── makexml.go │ │ ├── resolve.go │ │ ├── slice.go │ │ └── xml.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 │ │ └── rangetable │ │ ├── gen.go │ │ ├── merge.go │ │ ├── rangetable.go │ │ ├── tables10.0.0.go │ │ └── tables9.0.0.go │ └── google.golang.org │ ├── genproto │ ├── LICENSE │ └── googleapis │ │ └── rpc │ │ └── status │ │ └── status.pb.go │ └── grpc │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── backoff.go │ ├── balancer.go │ ├── balancer │ ├── balancer.go │ ├── base │ │ ├── balancer.go │ │ └── base.go │ └── roundrobin │ │ └── roundrobin.go │ ├── balancer_conn_wrappers.go │ ├── balancer_v1_wrapper.go │ ├── call.go │ ├── clientconn.go │ ├── codec.go │ ├── codegen.sh │ ├── codes │ ├── code_string.go │ └── codes.go │ ├── connectivity │ └── connectivity.go │ ├── credentials │ ├── credentials.go │ ├── credentials_util_go17.go │ ├── credentials_util_go18.go │ └── credentials_util_pre_go17.go │ ├── doc.go │ ├── encoding │ ├── encoding.go │ └── proto │ │ └── proto.go │ ├── go16.go │ ├── go17.go │ ├── grpclb.go │ ├── grpclb │ └── grpc_lb_v1 │ │ └── messages │ │ ├── messages.pb.go │ │ └── messages.proto │ ├── grpclb_picker.go │ ├── grpclb_remote_balancer.go │ ├── grpclb_util.go │ ├── grpclog │ ├── grpclog.go │ ├── logger.go │ └── loggerv2.go │ ├── health │ ├── grpc_health_v1 │ │ ├── health.pb.go │ │ └── health.proto │ └── health.go │ ├── interceptor.go │ ├── internal │ └── internal.go │ ├── keepalive │ └── keepalive.go │ ├── metadata │ └── metadata.go │ ├── naming │ ├── dns_resolver.go │ ├── go17.go │ ├── go18.go │ └── naming.go │ ├── peer │ └── peer.go │ ├── picker_wrapper.go │ ├── pickfirst.go │ ├── proxy.go │ ├── resolver │ ├── dns │ │ ├── dns_resolver.go │ │ ├── go17.go │ │ └── go18.go │ ├── passthrough │ │ └── passthrough.go │ └── resolver.go │ ├── resolver_conn_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.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 │ └── vet.sh ├── pipeline-log ├── Gopkg.lock ├── Gopkg.toml ├── README.md ├── go.mod ├── handler.go ├── handler_test.go └── vendor │ ├── github.com │ ├── alexellis │ │ └── hmac │ │ │ ├── README.md │ │ │ └── pkg.go │ ├── dustin │ │ └── go-humanize │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── big.go │ │ │ ├── bigbytes.go │ │ │ ├── bytes.go │ │ │ ├── comma.go │ │ │ ├── commaf.go │ │ │ ├── ftoa.go │ │ │ ├── humanize.go │ │ │ ├── number.go │ │ │ ├── ordinals.go │ │ │ ├── si.go │ │ │ └── times.go │ ├── konsorten │ │ └── go-windows-terminal-sequences │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── sequences.go │ │ │ └── sequences_dummy.go │ ├── minio │ │ └── minio-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── README_zh_CN.md │ │ │ ├── api-compose-object.go │ │ │ ├── api-datatypes.go │ │ │ ├── api-error-response.go │ │ │ ├── api-get-lifecycle.go │ │ │ ├── api-get-object-acl.go │ │ │ ├── api-get-object-context.go │ │ │ ├── api-get-object-file.go │ │ │ ├── api-get-object.go │ │ │ ├── api-get-options.go │ │ │ ├── api-get-policy.go │ │ │ ├── api-list.go │ │ │ ├── api-notification.go │ │ │ ├── api-presigned.go │ │ │ ├── api-put-bucket.go │ │ │ ├── api-put-object-common.go │ │ │ ├── api-put-object-context.go │ │ │ ├── api-put-object-copy.go │ │ │ ├── api-put-object-file-context.go │ │ │ ├── api-put-object-file.go │ │ │ ├── api-put-object-multipart.go │ │ │ ├── api-put-object-streaming.go │ │ │ ├── api-put-object.go │ │ │ ├── api-remove.go │ │ │ ├── api-s3-datatypes.go │ │ │ ├── api-select.go │ │ │ ├── api-stat.go │ │ │ ├── api.go │ │ │ ├── appveyor.yml │ │ │ ├── bucket-cache.go │ │ │ ├── bucket-notification.go │ │ │ ├── constants.go │ │ │ ├── core.go │ │ │ ├── functional_tests.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hook-reader.go │ │ │ ├── pkg │ │ │ ├── credentials │ │ │ │ ├── chain.go │ │ │ │ ├── config.json.sample │ │ │ │ ├── credentials.go │ │ │ │ ├── credentials.sample │ │ │ │ ├── doc.go │ │ │ │ ├── env_aws.go │ │ │ │ ├── env_minio.go │ │ │ │ ├── file_aws_credentials.go │ │ │ │ ├── file_minio_client.go │ │ │ │ ├── iam_aws.go │ │ │ │ ├── signature-type.go │ │ │ │ ├── static.go │ │ │ │ ├── sts_client_grants.go │ │ │ │ └── sts_web_identity.go │ │ │ ├── encrypt │ │ │ │ └── server-side.go │ │ │ ├── s3signer │ │ │ │ ├── request-signature-streaming.go │ │ │ │ ├── request-signature-v2.go │ │ │ │ ├── request-signature-v4.go │ │ │ │ └── utils.go │ │ │ ├── s3utils │ │ │ │ └── utils.go │ │ │ └── set │ │ │ │ └── stringset.go │ │ │ ├── post-policy.go │ │ │ ├── retry-continous.go │ │ │ ├── retry.go │ │ │ ├── s3-endpoints.go │ │ │ ├── s3-error.go │ │ │ ├── transport.go │ │ │ └── utils.go │ ├── mitchellh │ │ └── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── homedir.go │ ├── openfaas │ │ ├── faas-provider │ │ │ ├── LICENSE │ │ │ └── auth │ │ │ │ ├── basic_auth.go │ │ │ │ └── credentials.go │ │ └── openfaas-cloud │ │ │ ├── LICENSE │ │ │ ├── dashboard │ │ │ └── LICENSE │ │ │ └── sdk │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── audit.go │ │ │ ├── auth.go │ │ │ ├── build.go │ │ │ ├── constants.go │ │ │ ├── customers.go │ │ │ ├── event.go │ │ │ ├── events_scm.go │ │ │ ├── function.go │ │ │ ├── hmac.go │ │ │ ├── interfaces.go │ │ │ ├── pipeline.go │ │ │ ├── secrets.go │ │ │ ├── service.go │ │ │ ├── status.go │ │ │ └── url_builders.go │ └── sirupsen │ │ └── logrus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── argon2 │ │ │ ├── argon2.go │ │ │ ├── blake2b.go │ │ │ ├── blamka_amd64.go │ │ │ ├── blamka_amd64.s │ │ │ ├── blamka_generic.go │ │ │ └── blamka_ref.go │ │ └── blake2b │ │ │ ├── blake2b.go │ │ │ ├── blake2bAVX2_amd64.go │ │ │ ├── blake2bAVX2_amd64.s │ │ │ ├── blake2b_amd64.go │ │ │ ├── blake2b_amd64.s │ │ │ ├── blake2b_generic.go │ │ │ ├── blake2b_ref.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── http │ │ │ └── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── go111.go │ │ │ ├── gotrack.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── not_go111.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ └── writesched_random.go │ │ ├── idna │ │ │ ├── idna10.0.0.go │ │ │ ├── idna9.0.0.go │ │ │ ├── punycode.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.00.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ └── publicsuffix │ │ │ ├── gen.go │ │ │ ├── list.go │ │ │ └── table.go │ │ ├── sys │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cpu │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── byteorder.go │ │ │ ├── cpu.go │ │ │ ├── cpu_aix_ppc64.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_arm64.go │ │ │ ├── cpu_arm64.s │ │ │ ├── cpu_gc_arm64.go │ │ │ ├── cpu_gc_s390x.go │ │ │ ├── cpu_gc_x86.go │ │ │ ├── cpu_gccgo_arm64.go │ │ │ ├── cpu_gccgo_s390x.go │ │ │ ├── cpu_gccgo_x86.c │ │ │ ├── cpu_gccgo_x86.go │ │ │ ├── cpu_linux.go │ │ │ ├── cpu_linux_arm.go │ │ │ ├── cpu_linux_arm64.go │ │ │ ├── cpu_linux_mips64x.go │ │ │ ├── cpu_linux_noinit.go │ │ │ ├── cpu_linux_ppc64x.go │ │ │ ├── cpu_linux_s390x.go │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_other_arm64.go │ │ │ ├── cpu_riscv64.go │ │ │ ├── cpu_s390x.s │ │ │ ├── cpu_wasm.go │ │ │ ├── cpu_x86.go │ │ │ ├── cpu_x86.s │ │ │ ├── hwcap_linux.go │ │ │ └── syscall_aix_ppc64_gc.go │ │ └── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.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_freebsd_arm64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_netbsd_arm64.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_openbsd_arm64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ioctl.go │ │ │ ├── mkall.sh │ │ │ ├── mkasm_darwin.go │ │ │ ├── mkerrors.sh │ │ │ ├── mkmerge.go │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.go │ │ │ ├── mksyscall_aix_ppc.go │ │ │ ├── mksyscall_aix_ppc64.go │ │ │ ├── mksyscall_solaris.go │ │ │ ├── mksysctl_openbsd.go │ │ │ ├── mksysnum.go │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.1_12.go │ │ │ ├── syscall_darwin.1_13.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.1_11.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.1_11.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.1_11.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.1_11.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_libSystem.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_arm64.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_netbsd_arm64.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_openbsd_arm64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── timestruct.go │ │ │ ├── types_aix.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.go │ │ │ ├── unveil_openbsd.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.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_freebsd_arm64.go │ │ │ ├── zerrors_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zptrace_armnn_linux.go │ │ │ ├── zptrace_linux_arm64.go │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ ├── zptrace_x86_linux.go │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_386.1_11.go │ │ │ ├── zsyscall_darwin_386.1_13.go │ │ │ ├── zsyscall_darwin_386.1_13.s │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_386.s │ │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ │ ├── zsyscall_darwin_amd64.1_13.go │ │ │ ├── zsyscall_darwin_amd64.1_13.s │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm.1_11.go │ │ │ ├── zsyscall_darwin_arm.1_13.go │ │ │ ├── zsyscall_darwin_arm.1_13.s │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm.s │ │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ │ ├── zsyscall_darwin_arm64.1_13.go │ │ │ ├── zsyscall_darwin_arm64.1_13.s │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.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_freebsd_arm64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.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_freebsd_arm64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ └── ztypes_solaris_amd64.go │ │ └── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── collate │ │ ├── collate.go │ │ ├── index.go │ │ ├── maketables.go │ │ ├── option.go │ │ ├── sort.go │ │ └── tables.go │ │ ├── internal │ │ ├── colltab │ │ │ ├── collelem.go │ │ │ ├── colltab.go │ │ │ ├── contract.go │ │ │ ├── iter.go │ │ │ ├── numeric.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ └── weighter.go │ │ ├── gen │ │ │ ├── code.go │ │ │ └── gen.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_index.go │ │ │ │ ├── gen_parents.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── tag │ │ │ └── tag.go │ │ ├── triegen │ │ │ ├── compact.go │ │ │ ├── print.go │ │ │ └── triegen.go │ │ └── ucd │ │ │ └── ucd.go │ │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── gen.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ │ ├── transform │ │ └── transform.go │ │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── gen.go │ │ ├── gen_ranges.go │ │ ├── gen_trieval.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ ├── cldr │ │ ├── base.go │ │ ├── cldr.go │ │ ├── collate.go │ │ ├── decode.go │ │ ├── makexml.go │ │ ├── resolve.go │ │ ├── slice.go │ │ └── xml.go │ │ ├── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── maketables.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ ├── trie.go │ │ └── triegen.go │ │ └── rangetable │ │ ├── gen.go │ │ ├── merge.go │ │ ├── rangetable.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ └── tables9.0.0.go │ └── gopkg.in │ └── ini.v1 │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── data_source.go │ ├── deprecated.go │ ├── error.go │ ├── file.go │ ├── helper.go │ ├── ini.go │ ├── key.go │ ├── parser.go │ ├── section.go │ └── struct.go ├── register-image ├── Gopkg.lock ├── Gopkg.toml ├── go.mod ├── handler.go ├── handler_test.go └── vendor │ └── github.com │ ├── alexellis │ └── hmac │ │ ├── README.md │ │ └── pkg.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 │ │ │ ├── logger.go │ │ │ ├── metadata │ │ │ │ └── client_info.go │ │ │ └── no_op_retryer.go │ │ ├── config.go │ │ ├── context_1_5.go │ │ ├── context_1_9.go │ │ ├── context_background_1_5.go │ │ ├── context_background_1_7.go │ │ ├── context_sleep.go │ │ ├── convert_types.go │ │ ├── corehandlers │ │ │ ├── handlers.go │ │ │ ├── param_validator.go │ │ │ └── user_agent.go │ │ ├── credentials │ │ │ ├── chain_provider.go │ │ │ ├── credentials.go │ │ │ ├── ec2rolecreds │ │ │ │ └── ec2_role_provider.go │ │ │ ├── endpointcreds │ │ │ │ └── provider.go │ │ │ ├── env_provider.go │ │ │ ├── example.ini │ │ │ ├── processcreds │ │ │ │ └── provider.go │ │ │ ├── shared_credentials_provider.go │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.go │ │ ├── csm │ │ │ ├── doc.go │ │ │ ├── enable.go │ │ │ ├── metric.go │ │ │ ├── metric_chan.go │ │ │ ├── metric_exception.go │ │ │ └── reporter.go │ │ ├── defaults │ │ │ ├── defaults.go │ │ │ └── shared_config.go │ │ ├── doc.go │ │ ├── ec2metadata │ │ │ ├── api.go │ │ │ └── service.go │ │ ├── endpoints │ │ │ ├── decode.go │ │ │ ├── defaults.go │ │ │ ├── dep_service_ids.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── v3model.go │ │ │ └── v3model_codegen.go │ │ ├── errors.go │ │ ├── jsonvalue.go │ │ ├── logger.go │ │ ├── request │ │ │ ├── connection_reset_error.go │ │ │ ├── handlers.go │ │ │ ├── http_request.go │ │ │ ├── offset_reader.go │ │ │ ├── request.go │ │ │ ├── request_1_7.go │ │ │ ├── request_1_8.go │ │ │ ├── request_context.go │ │ │ ├── request_context_1_6.go │ │ │ ├── request_pagination.go │ │ │ ├── retryer.go │ │ │ ├── timeout_read_closer.go │ │ │ ├── validation.go │ │ │ └── waiter.go │ │ ├── session │ │ │ ├── cabundle_transport.go │ │ │ ├── cabundle_transport_1_5.go │ │ │ ├── cabundle_transport_1_6.go │ │ │ ├── credentials.go │ │ │ ├── doc.go │ │ │ ├── env_config.go │ │ │ ├── session.go │ │ │ └── shared_config.go │ │ ├── signer │ │ │ └── v4 │ │ │ │ ├── header_rules.go │ │ │ │ ├── options.go │ │ │ │ ├── uri_path.go │ │ │ │ └── v4.go │ │ ├── types.go │ │ ├── url.go │ │ ├── url_1_7.go │ │ └── version.go │ │ ├── internal │ │ ├── ini │ │ │ ├── ast.go │ │ │ ├── comma_token.go │ │ │ ├── comment_token.go │ │ │ ├── doc.go │ │ │ ├── empty_token.go │ │ │ ├── expression.go │ │ │ ├── fuzz.go │ │ │ ├── ini.go │ │ │ ├── ini_lexer.go │ │ │ ├── ini_parser.go │ │ │ ├── literal_tokens.go │ │ │ ├── newline_token.go │ │ │ ├── number_helper.go │ │ │ ├── op_tokens.go │ │ │ ├── parse_error.go │ │ │ ├── parse_stack.go │ │ │ ├── sep_tokens.go │ │ │ ├── skipper.go │ │ │ ├── statement.go │ │ │ ├── value_util.go │ │ │ ├── visitor.go │ │ │ ├── walker.go │ │ │ └── ws_token.go │ │ ├── sdkio │ │ │ ├── byte.go │ │ │ ├── io_go1.6.go │ │ │ └── io_go1.7.go │ │ ├── sdkmath │ │ │ ├── floor.go │ │ │ └── floor_go1.9.go │ │ ├── sdkrand │ │ │ ├── locked_source.go │ │ │ ├── read.go │ │ │ └── read_1_5.go │ │ ├── sdkuri │ │ │ └── path.go │ │ └── shareddefaults │ │ │ ├── ecs_container.go │ │ │ └── shared_config.go │ │ ├── private │ │ └── protocol │ │ │ ├── host.go │ │ │ ├── host_prefix.go │ │ │ ├── idempotency.go │ │ │ ├── json │ │ │ └── jsonutil │ │ │ │ ├── build.go │ │ │ │ └── unmarshal.go │ │ │ ├── jsonrpc │ │ │ └── jsonrpc.go │ │ │ ├── jsonvalue.go │ │ │ ├── payload.go │ │ │ ├── query │ │ │ ├── build.go │ │ │ ├── queryutil │ │ │ │ └── queryutil.go │ │ │ ├── unmarshal.go │ │ │ └── unmarshal_error.go │ │ │ ├── rest │ │ │ ├── build.go │ │ │ ├── payload.go │ │ │ └── unmarshal.go │ │ │ ├── timestamp.go │ │ │ ├── unmarshal.go │ │ │ └── xml │ │ │ └── xmlutil │ │ │ ├── build.go │ │ │ ├── sort.go │ │ │ ├── unmarshal.go │ │ │ └── xml_to_struct.go │ │ └── service │ │ ├── ecr │ │ ├── api.go │ │ ├── doc.go │ │ ├── errors.go │ │ └── service.go │ │ └── sts │ │ ├── api.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── service.go │ │ └── stsiface │ │ └── interface.go │ ├── jmespath │ └── go-jmespath │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── api.go │ │ ├── astnodetype_string.go │ │ ├── functions.go │ │ ├── interpreter.go │ │ ├── lexer.go │ │ ├── parser.go │ │ ├── toktype_string.go │ │ └── util.go │ └── openfaas │ ├── faas-provider │ ├── LICENSE │ └── auth │ │ ├── basic_auth.go │ │ └── credentials.go │ └── openfaas-cloud │ ├── LICENSE │ ├── dashboard │ └── LICENSE │ └── sdk │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── audit.go │ ├── auth.go │ ├── build.go │ ├── constants.go │ ├── customers.go │ ├── event.go │ ├── events_scm.go │ ├── function.go │ ├── hmac.go │ ├── interfaces.go │ ├── pipeline.go │ ├── secrets.go │ ├── service.go │ ├── status.go │ └── url_builders.go ├── sample-json ├── fullsample.json ├── go-fns.json ├── idea-raw.json ├── idea.json ├── push-apr.json ├── raw-gh.json ├── raw-non-master.json ├── refs.json └── remove_installation.json ├── sdk ├── Gopkg.lock ├── Gopkg.toml ├── audit.go ├── auth.go ├── auth_test.go ├── build.go ├── constants.go ├── customers.go ├── customers_test.go ├── event.go ├── event_test.go ├── events_scm.go ├── function.go ├── go.mod ├── go.sum ├── hmac.go ├── hmac_test.go ├── interfaces.go ├── pipeline.go ├── secrets.go ├── service.go ├── service_test.go ├── status.go ├── url_builders.go ├── url_builders_test.go └── vendor │ └── github.com │ ├── alexellis │ └── hmac │ │ ├── README.md │ │ └── pkg.go │ └── openfaas │ └── faas-provider │ ├── LICENSE │ └── auth │ ├── basic_auth.go │ └── credentials.go ├── slack.yml ├── stack.yml └── yaml ├── core ├── edge-auth-dep.yml ├── edge-auth-svc.yml ├── edge-router-dep.yml ├── edge-router-svc.yml ├── of-builder-dep.yml ├── of-builder-svc.yml └── rbac-import-secrets.yml └── network-policy ├── ns-openfaas-fn-net-policy.yml └── ns-openfaas-net-policy.yml /.DEREK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/.DEREK.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CUSTOMERS: -------------------------------------------------------------------------------- 1 | openfaas 2 | alexellis 3 | kenfdev 4 | civo 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/Makefile -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/README.md -------------------------------------------------------------------------------- /audit-event/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/audit-event/Gopkg.lock -------------------------------------------------------------------------------- /audit-event/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/audit-event/Gopkg.toml -------------------------------------------------------------------------------- /audit-event/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/audit-event/go.mod -------------------------------------------------------------------------------- /audit-event/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/audit-event/handler.go -------------------------------------------------------------------------------- /audit-event/vendor/github.com/alexellis/hmac/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/audit-event/vendor/github.com/alexellis/hmac/pkg.go -------------------------------------------------------------------------------- /aws.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/aws.yml -------------------------------------------------------------------------------- /chart/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/README.md -------------------------------------------------------------------------------- /chart/openfaas-cloud/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/openfaas-cloud/.helmignore -------------------------------------------------------------------------------- /chart/openfaas-cloud/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/openfaas-cloud/Chart.yaml -------------------------------------------------------------------------------- /chart/openfaas-cloud/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/openfaas-cloud/templates/NOTES.txt -------------------------------------------------------------------------------- /chart/openfaas-cloud/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/openfaas-cloud/templates/_helpers.tpl -------------------------------------------------------------------------------- /chart/openfaas-cloud/templates/tls/issuer-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/openfaas-cloud/templates/tls/issuer-prod.yml -------------------------------------------------------------------------------- /chart/openfaas-cloud/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/openfaas-cloud/values.yaml -------------------------------------------------------------------------------- /chart/test/.gitignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | -------------------------------------------------------------------------------- /chart/test/core_edge_auth_dep_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/core_edge_auth_dep_test.go -------------------------------------------------------------------------------- /chart/test/core_edge_auth_svc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/core_edge_auth_svc_test.go -------------------------------------------------------------------------------- /chart/test/core_edge_router_dep_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/core_edge_router_dep_test.go -------------------------------------------------------------------------------- /chart/test/core_edge_router_svc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/core_edge_router_svc_test.go -------------------------------------------------------------------------------- /chart/test/core_of_builder_dep_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/core_of_builder_dep_test.go -------------------------------------------------------------------------------- /chart/test/core_of_builder_svc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/core_of_builder_svc_test.go -------------------------------------------------------------------------------- /chart/test/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/go.mod -------------------------------------------------------------------------------- /chart/test/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/go.sum -------------------------------------------------------------------------------- /chart/test/helm_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/helm_runner.go -------------------------------------------------------------------------------- /chart/test/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/ingress_test.go -------------------------------------------------------------------------------- /chart/test/network_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/network_policy_test.go -------------------------------------------------------------------------------- /chart/test/sealed_secrets_clusterrole_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/sealed_secrets_clusterrole_test.go -------------------------------------------------------------------------------- /chart/test/sealed_secrets_role_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/sealed_secrets_role_test.go -------------------------------------------------------------------------------- /chart/test/sealed_secrets_serviceaccount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/sealed_secrets_serviceaccount_test.go -------------------------------------------------------------------------------- /chart/test/tls_issuer_prod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/tls_issuer_prod_test.go -------------------------------------------------------------------------------- /chart/test/tls_issuer_stage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/tls_issuer_stage_test.go -------------------------------------------------------------------------------- /chart/test/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/tools.go -------------------------------------------------------------------------------- /chart/test/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/types.go -------------------------------------------------------------------------------- /chart/test/values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/values.yml -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /chart/test/vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /chart/test/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/chart/test/vendor/modules.txt -------------------------------------------------------------------------------- /contrib/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/contrib/ci.sh -------------------------------------------------------------------------------- /contrib/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/contrib/publish.sh -------------------------------------------------------------------------------- /contrib/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/contrib/registry.yml -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/LICENSE -------------------------------------------------------------------------------- /dashboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/Makefile -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/client/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/.eslintrc -------------------------------------------------------------------------------- /dashboard/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/package-lock.json -------------------------------------------------------------------------------- /dashboard/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/package.json -------------------------------------------------------------------------------- /dashboard/client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/public/favicon.ico -------------------------------------------------------------------------------- /dashboard/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/public/index.html -------------------------------------------------------------------------------- /dashboard/client/public/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/public/logout.html -------------------------------------------------------------------------------- /dashboard/client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/public/manifest.json -------------------------------------------------------------------------------- /dashboard/client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/App.css -------------------------------------------------------------------------------- /dashboard/client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/App.js -------------------------------------------------------------------------------- /dashboard/client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/App.test.js -------------------------------------------------------------------------------- /dashboard/client/src/api/functionsApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/api/functionsApi.js -------------------------------------------------------------------------------- /dashboard/client/src/api/functionsApi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/api/functionsApi.test.js -------------------------------------------------------------------------------- /dashboard/client/src/components/Breadcrumbs/index.js: -------------------------------------------------------------------------------- 1 | export * from './Breadcrumbs'; -------------------------------------------------------------------------------- /dashboard/client/src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /dashboard/client/src/components/Footer/index.js: -------------------------------------------------------------------------------- 1 | export * from './Footer'; 2 | -------------------------------------------------------------------------------- /dashboard/client/src/components/FunctionDetailSummary/index.js: -------------------------------------------------------------------------------- 1 | export * from './FunctionDetailSummary'; 2 | -------------------------------------------------------------------------------- /dashboard/client/src/components/FunctionEmptyState/index.js: -------------------------------------------------------------------------------- 1 | export * from './FunctionEmptyState'; 2 | -------------------------------------------------------------------------------- /dashboard/client/src/components/FunctionInvocation/FunctionInvocation.css: -------------------------------------------------------------------------------- 1 | .nav-link.active { 2 | border-bottom: 5px solid #007bff; 3 | } -------------------------------------------------------------------------------- /dashboard/client/src/components/FunctionOverviewPanel/index.js: -------------------------------------------------------------------------------- 1 | export * from './FunctionOverviewPanel'; 2 | -------------------------------------------------------------------------------- /dashboard/client/src/components/FunctionTable/index.js: -------------------------------------------------------------------------------- 1 | export * from './FunctionTable'; 2 | -------------------------------------------------------------------------------- /dashboard/client/src/components/FunctionTableItem/index.js: -------------------------------------------------------------------------------- 1 | export * from './FunctionTableItem'; 2 | -------------------------------------------------------------------------------- /dashboard/client/src/components/GetBadgeModal/index.js: -------------------------------------------------------------------------------- 1 | export * from './GetBadgeModal'; 2 | -------------------------------------------------------------------------------- /dashboard/client/src/components/ModalRunOnMyOF/index.js: -------------------------------------------------------------------------------- 1 | export * from './ModalRunOnMyOF' -------------------------------------------------------------------------------- /dashboard/client/src/components/NavBar/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/components/NavBar/NavBar.jsx -------------------------------------------------------------------------------- /dashboard/client/src/components/NavBar/index.js: -------------------------------------------------------------------------------- 1 | export * from './NavBar'; 2 | -------------------------------------------------------------------------------- /dashboard/client/src/components/OFBadge/OFBadge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/components/OFBadge/OFBadge.jsx -------------------------------------------------------------------------------- /dashboard/client/src/components/OFBadge/index.js: -------------------------------------------------------------------------------- 1 | export * from './OFBadge'; 2 | -------------------------------------------------------------------------------- /dashboard/client/src/components/OFIcon/OFIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/components/OFIcon/OFIcon.jsx -------------------------------------------------------------------------------- /dashboard/client/src/components/OFIcon/index.js: -------------------------------------------------------------------------------- 1 | export * from './OFIcon'; 2 | -------------------------------------------------------------------------------- /dashboard/client/src/components/ReplicasProgress/index.js: -------------------------------------------------------------------------------- 1 | export * from './ReplicasProgress'; 2 | -------------------------------------------------------------------------------- /dashboard/client/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/index.js -------------------------------------------------------------------------------- /dashboard/client/src/pages/BuildLogPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/pages/BuildLogPage.jsx -------------------------------------------------------------------------------- /dashboard/client/src/pages/FunctionDetailPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/pages/FunctionDetailPage.jsx -------------------------------------------------------------------------------- /dashboard/client/src/pages/FunctionLogPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/pages/FunctionLogPage.jsx -------------------------------------------------------------------------------- /dashboard/client/src/pages/FunctionsOverviewPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/pages/FunctionsOverviewPage.jsx -------------------------------------------------------------------------------- /dashboard/client/src/pages/NotFoundPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/pages/NotFoundPage.jsx -------------------------------------------------------------------------------- /dashboard/client/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/src/setupProxy.js -------------------------------------------------------------------------------- /dashboard/client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/client/yarn.lock -------------------------------------------------------------------------------- /dashboard/dashboard_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/dashboard_config.yml -------------------------------------------------------------------------------- /dashboard/of-cloud-dashboard/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /dashboard/of-cloud-dashboard/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/of-cloud-dashboard/handler.js -------------------------------------------------------------------------------- /dashboard/of-cloud-dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/of-cloud-dashboard/package-lock.json -------------------------------------------------------------------------------- /dashboard/of-cloud-dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/of-cloud-dashboard/package.json -------------------------------------------------------------------------------- /dashboard/stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/dashboard/stack.yml -------------------------------------------------------------------------------- /docs/COMPONENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/docs/COMPONENTS.md -------------------------------------------------------------------------------- /docs/GITLAB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/docs/GITLAB.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README_LEGACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/docs/README_LEGACY.md -------------------------------------------------------------------------------- /docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/docs/ROADMAP.md -------------------------------------------------------------------------------- /docs/conceptual-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/docs/conceptual-overview.png -------------------------------------------------------------------------------- /docs/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/docs/dashboard.png -------------------------------------------------------------------------------- /docs/details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/docs/details.png -------------------------------------------------------------------------------- /docs/gitlab-event-conceptual.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/docs/gitlab-event-conceptual.jpg -------------------------------------------------------------------------------- /docs/ofc-github-conceptual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/docs/ofc-github-conceptual.png -------------------------------------------------------------------------------- /echo/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/echo/handler.go -------------------------------------------------------------------------------- /edge-auth/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/.dockerignore -------------------------------------------------------------------------------- /edge-auth/.gitignore: -------------------------------------------------------------------------------- 1 | /edge-auth 2 | -------------------------------------------------------------------------------- /edge-auth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/Dockerfile -------------------------------------------------------------------------------- /edge-auth/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/Gopkg.lock -------------------------------------------------------------------------------- /edge-auth/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/Gopkg.toml -------------------------------------------------------------------------------- /edge-auth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/Makefile -------------------------------------------------------------------------------- /edge-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/README.md -------------------------------------------------------------------------------- /edge-auth/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/go.mod -------------------------------------------------------------------------------- /edge-auth/handlers/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/handlers/common.go -------------------------------------------------------------------------------- /edge-auth/handlers/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/handlers/common_test.go -------------------------------------------------------------------------------- /edge-auth/handlers/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/handlers/config.go -------------------------------------------------------------------------------- /edge-auth/handlers/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/handlers/const.go -------------------------------------------------------------------------------- /edge-auth/handlers/homepage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/handlers/homepage.go -------------------------------------------------------------------------------- /edge-auth/handlers/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/handlers/login.go -------------------------------------------------------------------------------- /edge-auth/handlers/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/handlers/oauth2.go -------------------------------------------------------------------------------- /edge-auth/handlers/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/handlers/query.go -------------------------------------------------------------------------------- /edge-auth/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/main.go -------------------------------------------------------------------------------- /edge-auth/provider/github_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/provider/github_profile.go -------------------------------------------------------------------------------- /edge-auth/provider/gitlab_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/provider/gitlab_profile.go -------------------------------------------------------------------------------- /edge-auth/provider/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/provider/types.go -------------------------------------------------------------------------------- /edge-auth/provider/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/provider/types_test.go -------------------------------------------------------------------------------- /edge-auth/static/bootstrap-social.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/static/bootstrap-social.css -------------------------------------------------------------------------------- /edge-auth/template/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/template/home.html -------------------------------------------------------------------------------- /edge-auth/template/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/template/login.html -------------------------------------------------------------------------------- /edge-auth/vendor/github.com/alexellis/hmac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/vendor/github.com/alexellis/hmac/README.md -------------------------------------------------------------------------------- /edge-auth/vendor/github.com/alexellis/hmac/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/vendor/github.com/alexellis/hmac/pkg.go -------------------------------------------------------------------------------- /edge-auth/vendor/github.com/dgrijalva/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /edge-auth/vendor/github.com/dgrijalva/jwt-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/vendor/github.com/dgrijalva/jwt-go/LICENSE -------------------------------------------------------------------------------- /edge-auth/vendor/github.com/dgrijalva/jwt-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/vendor/github.com/dgrijalva/jwt-go/doc.go -------------------------------------------------------------------------------- /edge-auth/vendor/github.com/dgrijalva/jwt-go/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/vendor/github.com/dgrijalva/jwt-go/hmac.go -------------------------------------------------------------------------------- /edge-auth/vendor/github.com/dgrijalva/jwt-go/none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/vendor/github.com/dgrijalva/jwt-go/none.go -------------------------------------------------------------------------------- /edge-auth/vendor/github.com/dgrijalva/jwt-go/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-auth/vendor/github.com/dgrijalva/jwt-go/rsa.go -------------------------------------------------------------------------------- /edge-router/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/.dockerignore -------------------------------------------------------------------------------- /edge-router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/.gitignore -------------------------------------------------------------------------------- /edge-router/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/Dockerfile -------------------------------------------------------------------------------- /edge-router/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/Gopkg.lock -------------------------------------------------------------------------------- /edge-router/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/Gopkg.toml -------------------------------------------------------------------------------- /edge-router/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/Makefile -------------------------------------------------------------------------------- /edge-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/README.md -------------------------------------------------------------------------------- /edge-router/auth_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/auth_proxy.go -------------------------------------------------------------------------------- /edge-router/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/config.go -------------------------------------------------------------------------------- /edge-router/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/config_test.go -------------------------------------------------------------------------------- /edge-router/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/go.mod -------------------------------------------------------------------------------- /edge-router/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/health.go -------------------------------------------------------------------------------- /edge-router/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/main.go -------------------------------------------------------------------------------- /edge-router/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/edge-router/main_test.go -------------------------------------------------------------------------------- /function-logs/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/Gopkg.lock -------------------------------------------------------------------------------- /function-logs/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/Gopkg.toml -------------------------------------------------------------------------------- /function-logs/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/go.mod -------------------------------------------------------------------------------- /function-logs/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/handler.go -------------------------------------------------------------------------------- /function-logs/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/handler_test.go -------------------------------------------------------------------------------- /function-logs/vendor/github.com/drone/envsubst/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.out 2 | -------------------------------------------------------------------------------- /function-logs/vendor/github.com/mitchellh/go-homedir/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/go-homedir 2 | -------------------------------------------------------------------------------- /function-logs/vendor/github.com/ryanuber/go-glob/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ryanuber/go-glob 2 | -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /function-logs/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/function-logs/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /garbage-collect/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/Gopkg.lock -------------------------------------------------------------------------------- /garbage-collect/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/Gopkg.toml -------------------------------------------------------------------------------- /garbage-collect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/README.md -------------------------------------------------------------------------------- /garbage-collect/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/go.mod -------------------------------------------------------------------------------- /garbage-collect/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/handler.go -------------------------------------------------------------------------------- /garbage-collect/vendor/github.com/drone/envsubst/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.out 2 | -------------------------------------------------------------------------------- /garbage-collect/vendor/github.com/mitchellh/go-homedir/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/go-homedir 2 | -------------------------------------------------------------------------------- /garbage-collect/vendor/github.com/ryanuber/go-glob/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ryanuber/go-glob 2 | -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /garbage-collect/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/garbage-collect/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /gateway_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gateway_config.yml -------------------------------------------------------------------------------- /git-tar/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/Dockerfile -------------------------------------------------------------------------------- /git-tar/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/Gopkg.lock -------------------------------------------------------------------------------- /git-tar/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/Gopkg.toml -------------------------------------------------------------------------------- /git-tar/function/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/function/format_test.go -------------------------------------------------------------------------------- /git-tar/function/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/function/handler.go -------------------------------------------------------------------------------- /git-tar/function/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/function/handler_test.go -------------------------------------------------------------------------------- /git-tar/function/ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/function/ops.go -------------------------------------------------------------------------------- /git-tar/function/ops_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/function/ops_test.go -------------------------------------------------------------------------------- /git-tar/function/repo_fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/function/repo_fetcher.go -------------------------------------------------------------------------------- /git-tar/function/repo_fetcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/function/repo_fetcher_test.go -------------------------------------------------------------------------------- /git-tar/function/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/function/types.go -------------------------------------------------------------------------------- /git-tar/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/go.mod -------------------------------------------------------------------------------- /git-tar/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/main.go -------------------------------------------------------------------------------- /git-tar/vendor/code.cloudfoundry.org/bytefmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/code.cloudfoundry.org/bytefmt/LICENSE -------------------------------------------------------------------------------- /git-tar/vendor/code.cloudfoundry.org/bytefmt/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/code.cloudfoundry.org/bytefmt/NOTICE -------------------------------------------------------------------------------- /git-tar/vendor/github.com/alexellis/derek/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/alexellis/derek/LICENSE -------------------------------------------------------------------------------- /git-tar/vendor/github.com/alexellis/hmac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/alexellis/hmac/README.md -------------------------------------------------------------------------------- /git-tar/vendor/github.com/alexellis/hmac/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/alexellis/hmac/pkg.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/dgrijalva/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /git-tar/vendor/github.com/dgrijalva/jwt-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/dgrijalva/jwt-go/LICENSE -------------------------------------------------------------------------------- /git-tar/vendor/github.com/dgrijalva/jwt-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/dgrijalva/jwt-go/README.md -------------------------------------------------------------------------------- /git-tar/vendor/github.com/dgrijalva/jwt-go/claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/dgrijalva/jwt-go/claims.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/dgrijalva/jwt-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/dgrijalva/jwt-go/doc.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/dgrijalva/jwt-go/ecdsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/dgrijalva/jwt-go/ecdsa.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/dgrijalva/jwt-go/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/dgrijalva/jwt-go/errors.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/dgrijalva/jwt-go/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/dgrijalva/jwt-go/hmac.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/dgrijalva/jwt-go/none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/dgrijalva/jwt-go/none.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/dgrijalva/jwt-go/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/dgrijalva/jwt-go/parser.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/dgrijalva/jwt-go/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/dgrijalva/jwt-go/rsa.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/dgrijalva/jwt-go/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/dgrijalva/jwt-go/token.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/drone/envsubst/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/drone/envsubst/.drone.yml -------------------------------------------------------------------------------- /git-tar/vendor/github.com/drone/envsubst/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.out 2 | -------------------------------------------------------------------------------- /git-tar/vendor/github.com/drone/envsubst/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/drone/envsubst/LICENSE -------------------------------------------------------------------------------- /git-tar/vendor/github.com/drone/envsubst/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/drone/envsubst/README -------------------------------------------------------------------------------- /git-tar/vendor/github.com/drone/envsubst/eval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/drone/envsubst/eval.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/drone/envsubst/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/drone/envsubst/funcs.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/drone/envsubst/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/drone/envsubst/go.mod -------------------------------------------------------------------------------- /git-tar/vendor/github.com/drone/envsubst/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/drone/envsubst/go.sum -------------------------------------------------------------------------------- /git-tar/vendor/github.com/drone/envsubst/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/drone/envsubst/template.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/openfaas/faas-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/openfaas/faas-cli/LICENSE -------------------------------------------------------------------------------- /git-tar/vendor/github.com/ryanuber/go-glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/ryanuber/go-glob/LICENSE -------------------------------------------------------------------------------- /git-tar/vendor/github.com/ryanuber/go-glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/ryanuber/go-glob/README.md -------------------------------------------------------------------------------- /git-tar/vendor/github.com/ryanuber/go-glob/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/github.com/ryanuber/go-glob/glob.go -------------------------------------------------------------------------------- /git-tar/vendor/github.com/ryanuber/go-glob/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ryanuber/go-glob 2 | -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /git-tar/vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/git-tar/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /github-event/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-event/Gopkg.lock -------------------------------------------------------------------------------- /github-event/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-event/Gopkg.toml -------------------------------------------------------------------------------- /github-event/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-event/go.mod -------------------------------------------------------------------------------- /github-event/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-event/go.sum -------------------------------------------------------------------------------- /github-event/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-event/handler.go -------------------------------------------------------------------------------- /github-event/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-event/handler_test.go -------------------------------------------------------------------------------- /github-event/vendor/github.com/alexellis/hmac/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-event/vendor/github.com/alexellis/hmac/pkg.go -------------------------------------------------------------------------------- /github-push/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-push/Gopkg.lock -------------------------------------------------------------------------------- /github-push/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-push/Gopkg.toml -------------------------------------------------------------------------------- /github-push/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-push/go.mod -------------------------------------------------------------------------------- /github-push/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-push/handler.go -------------------------------------------------------------------------------- /github-push/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-push/handler_test.go -------------------------------------------------------------------------------- /github-push/vendor/github.com/alexellis/hmac/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-push/vendor/github.com/alexellis/hmac/LICENSE -------------------------------------------------------------------------------- /github-push/vendor/github.com/alexellis/hmac/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-push/vendor/github.com/alexellis/hmac/pkg.go -------------------------------------------------------------------------------- /github-status/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/Gopkg.lock -------------------------------------------------------------------------------- /github-status/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/Gopkg.toml -------------------------------------------------------------------------------- /github-status/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/go.mod -------------------------------------------------------------------------------- /github-status/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/handler.go -------------------------------------------------------------------------------- /github-status/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/handler_test.go -------------------------------------------------------------------------------- /github-status/url_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/url_builder.go -------------------------------------------------------------------------------- /github-status/url_builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/url_builder_test.go -------------------------------------------------------------------------------- /github-status/vendor/github.com/dgrijalva/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /github-status/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /github-status/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /github-status/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /github-status/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /github-status/vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /github-status/vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /github-status/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /github-status/vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /github-status/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /github-status/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github-status/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/github.yml -------------------------------------------------------------------------------- /gitlab-event/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-event/Gopkg.lock -------------------------------------------------------------------------------- /gitlab-event/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-event/Gopkg.toml -------------------------------------------------------------------------------- /gitlab-event/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-event/go.mod -------------------------------------------------------------------------------- /gitlab-event/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-event/handler.go -------------------------------------------------------------------------------- /gitlab-event/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-event/handler_test.go -------------------------------------------------------------------------------- /gitlab-event/vendor/github.com/alexellis/hmac/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-event/vendor/github.com/alexellis/hmac/pkg.go -------------------------------------------------------------------------------- /gitlab-push/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-push/Gopkg.lock -------------------------------------------------------------------------------- /gitlab-push/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-push/Gopkg.toml -------------------------------------------------------------------------------- /gitlab-push/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-push/go.mod -------------------------------------------------------------------------------- /gitlab-push/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-push/handler.go -------------------------------------------------------------------------------- /gitlab-push/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-push/handler_test.go -------------------------------------------------------------------------------- /gitlab-push/vendor/github.com/alexellis/hmac/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-push/vendor/github.com/alexellis/hmac/pkg.go -------------------------------------------------------------------------------- /gitlab-status/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-status/Gopkg.lock -------------------------------------------------------------------------------- /gitlab-status/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-status/Gopkg.toml -------------------------------------------------------------------------------- /gitlab-status/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-status/go.mod -------------------------------------------------------------------------------- /gitlab-status/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-status/handler.go -------------------------------------------------------------------------------- /gitlab-status/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab-status/handler_test.go -------------------------------------------------------------------------------- /gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/gitlab.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/go.sum -------------------------------------------------------------------------------- /import-secrets/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/Gopkg.lock -------------------------------------------------------------------------------- /import-secrets/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/Gopkg.toml -------------------------------------------------------------------------------- /import-secrets/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/go.mod -------------------------------------------------------------------------------- /import-secrets/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/handler.go -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/bitnami-labs/sealed-secrets/pkg/apis/sealed-secrets/v1alpha1/boilerplate.go.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/mkmik/multierror/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mkmik/multierror 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-secrets/vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/oauth2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/oauth2/go.mod -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/oauth2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/oauth2/go.sum -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /import-secrets/vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /import-secrets/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/klog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/klog/.travis.yml -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/klog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/klog/CONTRIBUTING.md -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/klog/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/klog/OWNERS -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/klog/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/klog/RELEASE.md -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/klog/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/klog/SECURITY_CONTACTS -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/klog/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/klog/code-of-conduct.md -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/klog/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/klog/go.mod -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/klog/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/klog/go.sum -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/klog/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/klog/klog_file.go -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/utils/inotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/utils/inotify/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/k8s.io/utils/inotify/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/k8s.io/utils/inotify/PATENTS -------------------------------------------------------------------------------- /import-secrets/vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /import-secrets/vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /import-secrets/vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /import-secrets/vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /import-secrets/vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /import-secrets/vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /import-secrets/vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /import-secrets/vendor/sigs.k8s.io/yaml/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/sigs.k8s.io/yaml/go.mod -------------------------------------------------------------------------------- /import-secrets/vendor/sigs.k8s.io/yaml/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/sigs.k8s.io/yaml/go.sum -------------------------------------------------------------------------------- /import-secrets/vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /import-secrets/vendor/sigs.k8s.io/yaml/yaml_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/import-secrets/vendor/sigs.k8s.io/yaml/yaml_go110.go -------------------------------------------------------------------------------- /list-functions/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/Gopkg.lock -------------------------------------------------------------------------------- /list-functions/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/Gopkg.toml -------------------------------------------------------------------------------- /list-functions/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/go.mod -------------------------------------------------------------------------------- /list-functions/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/handler.go -------------------------------------------------------------------------------- /list-functions/vendor/github.com/drone/envsubst/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.out 2 | -------------------------------------------------------------------------------- /list-functions/vendor/github.com/mitchellh/go-homedir/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/go-homedir 2 | -------------------------------------------------------------------------------- /list-functions/vendor/github.com/ryanuber/go-glob/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ryanuber/go-glob 2 | -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /list-functions/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/list-functions/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /metrics/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/Gopkg.lock -------------------------------------------------------------------------------- /metrics/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/Gopkg.toml -------------------------------------------------------------------------------- /metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/README.md -------------------------------------------------------------------------------- /metrics/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/go.mod -------------------------------------------------------------------------------- /metrics/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/go.sum -------------------------------------------------------------------------------- /metrics/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/handler.go -------------------------------------------------------------------------------- /metrics/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/handler_test.go -------------------------------------------------------------------------------- /metrics/vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /metrics/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /metrics/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /metrics/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /metrics/vendor/github.com/openfaas/faas/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/openfaas/faas/LICENSE -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/prometheus/procfs/Makefile -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /metrics/vendor/github.com/prometheus/procfs/xfrm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/metrics/vendor/github.com/prometheus/procfs/xfrm.go -------------------------------------------------------------------------------- /of-builder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/.gitignore -------------------------------------------------------------------------------- /of-builder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/Dockerfile -------------------------------------------------------------------------------- /of-builder/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/Gopkg.lock -------------------------------------------------------------------------------- /of-builder/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/Gopkg.toml -------------------------------------------------------------------------------- /of-builder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/Makefile -------------------------------------------------------------------------------- /of-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/README.md -------------------------------------------------------------------------------- /of-builder/deploy_swarm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/deploy_swarm.sh -------------------------------------------------------------------------------- /of-builder/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/go.mod -------------------------------------------------------------------------------- /of-builder/healthz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/healthz.go -------------------------------------------------------------------------------- /of-builder/local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/local.md -------------------------------------------------------------------------------- /of-builder/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/main.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /of-builder/vendor/github.com/Nvveen/Gotty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/Nvveen/Gotty/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/Nvveen/Gotty/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/Nvveen/Gotty/README -------------------------------------------------------------------------------- /of-builder/vendor/github.com/Nvveen/Gotty/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/Nvveen/Gotty/TODO -------------------------------------------------------------------------------- /of-builder/vendor/github.com/Nvveen/Gotty/gotty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/Nvveen/Gotty/gotty.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/Nvveen/Gotty/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/Nvveen/Gotty/parser.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/Nvveen/Gotty/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/Nvveen/Gotty/types.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/alexellis/hmac/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/alexellis/hmac/pkg.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/cli/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/cli/AUTHORS -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/cli/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/cli/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/cli/NOTICE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/cli/opts/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/cli/opts/env.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/cli/opts/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/cli/opts/file.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/cli/opts/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/cli/opts/ip.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/cli/opts/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/cli/opts/opts.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/cli/opts/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/cli/opts/port.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/docker/project/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /of-builder/vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /of-builder/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/google/shlex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/google/shlex/COPYING -------------------------------------------------------------------------------- /of-builder/vendor/github.com/google/shlex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/google/shlex/README -------------------------------------------------------------------------------- /of-builder/vendor/github.com/google/shlex/shlex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/google/shlex/shlex.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/gorilla/context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/gorilla/context/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/gorilla/context/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/gorilla/context/doc.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/gorilla/mux/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/gorilla/mux/.travis.yml -------------------------------------------------------------------------------- /of-builder/vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/gorilla/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/gorilla/mux/README.md -------------------------------------------------------------------------------- /of-builder/vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/gorilla/mux/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/gorilla/mux/regexp.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/moby/buildkit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/moby/buildkit/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /of-builder/vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /of-builder/vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /of-builder/vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /of-builder/vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /of-builder/vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /of-builder/vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sync/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sync/AUTHORS -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sync/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sync/CONTRIBUTORS -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /of-builder/vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/go16.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/go17.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/grpclb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/grpclb.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /of-builder/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/of-builder/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /pipeline-log/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/Gopkg.lock -------------------------------------------------------------------------------- /pipeline-log/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/Gopkg.toml -------------------------------------------------------------------------------- /pipeline-log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/README.md -------------------------------------------------------------------------------- /pipeline-log/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/go.mod -------------------------------------------------------------------------------- /pipeline-log/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/handler.go -------------------------------------------------------------------------------- /pipeline-log/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/handler_test.go -------------------------------------------------------------------------------- /pipeline-log/vendor/github.com/alexellis/hmac/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/github.com/alexellis/hmac/pkg.go -------------------------------------------------------------------------------- /pipeline-log/vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/konsorten/go-windows-terminal-sequences 2 | -------------------------------------------------------------------------------- /pipeline-log/vendor/github.com/minio/minio-go/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.test 3 | validator 4 | -------------------------------------------------------------------------------- /pipeline-log/vendor/github.com/minio/minio-go/NOTICE: -------------------------------------------------------------------------------- 1 | minio-go 2 | Copyright 2015-2017 MinIO, Inc. -------------------------------------------------------------------------------- /pipeline-log/vendor/github.com/minio/minio-go/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/github.com/minio/minio-go/api.go -------------------------------------------------------------------------------- /pipeline-log/vendor/github.com/minio/minio-go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/github.com/minio/minio-go/go.mod -------------------------------------------------------------------------------- /pipeline-log/vendor/github.com/minio/minio-go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/github.com/minio/minio-go/go.sum -------------------------------------------------------------------------------- /pipeline-log/vendor/github.com/mitchellh/go-homedir/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/go-homedir 2 | -------------------------------------------------------------------------------- /pipeline-log/vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/cpu/cpu_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/cpu/cpu_x86.s -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /pipeline-log/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/.travis.yml -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/deprecated.go -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/helper.go -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /pipeline-log/vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/pipeline-log/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /register-image/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/register-image/Gopkg.lock -------------------------------------------------------------------------------- /register-image/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/register-image/Gopkg.toml -------------------------------------------------------------------------------- /register-image/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/register-image/go.mod -------------------------------------------------------------------------------- /register-image/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/register-image/handler.go -------------------------------------------------------------------------------- /register-image/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/register-image/handler_test.go -------------------------------------------------------------------------------- /sample-json/fullsample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sample-json/fullsample.json -------------------------------------------------------------------------------- /sample-json/go-fns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sample-json/go-fns.json -------------------------------------------------------------------------------- /sample-json/idea-raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sample-json/idea-raw.json -------------------------------------------------------------------------------- /sample-json/idea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sample-json/idea.json -------------------------------------------------------------------------------- /sample-json/push-apr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sample-json/push-apr.json -------------------------------------------------------------------------------- /sample-json/raw-gh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sample-json/raw-gh.json -------------------------------------------------------------------------------- /sample-json/raw-non-master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sample-json/raw-non-master.json -------------------------------------------------------------------------------- /sample-json/refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sample-json/refs.json -------------------------------------------------------------------------------- /sample-json/remove_installation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sample-json/remove_installation.json -------------------------------------------------------------------------------- /sdk/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/Gopkg.lock -------------------------------------------------------------------------------- /sdk/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/Gopkg.toml -------------------------------------------------------------------------------- /sdk/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/audit.go -------------------------------------------------------------------------------- /sdk/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/auth.go -------------------------------------------------------------------------------- /sdk/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/auth_test.go -------------------------------------------------------------------------------- /sdk/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/build.go -------------------------------------------------------------------------------- /sdk/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/constants.go -------------------------------------------------------------------------------- /sdk/customers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/customers.go -------------------------------------------------------------------------------- /sdk/customers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/customers_test.go -------------------------------------------------------------------------------- /sdk/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/event.go -------------------------------------------------------------------------------- /sdk/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/event_test.go -------------------------------------------------------------------------------- /sdk/events_scm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/events_scm.go -------------------------------------------------------------------------------- /sdk/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/function.go -------------------------------------------------------------------------------- /sdk/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/go.mod -------------------------------------------------------------------------------- /sdk/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/go.sum -------------------------------------------------------------------------------- /sdk/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/hmac.go -------------------------------------------------------------------------------- /sdk/hmac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/hmac_test.go -------------------------------------------------------------------------------- /sdk/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/interfaces.go -------------------------------------------------------------------------------- /sdk/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/pipeline.go -------------------------------------------------------------------------------- /sdk/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/secrets.go -------------------------------------------------------------------------------- /sdk/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/service.go -------------------------------------------------------------------------------- /sdk/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/service_test.go -------------------------------------------------------------------------------- /sdk/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/status.go -------------------------------------------------------------------------------- /sdk/url_builders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/url_builders.go -------------------------------------------------------------------------------- /sdk/url_builders_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/url_builders_test.go -------------------------------------------------------------------------------- /sdk/vendor/github.com/alexellis/hmac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/vendor/github.com/alexellis/hmac/README.md -------------------------------------------------------------------------------- /sdk/vendor/github.com/alexellis/hmac/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/sdk/vendor/github.com/alexellis/hmac/pkg.go -------------------------------------------------------------------------------- /slack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/slack.yml -------------------------------------------------------------------------------- /stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/stack.yml -------------------------------------------------------------------------------- /yaml/core/edge-auth-dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/yaml/core/edge-auth-dep.yml -------------------------------------------------------------------------------- /yaml/core/edge-auth-svc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/yaml/core/edge-auth-svc.yml -------------------------------------------------------------------------------- /yaml/core/edge-router-dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/yaml/core/edge-router-dep.yml -------------------------------------------------------------------------------- /yaml/core/edge-router-svc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/yaml/core/edge-router-svc.yml -------------------------------------------------------------------------------- /yaml/core/of-builder-dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/yaml/core/of-builder-dep.yml -------------------------------------------------------------------------------- /yaml/core/of-builder-svc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/yaml/core/of-builder-svc.yml -------------------------------------------------------------------------------- /yaml/core/rbac-import-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/yaml/core/rbac-import-secrets.yml -------------------------------------------------------------------------------- /yaml/network-policy/ns-openfaas-fn-net-policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/yaml/network-policy/ns-openfaas-fn-net-policy.yml -------------------------------------------------------------------------------- /yaml/network-policy/ns-openfaas-net-policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/openfaas-cloud/HEAD/yaml/network-policy/ns-openfaas-net-policy.yml --------------------------------------------------------------------------------