├── README.md ├── addon ├── dns-deployment.yaml ├── dnsconfig-pod.yaml └── kubernetes-dashboard.yaml ├── annotation └── annotation.yaml ├── autoscaling ├── autoscaling.yaml └── wordpress-autoscaling.yaml ├── canary ├── deployment-v1.yaml ├── deployment-v2.yaml └── myapp-svc.yaml ├── configmap ├── configmap-dev.yaml ├── configmap-prod.yaml ├── deployment-config01.yaml ├── deployment-config02.yaml └── deployment-config03.yaml ├── cronjob ├── cronjob-concurrency.yaml └── cronjob.yaml ├── customresourcedefinition ├── crd-mypod-sample.yaml ├── crd-mypod-spec-additional-partition.yaml ├── crd-mypod-spec-validation.yaml ├── crd-mypod-spec.yaml └── kube-prometheus │ ├── .travis.yml │ └── manifests │ ├── 00namespace-namespace.yaml │ ├── 0prometheus-operator-0alertmanagerCustomResourceDefinition.yaml │ ├── 0prometheus-operator-0podmonitorCustomResourceDefinition.yaml │ ├── 0prometheus-operator-0prometheusCustomResourceDefinition.yaml │ ├── 0prometheus-operator-0prometheusruleCustomResourceDefinition.yaml │ ├── 0prometheus-operator-0servicemonitorCustomResourceDefinition.yaml │ ├── 0prometheus-operator-clusterRole.yaml │ ├── 0prometheus-operator-clusterRoleBinding.yaml │ ├── 0prometheus-operator-deployment.yaml │ ├── 0prometheus-operator-service.yaml │ ├── 0prometheus-operator-serviceAccount.yaml │ ├── 0prometheus-operator-serviceMonitor.yaml │ ├── alertmanager-alertmanager.yaml │ ├── alertmanager-secret.yaml │ ├── alertmanager-service.yaml │ ├── alertmanager-serviceAccount.yaml │ ├── alertmanager-serviceMonitor.yaml │ ├── grafana-dashboardDatasources.yaml │ ├── grafana-dashboardDefinitions.yaml │ ├── grafana-dashboardSources.yaml │ ├── grafana-deployment.yaml │ ├── grafana-service.yaml │ ├── grafana-serviceAccount.yaml │ ├── grafana-serviceMonitor.yaml │ ├── kube-state-metrics-clusterRole.yaml │ ├── kube-state-metrics-clusterRoleBinding.yaml │ ├── kube-state-metrics-deployment.yaml │ ├── kube-state-metrics-role.yaml │ ├── kube-state-metrics-roleBinding.yaml │ ├── kube-state-metrics-service.yaml │ ├── kube-state-metrics-serviceAccount.yaml │ ├── kube-state-metrics-serviceMonitor.yaml │ ├── node-exporter-clusterRole.yaml │ ├── node-exporter-clusterRoleBinding.yaml │ ├── node-exporter-daemonset.yaml │ ├── node-exporter-service.yaml │ ├── node-exporter-serviceAccount.yaml │ ├── node-exporter-serviceMonitor.yaml │ ├── prometheus-adapter-apiService.yaml │ ├── prometheus-adapter-clusterRole.yaml │ ├── prometheus-adapter-clusterRoleAggregatedMetricsReader.yaml │ ├── prometheus-adapter-clusterRoleBinding.yaml │ ├── prometheus-adapter-clusterRoleBindingDelegator.yaml │ ├── prometheus-adapter-clusterRoleServerResources.yaml │ ├── prometheus-adapter-configMap.yaml │ ├── prometheus-adapter-deployment.yaml │ ├── prometheus-adapter-roleBindingAuthReader.yaml │ ├── prometheus-adapter-service.yaml │ ├── prometheus-adapter-serviceAccount.yaml │ ├── prometheus-clusterRole.yaml │ ├── prometheus-clusterRoleBinding.yaml │ ├── prometheus-prometheus.yaml │ ├── prometheus-roleBindingConfig.yaml │ ├── prometheus-roleBindingSpecificNamespaces.yaml │ ├── prometheus-roleConfig.yaml │ ├── prometheus-roleSpecificNamespaces.yaml │ ├── prometheus-rules.yaml │ ├── prometheus-service.yaml │ ├── prometheus-serviceAccount.yaml │ ├── prometheus-serviceMonitor.yaml │ ├── prometheus-serviceMonitorApiserver.yaml │ ├── prometheus-serviceMonitorCoreDNS.yaml │ ├── prometheus-serviceMonitorKubeControllerManager.yaml │ ├── prometheus-serviceMonitorKubeScheduler.yaml │ └── prometheus-serviceMonitorKubelet.yaml ├── daemonset └── daemonset.yaml ├── deployment ├── deployment-nginx.yaml ├── deployment-sample.yaml ├── deployment-toleration.yaml └── nginx-app.yaml ├── ingress ├── ingress-basic.yaml ├── ingress-nginx │ ├── .codecov.yml │ ├── .dockerignore │ ├── .luacheckrc │ ├── .travis.yml │ ├── .travis │ │ ├── common.sh │ │ └── publish-docs.sh │ ├── CONTRIBUTING.md │ ├── Changelog.md │ ├── LICENSE │ ├── Makefile │ ├── OWNERS │ ├── OWNERS_ALIASES │ ├── README.md │ ├── SECURITY_CONTACTS │ ├── build │ │ ├── build-plugin.sh │ │ ├── build.sh │ │ ├── cover.sh │ │ ├── dev-env.sh │ │ ├── mkdocs │ │ │ ├── Dockerfile │ │ │ └── entrypoint.sh │ │ ├── run-e2e-suite.sh │ │ ├── run-in-docker.sh │ │ ├── run-ingress-controller.sh │ │ ├── static-check.sh │ │ ├── test-lua.sh │ │ └── test.sh │ ├── cmd │ │ ├── dbg │ │ │ └── main.go │ │ ├── nginx │ │ │ ├── flags.go │ │ │ ├── flags_test.go │ │ │ ├── main.go │ │ │ └── main_test.go │ │ └── plugin │ │ │ ├── commands │ │ │ ├── backends │ │ │ │ └── backends.go │ │ │ ├── certs │ │ │ │ └── certs.go │ │ │ ├── conf │ │ │ │ └── conf.go │ │ │ ├── exec │ │ │ │ └── exec.go │ │ │ ├── general │ │ │ │ └── general.go │ │ │ ├── info │ │ │ │ └── info.go │ │ │ ├── ingresses │ │ │ │ └── ingresses.go │ │ │ ├── lint │ │ │ │ └── main.go │ │ │ ├── logs │ │ │ │ └── logs.go │ │ │ └── ssh │ │ │ │ └── ssh.go │ │ │ ├── ingress-nginx.yaml.tmpl │ │ │ ├── kubectl │ │ │ └── kubectl.go │ │ │ ├── lints │ │ │ ├── deployment.go │ │ │ └── ingress.go │ │ │ ├── main.go │ │ │ ├── request │ │ │ └── request.go │ │ │ └── util │ │ │ └── util.go │ ├── code-of-conduct.md │ ├── deploy │ │ ├── README.md │ │ ├── aws │ │ │ ├── l4 │ │ │ │ ├── kustomization.yaml │ │ │ │ └── service-l4.yaml │ │ │ ├── l7 │ │ │ │ ├── kustomization.yaml │ │ │ │ └── service-l7.yaml │ │ │ └── nlb │ │ │ │ ├── kustomization.yaml │ │ │ │ └── service-nlb.yaml │ │ ├── baremetal │ │ │ ├── kustomization.yaml │ │ │ └── service-nodeport.yaml │ │ ├── cloud-generic │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── role-binding.yaml │ │ │ ├── role.yaml │ │ │ ├── service-account.yaml │ │ │ └── service.yaml │ │ ├── cluster-wide │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ └── kustomization.yaml │ │ ├── grafana │ │ │ ├── dashboards │ │ │ │ ├── README.md │ │ │ │ ├── nginx.json │ │ │ │ └── screenshot.png │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ └── service.yaml │ │ ├── minikube │ │ │ └── kustomization.yaml │ │ ├── prometheus │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── prometheus.yaml │ │ │ ├── role-binding.yaml │ │ │ ├── role.yaml │ │ │ ├── service-account.yaml │ │ │ └── service.yaml │ │ ├── static │ │ │ ├── configmap.yaml │ │ │ ├── mandatory.yaml │ │ │ ├── namespace.yaml │ │ │ ├── provider │ │ │ │ ├── aws │ │ │ │ │ ├── patch-configmap-l4.yaml │ │ │ │ │ ├── patch-configmap-l7.yaml │ │ │ │ │ ├── service-l4.yaml │ │ │ │ │ ├── service-l7.yaml │ │ │ │ │ └── service-nlb.yaml │ │ │ │ ├── baremetal │ │ │ │ │ └── service-nodeport.yaml │ │ │ │ └── cloud-generic.yaml │ │ │ ├── rbac.yaml │ │ │ └── with-rbac.yaml │ │ ├── validating-webhook.yaml.tpl │ │ └── with-validating-webhook.yaml.tpl │ ├── docs │ │ ├── deploy │ │ │ ├── baremetal.md │ │ │ ├── index.md │ │ │ ├── rbac.md │ │ │ ├── upgrade.md │ │ │ └── validating-webhook.md │ │ ├── development.md │ │ ├── enhancements │ │ │ ├── 20190724-only-dynamic-ssl.md │ │ │ ├── 20190815-zone-aware-routing.md │ │ │ ├── README.md │ │ │ └── YYYYMMDD-kep-template.md │ │ ├── examples │ │ │ ├── PREREQUISITES.md │ │ │ ├── affinity │ │ │ │ └── cookie │ │ │ │ │ ├── README.md │ │ │ │ │ └── ingress.yaml │ │ │ ├── auth │ │ │ │ ├── basic │ │ │ │ │ └── README.md │ │ │ │ ├── client-certs │ │ │ │ │ ├── README.md │ │ │ │ │ └── ingress.yaml │ │ │ │ ├── external-auth │ │ │ │ │ ├── README.md │ │ │ │ │ └── ingress.yaml │ │ │ │ └── oauth-external-auth │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dashboard-ingress.yaml │ │ │ │ │ ├── images │ │ │ │ │ ├── dashboard.png │ │ │ │ │ ├── github-auth.png │ │ │ │ │ ├── oauth-login.png │ │ │ │ │ ├── register-oauth-app-2.png │ │ │ │ │ └── register-oauth-app.png │ │ │ │ │ └── oauth2-proxy.yaml │ │ │ ├── chashsubset │ │ │ │ └── deployment.yaml │ │ │ ├── customization │ │ │ │ ├── configuration-snippets │ │ │ │ │ ├── README.md │ │ │ │ │ └── ingress.yaml │ │ │ │ ├── custom-configuration │ │ │ │ │ ├── README.md │ │ │ │ │ └── configmap.yaml │ │ │ │ ├── custom-errors │ │ │ │ │ ├── README.md │ │ │ │ │ └── custom-default-backend.yaml │ │ │ │ ├── custom-headers │ │ │ │ │ ├── README.md │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ └── custom-headers.yaml │ │ │ │ ├── external-auth-headers │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── authsvc │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── authsvc.go │ │ │ │ │ ├── deploy │ │ │ │ │ │ ├── auth-service.yaml │ │ │ │ │ │ └── echo-service.yaml │ │ │ │ │ └── echosvc │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── echosvc.go │ │ │ │ ├── ssl-dh-param │ │ │ │ │ ├── README.md │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ └── ssl-dh-param.yaml │ │ │ │ └── sysctl │ │ │ │ │ ├── README.md │ │ │ │ │ └── patch.json │ │ │ ├── docker-registry │ │ │ │ ├── README.md │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress-with-tls.yaml │ │ │ │ └── ingress-without-tls.yaml │ │ │ ├── grpc │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── cert.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── svc.yaml │ │ │ ├── http-svc.yaml │ │ │ ├── index.md │ │ │ ├── multi-tls │ │ │ │ ├── README.md │ │ │ │ └── multi-tls.yaml │ │ │ ├── psp │ │ │ │ ├── README.md │ │ │ │ └── psp.yaml │ │ │ ├── rewrite │ │ │ │ └── README.md │ │ │ ├── static-ip │ │ │ │ ├── README.md │ │ │ │ ├── nginx-ingress-controller.yaml │ │ │ │ ├── nginx-ingress.yaml │ │ │ │ └── static-ip-svc.yaml │ │ │ └── tls-termination │ │ │ │ ├── README.md │ │ │ │ └── ingress.yaml │ │ ├── extra.css │ │ ├── how-it-works.md │ │ ├── images │ │ │ ├── baremetal │ │ │ │ ├── baremetal_overview.gliffy │ │ │ │ ├── baremetal_overview.jpg │ │ │ │ ├── cloud_overview.gliffy │ │ │ │ ├── cloud_overview.jpg │ │ │ │ ├── hostnetwork.gliffy │ │ │ │ ├── hostnetwork.jpg │ │ │ │ ├── metallb.gliffy │ │ │ │ ├── metallb.jpg │ │ │ │ ├── nodeport.gliffy │ │ │ │ ├── nodeport.jpg │ │ │ │ ├── user_edge.gliffy │ │ │ │ └── user_edge.jpg │ │ │ ├── elb-l7-listener.png │ │ │ ├── grafana.png │ │ │ ├── jaeger-demo.png │ │ │ ├── prometheus-dashboard.png │ │ │ └── zipkin-demo.png │ │ ├── index.md │ │ ├── kubectl-plugin.md │ │ ├── troubleshooting.md │ │ └── user-guide │ │ │ ├── basic-usage.md │ │ │ ├── cli-arguments.md │ │ │ ├── convert_arguments_to_doc.py │ │ │ ├── custom-errors.md │ │ │ ├── default-backend.md │ │ │ ├── exposing-tcp-udp-services.md │ │ │ ├── external-articles.md │ │ │ ├── fcgi-services.md │ │ │ ├── ingress-path-matching.md │ │ │ ├── miscellaneous.md │ │ │ ├── monitoring.md │ │ │ ├── multiple-ingress.md │ │ │ ├── nginx-configuration │ │ │ ├── annotations.md │ │ │ ├── configmap.md │ │ │ ├── custom-template.md │ │ │ ├── index.md │ │ │ └── log-format.md │ │ │ ├── third-party-addons │ │ │ ├── modsecurity.md │ │ │ └── opentracing.md │ │ │ └── tls.md │ ├── go.mod │ ├── go.sum │ ├── hack │ │ ├── boilerplate │ │ │ ├── boilerplate.go.txt │ │ │ ├── boilerplate.py │ │ │ ├── boilerplate.py.txt │ │ │ └── boilerplate.sh.txt │ │ ├── kube-env.sh │ │ ├── tools.go │ │ ├── update-codegen.sh │ │ ├── update-toc.sh │ │ ├── verify-all.sh │ │ ├── verify-boilerplate.sh │ │ ├── verify-codegen.sh │ │ ├── verify-gofmt.sh │ │ ├── verify-golint.sh │ │ └── verify-lualint.sh │ ├── images │ │ ├── 404-server │ │ │ └── README.md │ │ ├── OWNERS │ │ ├── custom-error-pages │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── main.go │ │ │ ├── metrics.go │ │ │ └── rootfs │ │ │ │ ├── Dockerfile │ │ │ │ ├── etc │ │ │ │ └── mime.types │ │ │ │ └── www │ │ │ │ ├── 404.html │ │ │ │ ├── 404.json │ │ │ │ ├── 4xx.html │ │ │ │ ├── 4xx.json │ │ │ │ ├── 500.html │ │ │ │ ├── 500.json │ │ │ │ ├── 5xx.html │ │ │ │ └── 5xx.json │ │ ├── e2e │ │ │ ├── Dockerfile │ │ │ └── Makefile │ │ ├── fastcgi-helloserver │ │ │ ├── Makefile │ │ │ ├── main.go │ │ │ └── rootfs │ │ │ │ └── Dockerfile │ │ ├── grpc-fortune-teller │ │ │ ├── .gitignore │ │ │ ├── BUILD.bazel │ │ │ ├── Gopkg.lock │ │ │ ├── README.md │ │ │ ├── WORKSPACE │ │ │ ├── app │ │ │ │ ├── BUILD.bazel │ │ │ │ └── main.go │ │ │ └── proto │ │ │ │ └── fortune │ │ │ │ ├── BUILD.bazel │ │ │ │ └── fortune.proto │ │ ├── nginx │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── rc.yaml │ │ │ └── rootfs │ │ │ │ ├── Dockerfile │ │ │ │ ├── build.sh │ │ │ │ ├── etc │ │ │ │ └── nginx │ │ │ │ │ └── geoip │ │ │ │ │ ├── GeoIP.dat │ │ │ │ │ ├── GeoIPASNum.dat │ │ │ │ │ └── GeoLiteCity.dat │ │ │ │ └── install_lua_resty_waf.sh │ │ └── ubuntu-slim │ │ │ └── README.md │ ├── internal │ │ ├── admission │ │ │ └── controller │ │ │ │ ├── main.go │ │ │ │ ├── main_test.go │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ ├── file │ │ │ ├── file.go │ │ │ ├── file_test.go │ │ │ ├── filesystem.go │ │ │ └── structure.go │ │ ├── ingress │ │ │ ├── annotations │ │ │ │ ├── alias │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── annotations.go │ │ │ │ ├── annotations_test.go │ │ │ │ ├── auth │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── authreq │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── authreqglobal │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── authtls │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── backendprotocol │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── canary │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── class │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── clientbodybuffersize │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── connection │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── cors │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── customhttperrors │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── defaultbackend │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── fastcgi │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── http2pushpreload │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── influxdb │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── ipwhitelist │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── loadbalancing │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── log │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── luarestywaf │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── mirror │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── modsecurity │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── parser │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── portinredirect │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── proxy │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── proxyssl │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── ratelimit │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── redirect │ │ │ │ │ ├── redirect.go │ │ │ │ │ └── redirect_test.go │ │ │ │ ├── rewrite │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── satisfy │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── secureupstream │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── serversnippet │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── serviceupstream │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── sessionaffinity │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── snippet │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── sslcipher │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── sslpassthrough │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── upstreamhashby │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── upstreamvhost │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ │ └── xforwardedprefix │ │ │ │ │ ├── main.go │ │ │ │ │ └── main_test.go │ │ │ ├── controller │ │ │ │ ├── certificate.go │ │ │ │ ├── checker.go │ │ │ │ ├── checker_test.go │ │ │ │ ├── config │ │ │ │ │ ├── config.go │ │ │ │ │ └── config_test.go │ │ │ │ ├── controller.go │ │ │ │ ├── controller_test.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── endpoints_test.go │ │ │ │ ├── nginx.go │ │ │ │ ├── nginx_test.go │ │ │ │ ├── process │ │ │ │ │ ├── nginx.go │ │ │ │ │ └── nginx_test.go │ │ │ │ ├── status.go │ │ │ │ ├── store │ │ │ │ │ ├── backend_ssl.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── ingress_annotation.go │ │ │ │ │ ├── local_secret.go │ │ │ │ │ ├── local_secret_test.go │ │ │ │ │ ├── objectref.go │ │ │ │ │ ├── objectref_test.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── store.go │ │ │ │ │ └── store_test.go │ │ │ │ ├── tcp.go │ │ │ │ ├── template │ │ │ │ │ ├── buffer_pool.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── configmap_test.go │ │ │ │ │ ├── template.go │ │ │ │ │ └── template_test.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── defaults │ │ │ │ └── main.go │ │ │ ├── errors │ │ │ │ ├── errors.go │ │ │ │ └── errors_test.go │ │ │ ├── metric │ │ │ │ ├── collectors │ │ │ │ │ ├── controller.go │ │ │ │ │ ├── controller_test.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── nginx_status.go │ │ │ │ │ ├── nginx_status_test.go │ │ │ │ │ ├── process.go │ │ │ │ │ ├── process_test.go │ │ │ │ │ ├── socket.go │ │ │ │ │ ├── socket_test.go │ │ │ │ │ └── testutils.go │ │ │ │ ├── dummy.go │ │ │ │ └── main.go │ │ │ ├── resolver │ │ │ │ ├── main.go │ │ │ │ └── mock.go │ │ │ ├── sslcert.go │ │ │ ├── status │ │ │ │ ├── status.go │ │ │ │ └── status_test.go │ │ │ ├── types.go │ │ │ ├── types_equals.go │ │ │ ├── types_equals_test.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── k8s │ │ │ ├── main.go │ │ │ └── main_test.go │ │ ├── net │ │ │ ├── dns │ │ │ │ ├── dns.go │ │ │ │ └── dns_test.go │ │ │ ├── ipnet.go │ │ │ ├── ipnet_test.go │ │ │ ├── net.go │ │ │ ├── net_test.go │ │ │ └── ssl │ │ │ │ ├── ssl.go │ │ │ │ └── ssl_test.go │ │ ├── nginx │ │ │ └── main.go │ │ ├── runtime │ │ │ └── cpu.go │ │ ├── sets │ │ │ ├── match.go │ │ │ └── match_test.go │ │ ├── task │ │ │ ├── queue.go │ │ │ └── queue_test.go │ │ └── watch │ │ │ ├── file_watcher.go │ │ │ └── file_watcher_test.go │ ├── labels.yaml │ ├── mkdocs.yml │ ├── requirements-docs.txt │ ├── rootfs │ │ ├── Dockerfile │ │ ├── etc │ │ │ └── nginx │ │ │ │ ├── lua │ │ │ │ ├── balancer.lua │ │ │ │ ├── balancer │ │ │ │ │ ├── chash.lua │ │ │ │ │ ├── chashsubset.lua │ │ │ │ │ ├── ewma.lua │ │ │ │ │ ├── resty.lua │ │ │ │ │ ├── round_robin.lua │ │ │ │ │ └── sticky.lua │ │ │ │ ├── certificate.lua │ │ │ │ ├── configuration.lua │ │ │ │ ├── lua_ingress.lua │ │ │ │ ├── monitor.lua │ │ │ │ ├── plugins.lua │ │ │ │ ├── plugins │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── main.lua │ │ │ │ ├── tcp_udp_balancer.lua │ │ │ │ ├── tcp_udp_configuration.lua │ │ │ │ ├── test │ │ │ │ │ ├── balancer │ │ │ │ │ │ ├── chash_test.lua │ │ │ │ │ │ ├── chashsubset_test.lua │ │ │ │ │ │ ├── ewma_test.lua │ │ │ │ │ │ └── sticky_test.lua │ │ │ │ │ ├── balancer_test.lua │ │ │ │ │ ├── certificate_test.lua │ │ │ │ │ ├── configuration_test.lua │ │ │ │ │ ├── fixtures │ │ │ │ │ │ ├── default-cert.pem │ │ │ │ │ │ └── example-com-cert.pem │ │ │ │ │ ├── helpers.lua │ │ │ │ │ ├── lua_ingress_test.lua │ │ │ │ │ ├── monitor_test.lua │ │ │ │ │ ├── run.lua │ │ │ │ │ ├── util │ │ │ │ │ │ ├── dns_test.lua │ │ │ │ │ │ └── resolv_conf_test.lua │ │ │ │ │ └── util_test.lua │ │ │ │ ├── util.lua │ │ │ │ └── util │ │ │ │ │ ├── dns.lua │ │ │ │ │ ├── resolv_conf.lua │ │ │ │ │ └── split.lua │ │ │ │ ├── nginx.conf │ │ │ │ ├── opentracing.json │ │ │ │ └── template │ │ │ │ └── nginx.tmpl │ │ └── ingress-controller │ │ │ ├── clean-nginx-conf.sh │ │ │ └── indent.sh │ ├── test │ │ ├── data │ │ │ └── config.json │ │ ├── e2e-image │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── e2e.sh │ │ │ ├── namespace-overlays │ │ │ │ └── forwarded-port-headers │ │ │ │ │ ├── deployment-patch.yaml │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── service-patch.yaml │ │ │ └── overlay │ │ │ │ ├── deployment-e2e.yaml │ │ │ │ ├── deployment-extension-group-patch.yaml │ │ │ │ ├── deployment-namespace-patch.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── service-cluster-patch.yaml │ │ │ │ └── service-protocol-tcp.yaml │ │ ├── e2e-prow │ │ │ ├── Dockerfile │ │ │ └── Makefile │ │ ├── e2e │ │ │ ├── annotations │ │ │ │ ├── affinity.go │ │ │ │ ├── alias.go │ │ │ │ ├── approot.go │ │ │ │ ├── auth.go │ │ │ │ ├── authtls.go │ │ │ │ ├── backendprotocol.go │ │ │ │ ├── canary.go │ │ │ │ ├── clientbodybuffersize.go │ │ │ │ ├── connection.go │ │ │ │ ├── cors.go │ │ │ │ ├── customhttperrors.go │ │ │ │ ├── default_backend.go │ │ │ │ ├── fastcgi.go │ │ │ │ ├── forcesslredirect.go │ │ │ │ ├── fromtowwwredirect.go │ │ │ │ ├── grpc.go │ │ │ │ ├── http2pushpreload.go │ │ │ │ ├── influxdb.go │ │ │ │ ├── ipwhitelist.go │ │ │ │ ├── log.go │ │ │ │ ├── luarestywaf.go │ │ │ │ ├── mirror.go │ │ │ │ ├── modsecurity.go │ │ │ │ ├── proxy.go │ │ │ │ ├── proxyssl.go │ │ │ │ ├── redirect.go │ │ │ │ ├── rewrite.go │ │ │ │ ├── satisfy.go │ │ │ │ ├── serversnippet.go │ │ │ │ ├── snippet.go │ │ │ │ ├── sslciphers.go │ │ │ │ ├── upstreamhashby.go │ │ │ │ ├── upstreamvhost.go │ │ │ │ └── xforwardedprefix.go │ │ │ ├── dbg │ │ │ │ └── main.go │ │ │ ├── defaultbackend │ │ │ │ ├── custom_default_backend.go │ │ │ │ ├── default_backend.go │ │ │ │ ├── ssl.go │ │ │ │ └── with_hosts.go │ │ │ ├── down.sh │ │ │ ├── e2e.go │ │ │ ├── e2e_test.go │ │ │ ├── framework │ │ │ │ ├── cleanup.go │ │ │ │ ├── deployment.go │ │ │ │ ├── exec.go │ │ │ │ ├── fastcgi_helloserver.go │ │ │ │ ├── framework.go │ │ │ │ ├── grpc_fortune_teller.go │ │ │ │ ├── influxdb.go │ │ │ │ ├── k8s.go │ │ │ │ ├── logs.go │ │ │ │ ├── metrics.go │ │ │ │ ├── ssl.go │ │ │ │ ├── test_context.go │ │ │ │ └── util.go │ │ │ ├── gracefulshutdown │ │ │ │ └── slow_requests.go │ │ │ ├── kind.yaml │ │ │ ├── leaks │ │ │ │ └── lua_ssl.go │ │ │ ├── loadbalance │ │ │ │ ├── configmap.go │ │ │ │ ├── ewma.go │ │ │ │ └── round_robin.go │ │ │ ├── lua │ │ │ │ ├── dynamic_certificates.go │ │ │ │ └── dynamic_configuration.go │ │ │ ├── run.sh │ │ │ ├── servicebackend │ │ │ │ ├── service_backend.go │ │ │ │ └── service_externalname.go │ │ │ ├── settings │ │ │ │ ├── configmap_change.go │ │ │ │ ├── default_ssl_certificate.go │ │ │ │ ├── disable_catch_all.go │ │ │ │ ├── forwarded_headers.go │ │ │ │ ├── geoip2.go │ │ │ │ ├── global_access_block.go │ │ │ │ ├── global_external_auth.go │ │ │ │ ├── ingress_class.go │ │ │ │ ├── listen_nondefault_ports.go │ │ │ │ ├── lua_shared_dicts.go │ │ │ │ ├── main_snippet.go │ │ │ │ ├── multi_accept.go │ │ │ │ ├── no_auth_locations.go │ │ │ │ ├── pod_security_policy.go │ │ │ │ ├── pod_security_policy_volumes.go │ │ │ │ ├── proxy_host.go │ │ │ │ ├── proxy_protocol.go │ │ │ │ ├── server_tokens.go │ │ │ │ └── tls.go │ │ │ ├── ssl │ │ │ │ └── secret_update.go │ │ │ ├── status │ │ │ │ └── update.go │ │ │ ├── tcpudp │ │ │ │ └── tcp.go │ │ │ └── wait-for-nginx.sh │ │ └── manifests │ │ │ ├── configuration-a.json │ │ │ ├── configuration-b.json │ │ │ └── configuration-c.json │ ├── vendor │ │ ├── cloud.google.com │ │ │ └── go │ │ │ │ ├── LICENSE │ │ │ │ └── compute │ │ │ │ └── metadata │ │ │ │ └── metadata.go │ │ ├── github.com │ │ │ ├── Azure │ │ │ │ └── go-autorest │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── autorest │ │ │ │ │ ├── adal │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── devicetoken.go │ │ │ │ │ │ ├── persist.go │ │ │ │ │ │ ├── sender.go │ │ │ │ │ │ └── token.go │ │ │ │ │ ├── authorization.go │ │ │ │ │ ├── autorest.go │ │ │ │ │ ├── azure │ │ │ │ │ │ ├── async.go │ │ │ │ │ │ ├── azure.go │ │ │ │ │ │ ├── environments.go │ │ │ │ │ │ ├── metadata_environment.go │ │ │ │ │ │ └── rp.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── date │ │ │ │ │ │ ├── date.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ ├── timerfc1123.go │ │ │ │ │ │ ├── unixtime.go │ │ │ │ │ │ └── utility.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── preparer.go │ │ │ │ │ ├── responder.go │ │ │ │ │ ├── retriablerequest.go │ │ │ │ │ ├── retriablerequest_1.7.go │ │ │ │ │ ├── retriablerequest_1.8.go │ │ │ │ │ ├── sender.go │ │ │ │ │ ├── utility.go │ │ │ │ │ └── version.go │ │ │ │ │ ├── logger │ │ │ │ │ └── logger.go │ │ │ │ │ └── version │ │ │ │ │ └── version.go │ │ │ ├── BurntSushi │ │ │ │ └── toml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── COMPATIBLE │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_meta.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encoding_types.go │ │ │ │ │ ├── encoding_types_1.1.go │ │ │ │ │ ├── lex.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── session.vim │ │ │ │ │ ├── type_check.go │ │ │ │ │ └── type_fields.go │ │ │ ├── PuerkitoBio │ │ │ │ ├── purell │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── purell.go │ │ │ │ └── urlesc │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── urlesc.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_js.go │ │ │ │ │ ├── terminal_check_notappengine.go │ │ │ │ │ ├── terminal_check_unix.go │ │ │ │ │ ├── terminal_check_windows.go │ │ │ │ │ ├── terminal_notwindows.go │ │ │ │ │ ├── terminal_windows.go │ │ │ │ │ ├── text_formatter.go │ │ │ │ │ └── writer.go │ │ │ ├── armon │ │ │ │ └── go-proxyproto │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── protocol.go │ │ │ ├── beorn7 │ │ │ │ └── perks │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── quantile │ │ │ │ │ ├── exampledata.txt │ │ │ │ │ └── stream.go │ │ │ ├── davecgh │ │ │ │ └── go-spew │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── spew │ │ │ │ │ ├── bypass.go │ │ │ │ │ ├── bypasssafe.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── dump.go │ │ │ │ │ ├── format.go │ │ │ │ │ └── spew.go │ │ │ ├── dgrijalva │ │ │ │ └── jwt-go │ │ │ │ │ ├── .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 │ │ │ ├── docker │ │ │ │ ├── go-units │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── circle.yml │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── size.go │ │ │ │ │ └── ulimit.go │ │ │ │ └── spdystream │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── LICENSE.docs │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── priority.go │ │ │ │ │ ├── spdy │ │ │ │ │ ├── dictionary.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── write.go │ │ │ │ │ ├── stream.go │ │ │ │ │ └── utils.go │ │ │ ├── eapache │ │ │ │ ├── channels │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── batching_channel.go │ │ │ │ │ ├── black_hole.go │ │ │ │ │ ├── channels.go │ │ │ │ │ ├── infinite_channel.go │ │ │ │ │ ├── native_channel.go │ │ │ │ │ ├── overflowing_channel.go │ │ │ │ │ ├── resizable_channel.go │ │ │ │ │ ├── ring_channel.go │ │ │ │ │ └── shared_buffer.go │ │ │ │ └── queue │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── queue.go │ │ │ ├── emicklei │ │ │ │ └── go-restful │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Srcfile │ │ │ │ │ ├── bench_test.sh │ │ │ │ │ ├── compress.go │ │ │ │ │ ├── compressor_cache.go │ │ │ │ │ ├── compressor_pools.go │ │ │ │ │ ├── compressors.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── cors_filter.go │ │ │ │ │ ├── coverage.sh │ │ │ │ │ ├── curly.go │ │ │ │ │ ├── curly_route.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── entity_accessors.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── json.go │ │ │ │ │ ├── jsoniter.go │ │ │ │ │ ├── jsr311.go │ │ │ │ │ ├── log │ │ │ │ │ └── log.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── mime.go │ │ │ │ │ ├── options_filter.go │ │ │ │ │ ├── parameter.go │ │ │ │ │ ├── path_expression.go │ │ │ │ │ ├── path_processor.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── response.go │ │ │ │ │ ├── route.go │ │ │ │ │ ├── route_builder.go │ │ │ │ │ ├── router.go │ │ │ │ │ ├── service_error.go │ │ │ │ │ ├── web_service.go │ │ │ │ │ └── web_service_container.go │ │ │ ├── evanphx │ │ │ │ └── json-patch │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── merge.go │ │ │ │ │ └── patch.go │ │ │ ├── fsnotify │ │ │ │ └── fsnotify │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fen.go │ │ │ │ │ ├── fsnotify.go │ │ │ │ │ ├── inotify.go │ │ │ │ │ ├── inotify_poller.go │ │ │ │ │ ├── kqueue.go │ │ │ │ │ ├── open_mode_bsd.go │ │ │ │ │ ├── open_mode_darwin.go │ │ │ │ │ └── windows.go │ │ │ ├── fullsailor │ │ │ │ └── pkcs7 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ber.go │ │ │ │ │ ├── pkcs7.go │ │ │ │ │ └── x509.go │ │ │ ├── ghodss │ │ │ │ └── yaml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fields.go │ │ │ │ │ ├── yaml.go │ │ │ │ │ └── yaml_go110.go │ │ │ ├── go-logr │ │ │ │ ├── logr │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── logr.go │ │ │ │ └── zapr │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Gopkg.lock │ │ │ │ │ ├── Gopkg.toml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── zapr.go │ │ │ ├── go-openapi │ │ │ │ ├── jsonpointer │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── go.sum │ │ │ │ │ └── pointer.go │ │ │ │ ├── jsonreference │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── go.sum │ │ │ │ │ └── reference.go │ │ │ │ ├── spec │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .golangci.yml │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bindata.go │ │ │ │ │ ├── contact_info.go │ │ │ │ │ ├── debug.go │ │ │ │ │ ├── expander.go │ │ │ │ │ ├── external_docs.go │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── go.sum │ │ │ │ │ ├── header.go │ │ │ │ │ ├── info.go │ │ │ │ │ ├── items.go │ │ │ │ │ ├── license.go │ │ │ │ │ ├── operation.go │ │ │ │ │ ├── parameter.go │ │ │ │ │ ├── path_item.go │ │ │ │ │ ├── paths.go │ │ │ │ │ ├── ref.go │ │ │ │ │ ├── response.go │ │ │ │ │ ├── responses.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── security_scheme.go │ │ │ │ │ ├── spec.go │ │ │ │ │ ├── swagger.go │ │ │ │ │ ├── tag.go │ │ │ │ │ └── xml_object.go │ │ │ │ └── swag │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .golangci.yml │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── convert.go │ │ │ │ │ ├── convert_types.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── go.sum │ │ │ │ │ ├── json.go │ │ │ │ │ ├── loading.go │ │ │ │ │ ├── net.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── post_go18.go │ │ │ │ │ ├── post_go19.go │ │ │ │ │ ├── pre_go18.go │ │ │ │ │ ├── pre_go19.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── yaml.go │ │ │ ├── gogo │ │ │ │ └── protobuf │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── gogoproto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── gogo.pb.go │ │ │ │ │ ├── gogo.pb.golden │ │ │ │ │ ├── gogo.proto │ │ │ │ │ └── helper.go │ │ │ │ │ ├── proto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clone.go │ │ │ │ │ ├── custom_gogo.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── discard.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration_gogo.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encode_gogo.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ ├── extensions_gogo.go │ │ │ │ │ ├── lib.go │ │ │ │ │ ├── lib_gogo.go │ │ │ │ │ ├── message_set.go │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ ├── pointer_reflect_gogo.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── pointer_unsafe_gogo.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── properties_gogo.go │ │ │ │ │ ├── skip_gogo.go │ │ │ │ │ ├── table_marshal.go │ │ │ │ │ ├── table_marshal_gogo.go │ │ │ │ │ ├── table_merge.go │ │ │ │ │ ├── table_unmarshal.go │ │ │ │ │ ├── table_unmarshal_gogo.go │ │ │ │ │ ├── text.go │ │ │ │ │ ├── text_gogo.go │ │ │ │ │ ├── text_parser.go │ │ │ │ │ ├── timestamp.go │ │ │ │ │ └── timestamp_gogo.go │ │ │ │ │ ├── protoc-gen-gogo │ │ │ │ │ └── descriptor │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── descriptor.go │ │ │ │ │ │ ├── descriptor.pb.go │ │ │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ │ │ └── helper.go │ │ │ │ │ └── sortkeys │ │ │ │ │ └── sortkeys.go │ │ │ ├── golang │ │ │ │ ├── groupcache │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── lru │ │ │ │ │ │ └── lru.go │ │ │ │ └── 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 │ │ │ ├── gomarkdown │ │ │ │ └── markdown │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── ast │ │ │ │ │ ├── attribute.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── node.go │ │ │ │ │ └── print.go │ │ │ │ │ ├── html │ │ │ │ │ ├── callouts.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── esc.go │ │ │ │ │ ├── renderer.go │ │ │ │ │ └── smartypants.go │ │ │ │ │ └── parser │ │ │ │ │ ├── aside.go │ │ │ │ │ ├── attribute.go │ │ │ │ │ ├── block.go │ │ │ │ │ ├── callout.go │ │ │ │ │ ├── caption.go │ │ │ │ │ ├── citation.go │ │ │ │ │ ├── esc.go │ │ │ │ │ ├── figures.go │ │ │ │ │ ├── include.go │ │ │ │ │ ├── inline.go │ │ │ │ │ ├── matter.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── parser.go │ │ │ │ │ └── ref.go │ │ │ ├── google │ │ │ │ ├── btree │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── btree.go │ │ │ │ ├── go-cmp │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── cmp │ │ │ │ │ │ ├── compare.go │ │ │ │ │ │ ├── export_panic.go │ │ │ │ │ │ ├── export_unsafe.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── diff │ │ │ │ │ │ │ ├── debug_disable.go │ │ │ │ │ │ │ ├── debug_enable.go │ │ │ │ │ │ │ └── diff.go │ │ │ │ │ │ ├── flags │ │ │ │ │ │ │ ├── flags.go │ │ │ │ │ │ │ ├── toolchain_legacy.go │ │ │ │ │ │ │ └── toolchain_recent.go │ │ │ │ │ │ ├── function │ │ │ │ │ │ │ └── func.go │ │ │ │ │ │ └── value │ │ │ │ │ │ │ ├── pointer_purego.go │ │ │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ │ │ ├── sort.go │ │ │ │ │ │ │ └── zero.go │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ ├── path.go │ │ │ │ │ │ ├── report.go │ │ │ │ │ │ ├── report_compare.go │ │ │ │ │ │ ├── report_reflect.go │ │ │ │ │ │ ├── report_slices.go │ │ │ │ │ │ ├── report_text.go │ │ │ │ │ │ └── report_value.go │ │ │ │ ├── gofuzz │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fuzz.go │ │ │ │ │ └── go.mod │ │ │ │ └── uuid │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dce.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── hash.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── node_js.go │ │ │ │ │ ├── node_net.go │ │ │ │ │ ├── sql.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── uuid.go │ │ │ │ │ ├── version1.go │ │ │ │ │ └── version4.go │ │ │ ├── googleapis │ │ │ │ └── gnostic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── OpenAPIv2 │ │ │ │ │ ├── OpenAPIv2.go │ │ │ │ │ ├── OpenAPIv2.pb.go │ │ │ │ │ ├── OpenAPIv2.proto │ │ │ │ │ ├── README.md │ │ │ │ │ └── openapi-2.0.json │ │ │ │ │ ├── compiler │ │ │ │ │ ├── README.md │ │ │ │ │ ├── context.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── extension-handler.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── main.go │ │ │ │ │ └── reader.go │ │ │ │ │ └── extensions │ │ │ │ │ ├── COMPILE-EXTENSION.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── extension.pb.go │ │ │ │ │ ├── extension.proto │ │ │ │ │ └── extensions.go │ │ │ ├── gophercloud │ │ │ │ └── gophercloud │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── .zuul.yaml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── auth_options.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoint_search.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── openstack │ │ │ │ │ ├── auth_env.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoint_location.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── v2 │ │ │ │ │ │ │ ├── tenants │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ │ └── tokens │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ └── tokens │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── utils │ │ │ │ │ │ ├── base_endpoint.go │ │ │ │ │ │ └── choose_version.go │ │ │ │ │ ├── pagination │ │ │ │ │ ├── http.go │ │ │ │ │ ├── linked.go │ │ │ │ │ ├── marker.go │ │ │ │ │ ├── pager.go │ │ │ │ │ ├── pkg.go │ │ │ │ │ └── single.go │ │ │ │ │ ├── params.go │ │ │ │ │ ├── provider_client.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── service_client.go │ │ │ │ │ └── util.go │ │ │ ├── gregjones │ │ │ │ └── httpcache │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── diskcache │ │ │ │ │ └── diskcache.go │ │ │ │ │ └── httpcache.go │ │ │ ├── hashicorp │ │ │ │ └── golang-lru │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── 2q.go │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── arc.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── lru.go │ │ │ │ │ └── simplelru │ │ │ │ │ ├── lru.go │ │ │ │ │ └── lru_interface.go │ │ │ ├── hpcloud │ │ │ │ └── tail │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ ├── ratelimiter │ │ │ │ │ ├── Licence │ │ │ │ │ ├── leakybucket.go │ │ │ │ │ ├── memory.go │ │ │ │ │ └── storage.go │ │ │ │ │ ├── tail.go │ │ │ │ │ ├── tail_posix.go │ │ │ │ │ ├── tail_windows.go │ │ │ │ │ ├── util │ │ │ │ │ └── util.go │ │ │ │ │ ├── watch │ │ │ │ │ ├── filechanges.go │ │ │ │ │ ├── inotify.go │ │ │ │ │ ├── inotify_tracker.go │ │ │ │ │ ├── polling.go │ │ │ │ │ └── watch.go │ │ │ │ │ └── winfile │ │ │ │ │ └── winfile.go │ │ │ ├── imdario │ │ │ │ └── mergo │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── merge.go │ │ │ │ │ └── mergo.go │ │ │ ├── inconshreveable │ │ │ │ └── mousetrap │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── trap_others.go │ │ │ │ │ ├── trap_windows.go │ │ │ │ │ └── trap_windows_1.4.go │ │ │ ├── json-iterator │ │ │ │ └── go │ │ │ │ │ ├── .codecov.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── Gopkg.lock │ │ │ │ │ ├── Gopkg.toml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── adapter.go │ │ │ │ │ ├── any.go │ │ │ │ │ ├── any_array.go │ │ │ │ │ ├── any_bool.go │ │ │ │ │ ├── any_float.go │ │ │ │ │ ├── any_int32.go │ │ │ │ │ ├── any_int64.go │ │ │ │ │ ├── any_invalid.go │ │ │ │ │ ├── any_nil.go │ │ │ │ │ ├── any_number.go │ │ │ │ │ ├── any_object.go │ │ │ │ │ ├── any_str.go │ │ │ │ │ ├── any_uint32.go │ │ │ │ │ ├── any_uint64.go │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── config.go │ │ │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── iter_array.go │ │ │ │ │ ├── iter_float.go │ │ │ │ │ ├── iter_int.go │ │ │ │ │ ├── iter_object.go │ │ │ │ │ ├── iter_skip.go │ │ │ │ │ ├── iter_skip_sloppy.go │ │ │ │ │ ├── iter_skip_strict.go │ │ │ │ │ ├── iter_str.go │ │ │ │ │ ├── jsoniter.go │ │ │ │ │ ├── pool.go │ │ │ │ │ ├── reflect.go │ │ │ │ │ ├── reflect_array.go │ │ │ │ │ ├── reflect_dynamic.go │ │ │ │ │ ├── reflect_extension.go │ │ │ │ │ ├── reflect_json_number.go │ │ │ │ │ ├── reflect_json_raw_message.go │ │ │ │ │ ├── reflect_map.go │ │ │ │ │ ├── reflect_marshaler.go │ │ │ │ │ ├── reflect_native.go │ │ │ │ │ ├── reflect_optional.go │ │ │ │ │ ├── reflect_slice.go │ │ │ │ │ ├── reflect_struct_decoder.go │ │ │ │ │ ├── reflect_struct_encoder.go │ │ │ │ │ ├── stream.go │ │ │ │ │ ├── stream_float.go │ │ │ │ │ ├── stream_int.go │ │ │ │ │ ├── stream_str.go │ │ │ │ │ └── test.sh │ │ │ ├── konsorten │ │ │ │ └── go-windows-terminal-sequences │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── go.mod │ │ │ │ │ └── sequences.go │ │ │ ├── kylelemons │ │ │ │ └── godebug │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── diff │ │ │ │ │ └── diff.go │ │ │ │ │ └── pretty │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── public.go │ │ │ │ │ ├── reflect.go │ │ │ │ │ └── structure.go │ │ │ ├── mailru │ │ │ │ └── easyjson │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── buffer │ │ │ │ │ └── pool.go │ │ │ │ │ ├── jlexer │ │ │ │ │ ├── bytestostr.go │ │ │ │ │ ├── bytestostr_nounsafe.go │ │ │ │ │ ├── error.go │ │ │ │ │ └── lexer.go │ │ │ │ │ └── jwriter │ │ │ │ │ └── writer.go │ │ │ ├── matttproud │ │ │ │ └── golang_protobuf_extensions │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ └── pbutil │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── encode.go │ │ │ ├── mitchellh │ │ │ │ ├── go-ps │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Vagrantfile │ │ │ │ │ ├── process.go │ │ │ │ │ ├── process_darwin.go │ │ │ │ │ ├── process_freebsd.go │ │ │ │ │ ├── process_linux.go │ │ │ │ │ ├── process_solaris.go │ │ │ │ │ ├── process_unix.go │ │ │ │ │ └── process_windows.go │ │ │ │ ├── hashstructure │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── hashstructure.go │ │ │ │ │ └── include.go │ │ │ │ └── mapstructure │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── decode_hooks.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── go.mod │ │ │ │ │ └── mapstructure.go │ │ │ ├── mmarkdown │ │ │ │ └── mmark │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── mast │ │ │ │ │ ├── bibliography.go │ │ │ │ │ ├── index.go │ │ │ │ │ ├── nodes.go │ │ │ │ │ ├── reference │ │ │ │ │ │ └── reference.go │ │ │ │ │ └── title.go │ │ │ │ │ └── mparser │ │ │ │ │ ├── bibliography.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ ├── hook.go │ │ │ │ │ ├── include.go │ │ │ │ │ ├── index.go │ │ │ │ │ └── title.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 │ │ │ ├── moul │ │ │ │ ├── http2curl │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ └── http2curl.go │ │ │ │ └── pb │ │ │ │ │ └── grpcbin │ │ │ │ │ └── go-grpc │ │ │ │ │ ├── export.go │ │ │ │ │ └── grpcbin.pb.go │ │ │ ├── ncabatoff │ │ │ │ ├── go-seq │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── seq │ │ │ │ │ │ └── compare.go │ │ │ │ ├── process-exporter │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .goreleaser.yml │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Dockerfile.cloudbuild │ │ │ │ │ ├── Gopkg.lock │ │ │ │ │ ├── Gopkg.toml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cloudbuild.release.yaml │ │ │ │ │ ├── cloudbuild.yaml │ │ │ │ │ ├── common.go │ │ │ │ │ └── proc │ │ │ │ │ │ ├── grouper.go │ │ │ │ │ │ ├── read.go │ │ │ │ │ │ └── tracker.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 │ │ │ │ │ ├── proc_status.go │ │ │ │ │ ├── stat.go │ │ │ │ │ ├── ttar │ │ │ │ │ ├── xfrm.go │ │ │ │ │ └── xfs │ │ │ │ │ ├── parse.go │ │ │ │ │ └── xfs.go │ │ │ ├── onsi │ │ │ │ ├── ginkgo │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── RELEASING.md │ │ │ │ │ ├── config │ │ │ │ │ │ └── config.go │ │ │ │ │ ├── ginkgo_dsl.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── codelocation │ │ │ │ │ │ │ └── code_location.go │ │ │ │ │ │ ├── containernode │ │ │ │ │ │ │ └── container_node.go │ │ │ │ │ │ ├── failer │ │ │ │ │ │ │ └── failer.go │ │ │ │ │ │ ├── leafnodes │ │ │ │ │ │ │ ├── benchmarker.go │ │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ │ ├── it_node.go │ │ │ │ │ │ │ ├── measure_node.go │ │ │ │ │ │ │ ├── runner.go │ │ │ │ │ │ │ ├── setup_nodes.go │ │ │ │ │ │ │ ├── suite_nodes.go │ │ │ │ │ │ │ ├── synchronized_after_suite_node.go │ │ │ │ │ │ │ └── synchronized_before_suite_node.go │ │ │ │ │ │ ├── remote │ │ │ │ │ │ │ ├── aggregator.go │ │ │ │ │ │ │ ├── forwarding_reporter.go │ │ │ │ │ │ │ ├── output_interceptor.go │ │ │ │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ │ │ │ ├── output_interceptor_win.go │ │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ │ ├── syscall_dup_linux_arm64.go │ │ │ │ │ │ │ ├── syscall_dup_solaris.go │ │ │ │ │ │ │ └── syscall_dup_unix.go │ │ │ │ │ │ ├── spec │ │ │ │ │ │ │ ├── spec.go │ │ │ │ │ │ │ └── specs.go │ │ │ │ │ │ ├── spec_iterator │ │ │ │ │ │ │ ├── index_computer.go │ │ │ │ │ │ │ ├── parallel_spec_iterator.go │ │ │ │ │ │ │ ├── serial_spec_iterator.go │ │ │ │ │ │ │ ├── sharded_parallel_spec_iterator.go │ │ │ │ │ │ │ └── spec_iterator.go │ │ │ │ │ │ ├── specrunner │ │ │ │ │ │ │ ├── random_id.go │ │ │ │ │ │ │ └── spec_runner.go │ │ │ │ │ │ ├── suite │ │ │ │ │ │ │ └── suite.go │ │ │ │ │ │ ├── testingtproxy │ │ │ │ │ │ │ └── testing_t_proxy.go │ │ │ │ │ │ └── writer │ │ │ │ │ │ │ ├── fake_writer.go │ │ │ │ │ │ │ └── writer.go │ │ │ │ │ ├── reporters │ │ │ │ │ │ ├── default_reporter.go │ │ │ │ │ │ ├── fake_reporter.go │ │ │ │ │ │ ├── junit_reporter.go │ │ │ │ │ │ ├── reporter.go │ │ │ │ │ │ ├── stenographer │ │ │ │ │ │ │ ├── console_logging.go │ │ │ │ │ │ │ ├── fake_stenographer.go │ │ │ │ │ │ │ ├── stenographer.go │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ │ ├── go-colorable │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── colorable_others.go │ │ │ │ │ │ │ │ ├── colorable_windows.go │ │ │ │ │ │ │ │ └── noncolorable.go │ │ │ │ │ │ │ │ └── go-isatty │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ │ │ │ └── isatty_windows.go │ │ │ │ │ │ └── teamcity_reporter.go │ │ │ │ │ └── types │ │ │ │ │ │ ├── code_location.go │ │ │ │ │ │ ├── synchronization.go │ │ │ │ │ │ └── types.go │ │ │ │ └── gomega │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── RELEASING.md │ │ │ │ │ ├── format │ │ │ │ │ └── format.go │ │ │ │ │ ├── gbytes │ │ │ │ │ ├── buffer.go │ │ │ │ │ ├── io_wrappers.go │ │ │ │ │ └── say_matcher.go │ │ │ │ │ ├── gexec │ │ │ │ │ ├── build.go │ │ │ │ │ ├── exit_matcher.go │ │ │ │ │ ├── prefixed_writer.go │ │ │ │ │ └── session.go │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── go.sum │ │ │ │ │ ├── gomega_dsl.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── assertion │ │ │ │ │ │ └── assertion.go │ │ │ │ │ ├── asyncassertion │ │ │ │ │ │ └── async_assertion.go │ │ │ │ │ ├── oraclematcher │ │ │ │ │ │ └── oracle_matcher.go │ │ │ │ │ └── testingtsupport │ │ │ │ │ │ └── testing_t_support.go │ │ │ │ │ ├── matchers.go │ │ │ │ │ ├── matchers │ │ │ │ │ ├── and.go │ │ │ │ │ ├── assignable_to_type_of_matcher.go │ │ │ │ │ ├── attributes_slice.go │ │ │ │ │ ├── be_a_directory.go │ │ │ │ │ ├── be_a_regular_file.go │ │ │ │ │ ├── be_an_existing_file.go │ │ │ │ │ ├── be_closed_matcher.go │ │ │ │ │ ├── be_empty_matcher.go │ │ │ │ │ ├── be_equivalent_to_matcher.go │ │ │ │ │ ├── be_false_matcher.go │ │ │ │ │ ├── be_identical_to.go │ │ │ │ │ ├── be_nil_matcher.go │ │ │ │ │ ├── be_numerically_matcher.go │ │ │ │ │ ├── be_sent_matcher.go │ │ │ │ │ ├── be_temporally_matcher.go │ │ │ │ │ ├── be_true_matcher.go │ │ │ │ │ ├── be_zero_matcher.go │ │ │ │ │ ├── consist_of.go │ │ │ │ │ ├── contain_element_matcher.go │ │ │ │ │ ├── contain_substring_matcher.go │ │ │ │ │ ├── equal_matcher.go │ │ │ │ │ ├── have_cap_matcher.go │ │ │ │ │ ├── have_key_matcher.go │ │ │ │ │ ├── have_key_with_value_matcher.go │ │ │ │ │ ├── have_len_matcher.go │ │ │ │ │ ├── have_occurred_matcher.go │ │ │ │ │ ├── have_prefix_matcher.go │ │ │ │ │ ├── have_suffix_matcher.go │ │ │ │ │ ├── match_error_matcher.go │ │ │ │ │ ├── match_json_matcher.go │ │ │ │ │ ├── match_regexp_matcher.go │ │ │ │ │ ├── match_xml_matcher.go │ │ │ │ │ ├── match_yaml_matcher.go │ │ │ │ │ ├── not.go │ │ │ │ │ ├── or.go │ │ │ │ │ ├── panic_matcher.go │ │ │ │ │ ├── receive_matcher.go │ │ │ │ │ ├── semi_structured_data_support.go │ │ │ │ │ ├── succeed_matcher.go │ │ │ │ │ ├── support │ │ │ │ │ │ └── goraph │ │ │ │ │ │ │ ├── bipartitegraph │ │ │ │ │ │ │ ├── bipartitegraph.go │ │ │ │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ │ │ │ ├── edge │ │ │ │ │ │ │ └── edge.go │ │ │ │ │ │ │ ├── node │ │ │ │ │ │ │ └── node.go │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── type_support.go │ │ │ │ │ └── with_transform.go │ │ │ │ │ └── types │ │ │ │ │ └── types.go │ │ │ ├── opencontainers │ │ │ │ └── runc │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ └── libcontainer │ │ │ │ │ ├── cgroups │ │ │ │ │ ├── cgroups.go │ │ │ │ │ ├── cgroups_unsupported.go │ │ │ │ │ ├── stats.go │ │ │ │ │ └── utils.go │ │ │ │ │ └── configs │ │ │ │ │ ├── blkio_device.go │ │ │ │ │ ├── cgroup_unix.go │ │ │ │ │ ├── cgroup_unsupported.go │ │ │ │ │ ├── cgroup_windows.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_unix.go │ │ │ │ │ ├── device.go │ │ │ │ │ ├── device_defaults.go │ │ │ │ │ ├── hugepage_limit.go │ │ │ │ │ ├── interface_priority_map.go │ │ │ │ │ ├── mount.go │ │ │ │ │ ├── namespaces.go │ │ │ │ │ ├── namespaces_syscall.go │ │ │ │ │ ├── namespaces_syscall_unsupported.go │ │ │ │ │ ├── namespaces_unix.go │ │ │ │ │ ├── namespaces_unsupported.go │ │ │ │ │ └── network.go │ │ │ ├── parnurzeal │ │ │ │ └── gorequest │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── gorequest.go │ │ │ ├── paultag │ │ │ │ └── sniff │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── parser │ │ │ │ │ └── parser.go │ │ │ ├── peterbourgon │ │ │ │ └── diskv │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── compression.go │ │ │ │ │ ├── diskv.go │ │ │ │ │ └── index.go │ │ │ ├── pkg │ │ │ │ └── errors │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ ├── errors.go │ │ │ │ │ └── stack.go │ │ │ ├── prometheus │ │ │ │ ├── client_golang │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── internal │ │ │ │ │ │ └── metric.go │ │ │ │ │ │ ├── labels.go │ │ │ │ │ │ ├── metric.go │ │ │ │ │ │ ├── observer.go │ │ │ │ │ │ ├── process_collector.go │ │ │ │ │ │ ├── promhttp │ │ │ │ │ │ ├── delegator.go │ │ │ │ │ │ ├── delegator_1_8.go │ │ │ │ │ │ ├── delegator_pre_1_8.go │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ ├── instrument_client.go │ │ │ │ │ │ ├── instrument_client_1_8.go │ │ │ │ │ │ └── instrument_server.go │ │ │ │ │ │ ├── registry.go │ │ │ │ │ │ ├── summary.go │ │ │ │ │ │ ├── timer.go │ │ │ │ │ │ ├── untyped.go │ │ │ │ │ │ ├── value.go │ │ │ │ │ │ ├── vec.go │ │ │ │ │ │ └── wrap.go │ │ │ │ ├── client_model │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ └── go │ │ │ │ │ │ └── metrics.pb.go │ │ │ │ ├── common │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── expfmt │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── expfmt.go │ │ │ │ │ │ ├── fuzz.go │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── MAINTAINERS.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.common │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── buddyinfo.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.ttar │ │ │ │ │ ├── fs.go │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── go.sum │ │ │ │ │ ├── ipvs.go │ │ │ │ │ ├── mdstat.go │ │ │ │ │ ├── mountstats.go │ │ │ │ │ ├── net_dev.go │ │ │ │ │ ├── proc.go │ │ │ │ │ ├── proc_io.go │ │ │ │ │ ├── proc_limits.go │ │ │ │ │ ├── proc_ns.go │ │ │ │ │ ├── proc_psi.go │ │ │ │ │ ├── proc_stat.go │ │ │ │ │ ├── stat.go │ │ │ │ │ ├── ttar │ │ │ │ │ └── xfrm.go │ │ │ ├── spf13 │ │ │ │ ├── afero │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── afero.go │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ ├── basepath.go │ │ │ │ │ ├── cacheOnReadFs.go │ │ │ │ │ ├── const_bsds.go │ │ │ │ │ ├── const_win_unix.go │ │ │ │ │ ├── copyOnWriteFs.go │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── go.sum │ │ │ │ │ ├── httpFs.go │ │ │ │ │ ├── ioutil.go │ │ │ │ │ ├── lstater.go │ │ │ │ │ ├── match.go │ │ │ │ │ ├── mem │ │ │ │ │ │ ├── dir.go │ │ │ │ │ │ ├── dirmap.go │ │ │ │ │ │ └── file.go │ │ │ │ │ ├── memmap.go │ │ │ │ │ ├── os.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── readonlyfs.go │ │ │ │ │ ├── regexpfs.go │ │ │ │ │ ├── unionFile.go │ │ │ │ │ └── util.go │ │ │ │ ├── cobra │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .mailmap │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── args.go │ │ │ │ │ ├── bash_completions.go │ │ │ │ │ ├── bash_completions.md │ │ │ │ │ ├── cobra.go │ │ │ │ │ ├── command.go │ │ │ │ │ ├── command_notwin.go │ │ │ │ │ ├── command_win.go │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── go.sum │ │ │ │ │ └── zsh_completions.go │ │ │ │ └── pflag │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bool.go │ │ │ │ │ ├── bool_slice.go │ │ │ │ │ ├── bytes.go │ │ │ │ │ ├── count.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration_slice.go │ │ │ │ │ ├── flag.go │ │ │ │ │ ├── float32.go │ │ │ │ │ ├── float64.go │ │ │ │ │ ├── golangflag.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int16.go │ │ │ │ │ ├── int32.go │ │ │ │ │ ├── int64.go │ │ │ │ │ ├── int8.go │ │ │ │ │ ├── int_slice.go │ │ │ │ │ ├── ip.go │ │ │ │ │ ├── ip_slice.go │ │ │ │ │ ├── ipmask.go │ │ │ │ │ ├── ipnet.go │ │ │ │ │ ├── string.go │ │ │ │ │ ├── string_array.go │ │ │ │ │ ├── string_slice.go │ │ │ │ │ ├── string_to_int.go │ │ │ │ │ ├── string_to_string.go │ │ │ │ │ ├── uint.go │ │ │ │ │ ├── uint16.go │ │ │ │ │ ├── uint32.go │ │ │ │ │ ├── uint64.go │ │ │ │ │ ├── uint8.go │ │ │ │ │ └── uint_slice.go │ │ │ ├── tallclair │ │ │ │ └── mdtoc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── go.sum │ │ │ │ │ └── mdtoc.go │ │ │ ├── tv42 │ │ │ │ └── httpunix │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── httpunix.go │ │ │ └── zakjan │ │ │ │ └── cert-chain-resolver │ │ │ │ └── certUtil │ │ │ │ ├── chain.go │ │ │ │ └── io.go │ │ ├── go.uber.org │ │ │ ├── atomic │ │ │ │ ├── .codecov.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── atomic.go │ │ │ │ ├── error.go │ │ │ │ ├── glide.lock │ │ │ │ ├── glide.yaml │ │ │ │ └── string.go │ │ │ ├── multierr │ │ │ │ ├── .codecov.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── error.go │ │ │ │ ├── glide.lock │ │ │ │ └── glide.yaml │ │ │ └── zap │ │ │ │ ├── .codecov.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .readme.tmpl │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── FAQ.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── array.go │ │ │ │ ├── buffer │ │ │ │ ├── buffer.go │ │ │ │ └── pool.go │ │ │ │ ├── check_license.sh │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── error.go │ │ │ │ ├── field.go │ │ │ │ ├── flag.go │ │ │ │ ├── glide.lock │ │ │ │ ├── glide.yaml │ │ │ │ ├── global.go │ │ │ │ ├── http_handler.go │ │ │ │ ├── internal │ │ │ │ ├── bufferpool │ │ │ │ │ └── bufferpool.go │ │ │ │ ├── color │ │ │ │ │ └── color.go │ │ │ │ └── exit │ │ │ │ │ └── exit.go │ │ │ │ ├── level.go │ │ │ │ ├── logger.go │ │ │ │ ├── options.go │ │ │ │ ├── sink.go │ │ │ │ ├── stacktrace.go │ │ │ │ ├── sugar.go │ │ │ │ ├── time.go │ │ │ │ ├── writer.go │ │ │ │ └── zapcore │ │ │ │ ├── console_encoder.go │ │ │ │ ├── core.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── entry.go │ │ │ │ ├── error.go │ │ │ │ ├── field.go │ │ │ │ ├── hook.go │ │ │ │ ├── json_encoder.go │ │ │ │ ├── level.go │ │ │ │ ├── level_strings.go │ │ │ │ ├── marshaler.go │ │ │ │ ├── memory_encoder.go │ │ │ │ ├── sampler.go │ │ │ │ ├── tee.go │ │ │ │ └── write_syncer.go │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── crypto │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ └── ssh │ │ │ │ │ └── terminal │ │ │ │ │ ├── terminal.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── util_aix.go │ │ │ │ │ ├── util_bsd.go │ │ │ │ │ ├── util_linux.go │ │ │ │ │ ├── util_plan9.go │ │ │ │ │ ├── util_solaris.go │ │ │ │ │ └── util_windows.go │ │ │ │ ├── net │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── context │ │ │ │ │ ├── context.go │ │ │ │ │ ├── ctxhttp │ │ │ │ │ │ └── ctxhttp.go │ │ │ │ │ ├── go17.go │ │ │ │ │ ├── go19.go │ │ │ │ │ ├── pre_go17.go │ │ │ │ │ └── pre_go19.go │ │ │ │ ├── html │ │ │ │ │ ├── atom │ │ │ │ │ │ ├── atom.go │ │ │ │ │ │ └── table.go │ │ │ │ │ ├── charset │ │ │ │ │ │ └── charset.go │ │ │ │ │ ├── const.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── doctype.go │ │ │ │ │ ├── entity.go │ │ │ │ │ ├── escape.go │ │ │ │ │ ├── foreign.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── render.go │ │ │ │ │ └── token.go │ │ │ │ ├── http │ │ │ │ │ └── httpguts │ │ │ │ │ │ ├── guts.go │ │ │ │ │ │ └── httplex.go │ │ │ │ ├── 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 │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ │ ├── internal │ │ │ │ │ └── timeseries │ │ │ │ │ │ └── timeseries.go │ │ │ │ ├── publicsuffix │ │ │ │ │ ├── list.go │ │ │ │ │ └── table.go │ │ │ │ └── trace │ │ │ │ │ ├── events.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ └── trace.go │ │ │ │ ├── oauth2 │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── google │ │ │ │ │ ├── appengine.go │ │ │ │ │ ├── appengine_gen1.go │ │ │ │ │ ├── appengine_gen2_flex.go │ │ │ │ │ ├── default.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── google.go │ │ │ │ │ ├── jwt.go │ │ │ │ │ └── sdk.go │ │ │ │ ├── internal │ │ │ │ │ ├── client_appengine.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── oauth2.go │ │ │ │ │ ├── token.go │ │ │ │ │ └── transport.go │ │ │ │ ├── jws │ │ │ │ │ └── jws.go │ │ │ │ ├── jwt │ │ │ │ │ └── jwt.go │ │ │ │ ├── oauth2.go │ │ │ │ ├── token.go │ │ │ │ └── transport.go │ │ │ │ ├── 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_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 │ │ │ │ │ ├── gccgo.go │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ ├── ioctl.go │ │ │ │ │ ├── mkall.sh │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ ├── pagesize_unix.go │ │ │ │ │ ├── pledge_openbsd.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_openbsd_arm64.go │ │ │ │ │ ├── syscall_solaris.go │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ │ │ ├── timestruct.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_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 │ │ │ │ │ ├── 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_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_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 │ │ │ │ └── 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 │ │ │ │ │ ├── mkerrors.bash │ │ │ │ │ ├── mkknownfolderids.bash │ │ │ │ │ ├── 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 │ │ │ │ │ ├── zerrors_windows.go │ │ │ │ │ ├── zknownfolderids_windows.go │ │ │ │ │ └── zsyscall_windows.go │ │ │ │ ├── text │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── encoding │ │ │ │ │ ├── charmap │ │ │ │ │ │ ├── charmap.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ ├── encoding.go │ │ │ │ │ ├── htmlindex │ │ │ │ │ │ ├── htmlindex.go │ │ │ │ │ │ ├── map.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── identifier │ │ │ │ │ │ │ ├── identifier.go │ │ │ │ │ │ │ └── mib.go │ │ │ │ │ │ └── internal.go │ │ │ │ │ ├── japanese │ │ │ │ │ │ ├── all.go │ │ │ │ │ │ ├── eucjp.go │ │ │ │ │ │ ├── iso2022jp.go │ │ │ │ │ │ ├── shiftjis.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ ├── korean │ │ │ │ │ │ ├── euckr.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ ├── simplifiedchinese │ │ │ │ │ │ ├── all.go │ │ │ │ │ │ ├── gbk.go │ │ │ │ │ │ ├── hzgb2312.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ ├── traditionalchinese │ │ │ │ │ │ ├── big5.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ └── unicode │ │ │ │ │ │ ├── override.go │ │ │ │ │ │ └── unicode.go │ │ │ │ ├── internal │ │ │ │ │ ├── language │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ ├── compact │ │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ │ ├── language.go │ │ │ │ │ │ │ ├── parents.go │ │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ │ └── tags.go │ │ │ │ │ │ ├── compose.go │ │ │ │ │ │ ├── coverage.go │ │ │ │ │ │ ├── language.go │ │ │ │ │ │ ├── lookup.go │ │ │ │ │ │ ├── match.go │ │ │ │ │ │ ├── parse.go │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ └── tags.go │ │ │ │ │ ├── tag │ │ │ │ │ │ └── tag.go │ │ │ │ │ └── utf8internal │ │ │ │ │ │ └── utf8internal.go │ │ │ │ ├── language │ │ │ │ │ ├── coverage.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── go1_1.go │ │ │ │ │ ├── go1_2.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── match.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── runes │ │ │ │ │ ├── cond.go │ │ │ │ │ └── runes.go │ │ │ │ ├── secure │ │ │ │ │ └── bidirule │ │ │ │ │ │ ├── bidirule.go │ │ │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ │ │ └── bidirule9.0.0.go │ │ │ │ ├── transform │ │ │ │ │ └── transform.go │ │ │ │ ├── unicode │ │ │ │ │ ├── bidi │ │ │ │ │ │ ├── bidi.go │ │ │ │ │ │ ├── bracket.go │ │ │ │ │ │ ├── core.go │ │ │ │ │ │ ├── prop.go │ │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ │ └── trieval.go │ │ │ │ │ └── norm │ │ │ │ │ │ ├── composition.go │ │ │ │ │ │ ├── forminfo.go │ │ │ │ │ │ ├── input.go │ │ │ │ │ │ ├── iter.go │ │ │ │ │ │ ├── normalize.go │ │ │ │ │ │ ├── readwriter.go │ │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ │ ├── transform.go │ │ │ │ │ │ └── trie.go │ │ │ │ └── width │ │ │ │ │ ├── kind_string.go │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ ├── transform.go │ │ │ │ │ ├── trieval.go │ │ │ │ │ └── width.go │ │ │ │ ├── time │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ └── rate │ │ │ │ │ └── rate.go │ │ │ │ └── tools │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── go │ │ │ │ ├── ast │ │ │ │ │ └── astutil │ │ │ │ │ │ ├── enclosing.go │ │ │ │ │ │ ├── imports.go │ │ │ │ │ │ ├── rewrite.go │ │ │ │ │ │ └── util.go │ │ │ │ ├── gcexportdata │ │ │ │ │ ├── gcexportdata.go │ │ │ │ │ └── importer.go │ │ │ │ ├── internal │ │ │ │ │ ├── gcimporter │ │ │ │ │ │ ├── bexport.go │ │ │ │ │ │ ├── bimport.go │ │ │ │ │ │ ├── exportdata.go │ │ │ │ │ │ ├── gcimporter.go │ │ │ │ │ │ ├── iexport.go │ │ │ │ │ │ ├── iimport.go │ │ │ │ │ │ ├── newInterface10.go │ │ │ │ │ │ └── newInterface11.go │ │ │ │ │ └── packagesdriver │ │ │ │ │ │ └── sizes.go │ │ │ │ └── packages │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── external.go │ │ │ │ │ ├── golist.go │ │ │ │ │ ├── golist_overlay.go │ │ │ │ │ ├── packages.go │ │ │ │ │ └── visit.go │ │ │ │ ├── imports │ │ │ │ ├── fix.go │ │ │ │ ├── imports.go │ │ │ │ ├── mod.go │ │ │ │ ├── sortimports.go │ │ │ │ └── zstdlib.go │ │ │ │ └── internal │ │ │ │ ├── fastwalk │ │ │ │ ├── fastwalk.go │ │ │ │ ├── fastwalk_dirent_fileno.go │ │ │ │ ├── fastwalk_dirent_ino.go │ │ │ │ ├── fastwalk_dirent_namlen_bsd.go │ │ │ │ ├── fastwalk_dirent_namlen_linux.go │ │ │ │ ├── fastwalk_portable.go │ │ │ │ └── fastwalk_unix.go │ │ │ │ ├── gopathwalk │ │ │ │ └── walk.go │ │ │ │ ├── module │ │ │ │ └── module.go │ │ │ │ └── semver │ │ │ │ └── semver.go │ │ ├── gonum.org │ │ │ └── v1 │ │ │ │ └── gonum │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── blas │ │ │ │ ├── README.md │ │ │ │ ├── blas.go │ │ │ │ ├── blas64 │ │ │ │ │ ├── blas64.go │ │ │ │ │ ├── conv.go │ │ │ │ │ ├── conv_symmetric.go │ │ │ │ │ └── doc.go │ │ │ │ ├── cblas128 │ │ │ │ │ ├── cblas128.go │ │ │ │ │ ├── conv.go │ │ │ │ │ ├── conv_hermitian.go │ │ │ │ │ ├── conv_symmetric.go │ │ │ │ │ └── doc.go │ │ │ │ ├── conversions.bash │ │ │ │ ├── doc.go │ │ │ │ └── gonum │ │ │ │ │ ├── dgemm.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── gemv.go │ │ │ │ │ ├── gonum.go │ │ │ │ │ ├── level1cmplx128.go │ │ │ │ │ ├── level1cmplx64.go │ │ │ │ │ ├── level1float32.go │ │ │ │ │ ├── level1float32_dsdot.go │ │ │ │ │ ├── level1float32_sdot.go │ │ │ │ │ ├── level1float32_sdsdot.go │ │ │ │ │ ├── level1float64.go │ │ │ │ │ ├── level1float64_ddot.go │ │ │ │ │ ├── level2cmplx128.go │ │ │ │ │ ├── level2cmplx64.go │ │ │ │ │ ├── level2float32.go │ │ │ │ │ ├── level2float64.go │ │ │ │ │ ├── level3cmplx128.go │ │ │ │ │ ├── level3cmplx64.go │ │ │ │ │ ├── level3float32.go │ │ │ │ │ ├── level3float64.go │ │ │ │ │ ├── sgemm.go │ │ │ │ │ └── single_precision.bash │ │ │ │ ├── floats │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ └── floats.go │ │ │ │ ├── graph │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── graph.go │ │ │ │ ├── internal │ │ │ │ │ ├── linear │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── linear.go │ │ │ │ │ ├── ordered │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── sort.go │ │ │ │ │ ├── set │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── same.go │ │ │ │ │ │ ├── same_appengine.go │ │ │ │ │ │ └── set.go │ │ │ │ │ └── uid │ │ │ │ │ │ └── uid.go │ │ │ │ ├── iterator │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── edges.go │ │ │ │ │ ├── lines.go │ │ │ │ │ └── nodes.go │ │ │ │ ├── multigraph.go │ │ │ │ ├── nodes_edges.go │ │ │ │ ├── simple │ │ │ │ │ ├── dense_directed_matrix.go │ │ │ │ │ ├── dense_undirected_matrix.go │ │ │ │ │ ├── directed.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── simple.go │ │ │ │ │ ├── undirected.go │ │ │ │ │ ├── weighted_directed.go │ │ │ │ │ └── weighted_undirected.go │ │ │ │ ├── topo │ │ │ │ │ ├── bron_kerbosch.go │ │ │ │ │ ├── clique_graph.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── johnson_cycles.go │ │ │ │ │ ├── non_tomita_choice.go │ │ │ │ │ ├── paton_cycles.go │ │ │ │ │ ├── tarjan.go │ │ │ │ │ ├── tomita_choice.go │ │ │ │ │ └── topo.go │ │ │ │ ├── traverse │ │ │ │ │ ├── doc.go │ │ │ │ │ └── traverse.go │ │ │ │ └── undirect.go │ │ │ │ ├── internal │ │ │ │ ├── asm │ │ │ │ │ ├── c128 │ │ │ │ │ │ ├── axpyinc_amd64.s │ │ │ │ │ │ ├── axpyincto_amd64.s │ │ │ │ │ │ ├── axpyunitary_amd64.s │ │ │ │ │ │ ├── axpyunitaryto_amd64.s │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── dotcinc_amd64.s │ │ │ │ │ │ ├── dotcunitary_amd64.s │ │ │ │ │ │ ├── dotuinc_amd64.s │ │ │ │ │ │ ├── dotuunitary_amd64.s │ │ │ │ │ │ ├── dscalinc_amd64.s │ │ │ │ │ │ ├── dscalunitary_amd64.s │ │ │ │ │ │ ├── scal.go │ │ │ │ │ │ ├── scalUnitary_amd64.s │ │ │ │ │ │ ├── scalinc_amd64.s │ │ │ │ │ │ ├── stubs_amd64.go │ │ │ │ │ │ └── stubs_noasm.go │ │ │ │ │ ├── c64 │ │ │ │ │ │ ├── axpyinc_amd64.s │ │ │ │ │ │ ├── axpyincto_amd64.s │ │ │ │ │ │ ├── axpyunitary_amd64.s │ │ │ │ │ │ ├── axpyunitaryto_amd64.s │ │ │ │ │ │ ├── conj.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── dotcinc_amd64.s │ │ │ │ │ │ ├── dotcunitary_amd64.s │ │ │ │ │ │ ├── dotuinc_amd64.s │ │ │ │ │ │ ├── dotuunitary_amd64.s │ │ │ │ │ │ ├── scal.go │ │ │ │ │ │ ├── stubs_amd64.go │ │ │ │ │ │ └── stubs_noasm.go │ │ │ │ │ ├── f32 │ │ │ │ │ │ ├── axpyinc_amd64.s │ │ │ │ │ │ ├── axpyincto_amd64.s │ │ │ │ │ │ ├── axpyunitary_amd64.s │ │ │ │ │ │ ├── axpyunitaryto_amd64.s │ │ │ │ │ │ ├── ddotinc_amd64.s │ │ │ │ │ │ ├── ddotunitary_amd64.s │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── dotinc_amd64.s │ │ │ │ │ │ ├── dotunitary_amd64.s │ │ │ │ │ │ ├── ge_amd64.go │ │ │ │ │ │ ├── ge_amd64.s │ │ │ │ │ │ ├── ge_noasm.go │ │ │ │ │ │ ├── scal.go │ │ │ │ │ │ ├── stubs_amd64.go │ │ │ │ │ │ └── stubs_noasm.go │ │ │ │ │ └── f64 │ │ │ │ │ │ ├── abssum_amd64.s │ │ │ │ │ │ ├── abssuminc_amd64.s │ │ │ │ │ │ ├── add_amd64.s │ │ │ │ │ │ ├── addconst_amd64.s │ │ │ │ │ │ ├── axpy.go │ │ │ │ │ │ ├── axpyinc_amd64.s │ │ │ │ │ │ ├── axpyincto_amd64.s │ │ │ │ │ │ ├── axpyunitary_amd64.s │ │ │ │ │ │ ├── axpyunitaryto_amd64.s │ │ │ │ │ │ ├── cumprod_amd64.s │ │ │ │ │ │ ├── cumsum_amd64.s │ │ │ │ │ │ ├── div_amd64.s │ │ │ │ │ │ ├── divto_amd64.s │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── dot.go │ │ │ │ │ │ ├── dot_amd64.s │ │ │ │ │ │ ├── ge_amd64.go │ │ │ │ │ │ ├── ge_noasm.go │ │ │ │ │ │ ├── gemvN_amd64.s │ │ │ │ │ │ ├── gemvT_amd64.s │ │ │ │ │ │ ├── ger_amd64.s │ │ │ │ │ │ ├── l1norm_amd64.s │ │ │ │ │ │ ├── linfnorm_amd64.s │ │ │ │ │ │ ├── scal.go │ │ │ │ │ │ ├── scalinc_amd64.s │ │ │ │ │ │ ├── scalincto_amd64.s │ │ │ │ │ │ ├── scalunitary_amd64.s │ │ │ │ │ │ ├── scalunitaryto_amd64.s │ │ │ │ │ │ ├── stubs_amd64.go │ │ │ │ │ │ ├── stubs_noasm.go │ │ │ │ │ │ └── sum_amd64.s │ │ │ │ ├── cmplx64 │ │ │ │ │ ├── abs.go │ │ │ │ │ ├── conj.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── isinf.go │ │ │ │ │ ├── isnan.go │ │ │ │ │ └── sqrt.go │ │ │ │ └── math32 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── math.go │ │ │ │ │ ├── signbit.go │ │ │ │ │ ├── sqrt.go │ │ │ │ │ ├── sqrt_amd64.go │ │ │ │ │ └── sqrt_amd64.s │ │ │ │ ├── lapack │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── gonum │ │ │ │ │ ├── dbdsqr.go │ │ │ │ │ ├── dgebak.go │ │ │ │ │ ├── dgebal.go │ │ │ │ │ ├── dgebd2.go │ │ │ │ │ ├── dgebrd.go │ │ │ │ │ ├── dgecon.go │ │ │ │ │ ├── dgeev.go │ │ │ │ │ ├── dgehd2.go │ │ │ │ │ ├── dgehrd.go │ │ │ │ │ ├── dgelq2.go │ │ │ │ │ ├── dgelqf.go │ │ │ │ │ ├── dgels.go │ │ │ │ │ ├── dgeql2.go │ │ │ │ │ ├── dgeqp3.go │ │ │ │ │ ├── dgeqr2.go │ │ │ │ │ ├── dgeqrf.go │ │ │ │ │ ├── dgerq2.go │ │ │ │ │ ├── dgerqf.go │ │ │ │ │ ├── dgesvd.go │ │ │ │ │ ├── dgetf2.go │ │ │ │ │ ├── dgetrf.go │ │ │ │ │ ├── dgetri.go │ │ │ │ │ ├── dgetrs.go │ │ │ │ │ ├── dggsvd3.go │ │ │ │ │ ├── dggsvp3.go │ │ │ │ │ ├── dhseqr.go │ │ │ │ │ ├── dlabrd.go │ │ │ │ │ ├── dlacn2.go │ │ │ │ │ ├── dlacpy.go │ │ │ │ │ ├── dlae2.go │ │ │ │ │ ├── dlaev2.go │ │ │ │ │ ├── dlaexc.go │ │ │ │ │ ├── dlags2.go │ │ │ │ │ ├── dlahqr.go │ │ │ │ │ ├── dlahr2.go │ │ │ │ │ ├── dlaln2.go │ │ │ │ │ ├── dlange.go │ │ │ │ │ ├── dlanst.go │ │ │ │ │ ├── dlansy.go │ │ │ │ │ ├── dlantr.go │ │ │ │ │ ├── dlanv2.go │ │ │ │ │ ├── dlapll.go │ │ │ │ │ ├── dlapmt.go │ │ │ │ │ ├── dlapy2.go │ │ │ │ │ ├── dlaqp2.go │ │ │ │ │ ├── dlaqps.go │ │ │ │ │ ├── dlaqr04.go │ │ │ │ │ ├── dlaqr1.go │ │ │ │ │ ├── dlaqr23.go │ │ │ │ │ ├── dlaqr5.go │ │ │ │ │ ├── dlarf.go │ │ │ │ │ ├── dlarfb.go │ │ │ │ │ ├── dlarfg.go │ │ │ │ │ ├── dlarft.go │ │ │ │ │ ├── dlarfx.go │ │ │ │ │ ├── dlartg.go │ │ │ │ │ ├── dlas2.go │ │ │ │ │ ├── dlascl.go │ │ │ │ │ ├── dlaset.go │ │ │ │ │ ├── dlasq1.go │ │ │ │ │ ├── dlasq2.go │ │ │ │ │ ├── dlasq3.go │ │ │ │ │ ├── dlasq4.go │ │ │ │ │ ├── dlasq5.go │ │ │ │ │ ├── dlasq6.go │ │ │ │ │ ├── dlasr.go │ │ │ │ │ ├── dlasrt.go │ │ │ │ │ ├── dlassq.go │ │ │ │ │ ├── dlasv2.go │ │ │ │ │ ├── dlaswp.go │ │ │ │ │ ├── dlasy2.go │ │ │ │ │ ├── dlatrd.go │ │ │ │ │ ├── dlatrs.go │ │ │ │ │ ├── dlauu2.go │ │ │ │ │ ├── dlauum.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── dorg2l.go │ │ │ │ │ ├── dorg2r.go │ │ │ │ │ ├── dorgbr.go │ │ │ │ │ ├── dorghr.go │ │ │ │ │ ├── dorgl2.go │ │ │ │ │ ├── dorglq.go │ │ │ │ │ ├── dorgql.go │ │ │ │ │ ├── dorgqr.go │ │ │ │ │ ├── dorgtr.go │ │ │ │ │ ├── dorm2r.go │ │ │ │ │ ├── dormbr.go │ │ │ │ │ ├── dormhr.go │ │ │ │ │ ├── dorml2.go │ │ │ │ │ ├── dormlq.go │ │ │ │ │ ├── dormqr.go │ │ │ │ │ ├── dormr2.go │ │ │ │ │ ├── dpbtf2.go │ │ │ │ │ ├── dpocon.go │ │ │ │ │ ├── dpotf2.go │ │ │ │ │ ├── dpotrf.go │ │ │ │ │ ├── dpotri.go │ │ │ │ │ ├── dpotrs.go │ │ │ │ │ ├── drscl.go │ │ │ │ │ ├── dsteqr.go │ │ │ │ │ ├── dsterf.go │ │ │ │ │ ├── dsyev.go │ │ │ │ │ ├── dsytd2.go │ │ │ │ │ ├── dsytrd.go │ │ │ │ │ ├── dtgsja.go │ │ │ │ │ ├── dtrcon.go │ │ │ │ │ ├── dtrevc3.go │ │ │ │ │ ├── dtrexc.go │ │ │ │ │ ├── dtrti2.go │ │ │ │ │ ├── dtrtri.go │ │ │ │ │ ├── dtrtrs.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── iladlc.go │ │ │ │ │ ├── iladlr.go │ │ │ │ │ ├── ilaenv.go │ │ │ │ │ ├── iparmq.go │ │ │ │ │ └── lapack.go │ │ │ │ ├── lapack.go │ │ │ │ └── lapack64 │ │ │ │ │ ├── doc.go │ │ │ │ │ └── lapack64.go │ │ │ │ └── mat │ │ │ │ ├── README.md │ │ │ │ ├── band.go │ │ │ │ ├── cdense.go │ │ │ │ ├── cholesky.go │ │ │ │ ├── cmatrix.go │ │ │ │ ├── consts.go │ │ │ │ ├── dense.go │ │ │ │ ├── dense_arithmetic.go │ │ │ │ ├── diagonal.go │ │ │ │ ├── doc.go │ │ │ │ ├── eigen.go │ │ │ │ ├── errors.go │ │ │ │ ├── format.go │ │ │ │ ├── gsvd.go │ │ │ │ ├── hogsvd.go │ │ │ │ ├── index_bound_checks.go │ │ │ │ ├── index_no_bound_checks.go │ │ │ │ ├── inner.go │ │ │ │ ├── io.go │ │ │ │ ├── lq.go │ │ │ │ ├── lu.go │ │ │ │ ├── matrix.go │ │ │ │ ├── offset.go │ │ │ │ ├── offset_appengine.go │ │ │ │ ├── pool.go │ │ │ │ ├── product.go │ │ │ │ ├── qr.go │ │ │ │ ├── shadow.go │ │ │ │ ├── solve.go │ │ │ │ ├── svd.go │ │ │ │ ├── symband.go │ │ │ │ ├── symmetric.go │ │ │ │ ├── triangular.go │ │ │ │ ├── triband.go │ │ │ │ └── vector.go │ │ ├── google.golang.org │ │ │ ├── appengine │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── appengine.go │ │ │ │ ├── appengine_vm.go │ │ │ │ ├── errors.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── identity.go │ │ │ │ ├── internal │ │ │ │ │ ├── api.go │ │ │ │ │ ├── api_classic.go │ │ │ │ │ ├── api_common.go │ │ │ │ │ ├── app_id.go │ │ │ │ │ ├── app_identity │ │ │ │ │ │ ├── app_identity_service.pb.go │ │ │ │ │ │ └── app_identity_service.proto │ │ │ │ │ ├── base │ │ │ │ │ │ ├── api_base.pb.go │ │ │ │ │ │ └── api_base.proto │ │ │ │ │ ├── datastore │ │ │ │ │ │ ├── datastore_v3.pb.go │ │ │ │ │ │ └── datastore_v3.proto │ │ │ │ │ ├── identity.go │ │ │ │ │ ├── identity_classic.go │ │ │ │ │ ├── identity_flex.go │ │ │ │ │ ├── identity_vm.go │ │ │ │ │ ├── internal.go │ │ │ │ │ ├── log │ │ │ │ │ │ ├── log_service.pb.go │ │ │ │ │ │ └── log_service.proto │ │ │ │ │ ├── main.go │ │ │ │ │ ├── main_common.go │ │ │ │ │ ├── main_vm.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── modules_service.pb.go │ │ │ │ │ │ └── modules_service.proto │ │ │ │ │ ├── net.go │ │ │ │ │ ├── regen.sh │ │ │ │ │ ├── remote_api │ │ │ │ │ │ ├── remote_api.pb.go │ │ │ │ │ │ └── remote_api.proto │ │ │ │ │ ├── transaction.go │ │ │ │ │ └── urlfetch │ │ │ │ │ │ ├── urlfetch_service.pb.go │ │ │ │ │ │ └── urlfetch_service.proto │ │ │ │ ├── namespace.go │ │ │ │ ├── timeout.go │ │ │ │ ├── travis_install.sh │ │ │ │ ├── travis_test.sh │ │ │ │ └── urlfetch │ │ │ │ │ └── urlfetch.go │ │ │ ├── genproto │ │ │ │ ├── LICENSE │ │ │ │ └── googleapis │ │ │ │ │ └── rpc │ │ │ │ │ └── status │ │ │ │ │ └── status.pb.go │ │ │ └── grpc │ │ │ │ ├── .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 │ │ │ │ ├── binarylog │ │ │ │ └── grpc_binarylog_v1 │ │ │ │ │ └── binarylog.pb.go │ │ │ │ ├── call.go │ │ │ │ ├── clientconn.go │ │ │ │ ├── codec.go │ │ │ │ ├── codegen.sh │ │ │ │ ├── codes │ │ │ │ ├── code_string.go │ │ │ │ └── codes.go │ │ │ │ ├── connectivity │ │ │ │ └── connectivity.go │ │ │ │ ├── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── internal │ │ │ │ │ ├── syscallconn.go │ │ │ │ │ └── syscallconn_appengine.go │ │ │ │ └── tls13.go │ │ │ │ ├── dialoptions.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoding │ │ │ │ ├── encoding.go │ │ │ │ └── proto │ │ │ │ │ └── proto.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── grpclog │ │ │ │ ├── grpclog.go │ │ │ │ ├── logger.go │ │ │ │ └── loggerv2.go │ │ │ │ ├── install_gae.sh │ │ │ │ ├── interceptor.go │ │ │ │ ├── internal │ │ │ │ ├── backoff │ │ │ │ │ └── backoff.go │ │ │ │ ├── binarylog │ │ │ │ │ ├── binarylog.go │ │ │ │ │ ├── binarylog_testutil.go │ │ │ │ │ ├── env_config.go │ │ │ │ │ ├── method_logger.go │ │ │ │ │ ├── regenerate.sh │ │ │ │ │ ├── sink.go │ │ │ │ │ └── util.go │ │ │ │ ├── channelz │ │ │ │ │ ├── funcs.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_linux.go │ │ │ │ │ ├── types_nonlinux.go │ │ │ │ │ ├── util_linux.go │ │ │ │ │ └── util_nonlinux.go │ │ │ │ ├── envconfig │ │ │ │ │ └── envconfig.go │ │ │ │ ├── grpcrand │ │ │ │ │ └── grpcrand.go │ │ │ │ ├── grpcsync │ │ │ │ │ └── event.go │ │ │ │ ├── internal.go │ │ │ │ ├── syscall │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ └── syscall_nonlinux.go │ │ │ │ └── transport │ │ │ │ │ ├── bdp_estimator.go │ │ │ │ │ ├── controlbuf.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── flowcontrol.go │ │ │ │ │ ├── handler_server.go │ │ │ │ │ ├── http2_client.go │ │ │ │ │ ├── http2_server.go │ │ │ │ │ ├── http_util.go │ │ │ │ │ ├── log.go │ │ │ │ │ └── transport.go │ │ │ │ ├── keepalive │ │ │ │ └── keepalive.go │ │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ │ ├── naming │ │ │ │ ├── dns_resolver.go │ │ │ │ └── naming.go │ │ │ │ ├── peer │ │ │ │ └── peer.go │ │ │ │ ├── picker_wrapper.go │ │ │ │ ├── pickfirst.go │ │ │ │ ├── proxy.go │ │ │ │ ├── resolver │ │ │ │ ├── dns │ │ │ │ │ └── dns_resolver.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 │ │ │ │ ├── version.go │ │ │ │ └── vet.sh │ │ ├── gopkg.in │ │ │ ├── fsnotify.v1 │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── fen.go │ │ │ │ ├── fsnotify.go │ │ │ │ ├── inotify.go │ │ │ │ ├── inotify_poller.go │ │ │ │ ├── kqueue.go │ │ │ │ ├── open_mode_bsd.go │ │ │ │ ├── open_mode_darwin.go │ │ │ │ └── windows.go │ │ │ ├── fsnotify │ │ │ │ └── fsnotify.v1 │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fen.go │ │ │ │ │ ├── fsnotify.go │ │ │ │ │ ├── inotify.go │ │ │ │ │ ├── inotify_poller.go │ │ │ │ │ ├── kqueue.go │ │ │ │ │ ├── open_mode_bsd.go │ │ │ │ │ ├── open_mode_darwin.go │ │ │ │ │ └── windows.go │ │ │ ├── go-playground │ │ │ │ └── pool.v3 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── batch.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── limited_pool.go │ │ │ │ │ ├── pool.go │ │ │ │ │ ├── unlimited_pool.go │ │ │ │ │ └── work_unit.go │ │ │ ├── inf.v0 │ │ │ │ ├── LICENSE │ │ │ │ ├── dec.go │ │ │ │ └── rounder.go │ │ │ ├── tomb.v1 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── tomb.go │ │ │ └── yaml.v2 │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE.libyaml │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── apic.go │ │ │ │ ├── decode.go │ │ │ │ ├── emitterc.go │ │ │ │ ├── encode.go │ │ │ │ ├── go.mod │ │ │ │ ├── parserc.go │ │ │ │ ├── readerc.go │ │ │ │ ├── resolve.go │ │ │ │ ├── scannerc.go │ │ │ │ ├── sorter.go │ │ │ │ ├── writerc.go │ │ │ │ ├── yaml.go │ │ │ │ ├── yamlh.go │ │ │ │ └── yamlprivateh.go │ │ ├── k8s.io │ │ │ ├── api │ │ │ │ ├── LICENSE │ │ │ │ ├── admission │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── 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 │ │ │ ├── apiextensions-apiserver │ │ │ │ ├── LICENSE │ │ │ │ └── pkg │ │ │ │ │ ├── apis │ │ │ │ │ └── apiextensions │ │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_jsonschema.go │ │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ │ ├── defaults.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── marshal.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_jsonschema.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── client │ │ │ │ │ └── clientset │ │ │ │ │ │ └── clientset │ │ │ │ │ │ ├── clientset.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── scheme │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── register.go │ │ │ │ │ │ └── typed │ │ │ │ │ │ └── apiextensions │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── apiextensions_client.go │ │ │ │ │ │ ├── customresourcedefinition.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ └── features │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── kube_features.go │ │ │ ├── apimachinery │ │ │ │ ├── LICENSE │ │ │ │ ├── pkg │ │ │ │ │ ├── api │ │ │ │ │ │ ├── equality │ │ │ │ │ │ │ └── semantic.go │ │ │ │ │ │ ├── errors │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── errors.go │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ │ │ │ ├── help.go │ │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ │ ├── lazy.go │ │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ │ ├── multirestmapper.go │ │ │ │ │ │ │ ├── priority.go │ │ │ │ │ │ │ └── restmapper.go │ │ │ │ │ │ ├── resource │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ ├── amount.go │ │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ │ ├── math.go │ │ │ │ │ │ │ ├── quantity.go │ │ │ │ │ │ │ ├── quantity_proto.go │ │ │ │ │ │ │ ├── scale_int.go │ │ │ │ │ │ │ ├── suffix.go │ │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── generic.go │ │ │ │ │ │ │ └── objectmeta.go │ │ │ │ │ ├── apis │ │ │ │ │ │ └── meta │ │ │ │ │ │ │ ├── internalversion │ │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ │ ├── group_version.go │ │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ │ ├── labels.go │ │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ │ ├── micro_time.go │ │ │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ │ ├── time_proto.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ │ │ ├── unstructured │ │ │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ │ │ ├── unstructured.go │ │ │ │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ │ │ │ ├── unstructuredscheme │ │ │ │ │ │ │ │ │ └── scheme.go │ │ │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ │ │ ├── validation │ │ │ │ │ │ │ │ └── validation.go │ │ │ │ │ │ │ ├── watch.go │ │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ ├── conversion │ │ │ │ │ │ ├── converter.go │ │ │ │ │ │ ├── deep_equal.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── helper.go │ │ │ │ │ │ └── queryparams │ │ │ │ │ │ │ ├── convert.go │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fields.go │ │ │ │ │ │ ├── requirements.go │ │ │ │ │ │ └── selector.go │ │ │ │ │ ├── labels │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── labels.go │ │ │ │ │ │ ├── selector.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── codec.go │ │ │ │ │ │ ├── codec_check.go │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── converter.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── embedded.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ ├── extension.go │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── helper.go │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ ├── mapper.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── schema │ │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ │ ├── group_version.go │ │ │ │ │ │ │ └── interfaces.go │ │ │ │ │ │ ├── scheme.go │ │ │ │ │ │ ├── scheme_builder.go │ │ │ │ │ │ ├── serializer │ │ │ │ │ │ │ ├── codec_factory.go │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ │ │ └── meta.go │ │ │ │ │ │ │ ├── negotiated_codec.go │ │ │ │ │ │ │ ├── protobuf │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ └── protobuf.go │ │ │ │ │ │ │ ├── recognizer │ │ │ │ │ │ │ │ └── recognizer.go │ │ │ │ │ │ │ ├── streaming │ │ │ │ │ │ │ │ └── streaming.go │ │ │ │ │ │ │ └── versioning │ │ │ │ │ │ │ │ └── versioning.go │ │ │ │ │ │ ├── swagger_doc_generator.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_proto.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── selection │ │ │ │ │ │ └── operator.go │ │ │ │ │ ├── types │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── namespacedname.go │ │ │ │ │ │ ├── nodename.go │ │ │ │ │ │ ├── patch.go │ │ │ │ │ │ └── uid.go │ │ │ │ │ ├── util │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ │ └── lruexpirecache.go │ │ │ │ │ │ ├── clock │ │ │ │ │ │ │ └── clock.go │ │ │ │ │ │ ├── diff │ │ │ │ │ │ │ └── diff.go │ │ │ │ │ │ ├── errors │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── errors.go │ │ │ │ │ │ ├── framer │ │ │ │ │ │ │ └── framer.go │ │ │ │ │ │ ├── httpstream │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── httpstream.go │ │ │ │ │ │ │ └── spdy │ │ │ │ │ │ │ │ ├── connection.go │ │ │ │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ │ │ │ └── upgrade.go │ │ │ │ │ │ ├── intstr │ │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ │ └── intstr.go │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ └── json.go │ │ │ │ │ │ ├── mergepatch │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── naming │ │ │ │ │ │ │ └── from_stack.go │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── port_range.go │ │ │ │ │ │ │ ├── port_split.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── remotecommand │ │ │ │ │ │ │ └── constants.go │ │ │ │ │ │ ├── runtime │ │ │ │ │ │ │ └── runtime.go │ │ │ │ │ │ ├── sets │ │ │ │ │ │ │ ├── byte.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── empty.go │ │ │ │ │ │ │ ├── int.go │ │ │ │ │ │ │ ├── int32.go │ │ │ │ │ │ │ ├── int64.go │ │ │ │ │ │ │ └── string.go │ │ │ │ │ │ ├── strategicpatch │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ │ ├── patch.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── uuid │ │ │ │ │ │ │ └── uuid.go │ │ │ │ │ │ ├── validation │ │ │ │ │ │ │ ├── field │ │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ │ └── path.go │ │ │ │ │ │ │ └── validation.go │ │ │ │ │ │ ├── version │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── version.go │ │ │ │ │ │ ├── wait │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── wait.go │ │ │ │ │ │ └── yaml │ │ │ │ │ │ │ └── decoder.go │ │ │ │ │ ├── version │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── watch │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── filter.go │ │ │ │ │ │ ├── mux.go │ │ │ │ │ │ ├── streamwatcher.go │ │ │ │ │ │ ├── watch.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── third_party │ │ │ │ │ └── forked │ │ │ │ │ └── golang │ │ │ │ │ ├── json │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── fields.go │ │ │ │ │ ├── netutil │ │ │ │ │ └── addr.go │ │ │ │ │ └── reflect │ │ │ │ │ └── deep_equal.go │ │ │ ├── apiserver │ │ │ │ ├── LICENSE │ │ │ │ └── pkg │ │ │ │ │ ├── features │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── kube_features.go │ │ │ │ │ ├── server │ │ │ │ │ └── healthz │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── healthz.go │ │ │ │ │ └── util │ │ │ │ │ └── feature │ │ │ │ │ └── feature_gate.go │ │ │ ├── cli-runtime │ │ │ │ ├── LICENSE │ │ │ │ └── pkg │ │ │ │ │ ├── genericclioptions │ │ │ │ │ ├── builder_flags.go │ │ │ │ │ ├── builder_flags_fake.go │ │ │ │ │ ├── config_flags.go │ │ │ │ │ ├── config_flags_fake.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── filename_flags.go │ │ │ │ │ ├── io_options.go │ │ │ │ │ ├── json_yaml_flags.go │ │ │ │ │ ├── jsonpath_flags.go │ │ │ │ │ ├── kube_template_flags.go │ │ │ │ │ ├── name_flags.go │ │ │ │ │ ├── print_flags.go │ │ │ │ │ ├── record_flags.go │ │ │ │ │ └── template_flags.go │ │ │ │ │ ├── kustomize │ │ │ │ │ ├── builder.go │ │ │ │ │ └── k8sdeps │ │ │ │ │ │ ├── configmapandsecret │ │ │ │ │ │ ├── configmapfactory.go │ │ │ │ │ │ ├── kv.go │ │ │ │ │ │ └── secretfactory.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── factory.go │ │ │ │ │ │ ├── kunstruct │ │ │ │ │ │ ├── factory.go │ │ │ │ │ │ ├── helper.go │ │ │ │ │ │ └── kunstruct.go │ │ │ │ │ │ ├── kv │ │ │ │ │ │ └── kv.go │ │ │ │ │ │ ├── transformer │ │ │ │ │ │ ├── factory.go │ │ │ │ │ │ ├── hash │ │ │ │ │ │ │ ├── hash.go │ │ │ │ │ │ │ └── namehash.go │ │ │ │ │ │ └── patch │ │ │ │ │ │ │ ├── patch.go │ │ │ │ │ │ │ └── patchconflictdetector.go │ │ │ │ │ │ └── validator │ │ │ │ │ │ └── validators.go │ │ │ │ │ ├── printers │ │ │ │ │ ├── discard.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── json.go │ │ │ │ │ ├── jsonpath.go │ │ │ │ │ ├── name.go │ │ │ │ │ ├── sourcechecker.go │ │ │ │ │ ├── template.go │ │ │ │ │ └── typesetter.go │ │ │ │ │ └── resource │ │ │ │ │ ├── builder.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake.go │ │ │ │ │ ├── helper.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── mapper.go │ │ │ │ │ ├── result.go │ │ │ │ │ ├── scheme.go │ │ │ │ │ ├── selector.go │ │ │ │ │ └── visitor.go │ │ │ ├── client-go │ │ │ │ ├── LICENSE │ │ │ │ ├── discovery │ │ │ │ │ ├── cached │ │ │ │ │ │ └── disk │ │ │ │ │ │ │ ├── cached_discovery.go │ │ │ │ │ │ │ └── round_tripper.go │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ └── discovery.go │ │ │ │ │ └── helper.go │ │ │ │ ├── informers │ │ │ │ │ ├── admissionregistration │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ │ │ ├── daemonset.go │ │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── replicaset.go │ │ │ │ │ │ │ └── statefulset.go │ │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── statefulset.go │ │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ │ │ ├── daemonset.go │ │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── replicaset.go │ │ │ │ │ │ │ └── statefulset.go │ │ │ │ │ ├── auditregistration │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ │ ├── auditsink.go │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── autoscaling │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ │ ├── v2beta1 │ │ │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ │ └── v2beta2 │ │ │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── batch │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── job.go │ │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ │ ├── cronjob.go │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ │ └── v2alpha1 │ │ │ │ │ │ │ ├── cronjob.go │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── certificates │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── coordination │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── lease.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── lease.go │ │ │ │ │ ├── core │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ │ │ ├── configmap.go │ │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── limitrange.go │ │ │ │ │ │ │ ├── namespace.go │ │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ │ │ ├── pod.go │ │ │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ │ │ ├── secret.go │ │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ │ └── serviceaccount.go │ │ │ │ │ ├── events │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── daemonset.go │ │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ │ │ └── replicaset.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── internalinterfaces │ │ │ │ │ │ └── factory_interfaces.go │ │ │ │ │ ├── networking │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── networkpolicy.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ ├── node │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── runtimeclass.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── runtimeclass.go │ │ │ │ │ ├── policy │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ │ │ └── podsecuritypolicy.go │ │ │ │ │ ├── rbac │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ │ └── rolebinding.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ │ └── rolebinding.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ │ └── rolebinding.go │ │ │ │ │ ├── scheduling │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── priorityclass.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── priorityclass.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── priorityclass.go │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── podpreset.go │ │ │ │ │ └── storage │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── storageclass.go │ │ │ │ │ │ └── volumeattachment.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ └── volumeattachment.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── csidriver.go │ │ │ │ │ │ ├── csinode.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── storageclass.go │ │ │ │ │ │ └── volumeattachment.go │ │ │ │ ├── kubernetes │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── register.go │ │ │ │ │ ├── import.go │ │ │ │ │ ├── scheme │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ │ ├── admissionregistration │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── apps_client.go │ │ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ │ │ ├── daemonset.go │ │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── replicaset.go │ │ │ │ │ │ │ └── statefulset.go │ │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ │ ├── apps_client.go │ │ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ └── statefulset.go │ │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ │ ├── apps_client.go │ │ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ │ │ ├── daemonset.go │ │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── replicaset.go │ │ │ │ │ │ │ └── statefulset.go │ │ │ │ │ │ ├── auditregistration │ │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ │ ├── auditregistration_client.go │ │ │ │ │ │ │ ├── auditsink.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_auditregistration_client.go │ │ │ │ │ │ │ └── fake_auditsink.go │ │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ │ ├── authentication │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ │ │ │ ├── fake_tokenreview.go │ │ │ │ │ │ │ │ └── fake_tokenreview_expansion.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── tokenreview.go │ │ │ │ │ │ │ └── tokenreview_expansion.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ │ │ ├── fake_tokenreview.go │ │ │ │ │ │ │ └── fake_tokenreview_expansion.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── tokenreview.go │ │ │ │ │ │ │ └── tokenreview_expansion.go │ │ │ │ │ │ ├── authorization │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ │ │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ │ │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ │ │ │ │ ├── subjectaccessreview.go │ │ │ │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ │ │ ├── fake_generated_expansion.go │ │ │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ │ │ │ │ ├── subjectaccessreview.go │ │ │ │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ │ │ │ ├── autoscaling │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ │ │ ├── v2beta1 │ │ │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ │ │ └── v2beta2 │ │ │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ │ │ ├── batch │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── batch_client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ │ │ │ └── fake_job.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ └── job.go │ │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ │ ├── batch_client.go │ │ │ │ │ │ │ ├── cronjob.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ │ │ │ └── fake_cronjob.go │ │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ │ └── v2alpha1 │ │ │ │ │ │ │ ├── batch_client.go │ │ │ │ │ │ │ ├── cronjob.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ │ │ └── fake_cronjob.go │ │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ │ ├── certificates │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ │ │ │ └── fake_certificatesigningrequest_expansion.go │ │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ │ ├── coordination │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ │ │ │ └── fake_lease.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ └── lease.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_coordination_client.go │ │ │ │ │ │ │ └── fake_lease.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ └── lease.go │ │ │ │ │ │ ├── core │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ │ │ ├── configmap.go │ │ │ │ │ │ │ ├── core_client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_componentstatus.go │ │ │ │ │ │ │ ├── fake_configmap.go │ │ │ │ │ │ │ ├── fake_core_client.go │ │ │ │ │ │ │ ├── fake_endpoints.go │ │ │ │ │ │ │ ├── fake_event.go │ │ │ │ │ │ │ ├── fake_event_expansion.go │ │ │ │ │ │ │ ├── fake_limitrange.go │ │ │ │ │ │ │ ├── fake_namespace.go │ │ │ │ │ │ │ ├── fake_namespace_expansion.go │ │ │ │ │ │ │ ├── fake_node.go │ │ │ │ │ │ │ ├── fake_node_expansion.go │ │ │ │ │ │ │ ├── fake_persistentvolume.go │ │ │ │ │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ │ │ │ │ ├── fake_pod.go │ │ │ │ │ │ │ ├── fake_pod_expansion.go │ │ │ │ │ │ │ ├── fake_podtemplate.go │ │ │ │ │ │ │ ├── fake_replicationcontroller.go │ │ │ │ │ │ │ ├── fake_resourcequota.go │ │ │ │ │ │ │ ├── fake_secret.go │ │ │ │ │ │ │ ├── fake_service.go │ │ │ │ │ │ │ ├── fake_service_expansion.go │ │ │ │ │ │ │ ├── fake_serviceaccount.go │ │ │ │ │ │ │ └── fake_serviceaccount_expansion.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── limitrange.go │ │ │ │ │ │ │ ├── namespace.go │ │ │ │ │ │ │ ├── namespace_expansion.go │ │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ │ ├── node_expansion.go │ │ │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ │ │ ├── pod.go │ │ │ │ │ │ │ ├── pod_expansion.go │ │ │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ │ │ ├── secret.go │ │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ │ ├── service_expansion.go │ │ │ │ │ │ │ ├── serviceaccount.go │ │ │ │ │ │ │ └── serviceaccount_expansion.go │ │ │ │ │ │ ├── events │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ │ │ ├── events_client.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_event.go │ │ │ │ │ │ │ ├── fake_event_expansion.go │ │ │ │ │ │ │ └── fake_events_client.go │ │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── daemonset.go │ │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── extensions_client.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ │ │ │ ├── fake_extensions_client.go │ │ │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ │ │ ├── fake_networkpolicy.go │ │ │ │ │ │ │ ├── fake_podsecuritypolicy.go │ │ │ │ │ │ │ └── fake_replicaset.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ │ │ └── replicaset.go │ │ │ │ │ │ ├── networking │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ │ │ │ └── fake_networkpolicy.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── networking_client.go │ │ │ │ │ │ │ └── networkpolicy.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ │ │ └── fake_networking_client.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ │ └── networking_client.go │ │ │ │ │ │ ├── node │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── node_client.go │ │ │ │ │ │ │ └── runtimeclass.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_node_client.go │ │ │ │ │ │ │ └── fake_runtimeclass.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── node_client.go │ │ │ │ │ │ │ └── runtimeclass.go │ │ │ │ │ │ ├── policy │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── eviction.go │ │ │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_eviction.go │ │ │ │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ │ │ ├── fake_podsecuritypolicy.go │ │ │ │ │ │ │ └── fake_policy_client.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ │ │ └── policy_client.go │ │ │ │ │ │ ├── rbac │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ │ └── rolebinding.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ │ └── rolebinding.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ │ └── rolebinding.go │ │ │ │ │ │ ├── scheduling │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ │ │ └── scheduling_client.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ │ │ └── scheduling_client.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ │ │ └── scheduling_client.go │ │ │ │ │ │ ├── settings │ │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_podpreset.go │ │ │ │ │ │ │ └── fake_settings_client.go │ │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ │ ├── podpreset.go │ │ │ │ │ │ │ └── settings_client.go │ │ │ │ │ │ └── storage │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ │ │ ├── fake_storageclass.go │ │ │ │ │ │ │ └── fake_volumeattachment.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── storage_client.go │ │ │ │ │ │ ├── storageclass.go │ │ │ │ │ │ └── volumeattachment.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ │ │ └── fake_volumeattachment.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── storage_client.go │ │ │ │ │ │ └── volumeattachment.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── csidriver.go │ │ │ │ │ │ ├── csinode.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_csidriver.go │ │ │ │ │ │ ├── fake_csinode.go │ │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ │ ├── fake_storageclass.go │ │ │ │ │ │ └── fake_volumeattachment.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── storage_client.go │ │ │ │ │ │ ├── storageclass.go │ │ │ │ │ │ └── volumeattachment.go │ │ │ │ ├── listers │ │ │ │ │ ├── admissionregistration │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ │ │ ├── daemonset.go │ │ │ │ │ │ │ ├── daemonset_expansion.go │ │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ ├── replicaset.go │ │ │ │ │ │ │ ├── replicaset_expansion.go │ │ │ │ │ │ │ ├── statefulset.go │ │ │ │ │ │ │ └── statefulset_expansion.go │ │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ ├── statefulset.go │ │ │ │ │ │ │ └── statefulset_expansion.go │ │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ │ │ ├── daemonset.go │ │ │ │ │ │ │ ├── daemonset_expansion.go │ │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ ├── replicaset.go │ │ │ │ │ │ │ ├── replicaset_expansion.go │ │ │ │ │ │ │ ├── statefulset.go │ │ │ │ │ │ │ └── statefulset_expansion.go │ │ │ │ │ ├── auditregistration │ │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ │ ├── auditsink.go │ │ │ │ │ │ │ └── expansion_generated.go │ │ │ │ │ ├── autoscaling │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ │ │ ├── v2beta1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ │ │ └── v2beta2 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ │ ├── batch │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ ├── job.go │ │ │ │ │ │ │ └── job_expansion.go │ │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ │ ├── cronjob.go │ │ │ │ │ │ │ └── expansion_generated.go │ │ │ │ │ │ └── v2alpha1 │ │ │ │ │ │ │ ├── cronjob.go │ │ │ │ │ │ │ └── expansion_generated.go │ │ │ │ │ ├── certificates │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ │ │ └── expansion_generated.go │ │ │ │ │ ├── coordination │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── lease.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── lease.go │ │ │ │ │ ├── core │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ │ │ ├── configmap.go │ │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ ├── limitrange.go │ │ │ │ │ │ │ ├── namespace.go │ │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ │ ├── node_expansion.go │ │ │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ │ │ ├── pod.go │ │ │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ │ │ ├── replicationcontroller_expansion.go │ │ │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ │ │ ├── secret.go │ │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ │ ├── service_expansion.go │ │ │ │ │ │ │ └── serviceaccount.go │ │ │ │ │ ├── events │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ │ └── expansion_generated.go │ │ │ │ │ ├── extensions │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── daemonset.go │ │ │ │ │ │ │ ├── daemonset_expansion.go │ │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ │ │ ├── replicaset.go │ │ │ │ │ │ │ └── replicaset_expansion.go │ │ │ │ │ ├── networking │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── networkpolicy.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── ingress.go │ │ │ │ │ ├── node │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── runtimeclass.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── runtimeclass.go │ │ │ │ │ ├── policy │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── eviction.go │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ │ │ ├── poddisruptionbudget_expansion.go │ │ │ │ │ │ │ └── podsecuritypolicy.go │ │ │ │ │ ├── rbac │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ │ └── rolebinding.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ │ └── rolebinding.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ │ └── rolebinding.go │ │ │ │ │ ├── scheduling │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── priorityclass.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── priorityclass.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── priorityclass.go │ │ │ │ │ ├── settings │ │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ │ └── podpreset.go │ │ │ │ │ └── storage │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ ├── storageclass.go │ │ │ │ │ │ └── volumeattachment.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ └── volumeattachment.go │ │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── csidriver.go │ │ │ │ │ │ ├── csinode.go │ │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ │ ├── storageclass.go │ │ │ │ │ │ └── volumeattachment.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 │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── azure │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── azure.go │ │ │ │ │ │ ├── exec │ │ │ │ │ │ └── exec.go │ │ │ │ │ │ ├── gcp │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ └── gcp.go │ │ │ │ │ │ ├── oidc │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ └── oidc.go │ │ │ │ │ │ ├── openstack │ │ │ │ │ │ └── openstack.go │ │ │ │ │ │ └── plugins.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 │ │ │ │ ├── restmapper │ │ │ │ │ ├── category_expansion.go │ │ │ │ │ ├── discovery.go │ │ │ │ │ └── shortcut.go │ │ │ │ ├── testing │ │ │ │ │ ├── actions.go │ │ │ │ │ ├── fake.go │ │ │ │ │ └── fixture.go │ │ │ │ ├── third_party │ │ │ │ │ └── forked │ │ │ │ │ │ └── golang │ │ │ │ │ │ └── template │ │ │ │ │ │ ├── exec.go │ │ │ │ │ │ └── funcs.go │ │ │ │ ├── tools │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ └── clientauth.go │ │ │ │ │ ├── cache │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ ├── delta_fifo.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── expiration_cache.go │ │ │ │ │ │ ├── expiration_cache_fakes.go │ │ │ │ │ │ ├── fake_custom_store.go │ │ │ │ │ │ ├── fifo.go │ │ │ │ │ │ ├── heap.go │ │ │ │ │ │ ├── index.go │ │ │ │ │ │ ├── listers.go │ │ │ │ │ │ ├── listwatch.go │ │ │ │ │ │ ├── mutation_cache.go │ │ │ │ │ │ ├── mutation_detector.go │ │ │ │ │ │ ├── reflector.go │ │ │ │ │ │ ├── reflector_metrics.go │ │ │ │ │ │ ├── shared_informer.go │ │ │ │ │ │ ├── store.go │ │ │ │ │ │ ├── thread_safe_store.go │ │ │ │ │ │ └── undelta_store.go │ │ │ │ │ ├── clientcmd │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ │ ├── latest │ │ │ │ │ │ │ │ └── latest.go │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ │ ├── auth_loaders.go │ │ │ │ │ │ ├── client_config.go │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── flag.go │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── loader.go │ │ │ │ │ │ ├── merged_client_builder.go │ │ │ │ │ │ ├── overrides.go │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── leaderelection │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── healthzadaptor.go │ │ │ │ │ │ ├── leaderelection.go │ │ │ │ │ │ ├── metrics.go │ │ │ │ │ │ └── resourcelock │ │ │ │ │ │ │ ├── configmaplock.go │ │ │ │ │ │ │ ├── endpointslock.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ └── leaselock.go │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ └── metrics.go │ │ │ │ │ ├── pager │ │ │ │ │ │ └── pager.go │ │ │ │ │ ├── record │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ ├── events_cache.go │ │ │ │ │ │ ├── fake.go │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── reference │ │ │ │ │ │ └── ref.go │ │ │ │ │ └── remotecommand │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── errorstream.go │ │ │ │ │ │ ├── reader.go │ │ │ │ │ │ ├── remotecommand.go │ │ │ │ │ │ ├── resize.go │ │ │ │ │ │ ├── v1.go │ │ │ │ │ │ ├── v2.go │ │ │ │ │ │ ├── v3.go │ │ │ │ │ │ └── v4.go │ │ │ │ ├── transport │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── round_trippers.go │ │ │ │ │ ├── spdy │ │ │ │ │ │ └── spdy.go │ │ │ │ │ ├── token_source.go │ │ │ │ │ └── transport.go │ │ │ │ └── util │ │ │ │ │ ├── cert │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── cert.go │ │ │ │ │ ├── csr.go │ │ │ │ │ ├── io.go │ │ │ │ │ └── pem.go │ │ │ │ │ ├── connrotation │ │ │ │ │ └── connrotation.go │ │ │ │ │ ├── exec │ │ │ │ │ └── exec.go │ │ │ │ │ ├── flowcontrol │ │ │ │ │ ├── backoff.go │ │ │ │ │ └── throttle.go │ │ │ │ │ ├── homedir │ │ │ │ │ └── homedir.go │ │ │ │ │ ├── jsonpath │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── jsonpath.go │ │ │ │ │ ├── node.go │ │ │ │ │ └── parser.go │ │ │ │ │ ├── keyutil │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── key.go │ │ │ │ │ ├── retry │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── util.go │ │ │ │ │ └── workqueue │ │ │ │ │ ├── default_rate_limiters.go │ │ │ │ │ ├── delaying_queue.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── parallelizer.go │ │ │ │ │ ├── queue.go │ │ │ │ │ └── rate_limiting_queue.go │ │ │ ├── cloud-provider │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY_CONTACTS │ │ │ │ ├── cloud.go │ │ │ │ ├── code-of-conduct.md │ │ │ │ ├── doc.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ └── plugins.go │ │ │ ├── code-generator │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY_CONTACTS │ │ │ │ ├── cmd │ │ │ │ │ ├── client-gen │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── args │ │ │ │ │ │ │ ├── args.go │ │ │ │ │ │ │ ├── gvpackages.go │ │ │ │ │ │ │ └── gvtype.go │ │ │ │ │ │ ├── generators │ │ │ │ │ │ │ ├── client_generator.go │ │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ │ ├── fake_client_generator.go │ │ │ │ │ │ │ │ ├── generator_fake_for_clientset.go │ │ │ │ │ │ │ │ ├── generator_fake_for_group.go │ │ │ │ │ │ │ │ └── generator_fake_for_type.go │ │ │ │ │ │ │ ├── generator_for_clientset.go │ │ │ │ │ │ │ ├── generator_for_expansion.go │ │ │ │ │ │ │ ├── generator_for_group.go │ │ │ │ │ │ │ ├── generator_for_type.go │ │ │ │ │ │ │ ├── scheme │ │ │ │ │ │ │ │ └── generator_for_scheme.go │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── tags.go │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ ├── path │ │ │ │ │ │ │ └── path.go │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── conversion-gen │ │ │ │ │ │ ├── args │ │ │ │ │ │ │ └── args.go │ │ │ │ │ │ ├── generators │ │ │ │ │ │ │ └── conversion.go │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── deepcopy-gen │ │ │ │ │ │ ├── args │ │ │ │ │ │ │ └── args.go │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── defaulter-gen │ │ │ │ │ │ ├── args │ │ │ │ │ │ │ └── args.go │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── go-to-protobuf │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── protobuf │ │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ │ ├── generator.go │ │ │ │ │ │ │ ├── import_tracker.go │ │ │ │ │ │ │ ├── namer.go │ │ │ │ │ │ │ ├── package.go │ │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ │ └── tags.go │ │ │ │ │ ├── import-boss │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── informer-gen │ │ │ │ │ │ ├── args │ │ │ │ │ │ │ └── args.go │ │ │ │ │ │ ├── generators │ │ │ │ │ │ │ ├── factory.go │ │ │ │ │ │ │ ├── factoryinterface.go │ │ │ │ │ │ │ ├── generic.go │ │ │ │ │ │ │ ├── groupinterface.go │ │ │ │ │ │ │ ├── informer.go │ │ │ │ │ │ │ ├── packages.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ └── versioninterface.go │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── lister-gen │ │ │ │ │ │ ├── .import-restrictions │ │ │ │ │ │ ├── args │ │ │ │ │ │ │ └── args.go │ │ │ │ │ │ ├── generators │ │ │ │ │ │ │ ├── expansion.go │ │ │ │ │ │ │ └── lister.go │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── register-gen │ │ │ │ │ │ ├── args │ │ │ │ │ │ │ └── args.go │ │ │ │ │ │ ├── generators │ │ │ │ │ │ │ ├── packages.go │ │ │ │ │ │ │ └── register_external.go │ │ │ │ │ │ └── main.go │ │ │ │ │ └── set-gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── main.go │ │ │ │ ├── code-of-conduct.md │ │ │ │ ├── generate-groups.sh │ │ │ │ ├── generate-internal-groups.sh │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── pkg │ │ │ │ │ ├── namer │ │ │ │ │ │ └── tag-override.go │ │ │ │ │ └── util │ │ │ │ │ │ └── build.go │ │ │ │ ├── third_party │ │ │ │ │ └── forked │ │ │ │ │ │ └── golang │ │ │ │ │ │ └── reflect │ │ │ │ │ │ └── type.go │ │ │ │ └── tools.go │ │ │ ├── component-base │ │ │ │ ├── LICENSE │ │ │ │ ├── featuregate │ │ │ │ │ └── feature_gate.go │ │ │ │ └── logs │ │ │ │ │ └── logs.go │ │ │ ├── cri-api │ │ │ │ ├── LICENSE │ │ │ │ └── pkg │ │ │ │ │ └── apis │ │ │ │ │ └── runtime │ │ │ │ │ └── v1alpha2 │ │ │ │ │ ├── api.pb.go │ │ │ │ │ ├── api.proto │ │ │ │ │ └── constants.go │ │ │ ├── gengo │ │ │ │ ├── LICENSE │ │ │ │ ├── args │ │ │ │ │ └── args.go │ │ │ │ ├── examples │ │ │ │ │ ├── deepcopy-gen │ │ │ │ │ │ └── generators │ │ │ │ │ │ │ └── deepcopy.go │ │ │ │ │ ├── defaulter-gen │ │ │ │ │ │ └── generators │ │ │ │ │ │ │ └── defaulter.go │ │ │ │ │ ├── import-boss │ │ │ │ │ │ └── generators │ │ │ │ │ │ │ └── import_restrict.go │ │ │ │ │ └── set-gen │ │ │ │ │ │ ├── generators │ │ │ │ │ │ ├── sets.go │ │ │ │ │ │ └── tags.go │ │ │ │ │ │ └── sets │ │ │ │ │ │ ├── byte.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── empty.go │ │ │ │ │ │ ├── int.go │ │ │ │ │ │ ├── int64.go │ │ │ │ │ │ └── string.go │ │ │ │ ├── generator │ │ │ │ │ ├── default_generator.go │ │ │ │ │ ├── default_package.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── error_tracker.go │ │ │ │ │ ├── execute.go │ │ │ │ │ ├── generator.go │ │ │ │ │ ├── import_tracker.go │ │ │ │ │ └── snippet_writer.go │ │ │ │ ├── namer │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── import_tracker.go │ │ │ │ │ ├── namer.go │ │ │ │ │ ├── order.go │ │ │ │ │ └── plural_namer.go │ │ │ │ ├── parser │ │ │ │ │ ├── doc.go │ │ │ │ │ └── parse.go │ │ │ │ └── types │ │ │ │ │ ├── comments.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flatten.go │ │ │ │ │ └── types.go │ │ │ ├── klog │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── RELEASE.md │ │ │ │ ├── SECURITY_CONTACTS │ │ │ │ ├── code-of-conduct.md │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── klog.go │ │ │ │ └── klog_file.go │ │ │ ├── kube-openapi │ │ │ │ ├── LICENSE │ │ │ │ └── pkg │ │ │ │ │ ├── common │ │ │ │ │ ├── common.go │ │ │ │ │ └── doc.go │ │ │ │ │ └── util │ │ │ │ │ └── proto │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── document.go │ │ │ │ │ └── openapi.go │ │ │ ├── kubernetes │ │ │ │ ├── LICENSE │ │ │ │ ├── pkg │ │ │ │ │ ├── api │ │ │ │ │ │ ├── legacyscheme │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ └── scheme.go │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── pod │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── features │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ └── kube_features.go │ │ │ │ │ ├── kubelet │ │ │ │ │ │ ├── container │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ │ ├── container_gc.go │ │ │ │ │ │ │ ├── container_reference_manager.go │ │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ │ ├── os.go │ │ │ │ │ │ │ ├── ref.go │ │ │ │ │ │ │ ├── resize.go │ │ │ │ │ │ │ ├── runtime.go │ │ │ │ │ │ │ ├── runtime_cache.go │ │ │ │ │ │ │ ├── runtime_cache_fake.go │ │ │ │ │ │ │ └── sync_result.go │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── format │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── pod.go │ │ │ │ │ │ │ └── resources.go │ │ │ │ │ │ │ └── sliceutils │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ └── sliceutils.go │ │ │ │ │ ├── util │ │ │ │ │ │ ├── filesystem │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── defaultfs.go │ │ │ │ │ │ │ ├── fakefs.go │ │ │ │ │ │ │ ├── filesystem.go │ │ │ │ │ │ │ └── watcher.go │ │ │ │ │ │ ├── hash │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ └── hash.go │ │ │ │ │ │ ├── mount │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── exec.go │ │ │ │ │ │ │ ├── fake.go │ │ │ │ │ │ │ ├── mount.go │ │ │ │ │ │ │ ├── mount_helper_common.go │ │ │ │ │ │ │ ├── mount_helper_unix.go │ │ │ │ │ │ │ ├── mount_helper_windows.go │ │ │ │ │ │ │ ├── mount_linux.go │ │ │ │ │ │ │ ├── mount_unsupported.go │ │ │ │ │ │ │ └── mount_windows.go │ │ │ │ │ │ └── sysctl │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ └── sysctl.go │ │ │ │ │ └── volume │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── metrics_cached.go │ │ │ │ │ │ ├── metrics_du.go │ │ │ │ │ │ ├── metrics_errors.go │ │ │ │ │ │ ├── metrics_nil.go │ │ │ │ │ │ ├── metrics_statfs.go │ │ │ │ │ │ ├── noop_expandable_plugin.go │ │ │ │ │ │ ├── plugins.go │ │ │ │ │ │ ├── util │ │ │ │ │ │ ├── fs │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── fs.go │ │ │ │ │ │ │ ├── fs_unsupported.go │ │ │ │ │ │ │ └── fs_windows.go │ │ │ │ │ │ ├── quota │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ │ ├── quota_linux_common.go │ │ │ │ │ │ │ │ └── quota_linux_common_impl.go │ │ │ │ │ │ │ ├── project.go │ │ │ │ │ │ │ ├── quota.go │ │ │ │ │ │ │ ├── quota_linux.go │ │ │ │ │ │ │ └── quota_unsupported.go │ │ │ │ │ │ ├── recyclerclient │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ └── recycler_client.go │ │ │ │ │ │ └── subpath │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ │ ├── subpath.go │ │ │ │ │ │ │ ├── subpath_linux.go │ │ │ │ │ │ │ ├── subpath_nsenter.go │ │ │ │ │ │ │ ├── subpath_unsupported.go │ │ │ │ │ │ │ └── subpath_windows.go │ │ │ │ │ │ ├── volume.go │ │ │ │ │ │ ├── volume_linux.go │ │ │ │ │ │ └── volume_unsupported.go │ │ │ │ └── third_party │ │ │ │ │ └── forked │ │ │ │ │ └── golang │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ └── expansion │ │ │ │ │ ├── BUILD │ │ │ │ │ └── expand.go │ │ │ └── utils │ │ │ │ ├── LICENSE │ │ │ │ ├── buffer │ │ │ │ └── ring_growing.go │ │ │ │ ├── exec │ │ │ │ ├── doc.go │ │ │ │ └── exec.go │ │ │ │ ├── integer │ │ │ │ └── integer.go │ │ │ │ ├── io │ │ │ │ └── read.go │ │ │ │ ├── keymutex │ │ │ │ ├── hashed.go │ │ │ │ └── keymutex.go │ │ │ │ ├── nsenter │ │ │ │ ├── OWNERS │ │ │ │ ├── nsenter.go │ │ │ │ └── nsenter_unsupported.go │ │ │ │ ├── path │ │ │ │ └── file.go │ │ │ │ ├── pointer │ │ │ │ ├── OWNERS │ │ │ │ └── pointer.go │ │ │ │ └── trace │ │ │ │ └── trace.go │ │ ├── modules.txt │ │ └── sigs.k8s.io │ │ │ ├── controller-runtime │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ │ ├── client │ │ │ │ └── config │ │ │ │ │ ├── config.go │ │ │ │ │ └── doc.go │ │ │ │ ├── envtest │ │ │ │ ├── crd.go │ │ │ │ ├── doc.go │ │ │ │ ├── examplecrd1.yaml │ │ │ │ ├── examplecrd2.yaml │ │ │ │ ├── ginkgo.go │ │ │ │ ├── notcrd.yaml │ │ │ │ ├── printer │ │ │ │ │ └── ginkgo.go │ │ │ │ └── server.go │ │ │ │ └── runtime │ │ │ │ └── log │ │ │ │ ├── deleg.go │ │ │ │ ├── kube_helpers.go │ │ │ │ ├── log.go │ │ │ │ └── null.go │ │ │ ├── kustomize │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ │ ├── commands │ │ │ │ └── build │ │ │ │ │ └── build.go │ │ │ │ ├── constants │ │ │ │ └── constants.go │ │ │ │ ├── expansion │ │ │ │ └── expand.go │ │ │ │ ├── factory │ │ │ │ └── factory.go │ │ │ │ ├── fs │ │ │ │ ├── confirmeddir.go │ │ │ │ ├── fakefile.go │ │ │ │ ├── fakefileinfo.go │ │ │ │ ├── fakefs.go │ │ │ │ ├── fs.go │ │ │ │ ├── realfile.go │ │ │ │ └── realfs.go │ │ │ │ ├── git │ │ │ │ ├── cloner.go │ │ │ │ └── repospec.go │ │ │ │ ├── gvk │ │ │ │ └── gvk.go │ │ │ │ ├── ifc │ │ │ │ ├── ifc.go │ │ │ │ └── transformer │ │ │ │ │ └── factory.go │ │ │ │ ├── image │ │ │ │ ├── deprecatedimage.go │ │ │ │ └── image.go │ │ │ │ ├── internal │ │ │ │ └── error │ │ │ │ │ ├── configmaperror.go │ │ │ │ │ ├── kustomizationerror.go │ │ │ │ │ ├── patcherror.go │ │ │ │ │ ├── resourceerror.go │ │ │ │ │ ├── secreterror.go │ │ │ │ │ └── yamlformaterror.go │ │ │ │ ├── loader │ │ │ │ ├── fileloader.go │ │ │ │ └── loader.go │ │ │ │ ├── patch │ │ │ │ ├── json6902.go │ │ │ │ ├── strategicmerge.go │ │ │ │ └── transformer │ │ │ │ │ ├── factory.go │ │ │ │ │ └── patchjson6902json.go │ │ │ │ ├── resid │ │ │ │ └── resid.go │ │ │ │ ├── resmap │ │ │ │ ├── factory.go │ │ │ │ ├── idslice.go │ │ │ │ └── resmap.go │ │ │ │ ├── resource │ │ │ │ ├── factory.go │ │ │ │ └── resource.go │ │ │ │ ├── target │ │ │ │ ├── kusttarget.go │ │ │ │ └── resaccumulator.go │ │ │ │ ├── transformers │ │ │ │ ├── config │ │ │ │ │ ├── defaultconfig │ │ │ │ │ │ ├── commonannotations.go │ │ │ │ │ │ ├── commonlabels.go │ │ │ │ │ │ ├── defaultconfig.go │ │ │ │ │ │ ├── nameprefix.go │ │ │ │ │ │ ├── namereference.go │ │ │ │ │ │ ├── namespace.go │ │ │ │ │ │ └── varreference.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── factorycrd.go │ │ │ │ │ ├── fieldspec.go │ │ │ │ │ ├── namebackreferences.go │ │ │ │ │ └── transformerconfig.go │ │ │ │ ├── image.go │ │ │ │ ├── labelsandannotations.go │ │ │ │ ├── multitransformer.go │ │ │ │ ├── mutatefield.go │ │ │ │ ├── namereference.go │ │ │ │ ├── namespace.go │ │ │ │ ├── nooptransformer.go │ │ │ │ ├── prefixsuffixname.go │ │ │ │ ├── refvars.go │ │ │ │ └── transformer.go │ │ │ │ └── types │ │ │ │ ├── genargs.go │ │ │ │ ├── generationbehavior.go │ │ │ │ ├── kustomization.go │ │ │ │ └── var.go │ │ │ ├── testing_frameworks │ │ │ ├── LICENSE │ │ │ └── integration │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── addr │ │ │ │ └── manager.go │ │ │ │ ├── apiserver.go │ │ │ │ ├── control_plane.go │ │ │ │ ├── doc.go │ │ │ │ ├── etcd.go │ │ │ │ ├── internal │ │ │ │ ├── apiserver.go │ │ │ │ ├── arguments.go │ │ │ │ ├── bin_path_finder.go │ │ │ │ ├── etcd.go │ │ │ │ └── process.go │ │ │ │ └── kubectl.go │ │ │ └── yaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── RELEASE.md │ │ │ ├── SECURITY_CONTACTS │ │ │ ├── code-of-conduct.md │ │ │ ├── fields.go │ │ │ ├── yaml.go │ │ │ └── yaml_go110.go │ └── version │ │ └── version.go ├── nonstop │ ├── Dockerfile │ ├── deployment.yaml │ ├── ingress.yaml │ └── main.go └── ssl │ ├── ingress-ssl.yaml │ ├── openssl.cnf │ ├── tls.crt │ └── tls.key ├── job └── job.yaml ├── label ├── deployment-label01.yaml ├── deployment-label02.yaml ├── deployment-label03.yaml ├── deployment-label04.yaml ├── label-service01.yaml └── label-service02.yaml ├── logging ├── elasticsearch.yaml ├── fluentd-kubernetes-daemonset-rbac.yaml ├── fluentd-kubernetes-daemonset.yaml └── kibana.yaml ├── monitoring ├── heapster │ └── deploy │ │ ├── kube-config │ │ └── influxdb │ │ │ ├── grafana.yaml │ │ │ ├── heapster.yaml │ │ │ └── influxdb.yaml │ │ └── kube.sh ├── metrics-server │ ├── .golangci.yml │ ├── .travis.yml │ ├── aggregated-metrics-reader.yaml │ ├── auth-delegator.yaml │ ├── auth-reader.yaml │ ├── metrics-apiservice.yaml │ ├── metrics-server-deployment.yaml │ ├── metrics-server-service.yaml │ └── resource-reader.yaml └── prometheus │ ├── grafana.yaml │ ├── prometheus-deployment.yaml │ └── prometheus-kubernetes-config.yaml ├── mysql ├── chartstorage │ ├── index-cache.yaml │ └── mysql-0.1.0.tgz ├── mysql-0.1.0.tgz ├── mysql-1.3.1.tgz ├── mysql │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configurationFiles-configmap.yaml │ │ ├── deployment.yaml │ │ ├── initializationFiles-configmap.yaml │ │ ├── pvc.yaml │ │ ├── secrets.yaml │ │ ├── servicemonitor.yaml │ │ ├── svc.yaml │ │ └── tests │ │ │ ├── test-configmap.yaml │ │ │ └── test.yaml │ └── values.yaml └── sample │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ ├── service.yaml │ └── tests │ │ └── test-connection.yaml │ └── values.yaml ├── networking ├── pod.yaml ├── podtest.yaml └── service.yaml ├── pod ├── pod-all.yaml ├── pod-env.yaml ├── pod-init.yaml ├── pod-resource.yaml └── pod-sample.yaml ├── rbac ├── clusterrole-aggregation.yaml ├── read-clusterrole.yaml ├── read-clusterrolebinding.yaml ├── read-role.yaml ├── read-rolebinding.yaml └── serviceaccount-myuser.yaml ├── readme ├── cover.jpg └── errata │ └── errata.md ├── replicaset └── replicaset-nginx.yaml ├── scheduling ├── node-affinity.yaml ├── nodeselector.yaml ├── pod-affinity.yaml └── pod-antiaffinity.yaml ├── secret ├── deployment-secret01.yaml ├── deployment-secret02.yaml ├── deployment-secret03.yaml ├── openssl.cnf ├── password.txt ├── tls.crt ├── tls.key ├── user-pass-yaml.yaml └── username.txt ├── service ├── clusterip.yaml ├── externalname.yaml ├── headless.yaml ├── loadbalancer.yaml ├── nodeport.yaml └── service.yaml ├── statefulset ├── statefulset-env.yaml ├── statefulset-ondelete.yaml ├── statefulset-parallel.yaml └── statefulset.yaml ├── volume ├── deployment-pvc.yaml ├── pv-hostpath-label.yaml ├── pv-hostpath.yaml ├── pvc-hostpath-label.yaml ├── pvc-hostpath.yaml ├── volume-emptydir.yaml ├── volume-hostpath.yaml ├── volume-nfsapp.yaml └── volume-nfsserver.yaml └── wordpress ├── local-volume.yaml ├── mysql.yaml ├── password.txt └── wordpress.yaml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/README.md -------------------------------------------------------------------------------- /addon/dns-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/addon/dns-deployment.yaml -------------------------------------------------------------------------------- /addon/dnsconfig-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/addon/dnsconfig-pod.yaml -------------------------------------------------------------------------------- /addon/kubernetes-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/addon/kubernetes-dashboard.yaml -------------------------------------------------------------------------------- /annotation/annotation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/annotation/annotation.yaml -------------------------------------------------------------------------------- /autoscaling/autoscaling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/autoscaling/autoscaling.yaml -------------------------------------------------------------------------------- /autoscaling/wordpress-autoscaling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/autoscaling/wordpress-autoscaling.yaml -------------------------------------------------------------------------------- /canary/deployment-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/canary/deployment-v1.yaml -------------------------------------------------------------------------------- /canary/deployment-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/canary/deployment-v2.yaml -------------------------------------------------------------------------------- /canary/myapp-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/canary/myapp-svc.yaml -------------------------------------------------------------------------------- /configmap/configmap-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/configmap/configmap-dev.yaml -------------------------------------------------------------------------------- /configmap/configmap-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/configmap/configmap-prod.yaml -------------------------------------------------------------------------------- /configmap/deployment-config01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/configmap/deployment-config01.yaml -------------------------------------------------------------------------------- /configmap/deployment-config02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/configmap/deployment-config02.yaml -------------------------------------------------------------------------------- /configmap/deployment-config03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/configmap/deployment-config03.yaml -------------------------------------------------------------------------------- /cronjob/cronjob-concurrency.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/cronjob/cronjob-concurrency.yaml -------------------------------------------------------------------------------- /cronjob/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/cronjob/cronjob.yaml -------------------------------------------------------------------------------- /customresourcedefinition/crd-mypod-sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/customresourcedefinition/crd-mypod-sample.yaml -------------------------------------------------------------------------------- /customresourcedefinition/crd-mypod-spec-validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/customresourcedefinition/crd-mypod-spec-validation.yaml -------------------------------------------------------------------------------- /customresourcedefinition/crd-mypod-spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/customresourcedefinition/crd-mypod-spec.yaml -------------------------------------------------------------------------------- /customresourcedefinition/kube-prometheus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/customresourcedefinition/kube-prometheus/.travis.yml -------------------------------------------------------------------------------- /customresourcedefinition/kube-prometheus/manifests/00namespace-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: monitoring 5 | -------------------------------------------------------------------------------- /daemonset/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/daemonset/daemonset.yaml -------------------------------------------------------------------------------- /deployment/deployment-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/deployment/deployment-nginx.yaml -------------------------------------------------------------------------------- /deployment/deployment-sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/deployment/deployment-sample.yaml -------------------------------------------------------------------------------- /deployment/deployment-toleration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/deployment/deployment-toleration.yaml -------------------------------------------------------------------------------- /deployment/nginx-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/deployment/nginx-app.yaml -------------------------------------------------------------------------------- /ingress/ingress-basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-basic.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/.codecov.yml -------------------------------------------------------------------------------- /ingress/ingress-nginx/.dockerignore: -------------------------------------------------------------------------------- 1 | core 2 | 3 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/.luacheckrc -------------------------------------------------------------------------------- /ingress/ingress-nginx/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/.travis.yml -------------------------------------------------------------------------------- /ingress/ingress-nginx/.travis/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/.travis/common.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/.travis/publish-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/.travis/publish-docs.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/CONTRIBUTING.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/Changelog.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/Makefile -------------------------------------------------------------------------------- /ingress/ingress-nginx/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/OWNERS -------------------------------------------------------------------------------- /ingress/ingress-nginx/OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/OWNERS_ALIASES -------------------------------------------------------------------------------- /ingress/ingress-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/SECURITY_CONTACTS -------------------------------------------------------------------------------- /ingress/ingress-nginx/build/build-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/build/build-plugin.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/build/build.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/build/cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/build/cover.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/build/dev-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/build/dev-env.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/build/mkdocs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/build/mkdocs/Dockerfile -------------------------------------------------------------------------------- /ingress/ingress-nginx/build/mkdocs/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/build/mkdocs/entrypoint.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/build/run-e2e-suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/build/run-e2e-suite.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/build/run-in-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/build/run-in-docker.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/build/run-ingress-controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/build/run-ingress-controller.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/build/static-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/build/static-check.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/build/test-lua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/build/test-lua.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/build/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/build/test.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/dbg/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/dbg/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/nginx/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/nginx/flags.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/nginx/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/nginx/flags_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/nginx/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/nginx/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/nginx/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/nginx/main_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/commands/certs/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/commands/certs/certs.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/commands/conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/commands/conf/conf.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/commands/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/commands/exec/exec.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/commands/general/general.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/commands/general/general.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/commands/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/commands/info/info.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/commands/lint/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/commands/lint/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/commands/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/commands/logs/logs.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/commands/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/commands/ssh/ssh.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/ingress-nginx.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/ingress-nginx.yaml.tmpl -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/kubectl/kubectl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/kubectl/kubectl.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/lints/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/lints/deployment.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/lints/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/lints/ingress.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/request/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/request/request.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/cmd/plugin/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/cmd/plugin/util/util.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/code-of-conduct.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/aws/l4/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/aws/l4/kustomization.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/aws/l4/service-l4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/aws/l4/service-l4.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/aws/l7/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/aws/l7/kustomization.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/aws/l7/service-l7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/aws/l7/service-l7.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/aws/nlb/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/aws/nlb/kustomization.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/aws/nlb/service-nlb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/aws/nlb/service-nlb.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/baremetal/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/baremetal/kustomization.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/baremetal/service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/baremetal/service-nodeport.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/cloud-generic/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/cloud-generic/deployment.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/cloud-generic/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/cloud-generic/role-binding.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/cloud-generic/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/cloud-generic/role.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/cloud-generic/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/cloud-generic/service.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/cluster-wide/cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/cluster-wide/cluster-role.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/cluster-wide/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/cluster-wide/kustomization.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/grafana/dashboards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/grafana/dashboards/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/grafana/dashboards/nginx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/grafana/dashboards/nginx.json -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/grafana/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/grafana/deployment.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/grafana/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/grafana/kustomization.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/grafana/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/grafana/service.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/minikube/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/minikube/kustomization.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/prometheus/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/prometheus/deployment.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/prometheus/kustomization.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/prometheus/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/prometheus/prometheus.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/prometheus/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/prometheus/role-binding.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/prometheus/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/prometheus/role.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/prometheus/service-account.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: prometheus-server 5 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/prometheus/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/prometheus/service.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/static/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/static/configmap.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/static/mandatory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/static/mandatory.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/static/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/static/namespace.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/static/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/static/rbac.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/static/with-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/static/with-rbac.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/deploy/validating-webhook.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/deploy/validating-webhook.yaml.tpl -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/deploy/baremetal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/deploy/baremetal.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/deploy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/deploy/index.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/deploy/rbac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/deploy/rbac.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/deploy/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/deploy/upgrade.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/deploy/validating-webhook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/deploy/validating-webhook.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/development.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/enhancements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/enhancements/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/PREREQUISITES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/PREREQUISITES.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/auth/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/auth/basic/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/grpc/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/grpc/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/grpc/app.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/grpc/cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/grpc/cert.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/grpc/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/grpc/ingress.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/grpc/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/grpc/svc.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/http-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/http-svc.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/index.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/multi-tls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/multi-tls/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/multi-tls/multi-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/multi-tls/multi-tls.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/psp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/psp/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/psp/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/psp/psp.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/rewrite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/rewrite/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/examples/static-ip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/examples/static-ip/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/extra.css -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/how-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/how-it-works.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/images/baremetal/hostnetwork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/images/baremetal/hostnetwork.jpg -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/images/baremetal/metallb.gliffy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/images/baremetal/metallb.gliffy -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/images/baremetal/metallb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/images/baremetal/metallb.jpg -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/images/baremetal/nodeport.gliffy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/images/baremetal/nodeport.gliffy -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/images/baremetal/nodeport.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/images/baremetal/nodeport.jpg -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/images/baremetal/user_edge.gliffy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/images/baremetal/user_edge.gliffy -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/images/baremetal/user_edge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/images/baremetal/user_edge.jpg -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/images/elb-l7-listener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/images/elb-l7-listener.png -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/images/grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/images/grafana.png -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/images/jaeger-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/images/jaeger-demo.png -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/images/prometheus-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/images/prometheus-dashboard.png -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/images/zipkin-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/images/zipkin-demo.png -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/index.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/kubectl-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/kubectl-plugin.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/troubleshooting.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/user-guide/basic-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/user-guide/basic-usage.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/user-guide/cli-arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/user-guide/cli-arguments.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/user-guide/custom-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/user-guide/custom-errors.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/user-guide/default-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/user-guide/default-backend.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/user-guide/external-articles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/user-guide/external-articles.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/user-guide/fcgi-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/user-guide/fcgi-services.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/user-guide/miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/user-guide/miscellaneous.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/user-guide/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/user-guide/monitoring.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/user-guide/multiple-ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/user-guide/multiple-ingress.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/docs/user-guide/tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/docs/user-guide/tls.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/go.mod -------------------------------------------------------------------------------- /ingress/ingress-nginx/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/go.sum -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/boilerplate/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/boilerplate/boilerplate.go.txt -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/boilerplate/boilerplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/boilerplate/boilerplate.py -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/boilerplate/boilerplate.py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/boilerplate/boilerplate.py.txt -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/boilerplate/boilerplate.sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/boilerplate/boilerplate.sh.txt -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/kube-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/kube-env.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/tools.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/update-codegen.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/update-toc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/update-toc.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/verify-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/verify-all.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/verify-boilerplate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/verify-boilerplate.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/verify-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/verify-codegen.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/verify-gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/verify-gofmt.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/verify-golint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/verify-golint.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/hack/verify-lualint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/hack/verify-lualint.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/404-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/404-server/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/OWNERS -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/custom-error-pages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/custom-error-pages/Makefile -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/custom-error-pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/custom-error-pages/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/custom-error-pages/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/custom-error-pages/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/custom-error-pages/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/custom-error-pages/metrics.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/custom-error-pages/rootfs/www/4xx.html: -------------------------------------------------------------------------------- 1 | 4xx html -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/custom-error-pages/rootfs/www/4xx.json: -------------------------------------------------------------------------------- 1 | 4xx json -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/custom-error-pages/rootfs/www/500.html: -------------------------------------------------------------------------------- 1 | 500 html -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/custom-error-pages/rootfs/www/500.json: -------------------------------------------------------------------------------- 1 | 500 json -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/custom-error-pages/rootfs/www/5xx.html: -------------------------------------------------------------------------------- 1 | 5xx html -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/custom-error-pages/rootfs/www/5xx.json: -------------------------------------------------------------------------------- 1 | 5xx json -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/e2e/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/e2e/Dockerfile -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/e2e/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/e2e/Makefile -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/fastcgi-helloserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/fastcgi-helloserver/Makefile -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/fastcgi-helloserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/fastcgi-helloserver/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/grpc-fortune-teller/.gitignore: -------------------------------------------------------------------------------- 1 | bazel-* 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/grpc-fortune-teller/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/grpc-fortune-teller/BUILD.bazel -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/grpc-fortune-teller/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/grpc-fortune-teller/Gopkg.lock -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/grpc-fortune-teller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/grpc-fortune-teller/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/grpc-fortune-teller/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/grpc-fortune-teller/WORKSPACE -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/grpc-fortune-teller/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/grpc-fortune-teller/app/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/nginx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/nginx/Makefile -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/nginx/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/nginx/rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/nginx/rc.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/nginx/rootfs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/nginx/rootfs/Dockerfile -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/nginx/rootfs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/nginx/rootfs/build.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/images/ubuntu-slim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/images/ubuntu-slim/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/admission/controller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/admission/controller/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/file/file.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/file/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/file/file_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/file/filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/file/filesystem.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/file/structure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/file/structure.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/controller/checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/controller/checker.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/controller/nginx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/controller/nginx.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/controller/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/controller/status.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/controller/tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/controller/tcp.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/controller/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/controller/util.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/defaults/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/defaults/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/errors/errors.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/errors/errors_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/metric/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/metric/dummy.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/metric/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/metric/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/resolver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/resolver/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/resolver/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/resolver/mock.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/sslcert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/sslcert.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/status/status.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/status/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/status/status_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/types.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/types_equals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/types_equals.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/ingress/types_equals_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/ingress/types_equals_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/k8s/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/k8s/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/k8s/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/k8s/main_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/net/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/net/dns/dns.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/net/dns/dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/net/dns/dns_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/net/ipnet.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/net/ipnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/net/ipnet_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/net/net.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/net/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/net/net_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/net/ssl/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/net/ssl/ssl.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/net/ssl/ssl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/net/ssl/ssl_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/nginx/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/nginx/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/runtime/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/runtime/cpu.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/sets/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/sets/match.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/sets/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/sets/match_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/task/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/task/queue.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/task/queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/task/queue_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/watch/file_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/watch/file_watcher.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/internal/watch/file_watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/internal/watch/file_watcher_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/labels.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/mkdocs.yml -------------------------------------------------------------------------------- /ingress/ingress-nginx/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/requirements-docs.txt -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/Dockerfile -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/lua/balancer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/lua/balancer.lua -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/lua/balancer/ewma.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/lua/balancer/ewma.lua -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/lua/certificate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/lua/certificate.lua -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/lua/configuration.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/lua/configuration.lua -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/lua/lua_ingress.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/lua/lua_ingress.lua -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/lua/monitor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/lua/monitor.lua -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/lua/plugins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/lua/plugins.lua -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/lua/test/helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/lua/test/helpers.lua -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/lua/test/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/lua/test/run.lua -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/lua/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/lua/util.lua -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/lua/util/dns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/lua/util/dns.lua -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/lua/util/split.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/lua/util/split.lua -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/opentracing.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/etc/nginx/template/nginx.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/etc/nginx/template/nginx.tmpl -------------------------------------------------------------------------------- /ingress/ingress-nginx/rootfs/ingress-controller/indent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/rootfs/ingress-controller/indent.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/data/config.json -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e-image/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e-image/.gitignore -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e-image/Dockerfile -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e-image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e-image/Makefile -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e-image/e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e-image/e2e.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e-image/overlay/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e-image/overlay/role.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e-prow/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e-prow/Dockerfile -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e-prow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e-prow/Makefile -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/affinity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/affinity.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/alias.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/approot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/approot.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/auth.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/authtls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/authtls.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/canary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/canary.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/connection.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/cors.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/fastcgi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/fastcgi.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/grpc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/influxdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/influxdb.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/ipwhitelist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/ipwhitelist.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/log.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/luarestywaf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/luarestywaf.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/mirror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/mirror.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/modsecurity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/modsecurity.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/proxy.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/proxyssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/proxyssl.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/redirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/redirect.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/rewrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/rewrite.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/satisfy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/satisfy.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/serversnippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/serversnippet.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/snippet.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/sslciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/sslciphers.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/upstreamhashby.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/upstreamhashby.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/annotations/upstreamvhost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/annotations/upstreamvhost.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/dbg/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/dbg/main.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/defaultbackend/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/defaultbackend/ssl.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/defaultbackend/with_hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/defaultbackend/with_hosts.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/down.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/e2e.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/e2e.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/e2e_test.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/framework/cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/framework/cleanup.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/framework/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/framework/deployment.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/framework/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/framework/exec.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/framework/framework.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/framework/framework.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/framework/influxdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/framework/influxdb.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/framework/k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/framework/k8s.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/framework/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/framework/logs.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/framework/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/framework/metrics.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/framework/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/framework/ssl.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/framework/test_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/framework/test_context.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/framework/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/framework/util.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/kind.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/leaks/lua_ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/leaks/lua_ssl.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/loadbalance/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/loadbalance/configmap.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/loadbalance/ewma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/loadbalance/ewma.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/loadbalance/round_robin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/loadbalance/round_robin.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/lua/dynamic_certificates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/lua/dynamic_certificates.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/lua/dynamic_configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/lua/dynamic_configuration.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/run.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/configmap_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/configmap_change.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/disable_catch_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/disable_catch_all.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/forwarded_headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/forwarded_headers.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/geoip2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/geoip2.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/ingress_class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/ingress_class.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/lua_shared_dicts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/lua_shared_dicts.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/main_snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/main_snippet.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/multi_accept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/multi_accept.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/no_auth_locations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/no_auth_locations.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/proxy_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/proxy_host.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/proxy_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/proxy_protocol.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/server_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/server_tokens.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/settings/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/settings/tls.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/ssl/secret_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/ssl/secret_update.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/status/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/status/update.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/tcpudp/tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/tcpudp/tcp.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/e2e/wait-for-nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/e2e/wait-for-nginx.sh -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/manifests/configuration-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/manifests/configuration-a.json -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/manifests/configuration-b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/manifests/configuration-b.json -------------------------------------------------------------------------------- /ingress/ingress-nginx/test/manifests/configuration-c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/test/manifests/configuration-c.json -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/armon/go-proxyproto/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *~ 3 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/dgrijalva/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/emicklei/go-restful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | script: go test -v -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/go-logr/zapr/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | /vendor 4 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/go-logr/zapr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/go-logr/zapr/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/go-logr/zapr/zapr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/go-logr/zapr/zapr.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/gofuzz/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/gofuzz 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/gophercloud/gophercloud/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.swp 2 | .idea 3 | .vscode 4 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/gophercloud/gophercloud/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/hashicorp/golang-lru/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hashicorp/golang-lru 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/hpcloud/tail/.gitignore: -------------------------------------------------------------------------------- 1 | .test 2 | .go 3 | 4 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/hpcloud/tail/tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/hpcloud/tail/tail.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/konsorten/go-windows-terminal-sequences 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/mitchellh/go-ps/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/mitchellh/go-ps/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.2.1 5 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/mitchellh/hashstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/hashstructure 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/ncabatoff/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/ncabatoff/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/onsi/ginkgo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/onsi/ginkgo/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/onsi/gomega/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/onsi/gomega/Makefile -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/onsi/gomega/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/onsi/gomega/go.mod -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/onsi/gomega/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/onsi/gomega/go.sum -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package cgroups 4 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/afero/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/afero 2 | 3 | require golang.org/x/text v0.3.0 4 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/afero/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/afero/go.sum -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/cobra/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/cobra/go.mod -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/cobra/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/cobra/go.sum -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/tallclair/mdtoc/.gitignore: -------------------------------------------------------------------------------- 1 | mdtoc 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/github.com/tv42/httpunix/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/atomic/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/atomic/.codecov.yml -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/atomic/.gitignore -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/atomic/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/atomic/.travis.yml -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/atomic/atomic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/atomic/atomic.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/atomic/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/atomic/error.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/atomic/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/atomic/glide.lock -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/atomic/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/atomic/glide.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/multierr/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/multierr/glide.lock -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/multierr/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/multierr/glide.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/.travis.yml -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/LICENSE.txt -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/glide.lock -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/stacktrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/stacktrace.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/oauth2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/oauth2/go.mod -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/oauth2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/oauth2/go.sum -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/tools/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/tools/AUTHORS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gonum.org/v1/gonum/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gonum.org/v1/gonum/AUTHORS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gonum.org/v1/gonum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gonum.org/v1/gonum/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gonum.org/v1/gonum/graph/.gitignore: -------------------------------------------------------------------------------- 1 | test.out -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gonum.org/v1/gonum/lapack/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gonum.org/v1/gonum/mat/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gonum.org/v1/gonum/mat/io.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gonum.org/v1/gonum/mat/lq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gonum.org/v1/gonum/mat/lq.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gonum.org/v1/gonum/mat/lu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gonum.org/v1/gonum/mat/lu.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gonum.org/v1/gonum/mat/qr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gonum.org/v1/gonum/mat/qr.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/fsnotify.v1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/fsnotify.v1/AUTHORS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/fsnotify.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/fsnotify.v1/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/fsnotify.v1/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/fsnotify.v1/fen.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/tomb.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/tomb.v1/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/tomb.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/tomb.v1/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/tomb.v1/tomb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/tomb.v1/tomb.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/apiserver/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/cli-runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/cli-runtime/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - caesarxuchao 5 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/cloud-provider/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/cloud-provider/OWNERS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/cloud-provider/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/cloud-provider/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/cloud-provider/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/cloud-provider/go.mod -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/cloud-provider/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/cloud-provider/go.sum -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/code-generator/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/code-generator/OWNERS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/code-generator/cmd/go-to-protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | go-to-protobuf 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/code-generator/cmd/import-boss/.gitignore: -------------------------------------------------------------------------------- 1 | import-boss 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/code-generator/cmd/lister-gen/.import-restrictions: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/code-generator/cmd/set-gen/.gitignore: -------------------------------------------------------------------------------- 1 | set-gen 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/code-generator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/code-generator/go.mod -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/code-generator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/code-generator/go.sum -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/cri-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/cri-api/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/gengo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/gengo/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/gengo/args/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/gengo/args/args.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/gengo/namer/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/gengo/namer/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/gengo/namer/namer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/gengo/namer/namer.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/gengo/namer/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/gengo/namer/order.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/gengo/parser/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/gengo/parser/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/gengo/parser/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/gengo/parser/parse.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/gengo/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/gengo/types/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/gengo/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/gengo/types/types.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/klog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/klog/.travis.yml -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/klog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/klog/CONTRIBUTING.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/klog/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/klog/OWNERS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/klog/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/klog/RELEASE.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/klog/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/klog/go.mod -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/klog/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/klog/go.sum -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/klog/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/klog/klog_file.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/kubernetes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/kubernetes/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/utils/exec/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/utils/exec/doc.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/utils/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/utils/exec/exec.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/utils/io/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/utils/io/read.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/utils/nsenter/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/utils/nsenter/OWNERS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/utils/path/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/utils/path/file.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/utils/pointer/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/utils/pointer/OWNERS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/modules.txt -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/sigs.k8s.io/testing_frameworks/integration/.gitignore: -------------------------------------------------------------------------------- 1 | assets/bin 2 | -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /ingress/ingress-nginx/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ingress-nginx/version/version.go -------------------------------------------------------------------------------- /ingress/nonstop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/nonstop/Dockerfile -------------------------------------------------------------------------------- /ingress/nonstop/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/nonstop/deployment.yaml -------------------------------------------------------------------------------- /ingress/nonstop/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/nonstop/ingress.yaml -------------------------------------------------------------------------------- /ingress/nonstop/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/nonstop/main.go -------------------------------------------------------------------------------- /ingress/ssl/ingress-ssl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ssl/ingress-ssl.yaml -------------------------------------------------------------------------------- /ingress/ssl/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ssl/openssl.cnf -------------------------------------------------------------------------------- /ingress/ssl/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ssl/tls.crt -------------------------------------------------------------------------------- /ingress/ssl/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/ingress/ssl/tls.key -------------------------------------------------------------------------------- /job/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/job/job.yaml -------------------------------------------------------------------------------- /label/deployment-label01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/label/deployment-label01.yaml -------------------------------------------------------------------------------- /label/deployment-label02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/label/deployment-label02.yaml -------------------------------------------------------------------------------- /label/deployment-label03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/label/deployment-label03.yaml -------------------------------------------------------------------------------- /label/deployment-label04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/label/deployment-label04.yaml -------------------------------------------------------------------------------- /label/label-service01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/label/label-service01.yaml -------------------------------------------------------------------------------- /label/label-service02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/label/label-service02.yaml -------------------------------------------------------------------------------- /logging/elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/logging/elasticsearch.yaml -------------------------------------------------------------------------------- /logging/fluentd-kubernetes-daemonset-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/logging/fluentd-kubernetes-daemonset-rbac.yaml -------------------------------------------------------------------------------- /logging/fluentd-kubernetes-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/logging/fluentd-kubernetes-daemonset.yaml -------------------------------------------------------------------------------- /logging/kibana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/logging/kibana.yaml -------------------------------------------------------------------------------- /monitoring/heapster/deploy/kube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/heapster/deploy/kube.sh -------------------------------------------------------------------------------- /monitoring/metrics-server/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/metrics-server/.golangci.yml -------------------------------------------------------------------------------- /monitoring/metrics-server/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/metrics-server/.travis.yml -------------------------------------------------------------------------------- /monitoring/metrics-server/aggregated-metrics-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/metrics-server/aggregated-metrics-reader.yaml -------------------------------------------------------------------------------- /monitoring/metrics-server/auth-delegator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/metrics-server/auth-delegator.yaml -------------------------------------------------------------------------------- /monitoring/metrics-server/auth-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/metrics-server/auth-reader.yaml -------------------------------------------------------------------------------- /monitoring/metrics-server/metrics-apiservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/metrics-server/metrics-apiservice.yaml -------------------------------------------------------------------------------- /monitoring/metrics-server/metrics-server-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/metrics-server/metrics-server-deployment.yaml -------------------------------------------------------------------------------- /monitoring/metrics-server/metrics-server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/metrics-server/metrics-server-service.yaml -------------------------------------------------------------------------------- /monitoring/metrics-server/resource-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/metrics-server/resource-reader.yaml -------------------------------------------------------------------------------- /monitoring/prometheus/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/prometheus/grafana.yaml -------------------------------------------------------------------------------- /monitoring/prometheus/prometheus-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/prometheus/prometheus-deployment.yaml -------------------------------------------------------------------------------- /monitoring/prometheus/prometheus-kubernetes-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/monitoring/prometheus/prometheus-kubernetes-config.yaml -------------------------------------------------------------------------------- /mysql/chartstorage/index-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/chartstorage/index-cache.yaml -------------------------------------------------------------------------------- /mysql/chartstorage/mysql-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/chartstorage/mysql-0.1.0.tgz -------------------------------------------------------------------------------- /mysql/mysql-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql-0.1.0.tgz -------------------------------------------------------------------------------- /mysql/mysql-1.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql-1.3.1.tgz -------------------------------------------------------------------------------- /mysql/mysql/.helmignore: -------------------------------------------------------------------------------- 1 | .git 2 | OWNERS -------------------------------------------------------------------------------- /mysql/mysql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/Chart.yaml -------------------------------------------------------------------------------- /mysql/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/README.md -------------------------------------------------------------------------------- /mysql/mysql/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/templates/NOTES.txt -------------------------------------------------------------------------------- /mysql/mysql/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/templates/_helpers.tpl -------------------------------------------------------------------------------- /mysql/mysql/templates/configurationFiles-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/templates/configurationFiles-configmap.yaml -------------------------------------------------------------------------------- /mysql/mysql/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/templates/deployment.yaml -------------------------------------------------------------------------------- /mysql/mysql/templates/initializationFiles-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/templates/initializationFiles-configmap.yaml -------------------------------------------------------------------------------- /mysql/mysql/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/templates/pvc.yaml -------------------------------------------------------------------------------- /mysql/mysql/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/templates/secrets.yaml -------------------------------------------------------------------------------- /mysql/mysql/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /mysql/mysql/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/templates/svc.yaml -------------------------------------------------------------------------------- /mysql/mysql/templates/tests/test-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/templates/tests/test-configmap.yaml -------------------------------------------------------------------------------- /mysql/mysql/templates/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/templates/tests/test.yaml -------------------------------------------------------------------------------- /mysql/mysql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/mysql/values.yaml -------------------------------------------------------------------------------- /mysql/sample/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/sample/.helmignore -------------------------------------------------------------------------------- /mysql/sample/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/sample/Chart.yaml -------------------------------------------------------------------------------- /mysql/sample/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/sample/templates/NOTES.txt -------------------------------------------------------------------------------- /mysql/sample/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/sample/templates/_helpers.tpl -------------------------------------------------------------------------------- /mysql/sample/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/sample/templates/deployment.yaml -------------------------------------------------------------------------------- /mysql/sample/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/sample/templates/ingress.yaml -------------------------------------------------------------------------------- /mysql/sample/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/sample/templates/service.yaml -------------------------------------------------------------------------------- /mysql/sample/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/sample/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /mysql/sample/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/mysql/sample/values.yaml -------------------------------------------------------------------------------- /networking/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/networking/pod.yaml -------------------------------------------------------------------------------- /networking/podtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/networking/podtest.yaml -------------------------------------------------------------------------------- /networking/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/networking/service.yaml -------------------------------------------------------------------------------- /pod/pod-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/pod/pod-all.yaml -------------------------------------------------------------------------------- /pod/pod-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/pod/pod-env.yaml -------------------------------------------------------------------------------- /pod/pod-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/pod/pod-init.yaml -------------------------------------------------------------------------------- /pod/pod-resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/pod/pod-resource.yaml -------------------------------------------------------------------------------- /pod/pod-sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/pod/pod-sample.yaml -------------------------------------------------------------------------------- /rbac/clusterrole-aggregation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/rbac/clusterrole-aggregation.yaml -------------------------------------------------------------------------------- /rbac/read-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/rbac/read-clusterrole.yaml -------------------------------------------------------------------------------- /rbac/read-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/rbac/read-clusterrolebinding.yaml -------------------------------------------------------------------------------- /rbac/read-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/rbac/read-role.yaml -------------------------------------------------------------------------------- /rbac/read-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/rbac/read-rolebinding.yaml -------------------------------------------------------------------------------- /rbac/serviceaccount-myuser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/rbac/serviceaccount-myuser.yaml -------------------------------------------------------------------------------- /readme/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/readme/cover.jpg -------------------------------------------------------------------------------- /readme/errata/errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/readme/errata/errata.md -------------------------------------------------------------------------------- /replicaset/replicaset-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/replicaset/replicaset-nginx.yaml -------------------------------------------------------------------------------- /scheduling/node-affinity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/scheduling/node-affinity.yaml -------------------------------------------------------------------------------- /scheduling/nodeselector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/scheduling/nodeselector.yaml -------------------------------------------------------------------------------- /scheduling/pod-affinity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/scheduling/pod-affinity.yaml -------------------------------------------------------------------------------- /scheduling/pod-antiaffinity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/scheduling/pod-antiaffinity.yaml -------------------------------------------------------------------------------- /secret/deployment-secret01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/secret/deployment-secret01.yaml -------------------------------------------------------------------------------- /secret/deployment-secret02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/secret/deployment-secret02.yaml -------------------------------------------------------------------------------- /secret/deployment-secret03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/secret/deployment-secret03.yaml -------------------------------------------------------------------------------- /secret/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/secret/openssl.cnf -------------------------------------------------------------------------------- /secret/password.txt: -------------------------------------------------------------------------------- 1 | password -------------------------------------------------------------------------------- /secret/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/secret/tls.crt -------------------------------------------------------------------------------- /secret/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/secret/tls.key -------------------------------------------------------------------------------- /secret/user-pass-yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/secret/user-pass-yaml.yaml -------------------------------------------------------------------------------- /secret/username.txt: -------------------------------------------------------------------------------- 1 | username -------------------------------------------------------------------------------- /service/clusterip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/service/clusterip.yaml -------------------------------------------------------------------------------- /service/externalname.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/service/externalname.yaml -------------------------------------------------------------------------------- /service/headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/service/headless.yaml -------------------------------------------------------------------------------- /service/loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/service/loadbalancer.yaml -------------------------------------------------------------------------------- /service/nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/service/nodeport.yaml -------------------------------------------------------------------------------- /service/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/service/service.yaml -------------------------------------------------------------------------------- /statefulset/statefulset-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/statefulset/statefulset-env.yaml -------------------------------------------------------------------------------- /statefulset/statefulset-ondelete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/statefulset/statefulset-ondelete.yaml -------------------------------------------------------------------------------- /statefulset/statefulset-parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/statefulset/statefulset-parallel.yaml -------------------------------------------------------------------------------- /statefulset/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/statefulset/statefulset.yaml -------------------------------------------------------------------------------- /volume/deployment-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/volume/deployment-pvc.yaml -------------------------------------------------------------------------------- /volume/pv-hostpath-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/volume/pv-hostpath-label.yaml -------------------------------------------------------------------------------- /volume/pv-hostpath.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/volume/pv-hostpath.yaml -------------------------------------------------------------------------------- /volume/pvc-hostpath-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/volume/pvc-hostpath-label.yaml -------------------------------------------------------------------------------- /volume/pvc-hostpath.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/volume/pvc-hostpath.yaml -------------------------------------------------------------------------------- /volume/volume-emptydir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/volume/volume-emptydir.yaml -------------------------------------------------------------------------------- /volume/volume-hostpath.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/volume/volume-hostpath.yaml -------------------------------------------------------------------------------- /volume/volume-nfsapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/volume/volume-nfsapp.yaml -------------------------------------------------------------------------------- /volume/volume-nfsserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/volume/volume-nfsserver.yaml -------------------------------------------------------------------------------- /wordpress/local-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/wordpress/local-volume.yaml -------------------------------------------------------------------------------- /wordpress/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/wordpress/mysql.yaml -------------------------------------------------------------------------------- /wordpress/password.txt: -------------------------------------------------------------------------------- 1 | test-passwd -------------------------------------------------------------------------------- /wordpress/wordpress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arisu1000/kubernetes-book-sample/HEAD/wordpress/wordpress.yaml --------------------------------------------------------------------------------