├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gcloudignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── ask-question.md │ ├── bug-report.md │ ├── feature-request.md │ ├── proposal.md │ └── release.md ├── pull-request-template.md └── workflows │ └── update-docs.yml ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ci ├── cloudbuild │ ├── release-and-test.yaml │ ├── scheduled │ │ ├── reap-gke-clusters │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── build-image.yaml │ │ │ ├── cleanup-cron.yaml │ │ │ ├── cleanup_firewall_rules.py │ │ │ ├── cleanup_load_balancers.py │ │ │ ├── delete_disks.py │ │ │ ├── delete_gke_clusters.py │ │ │ ├── delete_im_deployments.py │ │ │ ├── reap_ar_repos.py │ │ │ ├── reap_gcr_containers.py │ │ │ ├── reap_gke_clusters.json │ │ │ ├── reap_hub_memberships.py │ │ │ └── reap_iam_bindings.py │ │ └── scripts │ │ │ └── create_scheduler_job.py │ ├── scripts │ │ ├── .gitignore │ │ ├── find_zone.py │ │ └── run_tests.py │ ├── test-many.yaml │ ├── test.ignore │ ├── test.yaml │ └── unit-test.yaml └── terraform │ ├── .gitignore │ ├── main.tf │ └── variables.tf ├── cmd ├── build-helpers │ ├── chown.go │ ├── extract.go │ ├── kodata │ │ ├── HEAD │ │ ├── LICENSE │ │ └── refs │ ├── main.go │ ├── publish.go │ ├── root.go │ ├── tar.go │ └── write_result.go ├── controller │ ├── kodata │ │ ├── HEAD │ │ ├── LICENSE │ │ └── refs │ └── main.go ├── fakerefs │ └── heads │ │ ├── develop │ │ └── master ├── generate-release │ ├── cloudbuild.yaml │ ├── main.go │ ├── main_test.go │ └── scripts │ │ ├── Dockerfile.deployer │ │ ├── Dockerfile.thirdparty │ │ ├── asm-ingressgateway.yml │ │ ├── builder.bash │ │ ├── configure-kf-operator.bash │ │ ├── create-im-deployment.bash │ │ ├── create-im-sa.bash │ │ ├── delete-im-deployment.bash │ │ ├── deployment.tf │ │ ├── install-asm.bash │ │ ├── install-kf-operator.bash │ │ ├── kf.bash │ │ ├── kfsystems-cr.yaml │ │ ├── setup-ar.bash │ │ ├── setup-kcc.bash │ │ ├── setup-kf-defaults.bash │ │ ├── setup-operator-wi.bash │ │ └── setup-wi.bash ├── kf │ └── main.go ├── nop │ ├── kodata │ │ ├── HEAD │ │ ├── LICENSE │ │ └── refs │ └── main.go ├── route-service-proxy │ ├── README.md │ └── main.go ├── setup-buildpack-build │ ├── kodata │ │ ├── HEAD │ │ ├── LICENSE │ │ └── refs │ └── main.go ├── subresource-apiserver │ ├── kodata │ │ ├── HEAD │ │ ├── LICENSE │ │ └── fakerefs │ ├── main.go │ └── scheme.go ├── test-runner │ ├── main.go │ ├── root.go │ ├── run_tests.go │ └── util.go └── webhook │ ├── kodata │ ├── HEAD │ ├── LICENSE │ └── refs │ └── main.go ├── config ├── .gitignore ├── 100-namespace.yaml ├── 200-clusterrole.yaml ├── 200-serviceaccount.yaml ├── 200-user-roles.yaml ├── 201-clusterrolebinding.yaml ├── 202-external-gateway.yaml ├── 203-internal-gateway.yaml ├── 300-app.yaml ├── 300-build.yaml ├── 300-clusterservicebroker.yaml ├── 300-route.yaml ├── 300-servicebroker.yaml ├── 300-serviceinstance.yaml ├── 300-serviceinstancebinding.yaml ├── 300-source-package.yaml ├── 300-space.yaml ├── 300-task-schedule.yaml ├── 300-task.yaml ├── 400-apiserver-service.yaml ├── 400-controller-service.yaml ├── 400-webhook-service.yaml ├── 500-webhook-configuration.yaml ├── 600-uploads-api-server.yaml ├── 601-apiserver.yaml ├── 900-volumebroker.yaml ├── README.md ├── config-defaults.yaml ├── config-logging.yaml ├── config-observability.yaml ├── config-secrets-example.yaml ├── controller.yaml └── webhook.yaml ├── docs ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── assets │ └── scss │ │ └── _variables_project.scss ├── config.toml ├── content │ └── en │ │ ├── _index.md │ │ ├── docs │ │ └── v2.11 │ │ │ ├── _index.md │ │ │ ├── cli │ │ │ ├── _index.md │ │ │ └── generated │ │ │ │ ├── kf-about.md │ │ │ │ ├── kf-app.md │ │ │ │ ├── kf-apps.md │ │ │ │ ├── kf-bind-route-service.md │ │ │ │ ├── kf-bind-service.md │ │ │ │ ├── kf-bindings.md │ │ │ │ ├── kf-build-logs.md │ │ │ │ ├── kf-build.md │ │ │ │ ├── kf-buildpacks.md │ │ │ │ ├── kf-builds.md │ │ │ │ ├── kf-configure-cluster-get-feature-flags.md │ │ │ │ ├── kf-configure-cluster-set-feature-flag.md │ │ │ │ ├── kf-configure-cluster-unset-feature-flag.md │ │ │ │ ├── kf-configure-cluster.md │ │ │ │ ├── kf-configure-space-append-domain.md │ │ │ │ ├── kf-configure-space-get-build-service-account.md │ │ │ │ ├── kf-configure-space-get-buildpack-env.md │ │ │ │ ├── kf-configure-space-get-container-registry.md │ │ │ │ ├── kf-configure-space-get-domains.md │ │ │ │ ├── kf-configure-space-get-execution-env.md │ │ │ │ ├── kf-configure-space-get-nodeselector.md │ │ │ │ ├── kf-configure-space-remove-domain.md │ │ │ │ ├── kf-configure-space-set-app-egress-policy.md │ │ │ │ ├── kf-configure-space-set-app-ingress-policy.md │ │ │ │ ├── kf-configure-space-set-build-egress-policy.md │ │ │ │ ├── kf-configure-space-set-build-ingress-policy.md │ │ │ │ ├── kf-configure-space-set-build-service-account.md │ │ │ │ ├── kf-configure-space-set-buildpack-env.md │ │ │ │ ├── kf-configure-space-set-container-registry.md │ │ │ │ ├── kf-configure-space-set-default-domain.md │ │ │ │ ├── kf-configure-space-set-env.md │ │ │ │ ├── kf-configure-space-set-nodeselector.md │ │ │ │ ├── kf-configure-space-unset-buildpack-env.md │ │ │ │ ├── kf-configure-space-unset-env.md │ │ │ │ ├── kf-configure-space-unset-nodeselector.md │ │ │ │ ├── kf-configure-space.md │ │ │ │ ├── kf-create-autoscaling-rule.md │ │ │ │ ├── kf-create-job.md │ │ │ │ ├── kf-create-route.md │ │ │ │ ├── kf-create-service-broker.md │ │ │ │ ├── kf-create-service.md │ │ │ │ ├── kf-create-space.md │ │ │ │ ├── kf-create-user-provided-service.md │ │ │ │ ├── kf-debug.md │ │ │ │ ├── kf-delete-autoscaling-rules.md │ │ │ │ ├── kf-delete-job-schedule.md │ │ │ │ ├── kf-delete-job.md │ │ │ │ ├── kf-delete-network-policy.md │ │ │ │ ├── kf-delete-orphaned-routes.md │ │ │ │ ├── kf-delete-route.md │ │ │ │ ├── kf-delete-service-broker.md │ │ │ │ ├── kf-delete-service.md │ │ │ │ ├── kf-delete-space.md │ │ │ │ ├── kf-delete.md │ │ │ │ ├── kf-disable-autoscaling.md │ │ │ │ ├── kf-doctor.md │ │ │ │ ├── kf-domains.md │ │ │ │ ├── kf-enable-autoscaling.md │ │ │ │ ├── kf-env.md │ │ │ │ ├── kf-fix-orphaned-bindings.md │ │ │ │ ├── kf-job-history.md │ │ │ │ ├── kf-job-schedules.md │ │ │ │ ├── kf-jobs.md │ │ │ │ ├── kf-logs.md │ │ │ │ ├── kf-map-route.md │ │ │ │ ├── kf-marketplace.md │ │ │ │ ├── kf-network-policies.md │ │ │ │ ├── kf-network-policy.md │ │ │ │ ├── kf-proxy-route.md │ │ │ │ ├── kf-proxy.md │ │ │ │ ├── kf-push.md │ │ │ │ ├── kf-restage.md │ │ │ │ ├── kf-restart.md │ │ │ │ ├── kf-routes.md │ │ │ │ ├── kf-run-job.md │ │ │ │ ├── kf-run-task.md │ │ │ │ ├── kf-scale.md │ │ │ │ ├── kf-schedule-job.md │ │ │ │ ├── kf-service.md │ │ │ │ ├── kf-services.md │ │ │ │ ├── kf-set-env.md │ │ │ │ ├── kf-set-space-role.md │ │ │ │ ├── kf-space-users.md │ │ │ │ ├── kf-space.md │ │ │ │ ├── kf-spaces.md │ │ │ │ ├── kf-ssh.md │ │ │ │ ├── kf-stacks.md │ │ │ │ ├── kf-start.md │ │ │ │ ├── kf-stop.md │ │ │ │ ├── kf-target.md │ │ │ │ ├── kf-tasks.md │ │ │ │ ├── kf-terminate-task.md │ │ │ │ ├── kf-unbind-route-service.md │ │ │ │ ├── kf-unbind-service.md │ │ │ │ ├── kf-unmap-route.md │ │ │ │ ├── kf-unset-env.md │ │ │ │ ├── kf-unset-space-role.md │ │ │ │ ├── kf-update-autoscaling-limits.md │ │ │ │ ├── kf-update-user-provided-service.md │ │ │ │ ├── kf-vcap-services.md │ │ │ │ ├── kf-version.md │ │ │ │ ├── kf-wrap-v2-buildpack.md │ │ │ │ └── kf-xargs-apps.md │ │ │ ├── developer │ │ │ ├── _index.md │ │ │ ├── backing-services │ │ │ │ ├── _index.md │ │ │ │ ├── managed-services.md │ │ │ │ ├── nfs-getting-started.md │ │ │ │ ├── overview.md │ │ │ │ ├── ups-templates.md │ │ │ │ └── user-provided-services.md │ │ │ ├── build-and-deploy │ │ │ │ ├── _index.md │ │ │ │ ├── app-runtime.md │ │ │ │ ├── build-runtime.md │ │ │ │ ├── buildpacks-getting-started.md │ │ │ │ ├── deploying-an-app.md │ │ │ │ ├── howto-blue-green.md │ │ │ │ ├── manifest.md │ │ │ │ └── v2-vs-v3-buildpacks.md │ │ │ ├── configure-service-accounts.md │ │ │ ├── debugging-workloads.md │ │ │ ├── routes-and-domains.md │ │ │ ├── scaling │ │ │ │ ├── _index.md │ │ │ │ ├── autoscaling.md │ │ │ │ ├── manage-autoscaling.md │ │ │ │ └── resource-management.md │ │ │ ├── service-discovery │ │ │ │ └── service-discovery.md │ │ │ └── tasks │ │ │ │ ├── _index.md │ │ │ │ ├── run-task.md │ │ │ │ ├── scheduling-tasks.md │ │ │ │ └── task.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ ├── adding-x-vcap-reqeust-id-http-headers.md │ │ │ ├── deploy-with-offline-java-builder.md │ │ │ ├── deploying-docker-apps-with-nfs-mapfs.md │ │ │ ├── deploying-spring-cloud-config.md │ │ │ └── spring-music │ │ │ │ ├── _index.md │ │ │ │ ├── sm1.png │ │ │ │ └── sm2.png │ │ │ ├── getting-started │ │ │ ├── _index.md │ │ │ ├── compare-services.md │ │ │ ├── overview.md │ │ │ └── quickstart │ │ │ │ ├── app-quickstart-success.png │ │ │ │ └── index.md │ │ │ ├── migrating │ │ │ ├── _index.md │ │ │ └── builds.md │ │ │ ├── operator │ │ │ ├── _index.md │ │ │ ├── buildpacks │ │ │ │ ├── _index.md │ │ │ │ ├── configure-stacks.md │ │ │ │ └── customizing-buildpacks.md │ │ │ ├── customizing │ │ │ │ ├── _index.md │ │ │ │ ├── about-customizing-kf.md │ │ │ │ ├── cluster-configuration.md │ │ │ │ └── customizing-features.md │ │ │ ├── kf-dependencies │ │ │ │ ├── _index.md │ │ │ │ └── kf-components-diagram.svg │ │ │ ├── logging-monitoring │ │ │ │ ├── _index.md │ │ │ │ ├── logging-monitoring.md │ │ │ │ ├── monitoring-dashboard.md │ │ │ │ ├── monitoring-logging.md │ │ │ │ └── monitoring-overview.md │ │ │ ├── networking │ │ │ │ ├── _index.md │ │ │ │ ├── setting-up-a-custom-domain.md │ │ │ │ ├── setting-up-https-ingress.md │ │ │ │ └── setting-up-networkpolicies.md │ │ │ ├── reference-architecture │ │ │ │ ├── _index.md │ │ │ │ ├── config-sync-reference-diagram.svg │ │ │ │ └── gke-reference-diagram.svg │ │ │ ├── security │ │ │ │ ├── _index.md │ │ │ │ ├── compute-isolation.md │ │ │ │ ├── kubernetes-roles.md │ │ │ │ ├── rbac.md │ │ │ │ ├── role-based-access-control.md │ │ │ │ └── security-overview │ │ │ │ │ ├── _index.md │ │ │ │ │ └── wi_overview.svg │ │ │ ├── service-brokers │ │ │ │ ├── _index.md │ │ │ │ ├── about-service-brokers.md │ │ │ │ ├── cloud-sb-overview │ │ │ │ │ ├── _index.md │ │ │ │ │ └── kf-csb-architecture.svg │ │ │ │ ├── deploying-cloud-sb.md │ │ │ │ └── nfs-platform-setup.md │ │ │ └── upgrade-testing.md │ │ │ └── troubleshooting │ │ │ ├── _index.md │ │ │ ├── generated │ │ │ ├── troubleshoot_app.md │ │ │ ├── troubleshoot_build.md │ │ │ ├── troubleshoot_clusterservicebroker.md │ │ │ ├── troubleshoot_route.md │ │ │ ├── troubleshoot_servicebroker.md │ │ │ ├── troubleshoot_serviceinstance.md │ │ │ ├── troubleshoot_serviceinstancebinding.md │ │ │ ├── troubleshoot_sourcepackage.md │ │ │ ├── troubleshoot_space.md │ │ │ └── troubleshoot_task.md │ │ │ └── temporarily-stop-reconciliation.md │ │ └── search.md ├── docker-compose.yaml ├── go.mod ├── go.sum ├── layouts │ ├── 404.html │ └── shortcodes │ │ ├── note │ │ ├── tip │ │ └── warning ├── netlify.toml └── package.json ├── first_party └── k8s-stateless-subresource │ ├── README.md │ ├── go.mod │ ├── go.sum │ └── pkg │ ├── apiserver │ ├── apiserver.go │ ├── apiserver_test.go │ ├── doc.go │ └── utils_test.go │ └── internal │ └── apiserver │ ├── apiserver.go │ ├── apiserver_test.go │ └── installer │ ├── installer.go │ └── installer_test.go ├── go.mod ├── go.sum ├── hack ├── README.md ├── acceptance-test.sh ├── apply-kf-with-operator.sh ├── build.sh ├── check-clean-git-state.sh ├── check-linters.sh ├── clean-integration-tests.sh ├── create-dev-release.sh ├── delete-all-spaces.sh ├── deploy-dev-release.sh ├── generate-command-docs.sh ├── generate-git-branch-report.py ├── generate-lifecycle-artifacts.sh ├── go-build.sh ├── go-generate.sh ├── install-gcp-service-broker.sh ├── install-kf-with-operator.sh ├── integration-test.sh ├── ko-apply.sh ├── lint-shell.sh ├── pre-commit.sh ├── prow │ ├── e2e-test.sh │ ├── reap.sh │ ├── unit-test.sh │ ├── verify-build.sh │ ├── verify-generate.sh │ └── verify-license.sh ├── tail-controller.sh ├── tail-subresource-apiserver.sh ├── tail-webhook.sh ├── test.sh ├── tidy.sh ├── unit-test.sh ├── update-codegen.sh ├── update-istio.sh ├── update-k8s-deps.sh ├── update-knative-pkg.sh ├── update-schemas.sh ├── update-tektoncd-pipeline.sh ├── update-vendor-license.sh └── util.sh ├── kf.code-workspace ├── operator ├── .ko.yaml ├── Readme.md ├── cmd │ └── manager │ │ ├── kodata │ │ ├── VENDOR-LICENSE │ │ └── kf │ │ │ └── 2.11 │ │ │ └── v2.11.5_kf.yaml │ │ └── main.go ├── config │ ├── 100-namespace.yaml │ ├── 200-kfsystem-crd.yaml │ ├── 201-activeoperand-crd.yaml │ ├── 202-operand-crd.yaml │ ├── 300-service_account.yaml │ ├── 400-role.yaml │ ├── 401-role_binding.yaml │ ├── 500-config-appdevexperience.yaml │ ├── 500-config-logging.yaml │ ├── 500-config-observability.yaml │ └── 900-operator.yaml ├── go.mod ├── go.sum ├── hack │ ├── VERSION │ ├── boilerplate │ │ └── boilerplate.go.txt │ ├── extract-images.sh │ ├── library.sh │ ├── release.sh │ ├── update-codegen.sh │ ├── update-deps.sh │ ├── update-vendors.sh │ ├── upgrade-forks.sh │ └── verify-codegen.sh ├── pkg │ ├── apis │ │ ├── kfsystem │ │ │ ├── kf │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── kf_lifecycle.go │ │ │ │ ├── kf_lifecycle_test.go │ │ │ │ ├── kf_types.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── operand │ │ │ └── v1alpha1 │ │ │ ├── active_operand_lifecycle.go │ │ │ ├── active_operand_lifecycle_test.go │ │ │ ├── active_operand_types.go │ │ │ ├── cluster_active_operand_lifecycle.go │ │ │ ├── cluster_active_operand_lifecycle_test.go │ │ │ ├── cluster_active_operand_types.go │ │ │ ├── common_active_operand_types.go │ │ │ ├── doc.go │ │ │ ├── operand_lifecycle.go │ │ │ ├── operand_types.go │ │ │ ├── register.go │ │ │ ├── register_test.go │ │ │ └── zz_generated.deepcopy.go │ ├── client │ │ ├── README.md │ │ ├── clientset │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ ├── kfsystem │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_kfsystem.go │ │ │ │ │ └── fake_kfsystem_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── kfsystem.go │ │ │ │ │ └── kfsystem_client.go │ │ │ │ └── operand │ │ │ │ └── v1alpha1 │ │ │ │ ├── activeoperand.go │ │ │ │ ├── clusteractiveoperand.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_activeoperand.go │ │ │ │ ├── fake_clusteractiveoperand.go │ │ │ │ ├── fake_operand.go │ │ │ │ └── fake_operand_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── operand.go │ │ │ │ └── operand_client.go │ │ ├── informers │ │ │ └── externalversions │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ ├── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ │ │ ├── kfsystem │ │ │ │ ├── interface.go │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── interface.go │ │ │ │ │ └── kfsystem.go │ │ │ │ └── operand │ │ │ │ ├── interface.go │ │ │ │ └── v1alpha1 │ │ │ │ ├── activeoperand.go │ │ │ │ ├── clusteractiveoperand.go │ │ │ │ ├── interface.go │ │ │ │ └── operand.go │ │ ├── injection │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ ├── informers │ │ │ │ ├── factory │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── filtered │ │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake_filtered_factory.go │ │ │ │ │ │ └── filtered_factory.go │ │ │ │ ├── kfsystem │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ └── kfsystem │ │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ ├── filtered │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ └── fake.go │ │ │ │ │ │ └── kfsystem.go │ │ │ │ │ │ └── kfsystem.go │ │ │ │ └── operand │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── activeoperand │ │ │ │ │ ├── activeoperand.go │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── filtered │ │ │ │ │ │ ├── activeoperand.go │ │ │ │ │ │ └── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ ├── clusteractiveoperand │ │ │ │ │ ├── clusteractiveoperand.go │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── filtered │ │ │ │ │ │ ├── clusteractiveoperand.go │ │ │ │ │ │ └── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── operand │ │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── operand.go │ │ │ │ │ └── operand.go │ │ │ └── reconciler │ │ │ │ ├── kfsystem │ │ │ │ └── v1alpha1 │ │ │ │ │ └── kfsystem │ │ │ │ │ ├── controller.go │ │ │ │ │ ├── reconciler.go │ │ │ │ │ └── state.go │ │ │ │ └── operand │ │ │ │ └── v1alpha1 │ │ │ │ ├── activeoperand │ │ │ │ ├── controller.go │ │ │ │ ├── reconciler.go │ │ │ │ └── state.go │ │ │ │ ├── clusteractiveoperand │ │ │ │ ├── controller.go │ │ │ │ ├── reconciler.go │ │ │ │ └── state.go │ │ │ │ └── operand │ │ │ │ ├── controller.go │ │ │ │ ├── reconciler.go │ │ │ │ └── state.go │ │ └── listers │ │ │ ├── kfsystem │ │ │ └── v1alpha1 │ │ │ │ ├── expansion_generated.go │ │ │ │ └── kfsystem.go │ │ │ └── operand │ │ │ └── v1alpha1 │ │ │ ├── activeoperand.go │ │ │ ├── clusteractiveoperand.go │ │ │ ├── expansion_generated.go │ │ │ └── operand.go │ ├── manifest │ │ ├── version.go │ │ └── version_test.go │ ├── manifestival │ │ └── injection │ │ │ └── client │ │ │ ├── client.go │ │ │ └── fake │ │ │ └── fake.go │ ├── operand │ │ ├── api.go │ │ ├── fake │ │ │ ├── fake_owner_handler.go │ │ │ ├── fake_owner_injector.go │ │ │ └── fake_owner_injector_test.go │ │ ├── injection │ │ │ ├── dynamichelper │ │ │ │ ├── dynamichelper.go │ │ │ │ └── impl.go │ │ │ ├── ownerhandler │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── ownerhandler.go │ │ │ └── ownerinjector │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ └── ownerinjector.go │ │ ├── kf │ │ │ └── operand_reconciler.go │ │ ├── mock │ │ │ └── mock_api.go │ │ ├── operand.go │ │ ├── owner_handler.go │ │ ├── owner_injector.go │ │ └── transformations │ │ │ ├── annotation_transformer.go │ │ │ ├── annotation_transformer_test.go │ │ │ ├── crd_transformer.go │ │ │ ├── crd_transformer_test.go │ │ │ ├── deployment_transform.go │ │ │ ├── deployment_transform_test.go │ │ │ ├── service_transformer.go │ │ │ ├── status_deletion_transformer.go │ │ │ └── status_deletion_transformer_test.go │ ├── reconciler │ │ ├── activeoperand │ │ │ ├── activeoperand.go │ │ │ ├── activeoperand_test.go │ │ │ ├── controller.go │ │ │ ├── controller_test.go │ │ │ └── index.md │ │ ├── clusteractiveoperand │ │ │ ├── clusteractiveoperand.go │ │ │ ├── clusteractiveoperand_test.go │ │ │ ├── controller.go │ │ │ ├── controller_test.go │ │ │ └── index.md │ │ ├── kfsystem │ │ │ ├── controller.go │ │ │ ├── kf.go │ │ │ └── kf │ │ │ │ ├── annotation_transformer.go │ │ │ │ ├── annotation_transformer_test.go │ │ │ │ ├── api_server_certs.go │ │ │ │ ├── api_server_certs_test.go │ │ │ │ ├── api_server_remover.go │ │ │ │ ├── api_server_remover_test.go │ │ │ │ ├── api_server_secret.go │ │ │ │ ├── api_server_secret_test.go │ │ │ │ ├── certvolume_transformer.go │ │ │ │ ├── certvolume_transformer_test.go │ │ │ │ ├── config │ │ │ │ ├── secrets.go │ │ │ │ └── store.go │ │ │ │ ├── configmap_transformer.go │ │ │ │ ├── configmap_transformer_test.go │ │ │ │ ├── gateway_transformer.go │ │ │ │ ├── gateway_transformer_test.go │ │ │ │ ├── reconcile.go │ │ │ │ └── reconcile_test.go │ │ └── operand │ │ │ ├── controller.go │ │ │ ├── controller_test.go │ │ │ ├── healthcheck.go │ │ │ ├── healthcheck_test.go │ │ │ ├── index.md │ │ │ ├── manifest.go │ │ │ ├── operand.go │ │ │ └── operand_test.go │ ├── release │ │ ├── commandtools │ │ │ ├── commands.go │ │ │ ├── ko_resolver.go │ │ │ └── ko_resolver_test.go │ │ ├── filetools │ │ │ └── file_manipulation.go │ │ ├── options.go │ │ ├── options_test.go │ │ ├── release.go │ │ └── stringtools │ │ │ ├── string_manipulation.go │ │ │ └── string_manipulation_test.go │ ├── sanitizer │ │ ├── funcmap.go │ │ ├── funcmap_test.go │ │ ├── input.go │ │ └── input_test.go │ ├── testing │ │ ├── k8s │ │ │ ├── apiservice.go │ │ │ ├── configmap.go │ │ │ ├── container.go │ │ │ ├── crd.go │ │ │ ├── daemon_set.go │ │ │ ├── deployment.go │ │ │ ├── generic.go │ │ │ ├── job.go │ │ │ ├── mutating_webhook.go │ │ │ ├── namespace.go │ │ │ ├── role.go │ │ │ ├── rolebinding.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ ├── validating_webhook.go │ │ │ └── volume.go │ │ ├── kfsystem │ │ │ └── v1alpha1 │ │ │ │ └── kfsystem.go │ │ ├── manifestival │ │ │ └── manifestival_helpers.go │ │ ├── operand │ │ │ └── v1alpha1 │ │ │ │ ├── activeoperand.go │ │ │ │ ├── clusteractiveoperand.go │ │ │ │ └── operand.go │ │ ├── scheme.go │ │ └── validations.go │ └── transformer │ │ ├── annotation.go │ │ └── annotation_test.go └── scripts │ ├── ci-build.sh │ └── ci-test.sh ├── pkg ├── admission │ └── validation │ │ ├── app.go │ │ ├── app_test.go │ │ ├── doc.go │ │ ├── route.go │ │ ├── route_test.go │ │ ├── servicebroker.go │ │ ├── servicebroker_test.go │ │ ├── serviceinstance.go │ │ ├── serviceinstancebinding.go │ │ ├── serviceinstancebinding_test.go │ │ └── utils.go ├── apis │ ├── kf │ │ ├── config │ │ │ ├── defaults.go │ │ │ ├── defaults_test.go │ │ │ ├── doc.go │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ ├── testdata │ │ │ │ └── config-defaults.yaml │ │ │ ├── types.go │ │ │ ├── types_test.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── doc.go │ │ ├── k8s_fieldmask.go │ │ ├── k8s_fieldmask_test.go │ │ ├── k8s_validation.go │ │ ├── k8s_validation_test.go │ │ ├── register.go │ │ └── v1alpha1 │ │ │ ├── alg_types.go │ │ │ ├── app_defaults.go │ │ │ ├── app_defaults_test.go │ │ │ ├── app_lifecycle.go │ │ │ ├── app_lifecycle_test.go │ │ │ ├── app_masks.go │ │ │ ├── app_masks_test.go │ │ │ ├── app_types.go │ │ │ ├── app_types_test.go │ │ │ ├── app_validation.go │ │ │ ├── app_validation_test.go │ │ │ ├── build_defaults.go │ │ │ ├── build_lifecycle.go │ │ │ ├── build_lifecycle_test.go │ │ │ ├── build_types.go │ │ │ ├── build_types_test.go │ │ │ ├── build_validation.go │ │ │ ├── build_validation_test.go │ │ │ ├── doc.go │ │ │ ├── field_error.go │ │ │ ├── field_error_test.go │ │ │ ├── register.go │ │ │ ├── route_defaults.go │ │ │ ├── route_defaults_test.go │ │ │ ├── route_lifecycle.go │ │ │ ├── route_lifecycle_test.go │ │ │ ├── route_types.go │ │ │ ├── route_types_test.go │ │ │ ├── route_validation.go │ │ │ ├── route_validation_test.go │ │ │ ├── routeserviceurl.go │ │ │ ├── routeserviceurl_test.go │ │ │ ├── servicebroker_defaults.go │ │ │ ├── servicebroker_defaults_test.go │ │ │ ├── servicebroker_lifecycle.go │ │ │ ├── servicebroker_lifecycle_test.go │ │ │ ├── servicebroker_types.go │ │ │ ├── servicebroker_validation.go │ │ │ ├── servicebroker_validation_test.go │ │ │ ├── serviceinstance_defaults.go │ │ │ ├── serviceinstance_defaults_test.go │ │ │ ├── serviceinstance_lifecycle.go │ │ │ ├── serviceinstance_lifecycle_test.go │ │ │ ├── serviceinstance_types.go │ │ │ ├── serviceinstance_types_test.go │ │ │ ├── serviceinstance_validation.go │ │ │ ├── serviceinstance_validation_test.go │ │ │ ├── serviceinstancebinding_defaults.go │ │ │ ├── serviceinstancebinding_defaults_test.go │ │ │ ├── serviceinstancebinding_lifecycle.go │ │ │ ├── serviceinstancebinding_lifecycle_test.go │ │ │ ├── serviceinstancebinding_types.go │ │ │ ├── serviceinstancebinding_types_test.go │ │ │ ├── serviceinstancebinding_validation.go │ │ │ ├── serviceinstancebinding_validation_test.go │ │ │ ├── source_package_defaults.go │ │ │ ├── source_package_lifecycle.go │ │ │ ├── source_package_lifecycle_test.go │ │ │ ├── source_package_types.go │ │ │ ├── source_package_validation.go │ │ │ ├── source_package_validation_test.go │ │ │ ├── space_defaults.go │ │ │ ├── space_defaults_test.go │ │ │ ├── space_lifecycle.go │ │ │ ├── space_lifecycle_test.go │ │ │ ├── space_types.go │ │ │ ├── space_types_test.go │ │ │ ├── space_validation.go │ │ │ ├── space_validation_test.go │ │ │ ├── task_defaults.go │ │ │ ├── task_lifecycle.go │ │ │ ├── task_types.go │ │ │ ├── task_validation.go │ │ │ ├── task_validation_test.go │ │ │ ├── taskschedule_defaults.go │ │ │ ├── taskschedule_defaults_test.go │ │ │ ├── taskschedule_lifecycle.go │ │ │ ├── taskschedule_types.go │ │ │ ├── taskschedule_validation.go │ │ │ ├── taskschedule_validation_test.go │ │ │ ├── testdata │ │ │ └── golden │ │ │ │ ├── testbuildspecbuilders_buildpackv2build_multiple_buildpack_buildspec.golden │ │ │ │ ├── testbuildspecbuilders_buildpackv2build_single_buildpack_buildspec.golden │ │ │ │ ├── testbuildspecbuilders_buildpackv3build_buildspec.golden │ │ │ │ ├── testbuildspecbuilders_dockerfilebuild_buildspec.golden │ │ │ │ ├── testbuildstatus_propagatebuildstatus_completed_buildstatus.golden │ │ │ │ ├── testbuildstatus_propagatebuildstatus_failed_buildstatus.golden │ │ │ │ ├── testbuildstatus_propagatebuildstatus_nil_buildstatus.golden │ │ │ │ ├── testbuildstatus_propagatebuildstatus_ongoing_buildstatus.golden │ │ │ │ ├── testbuildstatus_propagatebuildstatus_unreconciled_buildstatus.golden │ │ │ │ ├── testspacestatus_propagatebuildconfigstatus_blank_everything_status_buildconfig.golden │ │ │ │ ├── testspacestatus_propagatebuildconfigstatus_complete_flow_status_buildconfig.golden │ │ │ │ ├── testspacestatus_propagatebuildconfigstatus_default_override_false_status_buildconfig.golden │ │ │ │ ├── testspacestatus_propagatebuildconfigstatus_default_override_true_status_buildconfig.golden │ │ │ │ ├── testspacestatus_propagatebuildconfigstatus_removes_disabled_v2_buildpacks_status_buildconfig.golden │ │ │ │ ├── testspacestatus_propagatebuildconfigstatus_unset_default_status_buildconfig.golden │ │ │ │ ├── testspacestatus_propagatenetworkconfigstatus_blank_config_status_networkconfig.golden │ │ │ │ ├── testspacestatus_propagatenetworkconfigstatus_config_not_loaded_status_networkconfig.golden │ │ │ │ ├── testspacestatus_propagatenetworkconfigstatus_full_test_status_networkconfig.golden │ │ │ │ └── testspacestatus_propagatenetworkconfigstatus_no_ingress_ip_status_networkconfig.golden │ │ │ ├── utils.go │ │ │ ├── utils_test.go │ │ │ ├── zz_generated.conditions.appstatus.go │ │ │ ├── zz_generated.conditions.buildstatus.go │ │ │ ├── zz_generated.conditions.commonservicebrokerstatus.go │ │ │ ├── zz_generated.conditions.routestatus.go │ │ │ ├── zz_generated.conditions.serviceinstancebindingstatus.go │ │ │ ├── zz_generated.conditions.serviceinstancestatus.go │ │ │ ├── zz_generated.conditions.sourcepackagestatus.go │ │ │ ├── zz_generated.conditions.spacestatus.go │ │ │ ├── zz_generated.conditions.taskschedulestatus.go │ │ │ ├── zz_generated.conditions.taskstatus.go │ │ │ └── zz_generated.deepcopy.go │ └── networking │ │ ├── asm.go │ │ ├── asm_test.go │ │ ├── register.go │ │ └── v1alpha3 │ │ ├── doc.go │ │ ├── network_types.go │ │ ├── register.go │ │ └── zz_generated.deepcopy.go ├── client │ ├── kf │ │ ├── clientset │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── kf │ │ │ │ └── v1alpha1 │ │ │ │ ├── app.go │ │ │ │ ├── build.go │ │ │ │ ├── clusterservicebroker.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_app.go │ │ │ │ ├── fake_build.go │ │ │ │ ├── fake_clusterservicebroker.go │ │ │ │ ├── fake_kf_client.go │ │ │ │ ├── fake_route.go │ │ │ │ ├── fake_scale.go │ │ │ │ ├── fake_servicebroker.go │ │ │ │ ├── fake_serviceinstance.go │ │ │ │ ├── fake_serviceinstancebinding.go │ │ │ │ ├── fake_sourcepackage.go │ │ │ │ ├── fake_space.go │ │ │ │ ├── fake_task.go │ │ │ │ └── fake_taskschedule.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── kf_client.go │ │ │ │ ├── route.go │ │ │ │ ├── scale.go │ │ │ │ ├── servicebroker.go │ │ │ │ ├── serviceinstance.go │ │ │ │ ├── serviceinstancebinding.go │ │ │ │ ├── sourcepackage.go │ │ │ │ ├── space.go │ │ │ │ ├── task.go │ │ │ │ └── taskschedule.go │ │ ├── informers │ │ │ └── externalversions │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ ├── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ │ │ └── kf │ │ │ │ ├── interface.go │ │ │ │ └── v1alpha1 │ │ │ │ ├── app.go │ │ │ │ ├── build.go │ │ │ │ ├── clusterservicebroker.go │ │ │ │ ├── interface.go │ │ │ │ ├── route.go │ │ │ │ ├── scale.go │ │ │ │ ├── servicebroker.go │ │ │ │ ├── serviceinstance.go │ │ │ │ ├── serviceinstancebinding.go │ │ │ │ ├── sourcepackage.go │ │ │ │ ├── space.go │ │ │ │ ├── task.go │ │ │ │ └── taskschedule.go │ │ ├── injection │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ └── informers │ │ │ │ ├── factory │ │ │ │ ├── factory.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── fake │ │ │ │ │ └── fake_filtered_factory.go │ │ │ │ │ └── filtered_factory.go │ │ │ │ └── kf │ │ │ │ └── v1alpha1 │ │ │ │ ├── app │ │ │ │ ├── app.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── app.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── build │ │ │ │ ├── build.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── build.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── clusterservicebroker │ │ │ │ ├── clusterservicebroker.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── clusterservicebroker.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── route │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── route.go │ │ │ │ └── route.go │ │ │ │ ├── scale │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── scale.go │ │ │ │ └── scale.go │ │ │ │ ├── servicebroker │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── servicebroker.go │ │ │ │ └── servicebroker.go │ │ │ │ ├── serviceinstance │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── serviceinstance.go │ │ │ │ └── serviceinstance.go │ │ │ │ ├── serviceinstancebinding │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── serviceinstancebinding.go │ │ │ │ └── serviceinstancebinding.go │ │ │ │ ├── sourcepackage │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── sourcepackage.go │ │ │ │ └── sourcepackage.go │ │ │ │ ├── space │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── space.go │ │ │ │ └── space.go │ │ │ │ ├── task │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── task.go │ │ │ │ └── task.go │ │ │ │ └── taskschedule │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── taskschedule.go │ │ │ │ └── taskschedule.go │ │ └── listers │ │ │ └── kf │ │ │ └── v1alpha1 │ │ │ ├── app.go │ │ │ ├── build.go │ │ │ ├── clusterservicebroker.go │ │ │ ├── expansion_generated.go │ │ │ ├── route.go │ │ │ ├── scale.go │ │ │ ├── servicebroker.go │ │ │ ├── serviceinstance.go │ │ │ ├── serviceinstancebinding.go │ │ │ ├── sourcepackage.go │ │ │ ├── space.go │ │ │ ├── task.go │ │ │ └── taskschedule.go │ ├── kube-aggregator │ │ ├── clientset │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── apiregistration │ │ │ │ └── v1 │ │ │ │ ├── apiregistration_client.go │ │ │ │ ├── apiservice.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apiregistration_client.go │ │ │ │ └── fake_apiservice.go │ │ │ │ └── generated_expansion.go │ │ ├── informers │ │ │ └── externalversions │ │ │ │ ├── apiregistration │ │ │ │ ├── interface.go │ │ │ │ └── v1 │ │ │ │ │ ├── apiservice.go │ │ │ │ │ └── interface.go │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ └── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ ├── injection │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ └── informers │ │ │ │ ├── apiregistration │ │ │ │ └── v1 │ │ │ │ │ └── apiservice │ │ │ │ │ ├── apiservice.go │ │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ │ └── filtered │ │ │ │ │ ├── apiservice.go │ │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ │ └── factory │ │ │ │ ├── factory.go │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ ├── fake │ │ │ │ └── fake_filtered_factory.go │ │ │ │ └── filtered_factory.go │ │ └── listers │ │ │ └── apiregistration │ │ │ └── v1 │ │ │ ├── apiservice.go │ │ │ └── expansion_generated.go │ ├── kube │ │ ├── clientset │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── networking │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_ingressclass.go │ │ │ │ ├── fake_networking_client.go │ │ │ │ └── fake_networkpolicy.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── networking_client.go │ │ │ │ └── networkpolicy.go │ │ ├── informers │ │ │ └── externalversions │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ ├── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ │ │ └── networking │ │ │ │ ├── interface.go │ │ │ │ └── v1 │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── interface.go │ │ │ │ └── networkpolicy.go │ │ ├── injection │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ └── fake │ │ │ │ │ └── fake.go │ │ │ └── informers │ │ │ │ ├── factory │ │ │ │ ├── factory.go │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── filtered │ │ │ │ │ ├── fake │ │ │ │ │ └── fake_filtered_factory.go │ │ │ │ │ └── filtered_factory.go │ │ │ │ └── networking │ │ │ │ └── v1 │ │ │ │ ├── ingress │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── ingress.go │ │ │ │ └── ingress.go │ │ │ │ ├── ingressclass │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── ingressclass.go │ │ │ │ └── ingressclass.go │ │ │ │ └── networkpolicy │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── networkpolicy.go │ │ │ │ └── networkpolicy.go │ │ └── listers │ │ │ └── networking │ │ │ └── v1 │ │ │ ├── expansion_generated.go │ │ │ ├── ingress.go │ │ │ ├── ingressclass.go │ │ │ └── networkpolicy.go │ └── networking │ │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── networking │ │ │ └── v1alpha3 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_networking_client.go │ │ │ ├── fake_serviceentry.go │ │ │ └── fake_virtualservice.go │ │ │ ├── generated_expansion.go │ │ │ ├── networking_client.go │ │ │ ├── serviceentry.go │ │ │ └── virtualservice.go │ │ ├── informers │ │ └── externalversions │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ │ └── networking │ │ │ ├── interface.go │ │ │ └── v1alpha3 │ │ │ ├── interface.go │ │ │ ├── serviceentry.go │ │ │ └── virtualservice.go │ │ ├── injection │ │ ├── client │ │ │ ├── client.go │ │ │ └── fake │ │ │ │ └── fake.go │ │ └── informers │ │ │ ├── factory │ │ │ ├── factory.go │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── filtered │ │ │ │ ├── fake │ │ │ │ └── fake_filtered_factory.go │ │ │ │ └── filtered_factory.go │ │ │ └── networking │ │ │ └── v1alpha3 │ │ │ ├── serviceentry │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ │ ├── fake │ │ │ │ │ └── fake.go │ │ │ │ └── serviceentry.go │ │ │ └── serviceentry.go │ │ │ └── virtualservice │ │ │ ├── fake │ │ │ └── fake.go │ │ │ ├── filtered │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ └── virtualservice.go │ │ │ └── virtualservice.go │ │ └── listers │ │ └── networking │ │ └── v1alpha3 │ │ ├── expansion_generated.go │ │ ├── serviceentry.go │ │ └── virtualservice.go ├── dockerutil │ ├── testdata │ │ ├── credhelpers │ │ │ └── config.json │ │ └── customauth │ │ │ └── config.json │ ├── util.go │ └── util_test.go ├── internal │ ├── envutil │ │ ├── envutil.go │ │ └── envutil_test.go │ ├── osbutil │ │ ├── constructors.go │ │ ├── constructors_test.go │ │ ├── doc.go │ │ └── testdata │ │ │ ├── golden │ │ │ ├── testmaposbtokfcatalog_minibroker_kfcatalog.golden │ │ │ └── testmaposbtokfcatalog_nil_kfcatalog.golden │ │ │ └── minibroker-catalog.json │ └── selectorutil │ │ ├── selectorutil.go │ │ └── selectorutil_test.go ├── kf │ ├── algorithms │ │ ├── algorithms.go │ │ ├── algorithms_test.go │ │ ├── doc.go │ │ ├── subjects.go │ │ └── subjects_test.go │ ├── apps │ │ ├── client.go │ │ ├── client.yml │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ ├── fake_pusher.go │ │ │ └── interfaces.go │ │ ├── fake_watcher_test.go │ │ ├── kfapp.go │ │ ├── kfapp_test.go │ │ ├── log_tailer.go │ │ ├── log_tailer_test.go │ │ ├── push-options.yml │ │ ├── push.go │ │ ├── push_options.go │ │ ├── push_test.go │ │ └── zz_generated.client.go │ ├── buildpacks │ │ ├── client.go │ │ ├── client_test.go │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ └── interfaces.go │ │ └── fake_image_test.go │ ├── builds │ │ ├── client.go │ │ ├── client.yml │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ └── interfaces.go │ │ ├── util.go │ │ ├── util_test.go │ │ └── zz_generated.client.go │ ├── cfutil │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_systemenvinjector.go │ │ │ └── interfaces.go │ │ ├── systemenvinjector.go │ │ ├── systemenvinjector_test.go │ │ ├── vcap.go │ │ ├── vcap_test.go │ │ ├── vcapapp.go │ │ └── vcapapp_test.go │ ├── commands │ │ ├── about.go │ │ ├── apps │ │ │ ├── acceptance_test.go │ │ │ ├── app.go │ │ │ ├── apps.go │ │ │ ├── delete.go │ │ │ ├── env.go │ │ │ ├── env_test.go │ │ │ ├── integration_test.go │ │ │ ├── proxy.go │ │ │ ├── proxy_test.go │ │ │ ├── push.go │ │ │ ├── push_test.go │ │ │ ├── restage.go │ │ │ ├── restage_test.go │ │ │ ├── restart.go │ │ │ ├── restart_test.go │ │ │ ├── scale.go │ │ │ ├── scale_test.go │ │ │ ├── set_env.go │ │ │ ├── set_env_test.go │ │ │ ├── ssh.go │ │ │ ├── ssh_test.go │ │ │ ├── start.go │ │ │ ├── start_test.go │ │ │ ├── stop.go │ │ │ ├── stop_test.go │ │ │ ├── testdata │ │ │ │ ├── dockerfile-app │ │ │ │ │ ├── .cfignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── garbage.o │ │ │ │ ├── example-app │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .kfignore │ │ │ │ │ ├── garbage.o │ │ │ │ │ └── manifest.yml │ │ │ │ ├── manifest-services.yaml │ │ │ │ ├── manifest.yml │ │ │ │ └── replacement │ │ │ │ │ ├── manifest.yaml │ │ │ │ │ ├── ops-vars.json │ │ │ │ │ └── prod.yaml │ │ │ ├── unset_env.go │ │ │ ├── unset_env_test.go │ │ │ └── xargs_apps.go │ │ ├── autoscaling │ │ │ ├── create_autoscaling_rule.go │ │ │ ├── create_autoscaling_rule_test.go │ │ │ ├── delete_autoscaling_rules.go │ │ │ ├── delete_autoscaling_rules_test.go │ │ │ ├── disable_autoscaling.go │ │ │ ├── disable_autoscaling_test.go │ │ │ ├── enable_autoscaling.go │ │ │ ├── enable_autoscaling_test.go │ │ │ ├── integration_test.go │ │ │ ├── update_autoscaling_limits.go │ │ │ └── update_autoscaling_limits_test.go │ │ ├── buildpacks │ │ │ ├── acceptance_test.go │ │ │ ├── buildpacks.go │ │ │ ├── buildpacks_test.go │ │ │ ├── stacks.go │ │ │ ├── stacks_test.go │ │ │ ├── testdata │ │ │ │ └── golden │ │ │ │ │ ├── testbuildpacks_listing_fails_output.golden │ │ │ │ │ ├── testbuildpacks_lists_each_buildpack_output.golden │ │ │ │ │ ├── testbuildpacks_lists_each_buildpack_with_appdevexperiencebuilds_enabled_output.golden │ │ │ │ │ ├── testbuildpacks_no_space_chosen_output.golden │ │ │ │ │ ├── testbuildpacks_wrong_number_of_args_output.golden │ │ │ │ │ ├── teststacks_lists_each_stack_output.golden │ │ │ │ │ ├── teststacks_lists_only_v3_stack_when_appdevexperience_builds_are_enabled_output.golden │ │ │ │ │ ├── teststacks_no_space_chosen_output.golden │ │ │ │ │ └── teststacks_wrong_number_of_args_output.golden │ │ │ ├── wrap-v2-buildpack.go │ │ │ └── wrap-v2-buildpack_test.go │ │ ├── builds │ │ │ ├── build.go │ │ │ ├── list.go │ │ │ ├── logs.go │ │ │ └── logs_test.go │ │ ├── cluster │ │ │ ├── config_cluster.go │ │ │ ├── config_cluster_test.go │ │ │ └── testdata │ │ │ │ └── config-defaults.yaml │ │ ├── completion │ │ │ ├── completion.go │ │ │ └── completion_test.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── impersonate.go │ │ │ ├── impersonate_test.go │ │ │ ├── logging │ │ │ │ ├── logging.go │ │ │ │ └── logging_test.go │ │ │ ├── requestdumper.go │ │ │ ├── requestdumper_test.go │ │ │ └── testdata │ │ │ │ ├── custom-config.yml │ │ │ │ ├── empty-config.yml │ │ │ │ └── golden │ │ │ │ ├── testimpersonationrequest_impersonate_extra_request.golden │ │ │ │ ├── testimpersonationrequest_impersonate_group_request.golden │ │ │ │ ├── testimpersonationrequest_impersonate_user_request.golden │ │ │ │ └── testimpersonationrequest_no_impersonation_request.golden │ │ ├── debug.go │ │ ├── debug_test.go │ │ ├── dependencies │ │ │ ├── dependencies.go │ │ │ ├── dependencies_test.go │ │ │ ├── matrix.go │ │ │ ├── url.go │ │ │ └── version.go │ │ ├── doc.go │ │ ├── doctor │ │ │ ├── doctor.go │ │ │ └── doctor_test.go │ │ ├── exporttok8s │ │ │ ├── exporttok8s.go │ │ │ ├── exporttok8s_test.go │ │ │ ├── resource │ │ │ │ └── clone-code.yaml │ │ │ └── testdata │ │ │ │ └── golden │ │ │ │ ├── testexportstok8scommand_sanity_build_image_yaml.golden │ │ │ │ ├── testexportstok8scommand_sanity_deployment_yaml.golden │ │ │ │ ├── testgetcontainer_have_manifest_but_no_cpu_diskquota_memory_container.golden │ │ │ │ ├── testgetcontainer_have_manifest_but_no_health_check_container.golden │ │ │ │ ├── testgetcontainer_have_manifest_with_the_properties_container.golden │ │ │ │ └── testgetcontainer_no_manifest_container.golden │ │ ├── group │ │ │ ├── group.go │ │ │ └── group_test.go │ │ ├── license.go │ │ ├── logs │ │ │ ├── logs.go │ │ │ └── logs_test.go │ │ ├── networkpolicies │ │ │ ├── delete.go │ │ │ ├── describe.go │ │ │ ├── integration_test.go │ │ │ └── list.go │ │ ├── root.go │ │ ├── root_test.go │ │ ├── routes │ │ │ ├── create_route.go │ │ │ ├── create_route_test.go │ │ │ ├── delete_orphaned_routes.go │ │ │ ├── delete_orphaned_routes_test.go │ │ │ ├── delete_route.go │ │ │ ├── delete_route_test.go │ │ │ ├── flags.go │ │ │ ├── integration_test.go │ │ │ ├── map_route.go │ │ │ ├── map_route_test.go │ │ │ ├── proxy_route.go │ │ │ ├── proxy_route_test.go │ │ │ ├── routes.go │ │ │ ├── unmap_route.go │ │ │ └── unmap_route_test.go │ │ ├── service-bindings │ │ │ ├── acceptance_test.go │ │ │ ├── bind-route-service.go │ │ │ ├── bind-route-service_test.go │ │ │ ├── bind-service.go │ │ │ ├── bind-service_test.go │ │ │ ├── bindings.go │ │ │ ├── cli_test.go │ │ │ ├── fix-orphaned-bindings.go │ │ │ ├── fix-orphaned-bindings_test.go │ │ │ ├── integration_test.go │ │ │ ├── unbind-route-service.go │ │ │ ├── unbind-route-service_test.go │ │ │ ├── unbind-service.go │ │ │ ├── unbind-service_test.go │ │ │ ├── vcap_services.go │ │ │ └── vcap_services_test.go │ │ ├── service-brokers │ │ │ ├── create-service-broker.go │ │ │ ├── create-service-broker_test.go │ │ │ ├── delete-service-broker.go │ │ │ └── delete-service-broker_test.go │ │ ├── services │ │ │ ├── create-service.go │ │ │ ├── create-service_test.go │ │ │ ├── create-user-provided-service.go │ │ │ ├── create-user-provided-service_test.go │ │ │ ├── delete-service.go │ │ │ ├── helpers_test.go │ │ │ ├── marketplace.go │ │ │ ├── marketplace_test.go │ │ │ ├── service.go │ │ │ ├── services.go │ │ │ ├── update-user-provided-service.go │ │ │ └── update-user-provided-service_test.go │ │ ├── spaces │ │ │ ├── config_space.go │ │ │ ├── config_space_test.go │ │ │ ├── create.go │ │ │ ├── create_test.go │ │ │ ├── delete.go │ │ │ ├── doc.go │ │ │ ├── domains.go │ │ │ ├── domains_test.go │ │ │ ├── get.go │ │ │ ├── integration_test.go │ │ │ ├── list.go │ │ │ ├── set_space_role.go │ │ │ ├── set_space_role_test.go │ │ │ ├── space_users.go │ │ │ ├── space_users_test.go │ │ │ ├── testdata │ │ │ │ └── golden │ │ │ │ │ └── testnewdomainscommand_calls_get_domains_out.golden │ │ │ ├── unset_space_role.go │ │ │ └── unset_space_role_test.go │ │ ├── stubs │ │ │ ├── api.go │ │ │ ├── auth.go │ │ │ ├── login.go │ │ │ └── logout.go │ │ ├── target.go │ │ ├── target_test.go │ │ ├── tasks │ │ │ ├── integration_test.go │ │ │ ├── list.go │ │ │ ├── run_task.go │ │ │ ├── run_task_test.go │ │ │ ├── terminate_task.go │ │ │ └── terminate_task_test.go │ │ ├── taskschedules │ │ │ ├── create_job.go │ │ │ ├── create_job_test.go │ │ │ ├── delete_job.go │ │ │ ├── delete_job_schedule.go │ │ │ ├── delete_job_schedule_test.go │ │ │ ├── integration_test.go │ │ │ ├── job_history.go │ │ │ ├── list_job_schedules.go │ │ │ ├── list_jobs.go │ │ │ ├── resource_info.go │ │ │ ├── run_job.go │ │ │ ├── run_job_test.go │ │ │ ├── schedule_job.go │ │ │ └── schedule_job_test.go │ │ ├── version.go │ │ ├── wire_gen.go │ │ └── wire_injector.go │ ├── configmaps │ │ ├── client.go │ │ ├── client.yml │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ └── interfaces.go │ │ └── zz_generated.client.go │ ├── describe │ │ ├── describe.go │ │ ├── describe_test.go │ │ ├── doc.go │ │ ├── testdata │ │ │ └── golden │ │ │ │ ├── testduckstatus_conditionready_unknown_status.golden │ │ │ │ ├── testduckstatus_conditionsucceeded_unknown_status.golden │ │ │ │ ├── testduckstatus_multiple_conditions_status.golden │ │ │ │ ├── testlabels_empty_labels.golden │ │ │ │ ├── testlabels_sorted_labels.golden │ │ │ │ └── testlabels_unsorted_labels.golden │ │ ├── unstructured.go │ │ ├── unstructured_test.go │ │ ├── util.go │ │ └── util_test.go │ ├── doc.go │ ├── doctor │ │ ├── cluster.go │ │ ├── diagnostic.go │ │ ├── diagnostic_test.go │ │ ├── istio.go │ │ ├── istio_test.go │ │ ├── operator.go │ │ ├── troubleshooter │ │ │ ├── custom_resources.go │ │ │ ├── custom_resources_test.go │ │ │ ├── doc.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── util.go │ │ └── util_test.go │ ├── dynamicutils │ │ ├── utils.go │ │ └── utils_test.go │ ├── injection │ │ ├── clients │ │ │ ├── execstreamer │ │ │ │ ├── execstreamer.go │ │ │ │ └── fake │ │ │ │ │ └── execstreamer.go │ │ │ └── tableclient │ │ │ │ ├── fake │ │ │ │ └── tableclient.go │ │ │ │ └── tableclient.go │ │ ├── fake │ │ │ ├── gomock_controller.go │ │ │ ├── injection.go │ │ │ └── testing.go │ │ ├── injection.go │ │ └── lazy_init.go │ ├── internal │ │ ├── genericcli │ │ │ ├── delete.go │ │ │ ├── delete_test.go │ │ │ ├── describe.go │ │ │ ├── describe_test.go │ │ │ ├── doc.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── options.yml │ │ │ ├── stub.go │ │ │ ├── stub_test.go │ │ │ ├── util.go │ │ │ ├── xargs.go │ │ │ ├── xargs_test.go │ │ │ └── zz_generated_options.go │ │ ├── last_integration_tests │ │ │ ├── README.md │ │ │ └── integration_test.go │ │ ├── tableclient │ │ │ ├── fake │ │ │ │ ├── fake_client.go │ │ │ │ └── interface.go │ │ │ ├── tableclient.go │ │ │ └── tableclient_test.go │ │ ├── tools │ │ │ ├── clientgen │ │ │ │ ├── client.go │ │ │ │ ├── genclient.go │ │ │ │ ├── gentest │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client.yml │ │ │ │ │ ├── client_test.go │ │ │ │ │ └── zz_generated.client.go │ │ │ │ ├── tmplclient.go │ │ │ │ ├── tmplfunctional.go │ │ │ │ └── tmplheader.go │ │ │ ├── command-doc-generator │ │ │ │ ├── command-doc-generator.go │ │ │ │ ├── testdata │ │ │ │ │ └── golden │ │ │ │ │ │ ├── testgeneratebookyaml_generatebookyaml.golden │ │ │ │ │ │ ├── testprintflags_empty_printflags.golden │ │ │ │ │ │ ├── testprintflags_flag_formatting_printflags.golden │ │ │ │ │ │ ├── testprintflags_nonzero_defaults_printflags.golden │ │ │ │ │ │ └── testprintflags_zero_defaults_printflags.golden │ │ │ │ ├── utils.go │ │ │ │ └── utils_test.go │ │ │ ├── conditiongen │ │ │ │ ├── generator.go │ │ │ │ ├── params.go │ │ │ │ └── tmplcondition.go │ │ │ ├── fakelister │ │ │ │ ├── generator.go │ │ │ │ ├── params.go │ │ │ │ └── tmpllister.go │ │ │ ├── generator │ │ │ │ ├── gen.go │ │ │ │ └── gen_test.go │ │ │ ├── includefile │ │ │ │ ├── includefile.go │ │ │ │ ├── params.go │ │ │ │ └── tmplcondition.go │ │ │ ├── option-builder │ │ │ │ ├── LICENSE_HEADER │ │ │ │ ├── LICENSE_HEADER.go.txt │ │ │ │ └── option-builder.go │ │ │ └── runbook-generator │ │ │ │ ├── formatter.go │ │ │ │ ├── formatter_test.go │ │ │ │ ├── main.go │ │ │ │ └── testdata │ │ │ │ └── golden │ │ │ │ ├── testgentroubleshooterrunbook_cluster_empty_runbook.golden │ │ │ │ ├── testgentroubleshooterrunbook_cluster_with_problems_runbook.golden │ │ │ │ ├── testgentroubleshooterrunbook_namespaced_empty_runbook.golden │ │ │ │ ├── testgentroubleshooterrunbook_namespaced_empty_v2_runbook.golden │ │ │ │ └── testgentroubleshooterrunbook_namespaced_with_problems_runbook.golden │ │ └── utils │ │ │ └── cli │ │ │ ├── async_flags.go │ │ │ ├── async_flags_test.go │ │ │ ├── colors.go │ │ │ ├── prefix_filter.go │ │ │ ├── prefix_filter_test.go │ │ │ ├── printflags.go │ │ │ ├── printflags_test.go │ │ │ ├── resource_flags.go │ │ │ ├── retry_flags.go │ │ │ ├── retry_flags_test.go │ │ │ ├── tips.go │ │ │ ├── tips_test.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ ├── logs │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_logs.go │ │ │ └── interface.go │ │ ├── line_writer.go │ │ ├── line_writer_test.go │ │ ├── logs_reader.go │ │ ├── logs_reader_test.go │ │ ├── options.go │ │ ├── options.yml │ │ ├── queue.go │ │ ├── queue_test.go │ │ ├── reverse_log_reader.go │ │ ├── reverse_log_reader_test.go │ │ ├── tailer.go │ │ ├── tailer_test.go │ │ ├── windowed_log_reader.go │ │ └── windowed_log_reader_test.go │ ├── manifest │ │ ├── detection.go │ │ ├── detection_test.go │ │ ├── detectors.go │ │ ├── detectors_test.go │ │ ├── manifest.go │ │ ├── manifest_conversion.go │ │ ├── manifest_conversion_test.go │ │ ├── manifest_test.go │ │ ├── manifest_validation.go │ │ ├── manifest_validation_test.go │ │ ├── substitution.go │ │ ├── substitution_test.go │ │ └── testdata │ │ │ ├── golden │ │ │ ├── testapplysubstitution_missing_substitution_yaml.golden │ │ │ ├── testapplysubstitution_nested_int_map_yaml.golden │ │ │ ├── testapplysubstitution_nested_map_yaml.golden │ │ │ └── testapplysubstitution_whole_thing_yaml.golden │ │ │ ├── manifest-dir-2 │ │ │ └── manifest.yaml │ │ │ ├── manifest-dir │ │ │ └── manifest.yml │ │ │ └── some-file.txt │ ├── marketplace │ │ ├── client.go │ │ ├── client_test.go │ │ ├── doc.go │ │ └── fake │ │ │ ├── fake_client_interface.go │ │ │ └── interfaces.go │ ├── networkpolicies │ │ ├── client.go │ │ ├── client.yml │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ └── interfaces.go │ │ └── zz_generated.client.go │ ├── routes │ │ ├── client.go │ │ ├── client.yml │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ └── interfaces.go │ │ └── zz_generated.client.go │ ├── secrets │ │ ├── client.go │ │ ├── client.yml │ │ ├── client_test.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ └── interfaces.go │ │ └── zz_generated.client.go │ ├── service-brokers │ │ ├── cluster │ │ │ ├── client.go │ │ │ ├── client.yml │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── fake_client.go │ │ │ │ └── interfaces.go │ │ │ └── zz_generated.client.go │ │ └── namespaced │ │ │ ├── client.go │ │ │ ├── client.yml │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ └── interfaces.go │ │ │ └── zz_generated.client.go │ ├── serviceinstancebindings │ │ ├── client.go │ │ ├── client.yml │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ └── interfaces.go │ │ └── zz_generated.client.go │ ├── serviceinstances │ │ ├── client.go │ │ ├── client.yml │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ └── interfaces.go │ │ └── zz_generated.client.go │ ├── sourcepackages │ │ ├── client.go │ │ ├── client.yaml │ │ ├── client_test.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ └── interfaces.go │ │ ├── testdata │ │ │ └── test.txt │ │ └── zz_generated.client.go │ ├── spaces │ │ ├── client.go │ │ ├── client.yml │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ └── interfaces.go │ │ └── zz_generated.client.go │ ├── tasks │ │ ├── client.go │ │ ├── client.yml │ │ ├── doc.go │ │ ├── fake │ │ │ ├── fake_client.go │ │ │ └── interfaces.go │ │ └── zz_generated.client.go │ ├── tektonutil │ │ └── util.go │ └── testutil │ │ ├── acceptance │ │ └── acceptance_tests.go │ │ ├── assertions.go │ │ ├── defaultable.go │ │ ├── doc.go │ │ ├── fake_api_server.go │ │ ├── feature_flags.go │ │ ├── golden.go │ │ ├── gomock.go │ │ ├── integration │ │ ├── app_cache.go │ │ ├── app_cache_test.go │ │ ├── check_apps.go │ │ ├── detach_context.go │ │ ├── doc.go │ │ ├── fake_metric_logger.go │ │ ├── integration.go │ │ ├── metrics.go │ │ └── metrics_test.go │ │ ├── reactor.go │ │ └── validatable.go ├── reconciler │ ├── apiservercerts │ │ ├── controller.go │ │ ├── reconciler.go │ │ ├── reconciler_test.go │ │ ├── zz_generated.fakelister.apiservice_test.go │ │ └── zz_generated.fakelister.secret_test.go │ ├── app │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── resources │ │ │ ├── autoscaler.go │ │ │ ├── autoscaler_test.go │ │ │ ├── build.go │ │ │ ├── build_test.go │ │ │ ├── deployment.go │ │ │ ├── deployment_test.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── env_test.go │ │ │ ├── route.go │ │ │ ├── route_test.go │ │ │ ├── secret.go │ │ │ ├── secret_test.go │ │ │ ├── service.go │ │ │ ├── service_test.go │ │ │ ├── serviceaccount.go │ │ │ ├── serviceaccount_test.go │ │ │ └── testdata │ │ │ └── golden │ │ │ ├── testmakeservice_custom_port_service.golden │ │ │ ├── testmakeservice_custom_ports_mixed_names_service.golden │ │ │ ├── testmakeservice_default_service.golden │ │ │ ├── testmakeservice_multiple_custom_ports_service.golden │ │ │ ├── testmakeservice_port_80_already_defined_service.golden │ │ │ ├── testmakeservice_userportname_already_defined_service.golden │ │ │ ├── testmakesource_buildpack_build.golden │ │ │ ├── testmakesource_cascading_env_build.golden │ │ │ └── testmakesource_empty_app_and_space_build.golden │ ├── appstartcommand │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── reconciler_test.go │ ├── base.go │ ├── build │ │ ├── config │ │ │ ├── secrets.go │ │ │ ├── secrets_test.go │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ └── testdata │ │ │ │ └── config-secrets.yaml │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── resources │ │ │ ├── builtin_tasks.go │ │ │ ├── builtin_tasks_test.go │ │ │ ├── doc.go │ │ │ ├── task_run.go │ │ │ └── task_run_test.go │ ├── clusterservicebroker │ │ ├── controller.go │ │ └── reconciler.go │ ├── equality.go │ ├── equality_test.go │ ├── featureflag │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── reconciler_test.go │ ├── garbagecollector │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── reconciler_test.go │ ├── integration │ │ ├── README.md │ │ ├── defaults_test.go │ │ ├── doc.go │ │ └── testdata │ │ │ └── defaults │ │ │ ├── README.md │ │ │ └── serving_v1alpha1.yaml │ ├── reconcilerutil │ │ ├── doc.go │ │ ├── finalizers.go │ │ ├── finalizers_test.go │ │ ├── health_checker_main.go │ │ ├── serviceinstance.go │ │ ├── serviceinstance_test.go │ │ ├── stats.go │ │ └── stats_test.go │ ├── route │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── doc.go │ │ ├── fake_corev1_listers.go │ │ ├── fake_kf.go │ │ ├── fake_kf_v1alpha1.go │ │ ├── fake_listers.go │ │ ├── fake_networking.go │ │ ├── fake_networking_client.go │ │ ├── fake_networking_listers.go │ │ ├── fake_reconciler.go │ │ ├── reconciler.go │ │ ├── reconciler_test.go │ │ └── resources │ │ │ ├── doc.go │ │ │ ├── testdata │ │ │ └── golden │ │ │ │ ├── testmakevirtualservice_blank_host_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_custom_gateway_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_destination_ports_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_empty_list_of_routes_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_internal_routing_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_longest_path_first_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_multiple_apps_per_route_with_different_weights_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_no_retries_applies_everywhere_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_route_host_ignoring_port_using_prefix_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_route_service_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_same_path_length_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_single_app_binding_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_single_route_virtualservice.golden │ │ │ │ ├── testmakevirtualservice_wildcard_domain_virtualservice.golden │ │ │ │ └── testmakevirtualservice_wildcard_route_works_as_backup_virtualservice.golden │ │ │ ├── virtual_service.go │ │ │ └── virtual_service_test.go │ ├── servicebroker │ │ ├── controller.go │ │ └── reconciler.go │ ├── servicecatalogbase.go │ ├── serviceinstance │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── resources │ │ │ ├── deployment.go │ │ │ ├── deployment_test.go │ │ │ ├── osb.go │ │ │ ├── osb_test.go │ │ │ ├── service.go │ │ │ ├── service_test.go │ │ │ ├── testdata │ │ │ └── golden │ │ │ │ ├── testmakedeployment_happy_deployment.golden │ │ │ │ ├── testmakedeployment_missing_image_in_config_deployment.golden │ │ │ │ ├── testmakeosbdeprovisionrequest_good_osbdeprovisionrequest.golden │ │ │ │ ├── testmakeosblastoperationrequest_nil_key_osblastoperationrequest.golden │ │ │ │ ├── testmakeosblastoperationrequest_populated_key_osblastoperationrequest.golden │ │ │ │ ├── testmakeosbprovisionrequest_good_osbprovisionrequest.golden │ │ │ │ └── testmakeservice_default_service.golden │ │ │ ├── volume.go │ │ │ └── volume_test.go │ ├── serviceinstancebinding │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── resources │ │ │ ├── osb.go │ │ │ ├── osb_test.go │ │ │ ├── secret.go │ │ │ ├── secret_test.go │ │ │ └── testdata │ │ │ └── golden │ │ │ ├── testmakecredentialsforosbservice_blank_creds_osb_creds.golden │ │ │ ├── testmakecredentialsforosbservice_complex_creds_osb_creds.golden │ │ │ ├── testmakecredentialsforosbservice_nil_creds_osb_creds.golden │ │ │ ├── testmakeosbbindinglastoperationrequest_nil_key_osbbindinglastoperationrequest.golden │ │ │ ├── testmakeosbbindinglastoperationrequest_populated_key_osbbindinglastoperationrequest.golden │ │ │ ├── testmakeosbbindrequest_good_osbbindrequest.golden │ │ │ ├── testmakeosbgetbindingrequest_good_osbgetbindingrequest.golden │ │ │ ├── testmakeosbunbindrequest_good_osbunbindrequest.golden │ │ │ ├── testmakeuserprovidedcredentialssecret_merged_binding_params_ups_creds_secret.golden │ │ │ └── testmakeuserprovidedcredentialssecret_no_binding_params_ups_creds_secret.golden │ ├── space │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── resources │ │ │ ├── build_service_account.go │ │ │ ├── build_service_account_test.go │ │ │ ├── clusterrole.go │ │ │ ├── clusterrole_test.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── clusterrolebinding_test.go │ │ │ ├── doc.go │ │ │ ├── iam_policy.go │ │ │ ├── iam_policy_test.go │ │ │ ├── namespace.go │ │ │ ├── namespace_test.go │ │ │ ├── networkpolicy.go │ │ │ ├── role.go │ │ │ ├── rolebinding.go │ │ │ ├── rolebindings.go │ │ │ ├── rolebindings_test.go │ │ │ └── testdata │ │ │ └── golden │ │ │ ├── testmakeclusterrolebinding_duplicates_clusterrolebinding.golden │ │ │ ├── testmakeclusterrolebinding_no_subjects_clusterrolebinding.golden │ │ │ ├── testmakeclusterrolebinding_nominal_clusterrolebinding.golden │ │ │ ├── testmakerolebindingforclusterrole_auditor_rolebinding.golden │ │ │ ├── testmakerolebindingforclusterrole_developer_rolebinding.golden │ │ │ ├── testmakerolebindingforclusterrole_manager_rolebinding.golden │ │ │ └── testmakespacemanagerclusterrole_nominal_clusterrole.golden │ ├── task │ │ ├── controller.go │ │ ├── reconciler.go │ │ └── resources │ │ │ ├── task_run.go │ │ │ ├── task_run_test.go │ │ │ └── testdata │ │ │ └── golden │ │ │ ├── testmaketaskrun_empty_taskrun.golden │ │ │ ├── testmaketaskrun_nfs_volumes_disabled_taskrun.golden │ │ │ ├── testmaketaskrun_nfs_volumes_enabled_start_command_taskrun.golden │ │ │ ├── testmaketaskrun_nfs_volumes_enabled_taskrun.golden │ │ │ ├── testmaketaskrun_nominal_taskrun.golden │ │ │ ├── testmaketaskrun_timeout_taskrun.golden │ │ │ ├── testmaketaskrun_unlimited_timeout_taskrun.golden │ │ │ └── testmaketaskrun_unset_timeout_taskrun.golden │ ├── taskschedule │ │ ├── controller.go │ │ ├── reconciler.go │ │ ├── reconciler_test.go │ │ └── resources │ │ │ └── task.go │ ├── unstructured_equality.go │ └── unstructured_equality_test.go ├── sourceimage │ ├── create.go │ ├── create_test.go │ ├── doc.go │ ├── download.go │ ├── download_test.go │ ├── extract.go │ ├── extract_test.go │ ├── fake_listers.go │ ├── image_uploader.go │ ├── testdata │ │ ├── dockerfile-app │ │ │ ├── .cfignore │ │ │ ├── Dockerfile │ │ │ └── garbage.o │ │ ├── example-app │ │ │ ├── .gitignore │ │ │ ├── .kfignore │ │ │ ├── garbage.o │ │ │ └── manifest.yml │ │ ├── golden │ │ │ ├── testbuildignorefilter_cfignore_itself_uploaded_files.golden │ │ │ ├── testbuildignorefilter_cfignore_uploaded_files.golden │ │ │ ├── testbuildignorefilter_default_ignores_uploaded_files.golden │ │ │ ├── testbuildignorefilter_kfignore_itself_uploaded_files.golden │ │ │ ├── testbuildignorefilter_kfignore_uploaded_files.golden │ │ │ ├── testpackagesourcetar_exclude_everything_tar_list.golden │ │ │ ├── testpackagesourcetar_file_does_not_exist_tar_list.golden │ │ │ ├── testpackagesourcetar_include_everything_tar_list.golden │ │ │ ├── testpackagesourcetar_package_a_jar_file_tar_list.golden │ │ │ ├── testpackagesourcetar_package_a_non_zip_file_tar_list.golden │ │ │ ├── testpackagesourcetar_package_a_zip_file_tar_list.golden │ │ │ └── testpackagesourcetar_partial_exclude_tar_list.golden │ │ ├── include.jar │ │ ├── include.zip │ │ └── source │ │ │ ├── exclude │ │ │ ├── exclude-dir │ │ │ └── include │ │ │ ├── include │ │ │ ├── include-dir │ │ │ ├── exclude │ │ │ └── include │ │ │ └── symlink │ ├── uploader.go │ ├── uploader_test.go │ ├── utils.go │ └── utils_test.go └── system │ ├── environment.go │ ├── environment_test.go │ ├── ingress.go │ ├── ingress_test.go │ └── testing │ └── environment.go ├── samples ├── README.md ├── apps │ ├── catsbroker │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── pkg │ │ │ ├── broker.go │ │ │ ├── broker_test.go │ │ │ ├── catalog.go │ │ │ └── types.go │ ├── cfignore │ │ ├── .cfignore │ │ ├── .gitignore │ │ ├── garbage.o │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── echo │ │ ├── README.md │ │ ├── go.mod │ │ └── main.go │ ├── envs │ │ ├── README.md │ │ ├── go.mod │ │ └── main.go │ ├── helloworld │ │ ├── Dockerfile │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── jsessionid-lb │ │ ├── README.md │ │ ├── go.mod │ │ ├── main.go │ │ └── pkg │ │ │ ├── loadbalancer.go │ │ │ └── loadbalancer_test.go │ ├── manifest-with-buildpack │ │ ├── go.mod │ │ ├── main.go │ │ └── manifest.yaml │ ├── manifest-with-service │ │ ├── app │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── main.go │ │ └── manifest.yml │ ├── multiple-apps │ │ ├── README.md │ │ └── manifest.yml │ ├── multiple-ports │ │ ├── go.mod │ │ ├── main.go │ │ └── manifest.yaml │ ├── service-broker │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── session │ │ ├── README.md │ │ ├── go.mod │ │ ├── main.go │ │ └── manifest.yaml │ ├── sigterm │ │ ├── go.mod │ │ └── main.go │ └── slowpoke │ │ ├── README.md │ │ ├── go.mod │ │ ├── main.go │ │ └── manifest.yaml └── cloud-service-broker │ ├── Dockerfile │ ├── README.md │ └── kf-csb-template.yaml ├── third_party ├── VENDOR-LICENSE ├── cloudfoundry-cli │ ├── LICENSE │ ├── METADATA │ ├── NOTICE │ └── README.md ├── forked │ ├── cobra │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── README.md │ │ ├── args.go │ │ ├── args_test.go │ │ ├── bash_completions.go │ │ ├── bash_completions.md │ │ ├── bash_completions_test.go │ │ ├── cobra.go │ │ ├── cobra │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ │ ├── add.go │ │ │ │ ├── add_test.go │ │ │ │ ├── golden_test.go │ │ │ │ ├── helpers.go │ │ │ │ ├── helpers_test.go │ │ │ │ ├── init.go │ │ │ │ ├── init_test.go │ │ │ │ ├── license_agpl.go │ │ │ │ ├── license_apache_2.go │ │ │ │ ├── license_bsd_clause_2.go │ │ │ │ ├── license_bsd_clause_3.go │ │ │ │ ├── license_gpl_2.go │ │ │ │ ├── license_gpl_3.go │ │ │ │ ├── license_lgpl.go │ │ │ │ ├── license_mit.go │ │ │ │ ├── licenses.go │ │ │ │ ├── project.go │ │ │ │ ├── project_test.go │ │ │ │ ├── root.go │ │ │ │ └── testdata │ │ │ │ │ ├── LICENSE.golden │ │ │ │ │ ├── main.go.golden │ │ │ │ │ ├── root.go.golden │ │ │ │ │ └── test.go.golden │ │ │ ├── main.go │ │ │ └── tpl │ │ │ │ └── main.go │ │ ├── cobra_test.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_test.go │ │ ├── command_win.go │ │ ├── completions.go │ │ ├── completions_test.go │ │ ├── doc │ │ │ ├── README.md │ │ │ ├── cmd_test.go │ │ │ ├── man_docs.go │ │ │ ├── man_docs.md │ │ │ ├── man_docs_test.go │ │ │ ├── man_examples_test.go │ │ │ ├── md_docs.go │ │ │ ├── md_docs.md │ │ │ ├── md_docs_test.go │ │ │ ├── rest_docs.go │ │ │ ├── rest_docs.md │ │ │ ├── rest_docs_test.go │ │ │ ├── util.go │ │ │ ├── yaml_docs.go │ │ │ ├── yaml_docs.md │ │ │ └── yaml_docs_test.go │ │ ├── fish_completions.go │ │ ├── fish_completions.md │ │ ├── fish_completions_test.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── powershell_completions.go │ │ ├── powershell_completions.md │ │ ├── projects_using_cobra.md │ │ ├── shell_completions.go │ │ ├── shell_completions.md │ │ ├── zsh_completions.go │ │ └── zsh_completions.md │ ├── gomod-collector │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── licenses.go │ │ ├── main.go │ │ └── modules.go │ └── v2-buildpack-lifecycle │ │ ├── .gitignore │ │ ├── Dockerfile.linux.test │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── README.md │ │ ├── builder │ │ ├── main.go │ │ └── package.go │ │ ├── builder_config.go │ │ ├── builder_config_path.go │ │ ├── builder_config_path_windows2012R2.go │ │ ├── buildpackrunner │ │ ├── dea_staging_info.go │ │ ├── find_tar.go │ │ ├── find_tar_windows2012R2.go │ │ ├── git_buildpack.go │ │ ├── package.go │ │ ├── resources │ │ │ └── launch.go │ │ ├── runner.go │ │ ├── runner_unix.go │ │ ├── runner_windows.go │ │ └── zip_buildpack.go │ │ ├── containerpath │ │ ├── containerpath.go │ │ └── containerpath_windows2012R2.go │ │ ├── credhub │ │ └── credhub.go │ │ ├── databaseuri │ │ └── databaseuri.go │ │ ├── env │ │ └── env.go │ │ ├── getenv │ │ └── getenv.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── installer │ │ └── main.go │ │ ├── launcher │ │ ├── launcher_unix.go │ │ ├── launcher_windows.go │ │ ├── main.go │ │ ├── package.go │ │ └── profile │ │ │ ├── profile.go │ │ │ └── profile_windows.go │ │ ├── models.go │ │ ├── package.go │ │ ├── platformoptions │ │ └── platformoptions.go │ │ ├── protocol │ │ ├── package.go │ │ └── protocol.go │ │ └── shell │ │ ├── exec │ │ └── exec_unix.go │ │ ├── shell.go │ │ └── shell │ │ └── main.go ├── k8s.io │ └── kubectl │ │ ├── LICENSE │ │ ├── METADATA │ │ └── pkg │ │ └── util │ │ ├── interrupt │ │ └── interrupt.go │ │ ├── templates │ │ ├── command_groups.go │ │ ├── markdown.go │ │ ├── normalizers.go │ │ ├── templater.go │ │ └── templates.go │ │ └── term │ │ ├── resize.go │ │ ├── resizeevents.go │ │ ├── resizeevents_windows.go │ │ ├── term.go │ │ ├── term_writer.go │ │ └── term_writer_test.go ├── mapfs │ ├── Dockerfile │ ├── LICENSE │ ├── METADATA │ ├── NOTICE │ ├── README.md │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── ci │ │ ├── run_fstest │ │ ├── run_fstest.build.yml │ │ └── run_unit.build.yml │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── main_suite_test.go │ │ ├── main_test.go │ │ ├── mapfs │ │ ├── mapfs.go │ │ ├── mapfs_suite_test.go │ │ └── mapfs_test.go │ │ ├── mapfs_fakes │ │ └── fake_file_system.go │ │ └── perf │ │ ├── perf_suite_test.go │ │ └── perf_test.go ├── tektoncd-cli │ ├── LICENSE │ ├── METADATA │ ├── README.md │ └── pkg │ │ ├── cli │ │ └── interface.go │ │ ├── cmd │ │ └── taskrun │ │ │ └── log_reader.go │ │ └── helper │ │ └── pods │ │ ├── container.go │ │ ├── pods.go │ │ └── stream │ │ └── stream.go └── third_party.go └── tools.go /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- 1 | !.git 2 | bin 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/.github/ISSUE_TEMPLATE/ask-question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/.github/ISSUE_TEMPLATE/proposal.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/.github/ISSUE_TEMPLATE/release.md -------------------------------------------------------------------------------- /.github/pull-request-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/.github/pull-request-template.md -------------------------------------------------------------------------------- /.github/workflows/update-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/.github/workflows/update-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/README.md -------------------------------------------------------------------------------- /ci/cloudbuild/release-and-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/ci/cloudbuild/release-and-test.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /ci/cloudbuild/scripts/find_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/ci/cloudbuild/scripts/find_zone.py -------------------------------------------------------------------------------- /ci/cloudbuild/scripts/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/ci/cloudbuild/scripts/run_tests.py -------------------------------------------------------------------------------- /ci/cloudbuild/test-many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/ci/cloudbuild/test-many.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/test.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/ci/cloudbuild/test.ignore -------------------------------------------------------------------------------- /ci/cloudbuild/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/ci/cloudbuild/test.yaml -------------------------------------------------------------------------------- /ci/cloudbuild/unit-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/ci/cloudbuild/unit-test.yaml -------------------------------------------------------------------------------- /ci/terraform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/ci/terraform/.gitignore -------------------------------------------------------------------------------- /ci/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/ci/terraform/main.tf -------------------------------------------------------------------------------- /ci/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/ci/terraform/variables.tf -------------------------------------------------------------------------------- /cmd/build-helpers/chown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/build-helpers/chown.go -------------------------------------------------------------------------------- /cmd/build-helpers/extract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/build-helpers/extract.go -------------------------------------------------------------------------------- /cmd/build-helpers/kodata/HEAD: -------------------------------------------------------------------------------- 1 | ../../../.git/HEAD -------------------------------------------------------------------------------- /cmd/build-helpers/kodata/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../LICENSE -------------------------------------------------------------------------------- /cmd/build-helpers/kodata/refs: -------------------------------------------------------------------------------- 1 | ../../fakerefs -------------------------------------------------------------------------------- /cmd/build-helpers/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/build-helpers/main.go -------------------------------------------------------------------------------- /cmd/build-helpers/publish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/build-helpers/publish.go -------------------------------------------------------------------------------- /cmd/build-helpers/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/build-helpers/root.go -------------------------------------------------------------------------------- /cmd/build-helpers/tar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/build-helpers/tar.go -------------------------------------------------------------------------------- /cmd/build-helpers/write_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/build-helpers/write_result.go -------------------------------------------------------------------------------- /cmd/controller/kodata/HEAD: -------------------------------------------------------------------------------- 1 | ../../../.git/HEAD -------------------------------------------------------------------------------- /cmd/controller/kodata/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../LICENSE -------------------------------------------------------------------------------- /cmd/controller/kodata/refs: -------------------------------------------------------------------------------- 1 | ../../fakerefs -------------------------------------------------------------------------------- /cmd/controller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/controller/main.go -------------------------------------------------------------------------------- /cmd/fakerefs/heads/develop: -------------------------------------------------------------------------------- 1 | 30 p -------------------------------------------------------------------------------- /cmd/fakerefs/heads/master: -------------------------------------------------------------------------------- 1 | 30 p -------------------------------------------------------------------------------- /cmd/generate-release/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/generate-release/cloudbuild.yaml -------------------------------------------------------------------------------- /cmd/generate-release/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/generate-release/main.go -------------------------------------------------------------------------------- /cmd/generate-release/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/generate-release/main_test.go -------------------------------------------------------------------------------- /cmd/generate-release/scripts/builder.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/generate-release/scripts/builder.bash -------------------------------------------------------------------------------- /cmd/generate-release/scripts/deployment.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/generate-release/scripts/deployment.tf -------------------------------------------------------------------------------- /cmd/generate-release/scripts/kf.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/generate-release/scripts/kf.bash -------------------------------------------------------------------------------- /cmd/generate-release/scripts/setup-ar.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/generate-release/scripts/setup-ar.bash -------------------------------------------------------------------------------- /cmd/generate-release/scripts/setup-kcc.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/generate-release/scripts/setup-kcc.bash -------------------------------------------------------------------------------- /cmd/generate-release/scripts/setup-wi.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/generate-release/scripts/setup-wi.bash -------------------------------------------------------------------------------- /cmd/kf/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/kf/main.go -------------------------------------------------------------------------------- /cmd/nop/kodata/HEAD: -------------------------------------------------------------------------------- 1 | ../../../.git/HEAD -------------------------------------------------------------------------------- /cmd/nop/kodata/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../LICENSE -------------------------------------------------------------------------------- /cmd/nop/kodata/refs: -------------------------------------------------------------------------------- 1 | ../../fakerefs -------------------------------------------------------------------------------- /cmd/nop/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/nop/main.go -------------------------------------------------------------------------------- /cmd/route-service-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/route-service-proxy/README.md -------------------------------------------------------------------------------- /cmd/route-service-proxy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/route-service-proxy/main.go -------------------------------------------------------------------------------- /cmd/setup-buildpack-build/kodata/HEAD: -------------------------------------------------------------------------------- 1 | ../../../.git/HEAD -------------------------------------------------------------------------------- /cmd/setup-buildpack-build/kodata/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../LICENSE -------------------------------------------------------------------------------- /cmd/setup-buildpack-build/kodata/refs: -------------------------------------------------------------------------------- 1 | ../../fakerefs -------------------------------------------------------------------------------- /cmd/setup-buildpack-build/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/setup-buildpack-build/main.go -------------------------------------------------------------------------------- /cmd/subresource-apiserver/kodata/HEAD: -------------------------------------------------------------------------------- 1 | ../../../.git/HEAD -------------------------------------------------------------------------------- /cmd/subresource-apiserver/kodata/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../LICENSE -------------------------------------------------------------------------------- /cmd/subresource-apiserver/kodata/fakerefs: -------------------------------------------------------------------------------- 1 | ../../fakerefs -------------------------------------------------------------------------------- /cmd/subresource-apiserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/subresource-apiserver/main.go -------------------------------------------------------------------------------- /cmd/subresource-apiserver/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/subresource-apiserver/scheme.go -------------------------------------------------------------------------------- /cmd/test-runner/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/test-runner/main.go -------------------------------------------------------------------------------- /cmd/test-runner/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/test-runner/root.go -------------------------------------------------------------------------------- /cmd/test-runner/run_tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/test-runner/run_tests.go -------------------------------------------------------------------------------- /cmd/test-runner/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/test-runner/util.go -------------------------------------------------------------------------------- /cmd/webhook/kodata/HEAD: -------------------------------------------------------------------------------- 1 | ../../../.git/HEAD -------------------------------------------------------------------------------- /cmd/webhook/kodata/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../LICENSE -------------------------------------------------------------------------------- /cmd/webhook/kodata/refs: -------------------------------------------------------------------------------- 1 | ../../fakerefs -------------------------------------------------------------------------------- /cmd/webhook/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/cmd/webhook/main.go -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | config-secrets.yaml 2 | -------------------------------------------------------------------------------- /config/100-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/100-namespace.yaml -------------------------------------------------------------------------------- /config/200-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/200-clusterrole.yaml -------------------------------------------------------------------------------- /config/200-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/200-serviceaccount.yaml -------------------------------------------------------------------------------- /config/200-user-roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/200-user-roles.yaml -------------------------------------------------------------------------------- /config/201-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/201-clusterrolebinding.yaml -------------------------------------------------------------------------------- /config/202-external-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/202-external-gateway.yaml -------------------------------------------------------------------------------- /config/203-internal-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/203-internal-gateway.yaml -------------------------------------------------------------------------------- /config/300-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/300-app.yaml -------------------------------------------------------------------------------- /config/300-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/300-build.yaml -------------------------------------------------------------------------------- /config/300-clusterservicebroker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/300-clusterservicebroker.yaml -------------------------------------------------------------------------------- /config/300-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/300-route.yaml -------------------------------------------------------------------------------- /config/300-servicebroker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/300-servicebroker.yaml -------------------------------------------------------------------------------- /config/300-serviceinstance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/300-serviceinstance.yaml -------------------------------------------------------------------------------- /config/300-serviceinstancebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/300-serviceinstancebinding.yaml -------------------------------------------------------------------------------- /config/300-source-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/300-source-package.yaml -------------------------------------------------------------------------------- /config/300-space.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/300-space.yaml -------------------------------------------------------------------------------- /config/300-task-schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/300-task-schedule.yaml -------------------------------------------------------------------------------- /config/300-task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/300-task.yaml -------------------------------------------------------------------------------- /config/400-apiserver-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/400-apiserver-service.yaml -------------------------------------------------------------------------------- /config/400-controller-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/400-controller-service.yaml -------------------------------------------------------------------------------- /config/400-webhook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/400-webhook-service.yaml -------------------------------------------------------------------------------- /config/500-webhook-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/500-webhook-configuration.yaml -------------------------------------------------------------------------------- /config/600-uploads-api-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/600-uploads-api-server.yaml -------------------------------------------------------------------------------- /config/601-apiserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/601-apiserver.yaml -------------------------------------------------------------------------------- /config/900-volumebroker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/900-volumebroker.yaml -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/README.md -------------------------------------------------------------------------------- /config/config-defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/config-defaults.yaml -------------------------------------------------------------------------------- /config/config-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/config-logging.yaml -------------------------------------------------------------------------------- /config/config-observability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/config-observability.yaml -------------------------------------------------------------------------------- /config/config-secrets-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/config-secrets-example.yaml -------------------------------------------------------------------------------- /config/controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/controller.yaml -------------------------------------------------------------------------------- /config/webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/config/webhook.yaml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/Dockerfile -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/assets/scss/_variables_project.scss -------------------------------------------------------------------------------- /docs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/config.toml -------------------------------------------------------------------------------- /docs/content/en/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/content/en/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/v2.11/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/content/en/docs/v2.11/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/v2.11/cli/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/content/en/docs/v2.11/cli/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/v2.11/operator/logging-monitoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Logging and Monitoring 3 | --- -------------------------------------------------------------------------------- /docs/content/en/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/content/en/search.md -------------------------------------------------------------------------------- /docs/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/docker-compose.yaml -------------------------------------------------------------------------------- /docs/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/go.mod -------------------------------------------------------------------------------- /docs/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/go.sum -------------------------------------------------------------------------------- /docs/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/layouts/404.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/layouts/shortcodes/note -------------------------------------------------------------------------------- /docs/layouts/shortcodes/tip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/layouts/shortcodes/tip -------------------------------------------------------------------------------- /docs/layouts/shortcodes/warning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/layouts/shortcodes/warning -------------------------------------------------------------------------------- /docs/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/netlify.toml -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/docs/package.json -------------------------------------------------------------------------------- /first_party/k8s-stateless-subresource/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/first_party/k8s-stateless-subresource/go.mod -------------------------------------------------------------------------------- /first_party/k8s-stateless-subresource/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/first_party/k8s-stateless-subresource/go.sum -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/go.sum -------------------------------------------------------------------------------- /hack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/README.md -------------------------------------------------------------------------------- /hack/acceptance-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/acceptance-test.sh -------------------------------------------------------------------------------- /hack/apply-kf-with-operator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/apply-kf-with-operator.sh -------------------------------------------------------------------------------- /hack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/build.sh -------------------------------------------------------------------------------- /hack/check-clean-git-state.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/check-clean-git-state.sh -------------------------------------------------------------------------------- /hack/check-linters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/check-linters.sh -------------------------------------------------------------------------------- /hack/clean-integration-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/clean-integration-tests.sh -------------------------------------------------------------------------------- /hack/create-dev-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/create-dev-release.sh -------------------------------------------------------------------------------- /hack/delete-all-spaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/delete-all-spaces.sh -------------------------------------------------------------------------------- /hack/deploy-dev-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/deploy-dev-release.sh -------------------------------------------------------------------------------- /hack/generate-command-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/generate-command-docs.sh -------------------------------------------------------------------------------- /hack/generate-git-branch-report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/generate-git-branch-report.py -------------------------------------------------------------------------------- /hack/generate-lifecycle-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/generate-lifecycle-artifacts.sh -------------------------------------------------------------------------------- /hack/go-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/go-build.sh -------------------------------------------------------------------------------- /hack/go-generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/go-generate.sh -------------------------------------------------------------------------------- /hack/install-gcp-service-broker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/install-gcp-service-broker.sh -------------------------------------------------------------------------------- /hack/install-kf-with-operator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/install-kf-with-operator.sh -------------------------------------------------------------------------------- /hack/integration-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/integration-test.sh -------------------------------------------------------------------------------- /hack/ko-apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/ko-apply.sh -------------------------------------------------------------------------------- /hack/lint-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/lint-shell.sh -------------------------------------------------------------------------------- /hack/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/pre-commit.sh -------------------------------------------------------------------------------- /hack/prow/e2e-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/prow/e2e-test.sh -------------------------------------------------------------------------------- /hack/prow/reap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/prow/reap.sh -------------------------------------------------------------------------------- /hack/prow/unit-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/prow/unit-test.sh -------------------------------------------------------------------------------- /hack/prow/verify-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/prow/verify-build.sh -------------------------------------------------------------------------------- /hack/prow/verify-generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/prow/verify-generate.sh -------------------------------------------------------------------------------- /hack/prow/verify-license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/prow/verify-license.sh -------------------------------------------------------------------------------- /hack/tail-controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/tail-controller.sh -------------------------------------------------------------------------------- /hack/tail-subresource-apiserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/tail-subresource-apiserver.sh -------------------------------------------------------------------------------- /hack/tail-webhook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/tail-webhook.sh -------------------------------------------------------------------------------- /hack/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/test.sh -------------------------------------------------------------------------------- /hack/tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/tidy.sh -------------------------------------------------------------------------------- /hack/unit-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/unit-test.sh -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /hack/update-istio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/update-istio.sh -------------------------------------------------------------------------------- /hack/update-k8s-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/update-k8s-deps.sh -------------------------------------------------------------------------------- /hack/update-knative-pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/update-knative-pkg.sh -------------------------------------------------------------------------------- /hack/update-schemas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/update-schemas.sh -------------------------------------------------------------------------------- /hack/update-tektoncd-pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/update-tektoncd-pipeline.sh -------------------------------------------------------------------------------- /hack/update-vendor-license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/update-vendor-license.sh -------------------------------------------------------------------------------- /hack/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/hack/util.sh -------------------------------------------------------------------------------- /kf.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/kf.code-workspace -------------------------------------------------------------------------------- /operator/.ko.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/.ko.yaml -------------------------------------------------------------------------------- /operator/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/Readme.md -------------------------------------------------------------------------------- /operator/cmd/manager/kodata/VENDOR-LICENSE: -------------------------------------------------------------------------------- 1 | ../../../third_party/VENDOR-LICENSE -------------------------------------------------------------------------------- /operator/cmd/manager/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/cmd/manager/main.go -------------------------------------------------------------------------------- /operator/config/100-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/config/100-namespace.yaml -------------------------------------------------------------------------------- /operator/config/200-kfsystem-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/config/200-kfsystem-crd.yaml -------------------------------------------------------------------------------- /operator/config/201-activeoperand-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/config/201-activeoperand-crd.yaml -------------------------------------------------------------------------------- /operator/config/202-operand-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/config/202-operand-crd.yaml -------------------------------------------------------------------------------- /operator/config/300-service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/config/300-service_account.yaml -------------------------------------------------------------------------------- /operator/config/400-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/config/400-role.yaml -------------------------------------------------------------------------------- /operator/config/401-role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/config/401-role_binding.yaml -------------------------------------------------------------------------------- /operator/config/500-config-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/config/500-config-logging.yaml -------------------------------------------------------------------------------- /operator/config/900-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/config/900-operator.yaml -------------------------------------------------------------------------------- /operator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/go.mod -------------------------------------------------------------------------------- /operator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/go.sum -------------------------------------------------------------------------------- /operator/hack/VERSION: -------------------------------------------------------------------------------- 1 | main 2 | -------------------------------------------------------------------------------- /operator/hack/boilerplate/boilerplate.go.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operator/hack/extract-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/hack/extract-images.sh -------------------------------------------------------------------------------- /operator/hack/library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/hack/library.sh -------------------------------------------------------------------------------- /operator/hack/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/hack/release.sh -------------------------------------------------------------------------------- /operator/hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/hack/update-codegen.sh -------------------------------------------------------------------------------- /operator/hack/update-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/hack/update-deps.sh -------------------------------------------------------------------------------- /operator/hack/update-vendors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/hack/update-vendors.sh -------------------------------------------------------------------------------- /operator/hack/upgrade-forks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/hack/upgrade-forks.sh -------------------------------------------------------------------------------- /operator/hack/verify-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/hack/verify-codegen.sh -------------------------------------------------------------------------------- /operator/pkg/apis/kfsystem/kf/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/apis/kfsystem/kf/defaults.go -------------------------------------------------------------------------------- /operator/pkg/apis/kfsystem/kf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/apis/kfsystem/kf/doc.go -------------------------------------------------------------------------------- /operator/pkg/apis/kfsystem/kf/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/apis/kfsystem/kf/types.go -------------------------------------------------------------------------------- /operator/pkg/apis/kfsystem/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/apis/kfsystem/v1alpha1/doc.go -------------------------------------------------------------------------------- /operator/pkg/apis/operand/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/apis/operand/v1alpha1/doc.go -------------------------------------------------------------------------------- /operator/pkg/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/client/README.md -------------------------------------------------------------------------------- /operator/pkg/manifest/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/manifest/version.go -------------------------------------------------------------------------------- /operator/pkg/manifest/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/manifest/version_test.go -------------------------------------------------------------------------------- /operator/pkg/operand/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/operand/api.go -------------------------------------------------------------------------------- /operator/pkg/operand/mock/mock_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/operand/mock/mock_api.go -------------------------------------------------------------------------------- /operator/pkg/operand/operand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/operand/operand.go -------------------------------------------------------------------------------- /operator/pkg/operand/owner_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/operand/owner_handler.go -------------------------------------------------------------------------------- /operator/pkg/operand/owner_injector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/operand/owner_injector.go -------------------------------------------------------------------------------- /operator/pkg/reconciler/kfsystem/kf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/reconciler/kfsystem/kf.go -------------------------------------------------------------------------------- /operator/pkg/reconciler/operand/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/reconciler/operand/index.md -------------------------------------------------------------------------------- /operator/pkg/reconciler/operand/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/reconciler/operand/manifest.go -------------------------------------------------------------------------------- /operator/pkg/reconciler/operand/operand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/reconciler/operand/operand.go -------------------------------------------------------------------------------- /operator/pkg/release/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/release/options.go -------------------------------------------------------------------------------- /operator/pkg/release/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/release/options_test.go -------------------------------------------------------------------------------- /operator/pkg/release/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/release/release.go -------------------------------------------------------------------------------- /operator/pkg/sanitizer/funcmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/sanitizer/funcmap.go -------------------------------------------------------------------------------- /operator/pkg/sanitizer/funcmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/sanitizer/funcmap_test.go -------------------------------------------------------------------------------- /operator/pkg/sanitizer/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/sanitizer/input.go -------------------------------------------------------------------------------- /operator/pkg/sanitizer/input_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/sanitizer/input_test.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/apiservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/apiservice.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/configmap.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/container.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/crd.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/daemon_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/daemon_set.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/deployment.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/generic.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/job.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/mutating_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/mutating_webhook.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/namespace.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/role.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/rolebinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/rolebinding.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/secret.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/service.go -------------------------------------------------------------------------------- /operator/pkg/testing/k8s/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/k8s/volume.go -------------------------------------------------------------------------------- /operator/pkg/testing/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/scheme.go -------------------------------------------------------------------------------- /operator/pkg/testing/validations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/testing/validations.go -------------------------------------------------------------------------------- /operator/pkg/transformer/annotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/transformer/annotation.go -------------------------------------------------------------------------------- /operator/pkg/transformer/annotation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/pkg/transformer/annotation_test.go -------------------------------------------------------------------------------- /operator/scripts/ci-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/scripts/ci-build.sh -------------------------------------------------------------------------------- /operator/scripts/ci-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/operator/scripts/ci-test.sh -------------------------------------------------------------------------------- /pkg/admission/validation/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/admission/validation/app.go -------------------------------------------------------------------------------- /pkg/admission/validation/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/admission/validation/app_test.go -------------------------------------------------------------------------------- /pkg/admission/validation/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/admission/validation/doc.go -------------------------------------------------------------------------------- /pkg/admission/validation/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/admission/validation/route.go -------------------------------------------------------------------------------- /pkg/admission/validation/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/admission/validation/route_test.go -------------------------------------------------------------------------------- /pkg/admission/validation/servicebroker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/admission/validation/servicebroker.go -------------------------------------------------------------------------------- /pkg/admission/validation/serviceinstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/admission/validation/serviceinstance.go -------------------------------------------------------------------------------- /pkg/admission/validation/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/admission/validation/utils.go -------------------------------------------------------------------------------- /pkg/apis/kf/config/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/config/defaults.go -------------------------------------------------------------------------------- /pkg/apis/kf/config/defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/config/defaults_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/config/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/config/doc.go -------------------------------------------------------------------------------- /pkg/apis/kf/config/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/config/store.go -------------------------------------------------------------------------------- /pkg/apis/kf/config/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/config/store_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/config/testdata/config-defaults.yaml: -------------------------------------------------------------------------------- 1 | ../../../../../config/config-defaults.yaml -------------------------------------------------------------------------------- /pkg/apis/kf/config/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/config/types.go -------------------------------------------------------------------------------- /pkg/apis/kf/config/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/config/types_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/config/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/config/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/kf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/doc.go -------------------------------------------------------------------------------- /pkg/apis/kf/k8s_fieldmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/k8s_fieldmask.go -------------------------------------------------------------------------------- /pkg/apis/kf/k8s_fieldmask_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/k8s_fieldmask_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/k8s_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/k8s_validation.go -------------------------------------------------------------------------------- /pkg/apis/kf/k8s_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/k8s_validation_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/register.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/alg_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/alg_types.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/app_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/app_defaults.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/app_defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/app_defaults_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/app_lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/app_lifecycle.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/app_lifecycle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/app_lifecycle_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/app_masks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/app_masks.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/app_masks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/app_masks_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/app_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/app_types.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/app_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/app_types_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/app_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/app_validation.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/app_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/app_validation_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/build_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/build_defaults.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/build_lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/build_lifecycle.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/build_lifecycle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/build_lifecycle_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/build_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/build_types.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/build_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/build_types_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/build_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/build_validation.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/field_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/field_error.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/field_error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/field_error_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/route_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/route_defaults.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/route_defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/route_defaults_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/route_lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/route_lifecycle.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/route_lifecycle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/route_lifecycle_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/route_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/route_types.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/route_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/route_types_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/route_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/route_validation.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/routeserviceurl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/routeserviceurl.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/routeserviceurl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/routeserviceurl_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/servicebroker_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/servicebroker_types.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/source_package_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/source_package_types.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/space_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/space_defaults.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/space_defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/space_defaults_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/space_lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/space_lifecycle.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/space_lifecycle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/space_lifecycle_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/space_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/space_types.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/space_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/space_types_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/space_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/space_validation.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/task_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/task_defaults.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/task_lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/task_lifecycle.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/task_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/task_types.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/task_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/task_validation.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/task_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/task_validation_test.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/taskschedule_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/taskschedule_types.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/utils.go -------------------------------------------------------------------------------- /pkg/apis/kf/v1alpha1/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/kf/v1alpha1/utils_test.go -------------------------------------------------------------------------------- /pkg/apis/networking/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/networking/asm.go -------------------------------------------------------------------------------- /pkg/apis/networking/asm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/networking/asm_test.go -------------------------------------------------------------------------------- /pkg/apis/networking/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/networking/register.go -------------------------------------------------------------------------------- /pkg/apis/networking/v1alpha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/networking/v1alpha3/doc.go -------------------------------------------------------------------------------- /pkg/apis/networking/v1alpha3/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/apis/networking/v1alpha3/register.go -------------------------------------------------------------------------------- /pkg/client/kf/clientset/versioned/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/client/kf/clientset/versioned/doc.go -------------------------------------------------------------------------------- /pkg/client/kf/injection/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/client/kf/injection/client/client.go -------------------------------------------------------------------------------- /pkg/client/kf/injection/client/fake/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/client/kf/injection/client/fake/fake.go -------------------------------------------------------------------------------- /pkg/client/kf/listers/kf/v1alpha1/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/client/kf/listers/kf/v1alpha1/app.go -------------------------------------------------------------------------------- /pkg/client/kf/listers/kf/v1alpha1/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/client/kf/listers/kf/v1alpha1/build.go -------------------------------------------------------------------------------- /pkg/client/kf/listers/kf/v1alpha1/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/client/kf/listers/kf/v1alpha1/route.go -------------------------------------------------------------------------------- /pkg/client/kf/listers/kf/v1alpha1/scale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/client/kf/listers/kf/v1alpha1/scale.go -------------------------------------------------------------------------------- /pkg/client/kf/listers/kf/v1alpha1/space.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/client/kf/listers/kf/v1alpha1/space.go -------------------------------------------------------------------------------- /pkg/client/kf/listers/kf/v1alpha1/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/client/kf/listers/kf/v1alpha1/task.go -------------------------------------------------------------------------------- /pkg/client/kube/clientset/versioned/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/client/kube/clientset/versioned/doc.go -------------------------------------------------------------------------------- /pkg/client/kube/injection/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/client/kube/injection/client/client.go -------------------------------------------------------------------------------- /pkg/dockerutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/dockerutil/util.go -------------------------------------------------------------------------------- /pkg/dockerutil/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/dockerutil/util_test.go -------------------------------------------------------------------------------- /pkg/internal/envutil/envutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/internal/envutil/envutil.go -------------------------------------------------------------------------------- /pkg/internal/envutil/envutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/internal/envutil/envutil_test.go -------------------------------------------------------------------------------- /pkg/internal/osbutil/constructors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/internal/osbutil/constructors.go -------------------------------------------------------------------------------- /pkg/internal/osbutil/constructors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/internal/osbutil/constructors_test.go -------------------------------------------------------------------------------- /pkg/internal/osbutil/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/internal/osbutil/doc.go -------------------------------------------------------------------------------- /pkg/internal/osbutil/testdata/golden/testmaposbtokfcatalog_nil_kfcatalog.golden: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /pkg/internal/selectorutil/selectorutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/internal/selectorutil/selectorutil.go -------------------------------------------------------------------------------- /pkg/kf/algorithms/algorithms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/algorithms/algorithms.go -------------------------------------------------------------------------------- /pkg/kf/algorithms/algorithms_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/algorithms/algorithms_test.go -------------------------------------------------------------------------------- /pkg/kf/algorithms/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/algorithms/doc.go -------------------------------------------------------------------------------- /pkg/kf/algorithms/subjects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/algorithms/subjects.go -------------------------------------------------------------------------------- /pkg/kf/algorithms/subjects_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/algorithms/subjects_test.go -------------------------------------------------------------------------------- /pkg/kf/apps/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/client.go -------------------------------------------------------------------------------- /pkg/kf/apps/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/client.yml -------------------------------------------------------------------------------- /pkg/kf/apps/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/doc.go -------------------------------------------------------------------------------- /pkg/kf/apps/fake/fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/fake/fake_client.go -------------------------------------------------------------------------------- /pkg/kf/apps/fake/fake_pusher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/fake/fake_pusher.go -------------------------------------------------------------------------------- /pkg/kf/apps/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/apps/fake_watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/fake_watcher_test.go -------------------------------------------------------------------------------- /pkg/kf/apps/kfapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/kfapp.go -------------------------------------------------------------------------------- /pkg/kf/apps/kfapp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/kfapp_test.go -------------------------------------------------------------------------------- /pkg/kf/apps/log_tailer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/log_tailer.go -------------------------------------------------------------------------------- /pkg/kf/apps/log_tailer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/log_tailer_test.go -------------------------------------------------------------------------------- /pkg/kf/apps/push-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/push-options.yml -------------------------------------------------------------------------------- /pkg/kf/apps/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/push.go -------------------------------------------------------------------------------- /pkg/kf/apps/push_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/push_options.go -------------------------------------------------------------------------------- /pkg/kf/apps/push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/push_test.go -------------------------------------------------------------------------------- /pkg/kf/apps/zz_generated.client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/apps/zz_generated.client.go -------------------------------------------------------------------------------- /pkg/kf/buildpacks/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/buildpacks/client.go -------------------------------------------------------------------------------- /pkg/kf/buildpacks/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/buildpacks/client_test.go -------------------------------------------------------------------------------- /pkg/kf/buildpacks/fake/fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/buildpacks/fake/fake_client.go -------------------------------------------------------------------------------- /pkg/kf/buildpacks/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/buildpacks/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/buildpacks/fake_image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/buildpacks/fake_image_test.go -------------------------------------------------------------------------------- /pkg/kf/builds/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/builds/client.go -------------------------------------------------------------------------------- /pkg/kf/builds/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/builds/client.yml -------------------------------------------------------------------------------- /pkg/kf/builds/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/builds/doc.go -------------------------------------------------------------------------------- /pkg/kf/builds/fake/fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/builds/fake/fake_client.go -------------------------------------------------------------------------------- /pkg/kf/builds/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/builds/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/builds/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/builds/util.go -------------------------------------------------------------------------------- /pkg/kf/builds/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/builds/util_test.go -------------------------------------------------------------------------------- /pkg/kf/builds/zz_generated.client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/builds/zz_generated.client.go -------------------------------------------------------------------------------- /pkg/kf/cfutil/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/cfutil/doc.go -------------------------------------------------------------------------------- /pkg/kf/cfutil/fake/fake_systemenvinjector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/cfutil/fake/fake_systemenvinjector.go -------------------------------------------------------------------------------- /pkg/kf/cfutil/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/cfutil/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/cfutil/systemenvinjector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/cfutil/systemenvinjector.go -------------------------------------------------------------------------------- /pkg/kf/cfutil/systemenvinjector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/cfutil/systemenvinjector_test.go -------------------------------------------------------------------------------- /pkg/kf/cfutil/vcap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/cfutil/vcap.go -------------------------------------------------------------------------------- /pkg/kf/cfutil/vcap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/cfutil/vcap_test.go -------------------------------------------------------------------------------- /pkg/kf/cfutil/vcapapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/cfutil/vcapapp.go -------------------------------------------------------------------------------- /pkg/kf/cfutil/vcapapp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/cfutil/vcapapp_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/about.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/about.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/acceptance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/acceptance_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/app.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/apps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/apps.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/delete.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/env.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/env_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/integration_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/proxy.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/proxy_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/push.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/push_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/restage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/restage.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/restage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/restage_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/restart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/restart.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/restart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/restart_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/scale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/scale.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/scale_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/scale_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/set_env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/set_env.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/set_env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/set_env_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/ssh.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/ssh_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/ssh_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/start.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/start_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/start_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/stop.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/stop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/stop_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/testdata/dockerfile-app/.cfignore: -------------------------------------------------------------------------------- 1 | *.o 2 | 3 | data 4 | -------------------------------------------------------------------------------- /pkg/kf/commands/apps/testdata/dockerfile-app/garbage.o: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/kf/commands/apps/testdata/example-app/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/kf/commands/apps/testdata/example-app/.kfignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /pkg/kf/commands/apps/testdata/example-app/garbage.o: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/kf/commands/apps/testdata/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/testdata/manifest.yml -------------------------------------------------------------------------------- /pkg/kf/commands/apps/unset_env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/unset_env.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/unset_env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/unset_env_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/apps/xargs_apps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/apps/xargs_apps.go -------------------------------------------------------------------------------- /pkg/kf/commands/buildpacks/buildpacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/buildpacks/buildpacks.go -------------------------------------------------------------------------------- /pkg/kf/commands/buildpacks/stacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/buildpacks/stacks.go -------------------------------------------------------------------------------- /pkg/kf/commands/buildpacks/stacks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/buildpacks/stacks_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/buildpacks/testdata/golden/testbuildpacks_wrong_number_of_args_output.golden: -------------------------------------------------------------------------------- 1 | Error: accepts 0 arg(s), received 1 2 | -------------------------------------------------------------------------------- /pkg/kf/commands/buildpacks/testdata/golden/teststacks_wrong_number_of_args_output.golden: -------------------------------------------------------------------------------- 1 | Error: accepts 0 arg(s), received 1 2 | -------------------------------------------------------------------------------- /pkg/kf/commands/builds/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/builds/build.go -------------------------------------------------------------------------------- /pkg/kf/commands/builds/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/builds/list.go -------------------------------------------------------------------------------- /pkg/kf/commands/builds/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/builds/logs.go -------------------------------------------------------------------------------- /pkg/kf/commands/builds/logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/builds/logs_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/cluster/config_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/cluster/config_cluster.go -------------------------------------------------------------------------------- /pkg/kf/commands/cluster/testdata/config-defaults.yaml: -------------------------------------------------------------------------------- 1 | ../../../../../config/config-defaults.yaml -------------------------------------------------------------------------------- /pkg/kf/commands/completion/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/completion/completion.go -------------------------------------------------------------------------------- /pkg/kf/commands/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/config/config.go -------------------------------------------------------------------------------- /pkg/kf/commands/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/config/config_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/config/impersonate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/config/impersonate.go -------------------------------------------------------------------------------- /pkg/kf/commands/config/impersonate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/config/impersonate_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/config/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/config/logging/logging.go -------------------------------------------------------------------------------- /pkg/kf/commands/config/requestdumper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/config/requestdumper.go -------------------------------------------------------------------------------- /pkg/kf/commands/config/requestdumper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/config/requestdumper_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/debug.go -------------------------------------------------------------------------------- /pkg/kf/commands/debug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/debug_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/dependencies/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/dependencies/dependencies.go -------------------------------------------------------------------------------- /pkg/kf/commands/dependencies/matrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/dependencies/matrix.go -------------------------------------------------------------------------------- /pkg/kf/commands/dependencies/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/dependencies/url.go -------------------------------------------------------------------------------- /pkg/kf/commands/dependencies/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/dependencies/version.go -------------------------------------------------------------------------------- /pkg/kf/commands/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/doc.go -------------------------------------------------------------------------------- /pkg/kf/commands/doctor/doctor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/doctor/doctor.go -------------------------------------------------------------------------------- /pkg/kf/commands/doctor/doctor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/doctor/doctor_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/exporttok8s/exporttok8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/exporttok8s/exporttok8s.go -------------------------------------------------------------------------------- /pkg/kf/commands/group/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/group/group.go -------------------------------------------------------------------------------- /pkg/kf/commands/group/group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/group/group_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/license.go -------------------------------------------------------------------------------- /pkg/kf/commands/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/logs/logs.go -------------------------------------------------------------------------------- /pkg/kf/commands/logs/logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/logs/logs_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/networkpolicies/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/networkpolicies/delete.go -------------------------------------------------------------------------------- /pkg/kf/commands/networkpolicies/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/networkpolicies/describe.go -------------------------------------------------------------------------------- /pkg/kf/commands/networkpolicies/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/networkpolicies/list.go -------------------------------------------------------------------------------- /pkg/kf/commands/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/root.go -------------------------------------------------------------------------------- /pkg/kf/commands/root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/root_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/create_route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/create_route.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/create_route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/create_route_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/delete_route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/delete_route.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/delete_route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/delete_route_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/flags.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/integration_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/map_route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/map_route.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/map_route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/map_route_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/proxy_route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/proxy_route.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/proxy_route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/proxy_route_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/routes.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/unmap_route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/unmap_route.go -------------------------------------------------------------------------------- /pkg/kf/commands/routes/unmap_route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/routes/unmap_route_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/service-bindings/bindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/service-bindings/bindings.go -------------------------------------------------------------------------------- /pkg/kf/commands/service-bindings/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/service-bindings/cli_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/services/create-service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/services/create-service.go -------------------------------------------------------------------------------- /pkg/kf/commands/services/delete-service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/services/delete-service.go -------------------------------------------------------------------------------- /pkg/kf/commands/services/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/services/helpers_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/services/marketplace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/services/marketplace.go -------------------------------------------------------------------------------- /pkg/kf/commands/services/marketplace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/services/marketplace_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/services/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/services/service.go -------------------------------------------------------------------------------- /pkg/kf/commands/services/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/services/services.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/config_space.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/config_space.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/config_space_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/config_space_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/create.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/create_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/delete.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/doc.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/domains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/domains.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/domains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/domains_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/get.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/integration_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/list.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/set_space_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/set_space_role.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/space_users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/space_users.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/space_users_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/space_users_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/spaces/unset_space_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/spaces/unset_space_role.go -------------------------------------------------------------------------------- /pkg/kf/commands/stubs/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/stubs/api.go -------------------------------------------------------------------------------- /pkg/kf/commands/stubs/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/stubs/auth.go -------------------------------------------------------------------------------- /pkg/kf/commands/stubs/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/stubs/login.go -------------------------------------------------------------------------------- /pkg/kf/commands/stubs/logout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/stubs/logout.go -------------------------------------------------------------------------------- /pkg/kf/commands/target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/target.go -------------------------------------------------------------------------------- /pkg/kf/commands/target_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/target_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/tasks/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/tasks/integration_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/tasks/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/tasks/list.go -------------------------------------------------------------------------------- /pkg/kf/commands/tasks/run_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/tasks/run_task.go -------------------------------------------------------------------------------- /pkg/kf/commands/tasks/run_task_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/tasks/run_task_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/tasks/terminate_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/tasks/terminate_task.go -------------------------------------------------------------------------------- /pkg/kf/commands/tasks/terminate_task_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/tasks/terminate_task_test.go -------------------------------------------------------------------------------- /pkg/kf/commands/taskschedules/create_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/taskschedules/create_job.go -------------------------------------------------------------------------------- /pkg/kf/commands/taskschedules/delete_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/taskschedules/delete_job.go -------------------------------------------------------------------------------- /pkg/kf/commands/taskschedules/job_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/taskschedules/job_history.go -------------------------------------------------------------------------------- /pkg/kf/commands/taskschedules/list_jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/taskschedules/list_jobs.go -------------------------------------------------------------------------------- /pkg/kf/commands/taskschedules/run_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/taskschedules/run_job.go -------------------------------------------------------------------------------- /pkg/kf/commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/version.go -------------------------------------------------------------------------------- /pkg/kf/commands/wire_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/wire_gen.go -------------------------------------------------------------------------------- /pkg/kf/commands/wire_injector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/commands/wire_injector.go -------------------------------------------------------------------------------- /pkg/kf/configmaps/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/configmaps/client.go -------------------------------------------------------------------------------- /pkg/kf/configmaps/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/configmaps/client.yml -------------------------------------------------------------------------------- /pkg/kf/configmaps/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/configmaps/doc.go -------------------------------------------------------------------------------- /pkg/kf/configmaps/fake/fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/configmaps/fake/fake_client.go -------------------------------------------------------------------------------- /pkg/kf/configmaps/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/configmaps/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/configmaps/zz_generated.client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/configmaps/zz_generated.client.go -------------------------------------------------------------------------------- /pkg/kf/describe/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/describe/describe.go -------------------------------------------------------------------------------- /pkg/kf/describe/describe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/describe/describe_test.go -------------------------------------------------------------------------------- /pkg/kf/describe/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/describe/doc.go -------------------------------------------------------------------------------- /pkg/kf/describe/testdata/golden/testlabels_empty_labels.golden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/kf/describe/testdata/golden/testlabels_sorted_labels.golden: -------------------------------------------------------------------------------- 1 | abc=123 2 | def=456 3 | ghi=789 4 | -------------------------------------------------------------------------------- /pkg/kf/describe/testdata/golden/testlabels_unsorted_labels.golden: -------------------------------------------------------------------------------- 1 | abc=123 2 | def=456 3 | ghi=789 4 | -------------------------------------------------------------------------------- /pkg/kf/describe/unstructured.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/describe/unstructured.go -------------------------------------------------------------------------------- /pkg/kf/describe/unstructured_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/describe/unstructured_test.go -------------------------------------------------------------------------------- /pkg/kf/describe/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/describe/util.go -------------------------------------------------------------------------------- /pkg/kf/describe/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/describe/util_test.go -------------------------------------------------------------------------------- /pkg/kf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/doc.go -------------------------------------------------------------------------------- /pkg/kf/doctor/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/doctor/cluster.go -------------------------------------------------------------------------------- /pkg/kf/doctor/diagnostic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/doctor/diagnostic.go -------------------------------------------------------------------------------- /pkg/kf/doctor/diagnostic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/doctor/diagnostic_test.go -------------------------------------------------------------------------------- /pkg/kf/doctor/istio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/doctor/istio.go -------------------------------------------------------------------------------- /pkg/kf/doctor/istio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/doctor/istio_test.go -------------------------------------------------------------------------------- /pkg/kf/doctor/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/doctor/operator.go -------------------------------------------------------------------------------- /pkg/kf/doctor/troubleshooter/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/doctor/troubleshooter/doc.go -------------------------------------------------------------------------------- /pkg/kf/doctor/troubleshooter/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/doctor/troubleshooter/table.go -------------------------------------------------------------------------------- /pkg/kf/doctor/troubleshooter/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/doctor/troubleshooter/table_test.go -------------------------------------------------------------------------------- /pkg/kf/doctor/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/doctor/util.go -------------------------------------------------------------------------------- /pkg/kf/doctor/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/doctor/util_test.go -------------------------------------------------------------------------------- /pkg/kf/dynamicutils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/dynamicutils/utils.go -------------------------------------------------------------------------------- /pkg/kf/dynamicutils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/dynamicutils/utils_test.go -------------------------------------------------------------------------------- /pkg/kf/injection/fake/gomock_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/injection/fake/gomock_controller.go -------------------------------------------------------------------------------- /pkg/kf/injection/fake/injection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/injection/fake/injection.go -------------------------------------------------------------------------------- /pkg/kf/injection/fake/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/injection/fake/testing.go -------------------------------------------------------------------------------- /pkg/kf/injection/injection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/injection/injection.go -------------------------------------------------------------------------------- /pkg/kf/injection/lazy_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/injection/lazy_init.go -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/delete.go -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/delete_test.go -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/describe.go -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/describe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/describe_test.go -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/doc.go -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/list.go -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/list_test.go -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/options.yml -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/stub.go -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/stub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/stub_test.go -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/util.go -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/xargs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/xargs.go -------------------------------------------------------------------------------- /pkg/kf/internal/genericcli/xargs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/genericcli/xargs_test.go -------------------------------------------------------------------------------- /pkg/kf/internal/tableclient/tableclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/tableclient/tableclient.go -------------------------------------------------------------------------------- /pkg/kf/internal/tools/clientgen/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/tools/clientgen/client.go -------------------------------------------------------------------------------- /pkg/kf/internal/tools/clientgen/genclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/tools/clientgen/genclient.go -------------------------------------------------------------------------------- /pkg/kf/internal/tools/conditiongen/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/tools/conditiongen/params.go -------------------------------------------------------------------------------- /pkg/kf/internal/tools/fakelister/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/tools/fakelister/params.go -------------------------------------------------------------------------------- /pkg/kf/internal/tools/generator/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/tools/generator/gen.go -------------------------------------------------------------------------------- /pkg/kf/internal/tools/generator/gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/tools/generator/gen_test.go -------------------------------------------------------------------------------- /pkg/kf/internal/tools/includefile/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/tools/includefile/params.go -------------------------------------------------------------------------------- /pkg/kf/internal/utils/cli/async_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/utils/cli/async_flags.go -------------------------------------------------------------------------------- /pkg/kf/internal/utils/cli/colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/utils/cli/colors.go -------------------------------------------------------------------------------- /pkg/kf/internal/utils/cli/prefix_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/utils/cli/prefix_filter.go -------------------------------------------------------------------------------- /pkg/kf/internal/utils/cli/printflags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/utils/cli/printflags.go -------------------------------------------------------------------------------- /pkg/kf/internal/utils/cli/printflags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/utils/cli/printflags_test.go -------------------------------------------------------------------------------- /pkg/kf/internal/utils/cli/resource_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/utils/cli/resource_flags.go -------------------------------------------------------------------------------- /pkg/kf/internal/utils/cli/retry_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/utils/cli/retry_flags.go -------------------------------------------------------------------------------- /pkg/kf/internal/utils/cli/tips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/utils/cli/tips.go -------------------------------------------------------------------------------- /pkg/kf/internal/utils/cli/tips_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/utils/cli/tips_test.go -------------------------------------------------------------------------------- /pkg/kf/internal/utils/cli/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/utils/cli/utils.go -------------------------------------------------------------------------------- /pkg/kf/internal/utils/cli/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/internal/utils/cli/utils_test.go -------------------------------------------------------------------------------- /pkg/kf/logs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/doc.go -------------------------------------------------------------------------------- /pkg/kf/logs/fake/fake_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/fake/fake_logs.go -------------------------------------------------------------------------------- /pkg/kf/logs/fake/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/fake/interface.go -------------------------------------------------------------------------------- /pkg/kf/logs/line_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/line_writer.go -------------------------------------------------------------------------------- /pkg/kf/logs/line_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/line_writer_test.go -------------------------------------------------------------------------------- /pkg/kf/logs/logs_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/logs_reader.go -------------------------------------------------------------------------------- /pkg/kf/logs/logs_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/logs_reader_test.go -------------------------------------------------------------------------------- /pkg/kf/logs/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/options.go -------------------------------------------------------------------------------- /pkg/kf/logs/options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/options.yml -------------------------------------------------------------------------------- /pkg/kf/logs/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/queue.go -------------------------------------------------------------------------------- /pkg/kf/logs/queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/queue_test.go -------------------------------------------------------------------------------- /pkg/kf/logs/reverse_log_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/reverse_log_reader.go -------------------------------------------------------------------------------- /pkg/kf/logs/reverse_log_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/reverse_log_reader_test.go -------------------------------------------------------------------------------- /pkg/kf/logs/tailer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/tailer.go -------------------------------------------------------------------------------- /pkg/kf/logs/tailer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/tailer_test.go -------------------------------------------------------------------------------- /pkg/kf/logs/windowed_log_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/windowed_log_reader.go -------------------------------------------------------------------------------- /pkg/kf/logs/windowed_log_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/logs/windowed_log_reader_test.go -------------------------------------------------------------------------------- /pkg/kf/manifest/detection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/manifest/detection.go -------------------------------------------------------------------------------- /pkg/kf/manifest/detection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/manifest/detection_test.go -------------------------------------------------------------------------------- /pkg/kf/manifest/detectors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/manifest/detectors.go -------------------------------------------------------------------------------- /pkg/kf/manifest/detectors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/manifest/detectors_test.go -------------------------------------------------------------------------------- /pkg/kf/manifest/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/manifest/manifest.go -------------------------------------------------------------------------------- /pkg/kf/manifest/manifest_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/manifest/manifest_conversion.go -------------------------------------------------------------------------------- /pkg/kf/manifest/manifest_conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/manifest/manifest_conversion_test.go -------------------------------------------------------------------------------- /pkg/kf/manifest/manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/manifest/manifest_test.go -------------------------------------------------------------------------------- /pkg/kf/manifest/manifest_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/manifest/manifest_validation.go -------------------------------------------------------------------------------- /pkg/kf/manifest/manifest_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/manifest/manifest_validation_test.go -------------------------------------------------------------------------------- /pkg/kf/manifest/substitution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/manifest/substitution.go -------------------------------------------------------------------------------- /pkg/kf/manifest/substitution_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/manifest/substitution_test.go -------------------------------------------------------------------------------- /pkg/kf/manifest/testdata/some-file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/kf/marketplace/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/marketplace/client.go -------------------------------------------------------------------------------- /pkg/kf/marketplace/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/marketplace/client_test.go -------------------------------------------------------------------------------- /pkg/kf/marketplace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/marketplace/doc.go -------------------------------------------------------------------------------- /pkg/kf/marketplace/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/marketplace/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/networkpolicies/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/networkpolicies/client.go -------------------------------------------------------------------------------- /pkg/kf/networkpolicies/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/networkpolicies/client.yml -------------------------------------------------------------------------------- /pkg/kf/networkpolicies/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/networkpolicies/doc.go -------------------------------------------------------------------------------- /pkg/kf/networkpolicies/fake/fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/networkpolicies/fake/fake_client.go -------------------------------------------------------------------------------- /pkg/kf/networkpolicies/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/networkpolicies/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/routes/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/routes/client.go -------------------------------------------------------------------------------- /pkg/kf/routes/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/routes/client.yml -------------------------------------------------------------------------------- /pkg/kf/routes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/routes/doc.go -------------------------------------------------------------------------------- /pkg/kf/routes/fake/fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/routes/fake/fake_client.go -------------------------------------------------------------------------------- /pkg/kf/routes/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/routes/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/routes/zz_generated.client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/routes/zz_generated.client.go -------------------------------------------------------------------------------- /pkg/kf/secrets/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/secrets/client.go -------------------------------------------------------------------------------- /pkg/kf/secrets/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/secrets/client.yml -------------------------------------------------------------------------------- /pkg/kf/secrets/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/secrets/client_test.go -------------------------------------------------------------------------------- /pkg/kf/secrets/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/secrets/doc.go -------------------------------------------------------------------------------- /pkg/kf/secrets/fake/fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/secrets/fake/fake_client.go -------------------------------------------------------------------------------- /pkg/kf/secrets/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/secrets/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/secrets/zz_generated.client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/secrets/zz_generated.client.go -------------------------------------------------------------------------------- /pkg/kf/service-brokers/cluster/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/service-brokers/cluster/client.go -------------------------------------------------------------------------------- /pkg/kf/service-brokers/cluster/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/service-brokers/cluster/client.yml -------------------------------------------------------------------------------- /pkg/kf/service-brokers/cluster/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/service-brokers/cluster/doc.go -------------------------------------------------------------------------------- /pkg/kf/service-brokers/namespaced/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/service-brokers/namespaced/client.go -------------------------------------------------------------------------------- /pkg/kf/service-brokers/namespaced/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/service-brokers/namespaced/client.yml -------------------------------------------------------------------------------- /pkg/kf/service-brokers/namespaced/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/service-brokers/namespaced/doc.go -------------------------------------------------------------------------------- /pkg/kf/serviceinstancebindings/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/serviceinstancebindings/client.go -------------------------------------------------------------------------------- /pkg/kf/serviceinstancebindings/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/serviceinstancebindings/client.yml -------------------------------------------------------------------------------- /pkg/kf/serviceinstancebindings/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/serviceinstancebindings/doc.go -------------------------------------------------------------------------------- /pkg/kf/serviceinstances/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/serviceinstances/client.go -------------------------------------------------------------------------------- /pkg/kf/serviceinstances/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/serviceinstances/client.yml -------------------------------------------------------------------------------- /pkg/kf/serviceinstances/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/serviceinstances/doc.go -------------------------------------------------------------------------------- /pkg/kf/serviceinstances/fake/fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/serviceinstances/fake/fake_client.go -------------------------------------------------------------------------------- /pkg/kf/serviceinstances/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/serviceinstances/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/sourcepackages/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/sourcepackages/client.go -------------------------------------------------------------------------------- /pkg/kf/sourcepackages/client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/sourcepackages/client.yaml -------------------------------------------------------------------------------- /pkg/kf/sourcepackages/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/sourcepackages/client_test.go -------------------------------------------------------------------------------- /pkg/kf/sourcepackages/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/sourcepackages/doc.go -------------------------------------------------------------------------------- /pkg/kf/sourcepackages/fake/fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/sourcepackages/fake/fake_client.go -------------------------------------------------------------------------------- /pkg/kf/sourcepackages/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/sourcepackages/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/sourcepackages/testdata/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/sourcepackages/testdata/test.txt -------------------------------------------------------------------------------- /pkg/kf/sourcepackages/zz_generated.client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/sourcepackages/zz_generated.client.go -------------------------------------------------------------------------------- /pkg/kf/spaces/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/spaces/client.go -------------------------------------------------------------------------------- /pkg/kf/spaces/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/spaces/client.yml -------------------------------------------------------------------------------- /pkg/kf/spaces/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/spaces/doc.go -------------------------------------------------------------------------------- /pkg/kf/spaces/fake/fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/spaces/fake/fake_client.go -------------------------------------------------------------------------------- /pkg/kf/spaces/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/spaces/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/spaces/zz_generated.client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/spaces/zz_generated.client.go -------------------------------------------------------------------------------- /pkg/kf/tasks/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/tasks/client.go -------------------------------------------------------------------------------- /pkg/kf/tasks/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/tasks/client.yml -------------------------------------------------------------------------------- /pkg/kf/tasks/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/tasks/doc.go -------------------------------------------------------------------------------- /pkg/kf/tasks/fake/fake_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/tasks/fake/fake_client.go -------------------------------------------------------------------------------- /pkg/kf/tasks/fake/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/tasks/fake/interfaces.go -------------------------------------------------------------------------------- /pkg/kf/tasks/zz_generated.client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/tasks/zz_generated.client.go -------------------------------------------------------------------------------- /pkg/kf/tektonutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/tektonutil/util.go -------------------------------------------------------------------------------- /pkg/kf/testutil/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/assertions.go -------------------------------------------------------------------------------- /pkg/kf/testutil/defaultable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/defaultable.go -------------------------------------------------------------------------------- /pkg/kf/testutil/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/doc.go -------------------------------------------------------------------------------- /pkg/kf/testutil/fake_api_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/fake_api_server.go -------------------------------------------------------------------------------- /pkg/kf/testutil/feature_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/feature_flags.go -------------------------------------------------------------------------------- /pkg/kf/testutil/golden.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/golden.go -------------------------------------------------------------------------------- /pkg/kf/testutil/gomock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/gomock.go -------------------------------------------------------------------------------- /pkg/kf/testutil/integration/app_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/integration/app_cache.go -------------------------------------------------------------------------------- /pkg/kf/testutil/integration/check_apps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/integration/check_apps.go -------------------------------------------------------------------------------- /pkg/kf/testutil/integration/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/integration/doc.go -------------------------------------------------------------------------------- /pkg/kf/testutil/integration/integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/integration/integration.go -------------------------------------------------------------------------------- /pkg/kf/testutil/integration/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/integration/metrics.go -------------------------------------------------------------------------------- /pkg/kf/testutil/integration/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/integration/metrics_test.go -------------------------------------------------------------------------------- /pkg/kf/testutil/reactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/reactor.go -------------------------------------------------------------------------------- /pkg/kf/testutil/validatable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/kf/testutil/validatable.go -------------------------------------------------------------------------------- /pkg/reconciler/apiservercerts/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/apiservercerts/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/apiservercerts/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/apiservercerts/reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/app/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/app/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/autoscaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/autoscaler.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/build.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/build_test.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/deployment.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/doc.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/env.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/env_test.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/route.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/route_test.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/secret.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/secret_test.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/service.go -------------------------------------------------------------------------------- /pkg/reconciler/app/resources/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/app/resources/service_test.go -------------------------------------------------------------------------------- /pkg/reconciler/appstartcommand/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/appstartcommand/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/appstartcommand/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/appstartcommand/reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/base.go -------------------------------------------------------------------------------- /pkg/reconciler/build/config/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/build/config/secrets.go -------------------------------------------------------------------------------- /pkg/reconciler/build/config/secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/build/config/secrets_test.go -------------------------------------------------------------------------------- /pkg/reconciler/build/config/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/build/config/store.go -------------------------------------------------------------------------------- /pkg/reconciler/build/config/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/build/config/store_test.go -------------------------------------------------------------------------------- /pkg/reconciler/build/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/build/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/build/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/build/reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/build/resources/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/build/resources/doc.go -------------------------------------------------------------------------------- /pkg/reconciler/build/resources/task_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/build/resources/task_run.go -------------------------------------------------------------------------------- /pkg/reconciler/equality.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/equality.go -------------------------------------------------------------------------------- /pkg/reconciler/equality_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/equality_test.go -------------------------------------------------------------------------------- /pkg/reconciler/featureflag/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/featureflag/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/featureflag/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/featureflag/reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/integration/README.md -------------------------------------------------------------------------------- /pkg/reconciler/integration/defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/integration/defaults_test.go -------------------------------------------------------------------------------- /pkg/reconciler/integration/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/integration/doc.go -------------------------------------------------------------------------------- /pkg/reconciler/reconcilerutil/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/reconcilerutil/doc.go -------------------------------------------------------------------------------- /pkg/reconciler/reconcilerutil/finalizers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/reconcilerutil/finalizers.go -------------------------------------------------------------------------------- /pkg/reconciler/reconcilerutil/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/reconcilerutil/stats.go -------------------------------------------------------------------------------- /pkg/reconciler/reconcilerutil/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/reconcilerutil/stats_test.go -------------------------------------------------------------------------------- /pkg/reconciler/route/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/route/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/route/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/route/controller_test.go -------------------------------------------------------------------------------- /pkg/reconciler/route/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/route/doc.go -------------------------------------------------------------------------------- /pkg/reconciler/route/fake_corev1_listers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/route/fake_corev1_listers.go -------------------------------------------------------------------------------- /pkg/reconciler/route/fake_kf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/route/fake_kf.go -------------------------------------------------------------------------------- /pkg/reconciler/route/fake_kf_v1alpha1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/route/fake_kf_v1alpha1.go -------------------------------------------------------------------------------- /pkg/reconciler/route/fake_listers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/route/fake_listers.go -------------------------------------------------------------------------------- /pkg/reconciler/route/fake_networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/route/fake_networking.go -------------------------------------------------------------------------------- /pkg/reconciler/route/fake_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/route/fake_reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/route/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/route/reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/route/reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/route/reconciler_test.go -------------------------------------------------------------------------------- /pkg/reconciler/route/resources/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/route/resources/doc.go -------------------------------------------------------------------------------- /pkg/reconciler/servicebroker/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/servicebroker/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/servicebroker/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/servicebroker/reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/servicecatalogbase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/servicecatalogbase.go -------------------------------------------------------------------------------- /pkg/reconciler/serviceinstance/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/serviceinstance/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/serviceinstance/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/serviceinstance/reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/space/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/space/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/space/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/space/reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/space/resources/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/space/resources/doc.go -------------------------------------------------------------------------------- /pkg/reconciler/space/resources/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/space/resources/role.go -------------------------------------------------------------------------------- /pkg/reconciler/task/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/task/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/task/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/task/reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/task/resources/task_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/task/resources/task_run.go -------------------------------------------------------------------------------- /pkg/reconciler/taskschedule/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/taskschedule/controller.go -------------------------------------------------------------------------------- /pkg/reconciler/taskschedule/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/taskschedule/reconciler.go -------------------------------------------------------------------------------- /pkg/reconciler/unstructured_equality.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/reconciler/unstructured_equality.go -------------------------------------------------------------------------------- /pkg/sourceimage/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/create.go -------------------------------------------------------------------------------- /pkg/sourceimage/create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/create_test.go -------------------------------------------------------------------------------- /pkg/sourceimage/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/doc.go -------------------------------------------------------------------------------- /pkg/sourceimage/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/download.go -------------------------------------------------------------------------------- /pkg/sourceimage/download_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/download_test.go -------------------------------------------------------------------------------- /pkg/sourceimage/extract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/extract.go -------------------------------------------------------------------------------- /pkg/sourceimage/extract_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/extract_test.go -------------------------------------------------------------------------------- /pkg/sourceimage/fake_listers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/fake_listers.go -------------------------------------------------------------------------------- /pkg/sourceimage/image_uploader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/image_uploader.go -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/dockerfile-app/.cfignore: -------------------------------------------------------------------------------- 1 | *.o 2 | 3 | data 4 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/dockerfile-app/garbage.o: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/example-app/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/example-app/.kfignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/example-app/garbage.o: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/golden/testpackagesourcetar_exclude_everything_tar_list.golden: -------------------------------------------------------------------------------- 1 | MODE SIZE NAME 2 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/golden/testpackagesourcetar_file_does_not_exist_tar_list.golden: -------------------------------------------------------------------------------- 1 | MODE SIZE NAME 2 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/golden/testpackagesourcetar_package_a_non_zip_file_tar_list.golden: -------------------------------------------------------------------------------- 1 | MODE SIZE NAME 2 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/include.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/testdata/include.jar -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/include.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/testdata/include.zip -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/source/exclude: -------------------------------------------------------------------------------- 1 | excluded 2 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/source/exclude-dir/include: -------------------------------------------------------------------------------- 1 | include 2 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/source/include: -------------------------------------------------------------------------------- 1 | include 2 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/source/include-dir/exclude: -------------------------------------------------------------------------------- 1 | excluded 2 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/source/include-dir/include: -------------------------------------------------------------------------------- 1 | include 2 | -------------------------------------------------------------------------------- /pkg/sourceimage/testdata/source/symlink: -------------------------------------------------------------------------------- 1 | include -------------------------------------------------------------------------------- /pkg/sourceimage/uploader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/uploader.go -------------------------------------------------------------------------------- /pkg/sourceimage/uploader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/uploader_test.go -------------------------------------------------------------------------------- /pkg/sourceimage/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/utils.go -------------------------------------------------------------------------------- /pkg/sourceimage/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/sourceimage/utils_test.go -------------------------------------------------------------------------------- /pkg/system/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/system/environment.go -------------------------------------------------------------------------------- /pkg/system/environment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/system/environment_test.go -------------------------------------------------------------------------------- /pkg/system/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/system/ingress.go -------------------------------------------------------------------------------- /pkg/system/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/system/ingress_test.go -------------------------------------------------------------------------------- /pkg/system/testing/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/pkg/system/testing/environment.go -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/apps/catsbroker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/catsbroker/README.md -------------------------------------------------------------------------------- /samples/apps/catsbroker/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/catsbroker/go.mod -------------------------------------------------------------------------------- /samples/apps/catsbroker/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/catsbroker/go.sum -------------------------------------------------------------------------------- /samples/apps/catsbroker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/catsbroker/main.go -------------------------------------------------------------------------------- /samples/apps/catsbroker/pkg/broker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/catsbroker/pkg/broker.go -------------------------------------------------------------------------------- /samples/apps/catsbroker/pkg/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/catsbroker/pkg/catalog.go -------------------------------------------------------------------------------- /samples/apps/catsbroker/pkg/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/catsbroker/pkg/types.go -------------------------------------------------------------------------------- /samples/apps/cfignore/.cfignore: -------------------------------------------------------------------------------- 1 | *.o 2 | 3 | data 4 | -------------------------------------------------------------------------------- /samples/apps/cfignore/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/apps/cfignore/garbage.o: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/apps/cfignore/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/kf/v2/samples/apps/helloworld 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /samples/apps/cfignore/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/cfignore/main.go -------------------------------------------------------------------------------- /samples/apps/echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/echo/README.md -------------------------------------------------------------------------------- /samples/apps/echo/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/kf/v2/samples/apps/echo 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /samples/apps/echo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/echo/main.go -------------------------------------------------------------------------------- /samples/apps/envs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/envs/README.md -------------------------------------------------------------------------------- /samples/apps/envs/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/kf/v2/samples/apps/envs 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /samples/apps/envs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/envs/main.go -------------------------------------------------------------------------------- /samples/apps/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/helloworld/Dockerfile -------------------------------------------------------------------------------- /samples/apps/helloworld/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/kf/v2/samples/apps/helloworld 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /samples/apps/helloworld/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/helloworld/main.go -------------------------------------------------------------------------------- /samples/apps/jsessionid-lb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/jsessionid-lb/README.md -------------------------------------------------------------------------------- /samples/apps/jsessionid-lb/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/jsessionid-lb/go.mod -------------------------------------------------------------------------------- /samples/apps/jsessionid-lb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/jsessionid-lb/main.go -------------------------------------------------------------------------------- /samples/apps/manifest-with-buildpack/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/kf/v2/samples/apps/helloworld 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /samples/apps/manifest-with-service/app/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/kf/v2/samples/apps/envs 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /samples/apps/multiple-apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/multiple-apps/README.md -------------------------------------------------------------------------------- /samples/apps/multiple-apps/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/multiple-apps/manifest.yml -------------------------------------------------------------------------------- /samples/apps/multiple-ports/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/multiple-ports/go.mod -------------------------------------------------------------------------------- /samples/apps/multiple-ports/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/multiple-ports/main.go -------------------------------------------------------------------------------- /samples/apps/multiple-ports/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/multiple-ports/manifest.yaml -------------------------------------------------------------------------------- /samples/apps/service-broker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/service-broker/README.md -------------------------------------------------------------------------------- /samples/apps/service-broker/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/service-broker/go.mod -------------------------------------------------------------------------------- /samples/apps/service-broker/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/service-broker/go.sum -------------------------------------------------------------------------------- /samples/apps/service-broker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/service-broker/main.go -------------------------------------------------------------------------------- /samples/apps/session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/session/README.md -------------------------------------------------------------------------------- /samples/apps/session/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/kf/v2/samples/apps/envs 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /samples/apps/session/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/session/main.go -------------------------------------------------------------------------------- /samples/apps/session/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/session/manifest.yaml -------------------------------------------------------------------------------- /samples/apps/sigterm/go.mod: -------------------------------------------------------------------------------- 1 | module sigterm 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /samples/apps/sigterm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/sigterm/main.go -------------------------------------------------------------------------------- /samples/apps/slowpoke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/slowpoke/README.md -------------------------------------------------------------------------------- /samples/apps/slowpoke/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/kf/v2/samples/apps/envs 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /samples/apps/slowpoke/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/slowpoke/main.go -------------------------------------------------------------------------------- /samples/apps/slowpoke/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/apps/slowpoke/manifest.yaml -------------------------------------------------------------------------------- /samples/cloud-service-broker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/cloud-service-broker/Dockerfile -------------------------------------------------------------------------------- /samples/cloud-service-broker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/samples/cloud-service-broker/README.md -------------------------------------------------------------------------------- /third_party/VENDOR-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/VENDOR-LICENSE -------------------------------------------------------------------------------- /third_party/cloudfoundry-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/cloudfoundry-cli/LICENSE -------------------------------------------------------------------------------- /third_party/cloudfoundry-cli/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/cloudfoundry-cli/METADATA -------------------------------------------------------------------------------- /third_party/cloudfoundry-cli/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/cloudfoundry-cli/NOTICE -------------------------------------------------------------------------------- /third_party/cloudfoundry-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/cloudfoundry-cli/README.md -------------------------------------------------------------------------------- /third_party/forked/cobra/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/LICENSE -------------------------------------------------------------------------------- /third_party/forked/cobra/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/METADATA -------------------------------------------------------------------------------- /third_party/forked/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/README.md -------------------------------------------------------------------------------- /third_party/forked/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/args.go -------------------------------------------------------------------------------- /third_party/forked/cobra/args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/args_test.go -------------------------------------------------------------------------------- /third_party/forked/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/cobra.go -------------------------------------------------------------------------------- /third_party/forked/cobra/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/cobra/README.md -------------------------------------------------------------------------------- /third_party/forked/cobra/cobra/cmd/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/cobra/cmd/add.go -------------------------------------------------------------------------------- /third_party/forked/cobra/cobra/cmd/project_test.go: -------------------------------------------------------------------------------- 1 | package cmd 2 | 3 | /* todo: write tests */ 4 | -------------------------------------------------------------------------------- /third_party/forked/cobra/cobra/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/cobra/main.go -------------------------------------------------------------------------------- /third_party/forked/cobra/cobra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/cobra_test.go -------------------------------------------------------------------------------- /third_party/forked/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/command.go -------------------------------------------------------------------------------- /third_party/forked/cobra/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/command_test.go -------------------------------------------------------------------------------- /third_party/forked/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/command_win.go -------------------------------------------------------------------------------- /third_party/forked/cobra/completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/completions.go -------------------------------------------------------------------------------- /third_party/forked/cobra/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/doc/README.md -------------------------------------------------------------------------------- /third_party/forked/cobra/doc/cmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/doc/cmd_test.go -------------------------------------------------------------------------------- /third_party/forked/cobra/doc/man_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/doc/man_docs.go -------------------------------------------------------------------------------- /third_party/forked/cobra/doc/man_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/doc/man_docs.md -------------------------------------------------------------------------------- /third_party/forked/cobra/doc/md_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/doc/md_docs.go -------------------------------------------------------------------------------- /third_party/forked/cobra/doc/md_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/doc/md_docs.md -------------------------------------------------------------------------------- /third_party/forked/cobra/doc/rest_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/doc/rest_docs.go -------------------------------------------------------------------------------- /third_party/forked/cobra/doc/rest_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/doc/rest_docs.md -------------------------------------------------------------------------------- /third_party/forked/cobra/doc/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/doc/util.go -------------------------------------------------------------------------------- /third_party/forked/cobra/doc/yaml_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/doc/yaml_docs.go -------------------------------------------------------------------------------- /third_party/forked/cobra/doc/yaml_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/doc/yaml_docs.md -------------------------------------------------------------------------------- /third_party/forked/cobra/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/go.mod -------------------------------------------------------------------------------- /third_party/forked/cobra/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/cobra/go.sum -------------------------------------------------------------------------------- /third_party/forked/gomod-collector/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/gomod-collector/go.mod -------------------------------------------------------------------------------- /third_party/forked/gomod-collector/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/forked/gomod-collector/go.sum -------------------------------------------------------------------------------- /third_party/forked/v2-buildpack-lifecycle/.gitignore: -------------------------------------------------------------------------------- 1 | installer/kodata 2 | -------------------------------------------------------------------------------- /third_party/k8s.io/kubectl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/k8s.io/kubectl/LICENSE -------------------------------------------------------------------------------- /third_party/k8s.io/kubectl/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/k8s.io/kubectl/METADATA -------------------------------------------------------------------------------- /third_party/mapfs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/Dockerfile -------------------------------------------------------------------------------- /third_party/mapfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/LICENSE -------------------------------------------------------------------------------- /third_party/mapfs/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/METADATA -------------------------------------------------------------------------------- /third_party/mapfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/NOTICE -------------------------------------------------------------------------------- /third_party/mapfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/README.md -------------------------------------------------------------------------------- /third_party/mapfs/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/src/.gitignore -------------------------------------------------------------------------------- /third_party/mapfs/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/src/Makefile -------------------------------------------------------------------------------- /third_party/mapfs/src/ci/run_fstest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/src/ci/run_fstest -------------------------------------------------------------------------------- /third_party/mapfs/src/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/src/go.mod -------------------------------------------------------------------------------- /third_party/mapfs/src/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/src/go.sum -------------------------------------------------------------------------------- /third_party/mapfs/src/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/src/main.go -------------------------------------------------------------------------------- /third_party/mapfs/src/main_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/src/main_suite_test.go -------------------------------------------------------------------------------- /third_party/mapfs/src/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/src/main_test.go -------------------------------------------------------------------------------- /third_party/mapfs/src/mapfs/mapfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/src/mapfs/mapfs.go -------------------------------------------------------------------------------- /third_party/mapfs/src/mapfs/mapfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/src/mapfs/mapfs_test.go -------------------------------------------------------------------------------- /third_party/mapfs/src/perf/perf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/mapfs/src/perf/perf_test.go -------------------------------------------------------------------------------- /third_party/tektoncd-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/tektoncd-cli/LICENSE -------------------------------------------------------------------------------- /third_party/tektoncd-cli/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/tektoncd-cli/METADATA -------------------------------------------------------------------------------- /third_party/tektoncd-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/tektoncd-cli/README.md -------------------------------------------------------------------------------- /third_party/third_party.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/third_party/third_party.go -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/kf/HEAD/tools.go --------------------------------------------------------------------------------