├── .github ├── actions │ └── extract-tag-info │ │ └── action.yaml ├── dependabot.yml └── workflows │ ├── after-push-to-branch.yaml │ ├── after-tag-with-version.yaml │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-documentation ├── MAINTAINERS ├── Makefile ├── README.md ├── RELEASING.md ├── VERSIONING.md ├── archived ├── Makefile ├── README.md ├── archived-function-release.sh ├── build │ └── docker │ │ ├── go │ │ ├── Dockerfile │ │ └── defaults.env │ │ └── ts │ │ ├── Dockerfile │ │ └── defaults.env ├── docker-archived.sh ├── examples │ ├── analyze-istio-simple │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── README.md │ │ └── istio-config.yaml │ ├── enable-gcp-services-advanced │ │ ├── .expected │ │ │ ├── diff.patch │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── README.md │ │ ├── proj1-services.yaml │ │ ├── proj2-services.yaml │ │ ├── service_proj1-service-bigquery.yaml │ │ ├── service_proj1-service-compute.yaml │ │ ├── service_proj1-service-redis.yaml │ │ └── service_proj2-service-redis.yaml │ ├── enable-gcp-services-simple │ │ ├── .expected │ │ │ ├── diff.patch │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── README.md │ │ └── services.yaml │ ├── export-terraform-advanced │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── README.md │ │ ├── folder_external.yaml │ │ ├── folder_ref.yaml │ │ └── org_iam.yaml │ ├── export-terraform-imperative │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── README.md │ │ ├── folder.yaml │ │ └── subfolder.yaml │ ├── fix-simple │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── README.md │ │ └── resources.yaml │ ├── format-imperative │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── README.md │ │ └── resources.yaml │ ├── generate-folders-resourcehierarchy-v1 │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── README.md │ │ └── resource-hierarchy.yaml │ ├── generate-folders-resourcehierarchy-v2 │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── README.md │ │ └── resource-hierarchy.yaml │ ├── generate-folders-resourcehierarchy-v3 │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── README.md │ │ └── resource-hierarchy.yaml │ ├── set-project-id-advanced │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── README.md │ │ ├── resources.yaml │ │ ├── setters.yaml │ │ └── subpkg │ │ │ ├── Kptfile │ │ │ └── resources.yaml │ ├── set-project-id-simple │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── README.md │ │ ├── resources.yaml │ │ └── setters.yaml │ ├── sops-age │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ ├── Kptfile │ │ ├── README.md │ │ ├── age_keys.txt │ │ ├── apply-setters.yaml │ │ ├── decrypt.yaml │ │ ├── deployment.yaml │ │ ├── encrypt-keys.yaml │ │ └── encrypt.yaml │ ├── sops-pgp-and-age │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ ├── diff.patch │ │ │ └── exec.sh │ │ ├── Kptfile │ │ ├── README.md │ │ ├── age_keys.txt │ │ ├── apply-setters.yaml │ │ ├── decrypt.yaml │ │ ├── deployment.yaml │ │ ├── encrypt-keys.yaml │ │ ├── encrypt.yaml │ │ └── pgp_keys.txt │ └── source-gcloud-config-simple │ │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── README.md │ │ └── source-gcloud-config └── functions │ ├── go │ ├── Makefile │ ├── _template │ │ └── README.md │ ├── bind │ │ ├── Makefile │ │ ├── generated │ │ │ └── docs.go │ │ ├── main.go │ │ └── pkg │ │ │ ├── meta │ │ │ ├── doc.go │ │ │ ├── kinds.go │ │ │ ├── namespaceref.go │ │ │ ├── ownerref.go │ │ │ ├── qualifiedref.go │ │ │ ├── refs.go │ │ │ └── refvisitor.go │ │ │ └── rename │ │ │ └── rename.go │ ├── enable-gcp-services │ │ ├── README.md │ │ ├── gcpservices │ │ │ ├── project_service_set.go │ │ │ ├── project_service_set_test.go │ │ │ ├── services.go │ │ │ └── services_test.go │ │ ├── generated │ │ │ └── docs.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── metadata.yaml │ ├── export-terraform │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── generated │ │ │ └── docs.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── metadata.yaml │ │ ├── terraformgenerator │ │ │ ├── iam.go │ │ │ ├── network.go │ │ │ ├── resources.go │ │ │ ├── resources_test.go │ │ │ ├── templates │ │ │ │ ├── README.md │ │ │ │ ├── folders.tf │ │ │ │ ├── iam.tf │ │ │ │ ├── log-export.tf │ │ │ │ ├── network.tf │ │ │ │ ├── projects.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── terraform.go │ │ │ ├── terraform_generator.go │ │ │ ├── terraform_generator_test.go │ │ │ └── variables.go │ │ ├── testdata │ │ │ ├── empty │ │ │ │ ├── input │ │ │ │ │ └── .gitkeep │ │ │ │ └── output │ │ │ │ │ └── terraform.yaml │ │ │ ├── iam │ │ │ │ ├── input │ │ │ │ │ ├── audit.yaml │ │ │ │ │ ├── folder_authoritative.yaml │ │ │ │ │ ├── folder_external.yaml │ │ │ │ │ ├── folder_ignored.yaml │ │ │ │ │ ├── folder_ref.yaml │ │ │ │ │ └── org.yaml │ │ │ │ └── tf │ │ │ │ │ ├── README.md │ │ │ │ │ ├── folders.tf │ │ │ │ │ ├── iam.tf │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ ├── log │ │ │ │ ├── input │ │ │ │ │ ├── bq.yaml │ │ │ │ │ ├── iam.yaml │ │ │ │ │ ├── logbucket.yaml │ │ │ │ │ ├── projects.yaml │ │ │ │ │ ├── pubsub.yaml │ │ │ │ │ └── storage.yaml │ │ │ │ └── tf │ │ │ │ │ ├── README.md │ │ │ │ │ ├── log-export.tf │ │ │ │ │ ├── projects.tf │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ ├── multi-network │ │ │ │ ├── input │ │ │ │ │ ├── net1 │ │ │ │ │ │ ├── Kptfile │ │ │ │ │ │ ├── fw │ │ │ │ │ │ │ └── ingress │ │ │ │ │ │ │ │ ├── allow-iap-rdp.yaml │ │ │ │ │ │ │ │ ├── allow-iap-ssh.yaml │ │ │ │ │ │ │ │ └── allow-icmp.yaml │ │ │ │ │ │ ├── privatesvcs.yaml │ │ │ │ │ │ ├── projects.yaml │ │ │ │ │ │ ├── sb-shared-base-r1 │ │ │ │ │ │ │ ├── nat.yaml │ │ │ │ │ │ │ └── subnet.yaml │ │ │ │ │ │ ├── sb-shared-base-r2 │ │ │ │ │ │ │ ├── nat.yaml │ │ │ │ │ │ │ └── subnet.yaml │ │ │ │ │ │ ├── setters.yaml │ │ │ │ │ │ ├── sharedVPC.yaml │ │ │ │ │ │ └── vpc.yaml │ │ │ │ │ └── net2 │ │ │ │ │ │ ├── Kptfile │ │ │ │ │ │ ├── fw │ │ │ │ │ │ └── ingress │ │ │ │ │ │ │ ├── allow-iap-rdp.yaml │ │ │ │ │ │ │ ├── allow-iap-ssh.yaml │ │ │ │ │ │ │ └── allow-icmp.yaml │ │ │ │ │ │ ├── privatesvcs.yaml │ │ │ │ │ │ ├── projects.yaml │ │ │ │ │ │ ├── sb-shared-base-r1 │ │ │ │ │ │ ├── nat.yaml │ │ │ │ │ │ └── subnet.yaml │ │ │ │ │ │ ├── sb-shared-base-r2 │ │ │ │ │ │ ├── nat.yaml │ │ │ │ │ │ └── subnet.yaml │ │ │ │ │ │ ├── setters.yaml │ │ │ │ │ │ ├── sharedVPC.yaml │ │ │ │ │ │ └── vpc.yaml │ │ │ │ └── tf │ │ │ │ │ ├── README.md │ │ │ │ │ ├── network.tf │ │ │ │ │ ├── projects.tf │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ ├── network │ │ │ │ ├── input │ │ │ │ │ ├── fw │ │ │ │ │ │ └── ingress │ │ │ │ │ │ │ ├── allow-iap-rdp.yaml │ │ │ │ │ │ │ ├── allow-iap-ssh.yaml │ │ │ │ │ │ │ └── allow-icmp.yaml │ │ │ │ │ ├── privatesvcs.yaml │ │ │ │ │ ├── projects.yaml │ │ │ │ │ ├── routes.yaml │ │ │ │ │ ├── sb-shared-base-r1 │ │ │ │ │ │ ├── nat.yaml │ │ │ │ │ │ └── subnet.yaml │ │ │ │ │ ├── sb-shared-base-r2 │ │ │ │ │ │ ├── nat.yaml │ │ │ │ │ │ └── subnet.yaml │ │ │ │ │ ├── sharedVPC.yaml │ │ │ │ │ └── vpc.yaml │ │ │ │ └── tf │ │ │ │ │ ├── README.md │ │ │ │ │ ├── network.tf │ │ │ │ │ ├── projects.tf │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ ├── other_resources │ │ │ │ ├── input │ │ │ │ │ ├── bucket.yaml │ │ │ │ │ ├── context.yaml │ │ │ │ │ └── folder.yaml │ │ │ │ └── output │ │ │ │ │ └── terraform.yaml │ │ │ ├── projects │ │ │ │ ├── input │ │ │ │ │ ├── folder_ref.yaml │ │ │ │ │ ├── project_in_external.yaml │ │ │ │ │ ├── project_in_folder.yaml │ │ │ │ │ └── project_in_org.yaml │ │ │ │ └── tf │ │ │ │ │ ├── README.md │ │ │ │ │ ├── folders.tf │ │ │ │ │ ├── projects.tf │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ └── team │ │ │ │ ├── input │ │ │ │ ├── folder_finance.dev.yaml │ │ │ │ ├── folder_finance.prod.yaml │ │ │ │ ├── folder_finance.qa.yaml │ │ │ │ ├── folder_finance.yaml │ │ │ │ ├── folder_retail.dev.yaml │ │ │ │ ├── folder_retail.prod.yaml │ │ │ │ ├── folder_retail.qa.yaml │ │ │ │ └── folder_retail.yaml │ │ │ │ └── output │ │ │ │ └── terraform.yaml │ │ └── thirdparty │ │ │ └── kyaml │ │ │ └── fnsdk │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ ├── example_filter_GVK_test.go │ │ │ ├── example_generator_test.go │ │ │ ├── example_logger_injector_test.go │ │ │ ├── example_mutate_comments_test.go │ │ │ ├── example_read_field_test.go │ │ │ ├── example_read_functionConfig_test.go │ │ │ ├── example_set_field_test.go │ │ │ ├── example_test.go │ │ │ ├── example_validator_test.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── log.go │ │ │ ├── map.go │ │ │ ├── maphelper_test.go │ │ │ ├── maphelpers.go │ │ │ ├── object.go │ │ │ ├── resourcelist.go │ │ │ ├── result.go │ │ │ ├── result_test.go │ │ │ ├── run.go │ │ │ ├── scalar.go │ │ │ ├── slice.go │ │ │ ├── testutil │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── golden.go │ │ │ ├── golden_test.go │ │ │ └── testdata │ │ │ │ ├── expected_resourcelist.yaml │ │ │ │ └── resourcelist.yaml │ │ │ ├── variant.go │ │ │ └── variant_test.go │ ├── fix │ │ ├── README.md │ │ ├── fixpkg │ │ │ ├── fix.go │ │ │ ├── fix_test.go │ │ │ └── walk.go │ │ ├── generated │ │ │ └── docs.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── metadata.yaml │ │ ├── testdata │ │ │ └── fix │ │ │ │ ├── nginx-v1 │ │ │ │ ├── Kptfile │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hello-world │ │ │ │ │ ├── Kptfile │ │ │ │ │ ├── deploy.yaml │ │ │ │ │ ├── service │ │ │ │ │ │ └── service.yaml │ │ │ │ │ ├── set-annotations.yaml │ │ │ │ │ ├── set-namespace.yaml │ │ │ │ │ └── setters.yaml │ │ │ │ ├── my-annotations.yaml │ │ │ │ ├── set-labels.yaml │ │ │ │ └── setters.yaml │ │ │ │ ├── nginx-v1alpha1 │ │ │ │ ├── Kptfile │ │ │ │ ├── deployment.yaml │ │ │ │ ├── fn-config.yaml │ │ │ │ └── hello-world │ │ │ │ │ ├── Kptfile │ │ │ │ │ ├── deploy.yaml │ │ │ │ │ ├── fn-config.yaml │ │ │ │ │ └── service │ │ │ │ │ └── service.yaml │ │ │ │ └── nginx-v1alpha2 │ │ │ │ ├── Kptfile │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hello-world │ │ │ │ ├── Kptfile │ │ │ │ ├── deploy.yaml │ │ │ │ ├── service │ │ │ │ │ └── service.yaml │ │ │ │ ├── set-annotations.yaml │ │ │ │ └── set-namespace.yaml │ │ │ │ ├── my-annotations.yaml │ │ │ │ └── set-labels.yaml │ │ ├── v1 │ │ │ └── types.go │ │ └── v1alpha1 │ │ │ └── types.go │ ├── format │ │ ├── README.md │ │ ├── generated │ │ │ └── docs.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── metadata.yaml │ ├── go.mod │ ├── go.sum │ ├── set-gcp-resource-ids │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── generated │ │ │ └── docs.go │ │ ├── main.go │ │ ├── metadata.yaml │ │ ├── pkg │ │ │ └── kpt │ │ │ │ ├── packagecontext.go │ │ │ │ └── resourcegroup.go │ │ └── projectids.go │ ├── set-name-prefix │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── generated │ │ │ └── docs.go │ │ ├── krm-fn-metadata.yaml │ │ ├── metadata.yaml │ │ └── setnameprefix.go │ ├── set-project-id │ │ ├── README.md │ │ ├── generated │ │ │ └── docs.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── metadata.yaml │ └── source-gcloud-config │ │ ├── README.md │ │ ├── exec │ │ └── gcloud.go │ │ ├── gcloudconfig │ │ ├── generator.go │ │ ├── generator_test.go │ │ └── processor.go │ │ ├── generated │ │ └── docs.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ └── metadata.yaml │ └── ts │ ├── .prettierrc.json │ ├── Makefile │ ├── _template │ └── README.md │ ├── analyze-istio │ ├── .dockerignore │ ├── analyze_istio.Dockerfile │ ├── jasmine.json │ ├── metadata.yaml │ ├── package.json │ ├── src │ │ ├── gen │ │ │ ├── io.k8s.api.admissionregistration.v1beta1.ts │ │ │ ├── io.k8s.api.apps.v1.ts │ │ │ ├── io.k8s.api.apps.v1beta1.ts │ │ │ ├── io.k8s.api.apps.v1beta2.ts │ │ │ ├── io.k8s.api.authentication.v1.ts │ │ │ ├── io.k8s.api.authentication.v1beta1.ts │ │ │ ├── io.k8s.api.authorization.v1.ts │ │ │ ├── io.k8s.api.authorization.v1beta1.ts │ │ │ ├── io.k8s.api.autoscaling.v1.ts │ │ │ ├── io.k8s.api.autoscaling.v2beta1.ts │ │ │ ├── io.k8s.api.autoscaling.v2beta2.ts │ │ │ ├── io.k8s.api.batch.v1.ts │ │ │ ├── io.k8s.api.batch.v1beta1.ts │ │ │ ├── io.k8s.api.certificates.v1beta1.ts │ │ │ ├── io.k8s.api.coordination.v1.ts │ │ │ ├── io.k8s.api.coordination.v1beta1.ts │ │ │ ├── io.k8s.api.core.v1.ts │ │ │ ├── io.k8s.api.events.v1beta1.ts │ │ │ ├── io.k8s.api.extensions.v1beta1.ts │ │ │ ├── io.k8s.api.networking.v1.ts │ │ │ ├── io.k8s.api.networking.v1beta1.ts │ │ │ ├── io.k8s.api.node.v1beta1.ts │ │ │ ├── io.k8s.api.policy.v1beta1.ts │ │ │ ├── io.k8s.api.rbac.v1.ts │ │ │ ├── io.k8s.api.rbac.v1beta1.ts │ │ │ ├── io.k8s.api.scheduling.v1.ts │ │ │ ├── io.k8s.api.scheduling.v1beta1.ts │ │ │ ├── io.k8s.api.storage.v1.ts │ │ │ ├── io.k8s.api.storage.v1beta1.ts │ │ │ ├── io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ts │ │ │ ├── io.k8s.apimachinery.pkg.api.resource.ts │ │ │ ├── io.k8s.apimachinery.pkg.apis.meta.v1.ts │ │ │ ├── io.k8s.apimachinery.pkg.runtime.ts │ │ │ ├── io.k8s.apimachinery.pkg.util.intstr.ts │ │ │ ├── io.k8s.apimachinery.pkg.version.ts │ │ │ ├── io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ts │ │ │ └── io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ts │ │ ├── istioctl_analyze.ts │ │ ├── istioctl_analyze_run.ts │ │ └── istioctl_analyze_test.ts │ ├── tsconfig.json │ └── tslint.json │ ├── generate-folders │ ├── .eslintrc.js │ ├── README.md │ ├── crds │ │ ├── blueprints-hierarchy.yaml │ │ └── cft-hierarchy.yaml │ ├── examples │ │ ├── annotations_v1.yaml │ │ ├── annotations_v2.yaml │ │ ├── annotations_v3.yaml │ │ ├── annotations_v3_inherit_all.yaml │ │ ├── annotations_v3_internal.yaml │ │ ├── annotations_v3_none.yaml │ │ ├── deep_subtree_v2.yaml │ │ ├── deep_subtree_v2_no_kind.yaml │ │ ├── deep_subtree_v3.yaml │ │ ├── deep_subtree_v3_no_kind.yaml │ │ ├── missing_org.yaml │ │ ├── missing_subtree.yaml │ │ ├── nested_v2.yaml │ │ ├── nested_v3.yaml │ │ ├── simple_v1.yaml │ │ ├── simple_v2.yaml │ │ ├── simple_v2_folder_parent.yaml │ │ ├── simple_v3.yaml │ │ ├── simple_v3_folder_parent.yaml │ │ ├── simple_v3_ns.yaml │ │ ├── subtree_v2.yaml │ │ ├── subtree_v3.yaml │ │ └── wrong_parent_kind.yaml │ ├── jasmine.json │ ├── metadata.yaml │ ├── package.json │ ├── src │ │ ├── gen │ │ │ ├── com.google.cloud.blueprints.v1alpha3.ts │ │ │ ├── com.google.cloud.cnrm.accesscontextmanager.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.bigquery.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.bigtable.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.cloudbuild.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.compute.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.container.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.core.v1alpha1.ts │ │ │ ├── com.google.cloud.cnrm.core.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.dataflow.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.dns.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.firestore.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.iam.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.kms.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.pubsub.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.redis.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.resourcemanager.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.servicenetworking.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.serviceusage.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.sourcerepo.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.spanner.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.sql.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.storage.v1beta1.ts │ │ │ ├── com.google.cloud.cnrm.storagetransfer.v1beta1.ts │ │ │ ├── com.google.cloud.v1.ts │ │ │ ├── com.google.cloud.v1beta1.ts │ │ │ ├── dev.cft.v1alpha1.ts │ │ │ ├── dev.cft.v1alpha2.ts │ │ │ ├── io.gke.networking.v1beta1.ts │ │ │ ├── io.gke.networking.v1beta2.ts │ │ │ ├── io.gke.nodemanagement.v1alpha1.ts │ │ │ ├── io.k8s.api.admissionregistration.v1.ts │ │ │ ├── io.k8s.api.admissionregistration.v1beta1.ts │ │ │ ├── io.k8s.api.apps.v1.ts │ │ │ ├── io.k8s.api.authentication.v1.ts │ │ │ ├── io.k8s.api.authentication.v1beta1.ts │ │ │ ├── io.k8s.api.authorization.v1.ts │ │ │ ├── io.k8s.api.authorization.v1beta1.ts │ │ │ ├── io.k8s.api.autoscaling.v1.ts │ │ │ ├── io.k8s.api.autoscaling.v2beta1.ts │ │ │ ├── io.k8s.api.autoscaling.v2beta2.ts │ │ │ ├── io.k8s.api.batch.v1.ts │ │ │ ├── io.k8s.api.batch.v1beta1.ts │ │ │ ├── io.k8s.api.certificates.v1beta1.ts │ │ │ ├── io.k8s.api.coordination.v1.ts │ │ │ ├── io.k8s.api.coordination.v1beta1.ts │ │ │ ├── io.k8s.api.core.v1.ts │ │ │ ├── io.k8s.api.extensions.v1beta1.ts │ │ │ ├── io.k8s.api.networking.v1.ts │ │ │ ├── io.k8s.api.networking.v1beta1.ts │ │ │ ├── io.k8s.api.node.v1beta1.ts │ │ │ ├── io.k8s.api.policy.v1beta1.ts │ │ │ ├── io.k8s.api.rbac.v1.ts │ │ │ ├── io.k8s.api.rbac.v1beta1.ts │ │ │ ├── io.k8s.api.scheduling.v1.ts │ │ │ ├── io.k8s.api.scheduling.v1beta1.ts │ │ │ ├── io.k8s.api.storage.v1.ts │ │ │ ├── io.k8s.api.storage.v1beta1.ts │ │ │ ├── io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ts │ │ │ ├── io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ts │ │ │ ├── io.k8s.apimachinery.pkg.api.resource.ts │ │ │ ├── io.k8s.apimachinery.pkg.apis.meta.v1.ts │ │ │ ├── io.k8s.apimachinery.pkg.runtime.ts │ │ │ ├── io.k8s.apimachinery.pkg.util.intstr.ts │ │ │ ├── io.k8s.apimachinery.pkg.version.ts │ │ │ ├── io.k8s.autoscaling.internal.v1alpha1.ts │ │ │ ├── io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ts │ │ │ ├── io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ts │ │ │ ├── io.k8s.metrics.pkg.apis.metrics.v1beta1.ts │ │ │ ├── io.k8s.migration.v1alpha1.ts │ │ │ ├── io.kope.scalingpolicy.v1alpha1.ts │ │ │ └── org.projectcalico.crd.v1.ts │ │ ├── generate_folders.ts │ │ ├── generate_folders_run.ts │ │ └── generate_folders_test.ts │ └── tsconfig.json │ ├── inflate-helm-chart │ └── README.md │ └── sops │ ├── .dockerignore │ ├── @types │ └── rw │ │ ├── index.d.ts │ │ └── package.json │ ├── README.md │ ├── jasmine.json │ ├── metadata.yaml │ ├── package.json │ ├── sops.Dockerfile │ ├── src │ ├── gen │ │ ├── io.k8s.api.admissionregistration.v1beta1.ts │ │ ├── io.k8s.api.apps.v1.ts │ │ ├── io.k8s.api.apps.v1beta1.ts │ │ ├── io.k8s.api.apps.v1beta2.ts │ │ ├── io.k8s.api.authentication.v1.ts │ │ ├── io.k8s.api.authentication.v1beta1.ts │ │ ├── io.k8s.api.authorization.v1.ts │ │ ├── io.k8s.api.authorization.v1beta1.ts │ │ ├── io.k8s.api.autoscaling.v1.ts │ │ ├── io.k8s.api.autoscaling.v2beta1.ts │ │ ├── io.k8s.api.autoscaling.v2beta2.ts │ │ ├── io.k8s.api.batch.v1.ts │ │ ├── io.k8s.api.batch.v1beta1.ts │ │ ├── io.k8s.api.certificates.v1beta1.ts │ │ ├── io.k8s.api.coordination.v1.ts │ │ ├── io.k8s.api.coordination.v1beta1.ts │ │ ├── io.k8s.api.core.v1.ts │ │ ├── io.k8s.api.events.v1beta1.ts │ │ ├── io.k8s.api.extensions.v1beta1.ts │ │ ├── io.k8s.api.networking.v1.ts │ │ ├── io.k8s.api.networking.v1beta1.ts │ │ ├── io.k8s.api.node.v1beta1.ts │ │ ├── io.k8s.api.policy.v1beta1.ts │ │ ├── io.k8s.api.rbac.v1.ts │ │ ├── io.k8s.api.rbac.v1beta1.ts │ │ ├── io.k8s.api.scheduling.v1.ts │ │ ├── io.k8s.api.scheduling.v1beta1.ts │ │ ├── io.k8s.api.storage.v1.ts │ │ ├── io.k8s.api.storage.v1beta1.ts │ │ ├── io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ts │ │ ├── io.k8s.apimachinery.pkg.api.resource.ts │ │ ├── io.k8s.apimachinery.pkg.apis.meta.v1.ts │ │ ├── io.k8s.apimachinery.pkg.runtime.ts │ │ ├── io.k8s.apimachinery.pkg.util.intstr.ts │ │ ├── io.k8s.apimachinery.pkg.version.ts │ │ ├── io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ts │ │ └── io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.ts │ ├── sops.ts │ ├── sops_run.ts │ └── sops_test.ts │ ├── tsconfig.json │ └── tslint.json ├── code-of-conduct.md ├── contrib ├── examples │ ├── annotate-apply-time-mutations-custom-resource │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── README.md │ │ └── resources.yaml │ ├── annotate-apply-time-mutations-inline-comment │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── README.md │ │ └── resources.yaml │ └── delete-annotations-simple │ │ ├── .expected │ │ └── diff.patch │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── README.md │ │ └── resources.yaml └── functions │ └── go │ ├── Makefile │ ├── annotate-apply-time-mutations │ ├── README.md │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── metadata.yaml │ └── pkg │ │ ├── annotation.go │ │ ├── annotation_test.go │ │ ├── comment_scanner.go │ │ ├── comment_scanner_test.go │ │ ├── function.go │ │ ├── function_test.go │ │ ├── object_scanner.go │ │ ├── object_scanner_test.go │ │ └── types.go │ └── delete-annotations │ ├── README.md │ ├── generated │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── main_test.go │ └── metadata.yaml ├── documentation ├── Makefile ├── README.md ├── assets │ ├── icons │ │ └── logo.svg │ ├── js │ │ └── search.js │ └── scss │ │ ├── _about.scss │ │ ├── _archive.scss │ │ ├── _buttons.scss │ │ ├── _cookie-banner.scss │ │ ├── _footer.scss │ │ ├── _hamburger.scss │ │ ├── _header.scss │ │ ├── _main.scss │ │ ├── _nav.scss │ │ ├── _projects.scss │ │ ├── _reset.scss │ │ ├── _search.scss │ │ ├── _sidebar-left.scss │ │ ├── _sidebar-toc.scss │ │ ├── _styles_project.scss │ │ ├── _taxonomy.scss │ │ ├── _typography.scss │ │ ├── _variables_project.scss │ │ └── _video.scss ├── config.toml ├── content │ └── en │ │ ├── _index.md │ │ ├── apply-replacements │ │ └── v0.1 │ │ │ └── _index.md │ │ ├── apply-setters │ │ ├── v0.1 │ │ │ └── _index.md │ │ └── v0.2 │ │ │ └── _index.md │ │ ├── create-setters │ │ └── v0.1 │ │ │ └── _index.md │ │ ├── ensure-name-substring │ │ ├── v0.1 │ │ │ └── _index.md │ │ └── v0.2 │ │ │ └── _index.md │ │ ├── gatekeeper │ │ ├── v0.1 │ │ │ └── _index.md │ │ └── v0.2 │ │ │ └── _index.md │ │ ├── kubeconform │ │ └── v0.1 │ │ │ └── _index.md │ │ ├── kubeval │ │ └── v0.3 │ │ │ └── _index.md │ │ ├── list-setters │ │ └── v0.1 │ │ │ └── _index.md │ │ ├── remove-local-config-resources │ │ └── v0.1 │ │ │ └── _index.md │ │ ├── render-helm-chart │ │ ├── v0.1 │ │ │ └── _index.md │ │ └── v0.2 │ │ │ └── _index.md │ │ ├── search-replace │ │ ├── v0.1 │ │ │ └── _index.md │ │ └── v0.2 │ │ │ └── _index.md │ │ ├── search.md │ │ ├── set-annotations │ │ └── v0.1 │ │ │ └── _index.md │ │ ├── set-enforcement-action │ │ └── v0.1 │ │ │ └── _index.md │ │ ├── set-image │ │ └── v0.1 │ │ │ └── _index.md │ │ ├── set-labels │ │ ├── v0.1 │ │ │ └── _index.md │ │ └── v0.2 │ │ │ └── _index.md │ │ ├── set-namespace │ │ ├── v0.1 │ │ │ └── _index.md │ │ ├── v0.2 │ │ │ └── _index.md │ │ ├── v0.3 │ │ │ └── _index.md │ │ └── v0.4 │ │ │ └── _index.md │ │ ├── starlark │ │ ├── v0.1 │ │ │ └── _index.md │ │ ├── v0.2 │ │ │ └── _index.md │ │ ├── v0.3 │ │ │ └── _index.md │ │ ├── v0.4 │ │ │ └── _index.md │ │ └── v0.5 │ │ │ └── _index.md │ │ └── upsert-resource │ │ ├── v0.1 │ │ └── _index.md │ │ └── v0.2 │ │ └── _index.md ├── go.mod ├── go.sum ├── layouts │ ├── 404.html │ ├── _default │ │ ├── _markup │ │ │ ├── render-heading.html │ │ │ └── render-link.html │ │ ├── baseof.html │ │ ├── content.html │ │ ├── list.html │ │ ├── search.html │ │ └── single.html │ ├── blog │ │ ├── baseof.html │ │ ├── content.html │ │ ├── list.html │ │ └── single.html │ ├── home.html │ ├── partials │ │ ├── breadcrumb.html │ │ ├── favicons.html │ │ ├── featured-image.html │ │ ├── feedback.html │ │ ├── footer.html │ │ ├── gtm-noscript.html │ │ ├── head.html │ │ ├── navbar.html │ │ ├── page-meta-lastmod.html │ │ ├── page-meta-links.html │ │ ├── search-input.html │ │ ├── section-index.html │ │ ├── sidebar-tree.html │ │ ├── toc.html │ │ └── twitter_cards.html │ ├── shortcodes │ │ ├── alert.html │ │ ├── blocks │ │ │ ├── feature.html │ │ │ ├── lead.html │ │ │ └── section.html │ │ ├── listdocs.html │ │ ├── listexamples.html │ │ ├── listfunctions.html │ │ ├── listversions.html │ │ └── relatedexamples.html │ └── whitepapers │ │ └── content.html ├── netlify.toml ├── package.json └── static │ ├── custom.css │ ├── favicons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico │ ├── files │ ├── Cloud-Native-Finland-Event-Terms-and-Conditions.pdf │ └── KCD-Helsinki-2025-Sponsorship-Prospectus.pdf │ ├── fonts │ ├── ClarityCity-100.ttf │ ├── ClarityCity-100.woff │ ├── ClarityCity-100.woff2 │ ├── ClarityCity-100Italic.ttf │ ├── ClarityCity-100Italic.woff │ ├── ClarityCity-100Italic.woff2 │ ├── ClarityCity-200.ttf │ ├── ClarityCity-200.woff │ ├── ClarityCity-200.woff2 │ ├── ClarityCity-200Italic.ttf │ ├── ClarityCity-200Italic.woff │ ├── ClarityCity-200Italic.woff2 │ ├── ClarityCity-300.ttf │ ├── ClarityCity-300.woff │ ├── ClarityCity-300.woff2 │ ├── ClarityCity-300Italic.ttf │ ├── ClarityCity-300Italic.woff │ ├── ClarityCity-300Italic.woff2 │ ├── ClarityCity-400.ttf │ ├── ClarityCity-400.woff │ ├── ClarityCity-400.woff2 │ ├── ClarityCity-400Italic.ttf │ ├── ClarityCity-400Italic.woff │ ├── ClarityCity-400Italic.woff2 │ ├── ClarityCity-500.ttf │ ├── ClarityCity-500.woff │ ├── ClarityCity-500.woff2 │ ├── ClarityCity-500Italic.ttf │ ├── ClarityCity-500Italic.woff │ ├── ClarityCity-500Italic.woff2 │ ├── ClarityCity-600.ttf │ ├── ClarityCity-600.woff │ ├── ClarityCity-600.woff2 │ ├── ClarityCity-600Italic.ttf │ ├── ClarityCity-600Italic.woff │ ├── ClarityCity-600Italic.woff2 │ ├── ClarityCity-700.ttf │ ├── ClarityCity-700.woff │ ├── ClarityCity-700.woff2 │ ├── ClarityCity-700Italic.ttf │ ├── ClarityCity-700Italic.woff │ ├── ClarityCity-700Italic.woff2 │ ├── ClarityCity-800.ttf │ ├── ClarityCity-800.woff │ ├── ClarityCity-800.woff2 │ ├── ClarityCity-800Italic.ttf │ ├── ClarityCity-800Italic.woff │ ├── ClarityCity-800Italic.woff2 │ ├── ClarityCity-900.ttf │ ├── ClarityCity-900.woff │ ├── ClarityCity-900.woff2 │ ├── ClarityCity-900Italic.ttf │ ├── ClarityCity-900Italic.woff │ └── ClarityCity-900Italic.woff2 │ ├── images │ ├── KptLogoSmall.png │ ├── cncf-color.svg │ ├── fn-export │ │ ├── circleci-result.png │ │ ├── github-actions-result.png │ │ ├── gitlab-ci-result.png │ │ ├── jenkins-result.png │ │ └── tekton-result.png │ ├── func-target.svg │ ├── func.svg │ ├── kpt_horizontal_color.svg │ ├── kpt_stacked_color.svg │ ├── lifecycle │ │ ├── flow1.svg │ │ ├── flow2.svg │ │ ├── flow3.svg │ │ ├── flow4.svg │ │ └── flow5.svg │ ├── package-orchestration.svg │ ├── pipeline.svg │ ├── set-command.svg │ ├── set-model.svg │ ├── status.svg │ ├── substitute-command.svg │ ├── substitute-model.svg │ ├── tenant-onboarding.svg │ └── variant-constructor-pkg-repo-diagram.png │ ├── js │ └── home.js │ └── social │ ├── boxed-blog.svg │ ├── boxed-discussion.svg │ ├── boxed-email.svg │ ├── boxed-facebook.svg │ ├── boxed-flickr.svg │ ├── boxed-github.svg │ ├── boxed-gitter.svg │ ├── boxed-instagram.svg │ ├── boxed-lf-artwork.svg │ ├── boxed-lf-devstats.svg │ ├── boxed-linkedin.svg │ ├── boxed-meetup.svg │ ├── boxed-qq.svg │ ├── boxed-rss.svg │ ├── boxed-slack.svg │ ├── boxed-stack-overflow.svg │ ├── boxed-twitch.svg │ ├── boxed-twitter.svg │ ├── boxed-website.svg │ ├── boxed-wechat.svg │ ├── boxed-whatsapp.svg │ ├── boxed-youtube.svg │ ├── email.svg │ ├── facebook.svg │ ├── flickr.svg │ ├── github.svg │ ├── instagram.svg │ ├── linkedin-black.svg │ ├── linkedin-white.svg │ ├── meetup.svg │ ├── slack.svg │ ├── twitch.svg │ ├── twitter.svg │ ├── wechat.svg │ └── youtube.svg ├── examples ├── _template │ └── README.md ├── apply-replacements-simple │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── job.yaml │ ├── replacements.yaml │ └── resources.yaml ├── apply-setters-simple │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── resources.yaml │ └── setters.yaml ├── create-setters-simple │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── resources.yaml │ └── setters.yaml ├── ensure-name-substring-advanced │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── fn-config.yaml │ └── resources.yaml ├── ensure-name-substring-depends-on │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ └── resources.yaml ├── ensure-name-substring-imperative │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ ├── .krmignore │ ├── README.md │ └── app.yaml ├── ensure-name-substring-prefix │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ └── resources.yaml ├── ensure-name-substring-suffix │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ └── resources.yaml ├── gatekeeper-disallow-root-user │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── deployment.yaml │ └── policy.yaml ├── gatekeeper-imperative │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── README.md │ ├── config-map.yaml │ └── policy.yaml ├── gatekeeper-invalid-configmap │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── config-map.yaml │ └── policy.yaml ├── gatekeeper-warning-only │ ├── .expected │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── config-map.yaml │ └── policy.yaml ├── generate-kpt-pkg-docs-simple │ ├── .expected │ │ ├── diff.patch │ │ └── exec.sh │ ├── .krmignore │ ├── GENERATED.md │ ├── Kptfile │ ├── README.md │ ├── bucket.yaml │ └── setters.yaml ├── kubeconform-imperative │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── README.md │ └── app.yaml ├── kubeconform-mount-schema │ ├── .expected │ │ ├── config.yaml │ │ ├── exec.sh │ │ └── results.yaml │ ├── .krmignore │ ├── README.md │ ├── jsonschema │ │ ├── _definitions.json │ │ ├── affinity-v1.json │ │ ├── aggregationrule-rbac-v1.json │ │ ├── aggregationrule-rbac-v1alpha1.json │ │ ├── all.json │ │ ├── allowedcsidriver-policy-v1beta1.json │ │ ├── allowedflexvolume-policy-v1beta1.json │ │ ├── allowedhostpath-policy-v1beta1.json │ │ ├── apigroup-meta-v1.json │ │ ├── apigrouplist-meta-v1.json │ │ ├── apiresource-meta-v1.json │ │ ├── apiresourcelist-meta-v1.json │ │ ├── apiservice-apiregistration-v1.json │ │ ├── apiservicecondition-apiregistration-v1.json │ │ ├── apiservicelist-apiregistration-v1.json │ │ ├── apiservicespec-apiregistration-v1.json │ │ ├── apiservicestatus-apiregistration-v1.json │ │ ├── apiversions-meta-v1.json │ │ ├── attachedvolume-v1.json │ │ ├── awselasticblockstorevolumesource-v1.json │ │ ├── azurediskvolumesource-v1.json │ │ ├── azurefilepersistentvolumesource-v1.json │ │ ├── azurefilevolumesource-v1.json │ │ ├── binding-v1.json │ │ ├── boundobjectreference-authentication-v1.json │ │ ├── capabilities-v1.json │ │ ├── cephfspersistentvolumesource-v1.json │ │ ├── cephfsvolumesource-v1.json │ │ ├── certificatesigningrequest-certificates-v1.json │ │ ├── certificatesigningrequestcondition-certificates-v1.json │ │ ├── certificatesigningrequestlist-certificates-v1.json │ │ ├── certificatesigningrequestspec-certificates-v1.json │ │ ├── certificatesigningrequeststatus-certificates-v1.json │ │ ├── cinderpersistentvolumesource-v1.json │ │ ├── cindervolumesource-v1.json │ │ ├── clientipconfig-v1.json │ │ ├── clusterrole-rbac-v1.json │ │ ├── clusterrole-rbac-v1alpha1.json │ │ ├── clusterrolebinding-rbac-v1.json │ │ ├── clusterrolebinding-rbac-v1alpha1.json │ │ ├── clusterrolebindinglist-rbac-v1.json │ │ ├── clusterrolebindinglist-rbac-v1alpha1.json │ │ ├── clusterrolelist-rbac-v1.json │ │ ├── clusterrolelist-rbac-v1alpha1.json │ │ ├── componentcondition-v1.json │ │ ├── componentstatus-v1.json │ │ ├── componentstatuslist-v1.json │ │ ├── condition-meta-v1.json │ │ ├── configmap-v1.json │ │ ├── configmapenvsource-v1.json │ │ ├── configmapkeyselector-v1.json │ │ ├── configmaplist-v1.json │ │ ├── configmapnodeconfigsource-v1.json │ │ ├── configmapprojection-v1.json │ │ ├── configmapvolumesource-v1.json │ │ ├── container-v1.json │ │ ├── containerimage-v1.json │ │ ├── containerport-v1.json │ │ ├── containerresourcemetricsource-autoscaling-v2beta1.json │ │ ├── containerresourcemetricsource-autoscaling-v2beta2.json │ │ ├── containerresourcemetricstatus-autoscaling-v2beta1.json │ │ ├── containerresourcemetricstatus-autoscaling-v2beta2.json │ │ ├── containerstate-v1.json │ │ ├── containerstaterunning-v1.json │ │ ├── containerstateterminated-v1.json │ │ ├── containerstatewaiting-v1.json │ │ ├── containerstatus-v1.json │ │ ├── controllerrevision-apps-v1.json │ │ ├── controllerrevisionlist-apps-v1.json │ │ ├── cronjob-batch-v1.json │ │ ├── cronjob-batch-v1beta1.json │ │ ├── cronjoblist-batch-v1.json │ │ ├── cronjoblist-batch-v1beta1.json │ │ ├── cronjobspec-batch-v1.json │ │ ├── cronjobspec-batch-v1beta1.json │ │ ├── cronjobstatus-batch-v1.json │ │ ├── cronjobstatus-batch-v1beta1.json │ │ ├── crossversionobjectreference-autoscaling-v1.json │ │ ├── crossversionobjectreference-autoscaling-v2beta1.json │ │ ├── crossversionobjectreference-autoscaling-v2beta2.json │ │ ├── csidriver-storage-v1.json │ │ ├── csidriverlist-storage-v1.json │ │ ├── csidriverspec-storage-v1.json │ │ ├── csinode-storage-v1.json │ │ ├── csinodedriver-storage-v1.json │ │ ├── csinodelist-storage-v1.json │ │ ├── csinodespec-storage-v1.json │ │ ├── csipersistentvolumesource-v1.json │ │ ├── csistoragecapacity-storage-v1alpha1.json │ │ ├── csistoragecapacity-storage-v1beta1.json │ │ ├── csistoragecapacitylist-storage-v1alpha1.json │ │ ├── csistoragecapacitylist-storage-v1beta1.json │ │ ├── csivolumesource-v1.json │ │ ├── customresourcecolumndefinition-apiextensions-v1.json │ │ ├── customresourceconversion-apiextensions-v1.json │ │ ├── customresourcedefinitioncondition-apiextensions-v1.json │ │ ├── customresourcedefinitionnames-apiextensions-v1.json │ │ ├── customresourcedefinitionstatus-apiextensions-v1.json │ │ ├── customresourcesubresources-apiextensions-v1.json │ │ ├── customresourcesubresourcescale-apiextensions-v1.json │ │ ├── customresourcesubresourcestatus-apiextensions-v1.json │ │ ├── daemonendpoint-v1.json │ │ ├── daemonset-apps-v1.json │ │ ├── daemonsetcondition-apps-v1.json │ │ ├── daemonsetlist-apps-v1.json │ │ ├── daemonsetspec-apps-v1.json │ │ ├── daemonsetstatus-apps-v1.json │ │ ├── daemonsetupdatestrategy-apps-v1.json │ │ ├── deleteoptions-meta-v1.json │ │ ├── deployment-apps-v1.json │ │ ├── deploymentcondition-apps-v1.json │ │ ├── deploymentlist-apps-v1.json │ │ ├── deploymentspec-apps-v1.json │ │ ├── deploymentstatus-apps-v1.json │ │ ├── deploymentstrategy-apps-v1.json │ │ ├── downwardapiprojection-v1.json │ │ ├── downwardapivolumefile-v1.json │ │ ├── downwardapivolumesource-v1.json │ │ ├── emptydirvolumesource-v1.json │ │ ├── endpoint-discovery-v1.json │ │ ├── endpoint-discovery-v1beta1.json │ │ ├── endpointaddress-v1.json │ │ ├── endpointconditions-discovery-v1.json │ │ ├── endpointconditions-discovery-v1beta1.json │ │ ├── endpointhints-discovery-v1.json │ │ ├── endpointhints-discovery-v1beta1.json │ │ ├── endpointport-discovery-v1.json │ │ ├── endpointport-discovery-v1beta1.json │ │ ├── endpointport-v1.json │ │ ├── endpoints-v1.json │ │ ├── endpointslice-discovery-v1.json │ │ ├── endpointslice-discovery-v1beta1.json │ │ ├── endpointslicelist-discovery-v1.json │ │ ├── endpointslicelist-discovery-v1beta1.json │ │ ├── endpointslist-v1.json │ │ ├── endpointsubset-v1.json │ │ ├── envfromsource-v1.json │ │ ├── envvar-v1.json │ │ ├── envvarsource-v1.json │ │ ├── ephemeralcontainer-v1.json │ │ ├── ephemeralvolumesource-v1.json │ │ ├── event-events-v1.json │ │ ├── event-events-v1beta1.json │ │ ├── event-v1.json │ │ ├── eventlist-events-v1.json │ │ ├── eventlist-events-v1beta1.json │ │ ├── eventlist-v1.json │ │ ├── eventseries-events-v1.json │ │ ├── eventseries-events-v1beta1.json │ │ ├── eventseries-v1.json │ │ ├── eventsource-v1.json │ │ ├── eviction-policy-v1.json │ │ ├── execaction-v1.json │ │ ├── externaldocumentation-apiextensions-v1.json │ │ ├── externalmetricsource-autoscaling-v2beta1.json │ │ ├── externalmetricsource-autoscaling-v2beta2.json │ │ ├── externalmetricstatus-autoscaling-v2beta1.json │ │ ├── externalmetricstatus-autoscaling-v2beta2.json │ │ ├── fcvolumesource-v1.json │ │ ├── fieldsv1-meta-v1.json │ │ ├── flexpersistentvolumesource-v1.json │ │ ├── flexvolumesource-v1.json │ │ ├── flockervolumesource-v1.json │ │ ├── flowdistinguishermethod-flowcontrol-v1beta1.json │ │ ├── flowschema-flowcontrol-v1beta1.json │ │ ├── flowschemacondition-flowcontrol-v1beta1.json │ │ ├── flowschemalist-flowcontrol-v1beta1.json │ │ ├── flowschemaspec-flowcontrol-v1beta1.json │ │ ├── flowschemastatus-flowcontrol-v1beta1.json │ │ ├── forzone-discovery-v1.json │ │ ├── forzone-discovery-v1beta1.json │ │ ├── fsgroupstrategyoptions-policy-v1beta1.json │ │ ├── gcepersistentdiskvolumesource-v1.json │ │ ├── gitrepovolumesource-v1.json │ │ ├── glusterfspersistentvolumesource-v1.json │ │ ├── glusterfsvolumesource-v1.json │ │ ├── groupsubject-flowcontrol-v1beta1.json │ │ ├── groupversionfordiscovery-meta-v1.json │ │ ├── handler-v1.json │ │ ├── horizontalpodautoscaler-autoscaling-v1.json │ │ ├── horizontalpodautoscaler-autoscaling-v2beta1.json │ │ ├── horizontalpodautoscaler-autoscaling-v2beta2.json │ │ ├── horizontalpodautoscalerbehavior-autoscaling-v2beta2.json │ │ ├── horizontalpodautoscalercondition-autoscaling-v2beta1.json │ │ ├── horizontalpodautoscalercondition-autoscaling-v2beta2.json │ │ ├── horizontalpodautoscalerlist-autoscaling-v1.json │ │ ├── horizontalpodautoscalerlist-autoscaling-v2beta1.json │ │ ├── horizontalpodautoscalerlist-autoscaling-v2beta2.json │ │ ├── horizontalpodautoscalerspec-autoscaling-v1.json │ │ ├── horizontalpodautoscalerspec-autoscaling-v2beta1.json │ │ ├── horizontalpodautoscalerspec-autoscaling-v2beta2.json │ │ ├── horizontalpodautoscalerstatus-autoscaling-v1.json │ │ ├── horizontalpodautoscalerstatus-autoscaling-v2beta1.json │ │ ├── horizontalpodautoscalerstatus-autoscaling-v2beta2.json │ │ ├── hostalias-v1.json │ │ ├── hostpathvolumesource-v1.json │ │ ├── hostportrange-policy-v1beta1.json │ │ ├── hpascalingpolicy-autoscaling-v2beta2.json │ │ ├── hpascalingrules-autoscaling-v2beta2.json │ │ ├── httpgetaction-v1.json │ │ ├── httpheader-v1.json │ │ ├── httpingresspath-networking-v1.json │ │ ├── httpingressrulevalue-networking-v1.json │ │ ├── idrange-policy-v1beta1.json │ │ ├── info-pkg-version.json │ │ ├── ingress-networking-v1.json │ │ ├── ingressbackend-networking-v1.json │ │ ├── ingressclass-networking-v1.json │ │ ├── ingressclasslist-networking-v1.json │ │ ├── ingressclassparametersreference-networking-v1.json │ │ ├── ingressclassspec-networking-v1.json │ │ ├── ingresslist-networking-v1.json │ │ ├── ingressrule-networking-v1.json │ │ ├── ingressservicebackend-networking-v1.json │ │ ├── ingressspec-networking-v1.json │ │ ├── ingressstatus-networking-v1.json │ │ ├── ingresstls-networking-v1.json │ │ ├── intorstring-util-intstr.json │ │ ├── ipblock-networking-v1.json │ │ ├── iscsipersistentvolumesource-v1.json │ │ ├── iscsivolumesource-v1.json │ │ ├── job-batch-v1.json │ │ ├── jobcondition-batch-v1.json │ │ ├── joblist-batch-v1.json │ │ ├── jobspec-batch-v1.json │ │ ├── jobstatus-batch-v1.json │ │ ├── jobtemplatespec-batch-v1.json │ │ ├── jobtemplatespec-batch-v1beta1.json │ │ ├── json-apiextensions-v1.json │ │ ├── keytopath-v1.json │ │ ├── labelselector-meta-v1.json │ │ ├── labelselectorrequirement-meta-v1.json │ │ ├── lease-coordination-v1.json │ │ ├── leaselist-coordination-v1.json │ │ ├── leasespec-coordination-v1.json │ │ ├── lifecycle-v1.json │ │ ├── limitedprioritylevelconfiguration-flowcontrol-v1beta1.json │ │ ├── limitrange-v1.json │ │ ├── limitrangeitem-v1.json │ │ ├── limitrangelist-v1.json │ │ ├── limitrangespec-v1.json │ │ ├── limitresponse-flowcontrol-v1beta1.json │ │ ├── listmeta-meta-v1.json │ │ ├── loadbalanceringress-v1.json │ │ ├── loadbalancerstatus-v1.json │ │ ├── localobjectreference-v1.json │ │ ├── localsubjectaccessreview-authorization-v1.json │ │ ├── localvolumesource-v1.json │ │ ├── managedfieldsentry-meta-v1.json │ │ ├── metricidentifier-autoscaling-v2beta2.json │ │ ├── metricspec-autoscaling-v2beta1.json │ │ ├── metricspec-autoscaling-v2beta2.json │ │ ├── metricstatus-autoscaling-v2beta1.json │ │ ├── metricstatus-autoscaling-v2beta2.json │ │ ├── metrictarget-autoscaling-v2beta2.json │ │ ├── metricvaluestatus-autoscaling-v2beta2.json │ │ ├── microtime-meta-v1.json │ │ ├── mutatingwebhook-admissionregistration-v1.json │ │ ├── mutatingwebhookconfiguration-admissionregistration-v1.json │ │ ├── mutatingwebhookconfigurationlist-admissionregistration-v1.json │ │ ├── namespace-v1.json │ │ ├── namespacecondition-v1.json │ │ ├── namespacelist-v1.json │ │ ├── namespacespec-v1.json │ │ ├── namespacestatus-v1.json │ │ ├── networkpolicy-networking-v1.json │ │ ├── networkpolicyegressrule-networking-v1.json │ │ ├── networkpolicyingressrule-networking-v1.json │ │ ├── networkpolicylist-networking-v1.json │ │ ├── networkpolicypeer-networking-v1.json │ │ ├── networkpolicyport-networking-v1.json │ │ ├── networkpolicyspec-networking-v1.json │ │ ├── nfsvolumesource-v1.json │ │ ├── node-v1.json │ │ ├── nodeaddress-v1.json │ │ ├── nodeaffinity-v1.json │ │ ├── nodecondition-v1.json │ │ ├── nodeconfigsource-v1.json │ │ ├── nodeconfigstatus-v1.json │ │ ├── nodedaemonendpoints-v1.json │ │ ├── nodelist-v1.json │ │ ├── nodeselector-v1.json │ │ ├── nodeselectorrequirement-v1.json │ │ ├── nodeselectorterm-v1.json │ │ ├── nodespec-v1.json │ │ ├── nodestatus-v1.json │ │ ├── nodesysteminfo-v1.json │ │ ├── nonresourceattributes-authorization-v1.json │ │ ├── nonresourcepolicyrule-flowcontrol-v1beta1.json │ │ ├── nonresourcerule-authorization-v1.json │ │ ├── objectfieldselector-v1.json │ │ ├── objectmeta-meta-v1.json │ │ ├── objectmetricsource-autoscaling-v2beta1.json │ │ ├── objectmetricsource-autoscaling-v2beta2.json │ │ ├── objectmetricstatus-autoscaling-v2beta1.json │ │ ├── objectmetricstatus-autoscaling-v2beta2.json │ │ ├── objectreference-v1.json │ │ ├── overhead-node-v1.json │ │ ├── overhead-node-v1alpha1.json │ │ ├── overhead-node-v1beta1.json │ │ ├── ownerreference-meta-v1.json │ │ ├── patch-meta-v1.json │ │ ├── persistentvolume-v1.json │ │ ├── persistentvolumeclaim-v1.json │ │ ├── persistentvolumeclaimcondition-v1.json │ │ ├── persistentvolumeclaimlist-v1.json │ │ ├── persistentvolumeclaimspec-v1.json │ │ ├── persistentvolumeclaimstatus-v1.json │ │ ├── persistentvolumeclaimtemplate-v1.json │ │ ├── persistentvolumeclaimvolumesource-v1.json │ │ ├── persistentvolumelist-v1.json │ │ ├── persistentvolumespec-v1.json │ │ ├── persistentvolumestatus-v1.json │ │ ├── photonpersistentdiskvolumesource-v1.json │ │ ├── pod-v1.json │ │ ├── podaffinity-v1.json │ │ ├── podaffinityterm-v1.json │ │ ├── podantiaffinity-v1.json │ │ ├── podcondition-v1.json │ │ ├── poddisruptionbudget-policy-v1.json │ │ ├── poddisruptionbudget-policy-v1beta1.json │ │ ├── poddisruptionbudgetlist-policy-v1.json │ │ ├── poddisruptionbudgetlist-policy-v1beta1.json │ │ ├── poddisruptionbudgetspec-policy-v1.json │ │ ├── poddisruptionbudgetspec-policy-v1beta1.json │ │ ├── poddisruptionbudgetstatus-policy-v1.json │ │ ├── poddisruptionbudgetstatus-policy-v1beta1.json │ │ ├── poddnsconfig-v1.json │ │ ├── poddnsconfigoption-v1.json │ │ ├── podip-v1.json │ │ ├── podlist-v1.json │ │ ├── podreadinessgate-v1.json │ │ ├── podsecuritycontext-v1.json │ │ ├── podsecuritypolicy-policy-v1beta1.json │ │ ├── podsecuritypolicylist-policy-v1beta1.json │ │ ├── podsecuritypolicyspec-policy-v1beta1.json │ │ ├── podsmetricsource-autoscaling-v2beta1.json │ │ ├── podsmetricsource-autoscaling-v2beta2.json │ │ ├── podsmetricstatus-autoscaling-v2beta1.json │ │ ├── podsmetricstatus-autoscaling-v2beta2.json │ │ ├── podspec-v1.json │ │ ├── podstatus-v1.json │ │ ├── podtemplate-v1.json │ │ ├── podtemplatelist-v1.json │ │ ├── podtemplatespec-v1.json │ │ ├── policyrule-rbac-v1.json │ │ ├── policyrule-rbac-v1alpha1.json │ │ ├── policyruleswithsubjects-flowcontrol-v1beta1.json │ │ ├── portstatus-v1.json │ │ ├── portworxvolumesource-v1.json │ │ ├── preconditions-meta-v1.json │ │ ├── preferredschedulingterm-v1.json │ │ ├── priorityclass-scheduling-v1.json │ │ ├── priorityclass-scheduling-v1alpha1.json │ │ ├── priorityclasslist-scheduling-v1.json │ │ ├── priorityclasslist-scheduling-v1alpha1.json │ │ ├── prioritylevelconfiguration-flowcontrol-v1beta1.json │ │ ├── prioritylevelconfigurationcondition-flowcontrol-v1beta1.json │ │ ├── prioritylevelconfigurationlist-flowcontrol-v1beta1.json │ │ ├── prioritylevelconfigurationreference-flowcontrol-v1beta1.json │ │ ├── prioritylevelconfigurationspec-flowcontrol-v1beta1.json │ │ ├── prioritylevelconfigurationstatus-flowcontrol-v1beta1.json │ │ ├── probe-v1.json │ │ ├── projectedvolumesource-v1.json │ │ ├── quantity-resource.json │ │ ├── queuingconfiguration-flowcontrol-v1beta1.json │ │ ├── quobytevolumesource-v1.json │ │ ├── rawextension-pkg-runtime.json │ │ ├── rbdpersistentvolumesource-v1.json │ │ ├── rbdvolumesource-v1.json │ │ ├── replicaset-apps-v1.json │ │ ├── replicasetcondition-apps-v1.json │ │ ├── replicasetlist-apps-v1.json │ │ ├── replicasetspec-apps-v1.json │ │ ├── replicasetstatus-apps-v1.json │ │ ├── replicationcontroller-v1.json │ │ ├── replicationcontrollercondition-v1.json │ │ ├── replicationcontrollerlist-v1.json │ │ ├── replicationcontrollerspec-v1.json │ │ ├── replicationcontrollerstatus-v1.json │ │ ├── resourceattributes-authorization-v1.json │ │ ├── resourcefieldselector-v1.json │ │ ├── resourcemetricsource-autoscaling-v2beta1.json │ │ ├── resourcemetricsource-autoscaling-v2beta2.json │ │ ├── resourcemetricstatus-autoscaling-v2beta1.json │ │ ├── resourcemetricstatus-autoscaling-v2beta2.json │ │ ├── resourcepolicyrule-flowcontrol-v1beta1.json │ │ ├── resourcequota-v1.json │ │ ├── resourcequotalist-v1.json │ │ ├── resourcequotaspec-v1.json │ │ ├── resourcequotastatus-v1.json │ │ ├── resourcerequirements-v1.json │ │ ├── resourcerule-authorization-v1.json │ │ ├── role-rbac-v1.json │ │ ├── role-rbac-v1alpha1.json │ │ ├── rolebinding-rbac-v1.json │ │ ├── rolebinding-rbac-v1alpha1.json │ │ ├── rolebindinglist-rbac-v1.json │ │ ├── rolebindinglist-rbac-v1alpha1.json │ │ ├── rolelist-rbac-v1.json │ │ ├── rolelist-rbac-v1alpha1.json │ │ ├── roleref-rbac-v1.json │ │ ├── roleref-rbac-v1alpha1.json │ │ ├── rollingupdatedaemonset-apps-v1.json │ │ ├── rollingupdatedeployment-apps-v1.json │ │ ├── rollingupdatestatefulsetstrategy-apps-v1.json │ │ ├── rulewithoperations-admissionregistration-v1.json │ │ ├── runasgroupstrategyoptions-policy-v1beta1.json │ │ ├── runasuserstrategyoptions-policy-v1beta1.json │ │ ├── runtimeclass-node-v1.json │ │ ├── runtimeclass-node-v1alpha1.json │ │ ├── runtimeclass-node-v1beta1.json │ │ ├── runtimeclasslist-node-v1.json │ │ ├── runtimeclasslist-node-v1alpha1.json │ │ ├── runtimeclasslist-node-v1beta1.json │ │ ├── runtimeclassspec-node-v1alpha1.json │ │ ├── runtimeclassstrategyoptions-policy-v1beta1.json │ │ ├── scale-autoscaling-v1.json │ │ ├── scaleiopersistentvolumesource-v1.json │ │ ├── scaleiovolumesource-v1.json │ │ ├── scalespec-autoscaling-v1.json │ │ ├── scalestatus-autoscaling-v1.json │ │ ├── scheduling-node-v1.json │ │ ├── scheduling-node-v1alpha1.json │ │ ├── scheduling-node-v1beta1.json │ │ ├── scopedresourceselectorrequirement-v1.json │ │ ├── scopeselector-v1.json │ │ ├── seccompprofile-v1.json │ │ ├── secret-v1.json │ │ ├── secretenvsource-v1.json │ │ ├── secretkeyselector-v1.json │ │ ├── secretlist-v1.json │ │ ├── secretprojection-v1.json │ │ ├── secretreference-v1.json │ │ ├── secretvolumesource-v1.json │ │ ├── securitycontext-v1.json │ │ ├── selfsubjectaccessreview-authorization-v1.json │ │ ├── selfsubjectaccessreviewspec-authorization-v1.json │ │ ├── selfsubjectrulesreview-authorization-v1.json │ │ ├── selfsubjectrulesreviewspec-authorization-v1.json │ │ ├── selinuxoptions-v1.json │ │ ├── selinuxstrategyoptions-policy-v1beta1.json │ │ ├── serveraddressbyclientcidr-meta-v1.json │ │ ├── serverstorageversion-apiserverinternal-v1alpha1.json │ │ ├── service-v1.json │ │ ├── serviceaccount-v1.json │ │ ├── serviceaccountlist-v1.json │ │ ├── serviceaccountsubject-flowcontrol-v1beta1.json │ │ ├── serviceaccounttokenprojection-v1.json │ │ ├── servicebackendport-networking-v1.json │ │ ├── servicelist-v1.json │ │ ├── serviceport-v1.json │ │ ├── servicereference-admissionregistration-v1.json │ │ ├── servicereference-apiextensions-v1.json │ │ ├── servicereference-apiregistration-v1.json │ │ ├── servicespec-v1.json │ │ ├── servicestatus-v1.json │ │ ├── sessionaffinityconfig-v1.json │ │ ├── statefulset-apps-v1.json │ │ ├── statefulsetcondition-apps-v1.json │ │ ├── statefulsetlist-apps-v1.json │ │ ├── statefulsetspec-apps-v1.json │ │ ├── statefulsetstatus-apps-v1.json │ │ ├── statefulsetupdatestrategy-apps-v1.json │ │ ├── status-meta-v1.json │ │ ├── statuscause-meta-v1.json │ │ ├── statusdetails-meta-v1.json │ │ ├── storageclass-storage-v1.json │ │ ├── storageclasslist-storage-v1.json │ │ ├── storageospersistentvolumesource-v1.json │ │ ├── storageosvolumesource-v1.json │ │ ├── storageversion-apiserverinternal-v1alpha1.json │ │ ├── storageversioncondition-apiserverinternal-v1alpha1.json │ │ ├── storageversionlist-apiserverinternal-v1alpha1.json │ │ ├── storageversionspec-apiserverinternal-v1alpha1.json │ │ ├── storageversionstatus-apiserverinternal-v1alpha1.json │ │ ├── subject-flowcontrol-v1beta1.json │ │ ├── subject-rbac-v1.json │ │ ├── subject-rbac-v1alpha1.json │ │ ├── subjectaccessreview-authorization-v1.json │ │ ├── subjectaccessreviewspec-authorization-v1.json │ │ ├── subjectaccessreviewstatus-authorization-v1.json │ │ ├── subjectrulesreviewstatus-authorization-v1.json │ │ ├── supplementalgroupsstrategyoptions-policy-v1beta1.json │ │ ├── sysctl-v1.json │ │ ├── taint-v1.json │ │ ├── tcpsocketaction-v1.json │ │ ├── time-meta-v1.json │ │ ├── tokenrequest-authentication-v1.json │ │ ├── tokenrequest-storage-v1.json │ │ ├── tokenrequestspec-authentication-v1.json │ │ ├── tokenrequeststatus-authentication-v1.json │ │ ├── tokenreview-authentication-v1.json │ │ ├── tokenreviewspec-authentication-v1.json │ │ ├── tokenreviewstatus-authentication-v1.json │ │ ├── toleration-v1.json │ │ ├── topologyselectorlabelrequirement-v1.json │ │ ├── topologyselectorterm-v1.json │ │ ├── topologyspreadconstraint-v1.json │ │ ├── typedlocalobjectreference-v1.json │ │ ├── uncountedterminatedpods-batch-v1.json │ │ ├── userinfo-authentication-v1.json │ │ ├── usersubject-flowcontrol-v1beta1.json │ │ ├── validatingwebhook-admissionregistration-v1.json │ │ ├── validatingwebhookconfiguration-admissionregistration-v1.json │ │ ├── validatingwebhookconfigurationlist-admissionregistration-v1.json │ │ ├── volume-v1.json │ │ ├── volumeattachment-storage-v1.json │ │ ├── volumeattachment-storage-v1alpha1.json │ │ ├── volumeattachmentlist-storage-v1.json │ │ ├── volumeattachmentlist-storage-v1alpha1.json │ │ ├── volumeattachmentsource-storage-v1.json │ │ ├── volumeattachmentsource-storage-v1alpha1.json │ │ ├── volumeattachmentspec-storage-v1.json │ │ ├── volumeattachmentspec-storage-v1alpha1.json │ │ ├── volumeattachmentstatus-storage-v1.json │ │ ├── volumeattachmentstatus-storage-v1alpha1.json │ │ ├── volumedevice-v1.json │ │ ├── volumeerror-storage-v1.json │ │ ├── volumeerror-storage-v1alpha1.json │ │ ├── volumemount-v1.json │ │ ├── volumenodeaffinity-v1.json │ │ ├── volumenoderesources-storage-v1.json │ │ ├── volumeprojection-v1.json │ │ ├── vspherevirtualdiskvolumesource-v1.json │ │ ├── watchevent-meta-v1.json │ │ ├── webhookclientconfig-admissionregistration-v1.json │ │ ├── webhookclientconfig-apiextensions-v1.json │ │ ├── webhookconversion-apiextensions-v1.json │ │ ├── weightedpodaffinityterm-v1.json │ │ └── windowssecuritycontextoptions-v1.json │ └── replicationcontroller.yaml ├── kubeconform-simple │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ └── resources.yaml ├── list-setters-simple │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── README.md │ └── resources.yaml ├── remove-local-config-resources-imperative │ ├── .expected │ │ ├── config.yaml │ │ ├── diff.patch │ │ └── results.yaml │ ├── .krmignore │ ├── README.md │ └── resources.yaml ├── render-helm-chart-crds │ ├── .expected │ │ ├── diff.patch │ │ └── exec.sh │ ├── .krmignore │ └── README.md ├── render-helm-chart-kustomize-inline-values │ ├── .expected │ │ ├── diff.patch │ │ └── exec.sh │ ├── .krmignore │ ├── README.md │ └── kustomization.yaml ├── render-helm-chart-kustomize-private-git │ ├── .expected │ │ ├── config.yaml │ │ └── exec.sh │ ├── .krmignore │ ├── README.md │ ├── credentials.env │ └── kustomization.yaml ├── render-helm-chart-kustomize-values-files │ ├── .expected │ │ ├── diff.patch │ │ └── exec.sh │ ├── .krmignore │ ├── README.md │ └── kustomization.yaml ├── render-helm-chart-local │ ├── .expected │ │ ├── diff.patch │ │ └── exec.sh │ ├── .krmignore │ ├── README.md │ ├── helloworld-chart │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-connection.yaml │ │ └── values.yaml │ └── helloworld-values │ │ └── values.yaml ├── render-helm-chart-remote-values-file │ ├── .expected │ │ ├── diff.patch │ │ └── exec.sh │ ├── .krmignore │ ├── README.md │ └── helloworld-chart │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ │ └── values.yaml ├── render-helm-chart-remote │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ ├── .krmignore │ └── README.md ├── search-replace-create-setters │ ├── .expected │ │ ├── diff.patch │ │ └── exec.sh │ ├── .krmignore │ ├── README.md │ └── resources.yaml ├── search-replace-simple │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ └── resources.yaml ├── set-annotations-advanced │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── fn-config.yaml │ └── resources.yaml ├── set-annotations-imperative │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ ├── .krmignore │ ├── README.md │ └── app.yaml ├── set-annotations-simple │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ └── resources.yaml ├── set-enforcement-action-simple │ ├── .expected │ │ ├── diff.patch │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ └── resources.yaml ├── set-image-advanced │ ├── .expected │ │ ├── diff.patch │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── fn-config.yaml │ └── resources.yaml ├── set-image-digest │ ├── .expected │ │ ├── diff.patch │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ └── resources.yaml ├── set-image-imperative │ ├── .expected │ │ ├── config.yaml │ │ ├── diff.patch │ │ └── results.yaml │ ├── .krmignore │ ├── README.md │ └── app.yaml ├── set-image-simple │ ├── .expected │ │ ├── diff.patch │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ └── resources.yaml ├── set-labels-full-coverage │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── fn-config.yaml │ └── resources.yaml ├── set-labels-imperative │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ ├── .krmignore │ ├── README.md │ └── app.yaml ├── set-labels-simple │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ └── resources.yaml ├── set-namespace-depends-on │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ └── resources.yaml ├── set-namespace-kpt-package-context │ ├── .expected │ │ ├── diff.patch │ │ └── exec.sh │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── packagecontext.yaml │ └── resources.yaml ├── set-namespace-simple │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ └── resources.yaml ├── starlark-configmap-as-functionconfig │ ├── .expected │ │ ├── diff.patch │ │ └── exec.sh │ ├── .krmignore │ ├── README.md │ ├── deployment.yaml │ └── set-replicas.star ├── starlark-inject-sidecar │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── deployment.yaml │ └── fn-config.yaml ├── starlark-load-library │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── app.yaml │ └── fn-config.yaml ├── starlark-poddisruptionbudget │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── deployment.yaml │ └── fn-config.yaml ├── starlark-set-namespace │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── app.yaml │ └── fn-config.yaml ├── starlark-validation │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── README.md │ ├── config-map.yaml │ └── fn-config.yaml ├── upsert-resource-at-path │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ ├── .krmignore │ ├── README.md │ ├── fn-config.yaml │ └── resources.yaml ├── upsert-resource-multiple │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ ├── .krmignore │ ├── README.md │ ├── fn-config.yaml │ └── resources.yaml └── upsert-resource-simple │ ├── .expected │ ├── config.yaml │ └── diff.patch │ ├── .krmignore │ ├── README.md │ ├── fn-config.yaml │ └── resources.yaml ├── functions └── go │ ├── Makefile │ ├── _template │ └── README.md │ ├── apply-replacements │ ├── README.md │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── metadata.yaml │ ├── replacements │ │ └── replacements.go │ ├── run.go │ └── run_js.go │ ├── apply-setters │ ├── Makefile │ ├── README.md │ ├── applysetters │ │ ├── apply_setters.go │ │ ├── apply_setters_test.go │ │ └── walk.go │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── krm-fn-metadata.yaml │ ├── main.go │ └── metadata.yaml │ ├── create-setters │ ├── README.md │ ├── createsetters │ │ ├── create_setters.go │ │ ├── create_setters_test.go │ │ └── walk.go │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── metadata.yaml │ ├── ensure-name-substring │ ├── README.md │ ├── ensure_name_substring.go │ ├── ensure_name_substring_test.go │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── metadata.yaml │ └── nameref │ │ └── nameref.go │ ├── gatekeeper │ ├── README.md │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── metadata.yaml │ ├── validate.go │ └── validate_test.go │ ├── generate-kpt-pkg-docs │ ├── Dockerfile │ ├── README.md │ ├── docs │ │ ├── generate.go │ │ ├── generate_test.go │ │ ├── insert.go │ │ ├── insert_test.go │ │ ├── markdown.go │ │ ├── pkg.go │ │ ├── pkg_test.go │ │ ├── readme.go │ │ ├── resources.go │ │ ├── resources_test.go │ │ └── tables.go │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── metadata.yaml │ ├── kubeconform │ ├── Dockerfile │ ├── README.md │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── jsonschema │ │ ├── custom │ │ │ └── kptfile.json │ │ ├── jsonschema-k8s.tar.gz │ │ └── update-schema.sh │ ├── kubeconform.go │ ├── kubeconform_test.go │ ├── main.go │ └── metadata.yaml │ ├── list-setters │ ├── README.md │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── listsetters │ │ ├── list_setters.go │ │ ├── list_setters_test.go │ │ └── walk.go │ ├── main.go │ └── metadata.yaml │ ├── remove-local-config-resources │ ├── README.md │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── main_test.go │ ├── metadata.yaml │ └── testdata │ │ ├── applied.yaml │ │ ├── local-01.yaml │ │ └── local-02.yaml │ ├── render-helm-chart │ ├── Dockerfile │ ├── README.md │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── helmfn │ │ └── helmchartprocessor.go │ ├── main.go │ ├── metadata.yaml │ └── third_party │ │ ├── README.md │ │ └── sigs.k8s.io │ │ └── kustomize │ │ └── api │ │ ├── builtins │ │ └── HelmChartInflationGenerator.go │ │ └── types │ │ └── helmchartargs.go │ ├── search-replace │ ├── README.md │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── metadata.yaml │ └── searchreplace │ │ ├── pathparser.go │ │ ├── pathparser_test.go │ │ ├── putcommentcases_test.go │ │ ├── search_replace.go │ │ ├── search_replace_test.go │ │ ├── searchreplacecases_test.go │ │ └── walk.go │ ├── set-annotations │ ├── README.md │ ├── annotations_transformer.go │ ├── annotations_transformer_test.go │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── metadata.yaml │ ├── set-enforcement-action │ ├── README.md │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── main_test.go │ └── metadata.yaml │ ├── set-image │ ├── README.md │ ├── custom │ │ └── custom.go │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── metadata.yaml │ ├── run.go │ ├── third_party │ │ ├── README.md │ │ └── sigs.k8s.io │ │ │ └── kustomize │ │ │ └── api │ │ │ ├── image │ │ │ └── image.go │ │ │ └── types │ │ │ ├── fieldspec.go │ │ │ └── image.go │ └── transformer │ │ └── images_transformer.go │ ├── set-labels │ ├── README.md │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── metadata.yaml │ ├── run.go │ ├── run_js.go │ └── setlabels │ │ └── transformer.go │ ├── set-namespace │ ├── README.md │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── metadata.yaml │ ├── run.go │ ├── run_js.go │ └── transformer │ │ ├── consts.go │ │ └── namespace.go │ ├── starlark │ ├── README.md │ ├── generated │ │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── krmfn │ │ └── krmfn.go │ ├── main.go │ ├── metadata.yaml │ ├── run.go │ ├── run_js.go │ ├── starlark │ │ ├── config.go │ │ ├── config_test.go │ │ └── processor.go │ └── third_party │ │ ├── README.md │ │ └── sigs.k8s.io │ │ └── kustomize │ │ └── kyaml │ │ └── fn │ │ └── runtime │ │ └── starlark │ │ ├── context.go │ │ ├── doc.go │ │ ├── loadlib.go │ │ └── starlark.go │ └── upsert-resource │ ├── README.md │ ├── generated │ └── docs.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── metadata.yaml │ └── upsertresource │ ├── upsert_resource.go │ └── upsert_resource_test.go ├── hack └── Dockerfile ├── scripts ├── docker.sh ├── git-tag-parser.sh ├── go-function-release.sh ├── patch_reader │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── pkg │ │ └── latestpatch │ │ └── latestpatch.go ├── update_function_docs │ ├── function_release.go │ ├── git.go │ ├── go.mod │ ├── go.sum │ └── main.go ├── verify-docs.py └── version-kpt-functions-sdk-deps.sh └── tests ├── Makefile ├── apply-setters └── no-matches-error │ ├── .expected │ ├── config.yaml │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ └── resources.yaml ├── common.sh ├── e2e.sh ├── e2etest ├── e2e_test.go ├── go.mod └── go.sum ├── ensure-name-substring ├── legacy-config │ ├── .expected │ │ ├── config.yaml │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── fn-config.yaml │ └── resources.yaml └── local-config │ ├── .expected │ ├── config.yaml │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── fn-config.yaml │ ├── local-config.yaml │ └── resources.yaml ├── gatekeeper ├── decode-json-as-yaml │ ├── .expected │ │ ├── config.yaml │ │ └── exec.sh │ └── resources │ │ └── resources.json ├── dryrun │ ├── .expected │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── config-map.yaml │ └── policy.yaml ├── inputoutputflags │ ├── .expected │ │ ├── config.yaml │ │ ├── diff.patch │ │ └── exec.sh │ └── resources │ │ └── resources.yaml ├── jsonflag │ ├── .expected │ │ ├── config.yaml │ │ ├── diff.patch │ │ └── exec.sh │ └── resources │ │ └── resources.json ├── v1beta1-template │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── deployment.yaml │ └── policy.yaml └── valid │ ├── .expected │ └── config.yaml │ ├── .krmignore │ ├── Kptfile │ ├── config-map.yaml │ └── policy.yaml ├── list-setters └── no-matches-error │ ├── .expected │ ├── config.yaml │ └── results.yaml │ ├── .krmignore │ └── resources.yaml ├── search-replace ├── file-path-match │ ├── .expected │ │ ├── diff.patch │ │ └── exec.sh │ ├── .krmignore │ ├── Kptfile │ ├── resources.yaml │ ├── setters.yaml │ └── subpkg │ │ ├── Kptfile │ │ ├── resources.yaml │ │ └── setters.yaml └── no-results │ ├── .expected │ ├── config.yaml │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ └── resources.yaml ├── set-annotations ├── additional-annotations │ ├── .expected │ │ ├── diff.patch │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── fn-config.yaml │ ├── local-config.yaml │ └── resources.yaml ├── empty-list │ ├── advanced │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── fn-config.yaml │ │ └── resources.yaml │ └── simple │ │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml ├── legacy-config │ ├── .expected │ │ ├── diff.patch │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── fn-config.yaml │ └── resources.yaml └── local-config │ ├── .expected │ ├── diff.patch │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── fn-config.yaml │ ├── local-config.yaml │ └── resources.yaml ├── set-image ├── no-image-name │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ └── resources.yaml ├── no-newName-or-newTag │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ └── resources.yaml └── set-image-with-same-name │ ├── .expected │ ├── diff.patch │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ └── resources.yaml ├── set-labels ├── configmap-config │ ├── .expected │ │ ├── diff.patch │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── fn-config.yaml │ └── resources.yaml ├── empty-list │ ├── advanced │ │ ├── .expected │ │ │ ├── config.yaml │ │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ ├── fn-config.yaml │ │ └── resources.yaml │ └── simple │ │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ │ ├── .krmignore │ │ ├── Kptfile │ │ └── resources.yaml ├── empty-resource │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── fn-config.yaml │ └── resources.yaml ├── ill-formatted-fn-config │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── fn-config.yaml │ └── resources.yaml ├── setlabels-config │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ ├── fn-config.yaml │ └── resources.yaml ├── wrong-config-data-type │ ├── .expected │ │ ├── config.yaml │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── fn-config.yaml │ └── resources.yaml └── wrong-config-group │ ├── .expected │ ├── config.yaml │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ ├── fn-config.yaml │ └── resources.yaml ├── set-namespace ├── no-fnconfig-resource │ ├── .expected │ │ └── results.yaml │ ├── .krmignore │ ├── Kptfile │ └── resources.yaml ├── replace-all │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ └── resources.yaml ├── replace-local-raw-edit │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ └── resources.yaml ├── replace-match │ ├── .expected │ │ └── diff.patch │ ├── .krmignore │ ├── Kptfile │ └── resources.yaml ├── wysiwyg-add-blueprint-resource │ ├── .expected │ │ └── diff.patch │ ├── Kptfile │ ├── package-context.yaml │ └── resources.yaml └── wysiwyg-authroing-blueprint-from-basens │ ├── .expected │ └── diff.patch │ ├── Kptfile │ ├── package-context.yaml │ └── resources.yaml └── starlark ├── empty-input ├── .expected │ ├── config.yaml │ └── results.yaml ├── .krmignore ├── Kptfile ├── fn-config.yaml └── resources.yaml ├── eval-fn-config ├── .expected │ ├── diff.patch │ └── exec.sh ├── .krmignore ├── app.yaml └── fn-config.yaml ├── load-library ├── .expected │ ├── config.yaml │ └── diff.patch ├── .krmignore ├── Kptfile ├── app.yaml └── fn-config.yaml ├── map-key-inline-comment ├── .expected │ └── diff.patch ├── .krmignore ├── Kptfile ├── app.yaml └── fn-config.yaml ├── non-standard-features ├── .expected │ ├── diff.patch │ └── results.yaml ├── .krmignore ├── Kptfile ├── app.yaml └── fn-config.yaml ├── openapi ├── .expected │ ├── config.yaml │ └── exec.sh ├── .krmignore ├── app.yaml └── fn-config.yaml └── preserve-id-annotations ├── .expected ├── diff.patch └── exec.sh ├── .krmignore ├── app.yaml └── fn-config.yaml /.github/actions/extract-tag-info/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/.github/actions/extract-tag-info/action.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/after-push-to-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/.github/workflows/after-push-to-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/after-tag-with-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/.github/workflows/after-tag-with-version.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-documentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/LICENSE-documentation -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/RELEASING.md -------------------------------------------------------------------------------- /VERSIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/VERSIONING.md -------------------------------------------------------------------------------- /archived/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/Makefile -------------------------------------------------------------------------------- /archived/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/README.md -------------------------------------------------------------------------------- /archived/archived-function-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/archived-function-release.sh -------------------------------------------------------------------------------- /archived/build/docker/go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/build/docker/go/Dockerfile -------------------------------------------------------------------------------- /archived/build/docker/go/defaults.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/build/docker/go/defaults.env -------------------------------------------------------------------------------- /archived/build/docker/ts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/build/docker/ts/Dockerfile -------------------------------------------------------------------------------- /archived/build/docker/ts/defaults.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/build/docker/ts/defaults.env -------------------------------------------------------------------------------- /archived/docker-archived.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/docker-archived.sh -------------------------------------------------------------------------------- /archived/examples/analyze-istio-simple/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | skip: false 3 | -------------------------------------------------------------------------------- /archived/examples/analyze-istio-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /archived/examples/analyze-istio-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/analyze-istio-simple/Kptfile -------------------------------------------------------------------------------- /archived/examples/analyze-istio-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/analyze-istio-simple/README.md -------------------------------------------------------------------------------- /archived/examples/enable-gcp-services-advanced/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /archived/examples/enable-gcp-services-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /archived/examples/enable-gcp-services-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/enable-gcp-services-simple/Kptfile -------------------------------------------------------------------------------- /archived/examples/export-terraform-advanced/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /archived/examples/export-terraform-imperative/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /archived/examples/fix-simple/.expected/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/fix-simple/.expected/config.yaml -------------------------------------------------------------------------------- /archived/examples/fix-simple/.expected/diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/fix-simple/.expected/diff.patch -------------------------------------------------------------------------------- /archived/examples/fix-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /archived/examples/fix-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/fix-simple/Kptfile -------------------------------------------------------------------------------- /archived/examples/fix-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/fix-simple/README.md -------------------------------------------------------------------------------- /archived/examples/fix-simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/fix-simple/resources.yaml -------------------------------------------------------------------------------- /archived/examples/format-imperative/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /archived/examples/format-imperative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/format-imperative/README.md -------------------------------------------------------------------------------- /archived/examples/format-imperative/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/format-imperative/resources.yaml -------------------------------------------------------------------------------- /archived/examples/generate-folders-resourcehierarchy-v1/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 0 2 | skip: true 3 | -------------------------------------------------------------------------------- /archived/examples/generate-folders-resourcehierarchy-v1/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /archived/examples/generate-folders-resourcehierarchy-v2/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 0 2 | skip: false 3 | -------------------------------------------------------------------------------- /archived/examples/generate-folders-resourcehierarchy-v2/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /archived/examples/generate-folders-resourcehierarchy-v3/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 0 2 | skip: false 3 | -------------------------------------------------------------------------------- /archived/examples/generate-folders-resourcehierarchy-v3/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /archived/examples/set-project-id-advanced/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /archived/examples/set-project-id-advanced/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/set-project-id-advanced/Kptfile -------------------------------------------------------------------------------- /archived/examples/set-project-id-advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/set-project-id-advanced/README.md -------------------------------------------------------------------------------- /archived/examples/set-project-id-advanced/subpkg/Kptfile: -------------------------------------------------------------------------------- 1 | apiVersion: kpt.dev/v1 2 | kind: Kptfile 3 | metadata: 4 | name: subpkg 5 | -------------------------------------------------------------------------------- /archived/examples/set-project-id-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | 3 | -------------------------------------------------------------------------------- /archived/examples/set-project-id-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/set-project-id-simple/Kptfile -------------------------------------------------------------------------------- /archived/examples/set-project-id-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/set-project-id-simple/README.md -------------------------------------------------------------------------------- /archived/examples/set-project-id-simple/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/set-project-id-simple/setters.yaml -------------------------------------------------------------------------------- /archived/examples/sops-age/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | # Temporarily skip it to unblock the release. 2 | skip: true 3 | -------------------------------------------------------------------------------- /archived/examples/sops-age/.expected/diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-age/.expected/diff.patch -------------------------------------------------------------------------------- /archived/examples/sops-age/.expected/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-age/.expected/exec.sh -------------------------------------------------------------------------------- /archived/examples/sops-age/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-age/Kptfile -------------------------------------------------------------------------------- /archived/examples/sops-age/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-age/README.md -------------------------------------------------------------------------------- /archived/examples/sops-age/age_keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-age/age_keys.txt -------------------------------------------------------------------------------- /archived/examples/sops-age/apply-setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-age/apply-setters.yaml -------------------------------------------------------------------------------- /archived/examples/sops-age/decrypt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-age/decrypt.yaml -------------------------------------------------------------------------------- /archived/examples/sops-age/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-age/deployment.yaml -------------------------------------------------------------------------------- /archived/examples/sops-age/encrypt-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-age/encrypt-keys.yaml -------------------------------------------------------------------------------- /archived/examples/sops-age/encrypt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-age/encrypt.yaml -------------------------------------------------------------------------------- /archived/examples/sops-pgp-and-age/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | # Temporarily skip it to unblock the release. 2 | skip: true 3 | -------------------------------------------------------------------------------- /archived/examples/sops-pgp-and-age/.expected/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-pgp-and-age/.expected/exec.sh -------------------------------------------------------------------------------- /archived/examples/sops-pgp-and-age/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-pgp-and-age/Kptfile -------------------------------------------------------------------------------- /archived/examples/sops-pgp-and-age/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-pgp-and-age/README.md -------------------------------------------------------------------------------- /archived/examples/sops-pgp-and-age/age_keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-pgp-and-age/age_keys.txt -------------------------------------------------------------------------------- /archived/examples/sops-pgp-and-age/decrypt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-pgp-and-age/decrypt.yaml -------------------------------------------------------------------------------- /archived/examples/sops-pgp-and-age/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-pgp-and-age/deployment.yaml -------------------------------------------------------------------------------- /archived/examples/sops-pgp-and-age/encrypt-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-pgp-and-age/encrypt-keys.yaml -------------------------------------------------------------------------------- /archived/examples/sops-pgp-and-age/encrypt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-pgp-and-age/encrypt.yaml -------------------------------------------------------------------------------- /archived/examples/sops-pgp-and-age/pgp_keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/examples/sops-pgp-and-age/pgp_keys.txt -------------------------------------------------------------------------------- /archived/examples/source-gcloud-config-simple/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | skip: true -------------------------------------------------------------------------------- /archived/examples/source-gcloud-config-simple/.expected/diff.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archived/examples/source-gcloud-config-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /archived/functions/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/Makefile -------------------------------------------------------------------------------- /archived/functions/go/_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/_template/README.md -------------------------------------------------------------------------------- /archived/functions/go/bind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/bind/Makefile -------------------------------------------------------------------------------- /archived/functions/go/bind/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/bind/generated/docs.go -------------------------------------------------------------------------------- /archived/functions/go/bind/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/bind/main.go -------------------------------------------------------------------------------- /archived/functions/go/bind/pkg/meta/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/bind/pkg/meta/doc.go -------------------------------------------------------------------------------- /archived/functions/go/bind/pkg/meta/kinds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/bind/pkg/meta/kinds.go -------------------------------------------------------------------------------- /archived/functions/go/bind/pkg/meta/namespaceref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/bind/pkg/meta/namespaceref.go -------------------------------------------------------------------------------- /archived/functions/go/bind/pkg/meta/ownerref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/bind/pkg/meta/ownerref.go -------------------------------------------------------------------------------- /archived/functions/go/bind/pkg/meta/qualifiedref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/bind/pkg/meta/qualifiedref.go -------------------------------------------------------------------------------- /archived/functions/go/bind/pkg/meta/refs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/bind/pkg/meta/refs.go -------------------------------------------------------------------------------- /archived/functions/go/bind/pkg/meta/refvisitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/bind/pkg/meta/refvisitor.go -------------------------------------------------------------------------------- /archived/functions/go/bind/pkg/rename/rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/bind/pkg/rename/rename.go -------------------------------------------------------------------------------- /archived/functions/go/enable-gcp-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/enable-gcp-services/README.md -------------------------------------------------------------------------------- /archived/functions/go/enable-gcp-services/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/enable-gcp-services/go.mod -------------------------------------------------------------------------------- /archived/functions/go/enable-gcp-services/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/enable-gcp-services/go.sum -------------------------------------------------------------------------------- /archived/functions/go/enable-gcp-services/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/enable-gcp-services/main.go -------------------------------------------------------------------------------- /archived/functions/go/export-terraform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/export-terraform/.gitignore -------------------------------------------------------------------------------- /archived/functions/go/export-terraform/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/export-terraform/Dockerfile -------------------------------------------------------------------------------- /archived/functions/go/export-terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/export-terraform/README.md -------------------------------------------------------------------------------- /archived/functions/go/export-terraform/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/export-terraform/go.mod -------------------------------------------------------------------------------- /archived/functions/go/export-terraform/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/export-terraform/go.sum -------------------------------------------------------------------------------- /archived/functions/go/export-terraform/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/export-terraform/main.go -------------------------------------------------------------------------------- /archived/functions/go/export-terraform/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/export-terraform/metadata.yaml -------------------------------------------------------------------------------- /archived/functions/go/export-terraform/testdata/empty/input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archived/functions/go/fix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/fix/README.md -------------------------------------------------------------------------------- /archived/functions/go/fix/fixpkg/fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/fix/fixpkg/fix.go -------------------------------------------------------------------------------- /archived/functions/go/fix/fixpkg/fix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/fix/fixpkg/fix_test.go -------------------------------------------------------------------------------- /archived/functions/go/fix/fixpkg/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/fix/fixpkg/walk.go -------------------------------------------------------------------------------- /archived/functions/go/fix/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/fix/generated/docs.go -------------------------------------------------------------------------------- /archived/functions/go/fix/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/fix/go.mod -------------------------------------------------------------------------------- /archived/functions/go/fix/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/fix/go.sum -------------------------------------------------------------------------------- /archived/functions/go/fix/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/fix/main.go -------------------------------------------------------------------------------- /archived/functions/go/fix/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/fix/metadata.yaml -------------------------------------------------------------------------------- /archived/functions/go/fix/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/fix/v1/types.go -------------------------------------------------------------------------------- /archived/functions/go/fix/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/fix/v1alpha1/types.go -------------------------------------------------------------------------------- /archived/functions/go/format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/format/README.md -------------------------------------------------------------------------------- /archived/functions/go/format/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/format/generated/docs.go -------------------------------------------------------------------------------- /archived/functions/go/format/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/format/go.mod -------------------------------------------------------------------------------- /archived/functions/go/format/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/format/go.sum -------------------------------------------------------------------------------- /archived/functions/go/format/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/format/main.go -------------------------------------------------------------------------------- /archived/functions/go/format/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/format/metadata.yaml -------------------------------------------------------------------------------- /archived/functions/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/go.mod -------------------------------------------------------------------------------- /archived/functions/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/go.sum -------------------------------------------------------------------------------- /archived/functions/go/set-gcp-resource-ids/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/set-gcp-resource-ids/Makefile -------------------------------------------------------------------------------- /archived/functions/go/set-gcp-resource-ids/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/set-gcp-resource-ids/main.go -------------------------------------------------------------------------------- /archived/functions/go/set-name-prefix/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/set-name-prefix/Dockerfile -------------------------------------------------------------------------------- /archived/functions/go/set-name-prefix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/set-name-prefix/Makefile -------------------------------------------------------------------------------- /archived/functions/go/set-name-prefix/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/set-name-prefix/metadata.yaml -------------------------------------------------------------------------------- /archived/functions/go/set-project-id/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/set-project-id/README.md -------------------------------------------------------------------------------- /archived/functions/go/set-project-id/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/set-project-id/go.mod -------------------------------------------------------------------------------- /archived/functions/go/set-project-id/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/set-project-id/go.sum -------------------------------------------------------------------------------- /archived/functions/go/set-project-id/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/set-project-id/main.go -------------------------------------------------------------------------------- /archived/functions/go/set-project-id/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/set-project-id/metadata.yaml -------------------------------------------------------------------------------- /archived/functions/go/source-gcloud-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/source-gcloud-config/README.md -------------------------------------------------------------------------------- /archived/functions/go/source-gcloud-config/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/source-gcloud-config/go.mod -------------------------------------------------------------------------------- /archived/functions/go/source-gcloud-config/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/source-gcloud-config/go.sum -------------------------------------------------------------------------------- /archived/functions/go/source-gcloud-config/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/go/source-gcloud-config/main.go -------------------------------------------------------------------------------- /archived/functions/ts/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/.prettierrc.json -------------------------------------------------------------------------------- /archived/functions/ts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/Makefile -------------------------------------------------------------------------------- /archived/functions/ts/_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/_template/README.md -------------------------------------------------------------------------------- /archived/functions/ts/analyze-istio/.dockerignore: -------------------------------------------------------------------------------- 1 | **/dist/ 2 | **/node_modules/ 3 | 4 | -------------------------------------------------------------------------------- /archived/functions/ts/analyze-istio/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/analyze-istio/jasmine.json -------------------------------------------------------------------------------- /archived/functions/ts/analyze-istio/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/analyze-istio/metadata.yaml -------------------------------------------------------------------------------- /archived/functions/ts/analyze-istio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/analyze-istio/package.json -------------------------------------------------------------------------------- /archived/functions/ts/analyze-istio/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/analyze-istio/tsconfig.json -------------------------------------------------------------------------------- /archived/functions/ts/analyze-istio/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/analyze-istio/tslint.json -------------------------------------------------------------------------------- /archived/functions/ts/generate-folders/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/generate-folders/.eslintrc.js -------------------------------------------------------------------------------- /archived/functions/ts/generate-folders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/generate-folders/README.md -------------------------------------------------------------------------------- /archived/functions/ts/generate-folders/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/generate-folders/jasmine.json -------------------------------------------------------------------------------- /archived/functions/ts/generate-folders/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/generate-folders/metadata.yaml -------------------------------------------------------------------------------- /archived/functions/ts/generate-folders/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/generate-folders/package.json -------------------------------------------------------------------------------- /archived/functions/ts/generate-folders/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/generate-folders/tsconfig.json -------------------------------------------------------------------------------- /archived/functions/ts/inflate-helm-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/inflate-helm-chart/README.md -------------------------------------------------------------------------------- /archived/functions/ts/sops/.dockerignore: -------------------------------------------------------------------------------- 1 | **/dist/ 2 | **/node_modules/ 3 | 4 | -------------------------------------------------------------------------------- /archived/functions/ts/sops/@types/rw/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/sops/@types/rw/index.d.ts -------------------------------------------------------------------------------- /archived/functions/ts/sops/@types/rw/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/sops/@types/rw/package.json -------------------------------------------------------------------------------- /archived/functions/ts/sops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/sops/README.md -------------------------------------------------------------------------------- /archived/functions/ts/sops/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/sops/jasmine.json -------------------------------------------------------------------------------- /archived/functions/ts/sops/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/sops/metadata.yaml -------------------------------------------------------------------------------- /archived/functions/ts/sops/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/sops/package.json -------------------------------------------------------------------------------- /archived/functions/ts/sops/sops.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/sops/sops.Dockerfile -------------------------------------------------------------------------------- /archived/functions/ts/sops/src/sops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/sops/src/sops.ts -------------------------------------------------------------------------------- /archived/functions/ts/sops/src/sops_run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/sops/src/sops_run.ts -------------------------------------------------------------------------------- /archived/functions/ts/sops/src/sops_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/sops/src/sops_test.ts -------------------------------------------------------------------------------- /archived/functions/ts/sops/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/sops/tsconfig.json -------------------------------------------------------------------------------- /archived/functions/ts/sops/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/archived/functions/ts/sops/tslint.json -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /contrib/examples/annotate-apply-time-mutations-custom-resource/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | 3 | -------------------------------------------------------------------------------- /contrib/examples/annotate-apply-time-mutations-inline-comment/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | 3 | -------------------------------------------------------------------------------- /contrib/examples/delete-annotations-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /contrib/examples/delete-annotations-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/contrib/examples/delete-annotations-simple/Kptfile -------------------------------------------------------------------------------- /contrib/examples/delete-annotations-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/contrib/examples/delete-annotations-simple/README.md -------------------------------------------------------------------------------- /contrib/functions/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/contrib/functions/go/Makefile -------------------------------------------------------------------------------- /contrib/functions/go/delete-annotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/contrib/functions/go/delete-annotations/README.md -------------------------------------------------------------------------------- /contrib/functions/go/delete-annotations/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/contrib/functions/go/delete-annotations/go.mod -------------------------------------------------------------------------------- /contrib/functions/go/delete-annotations/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/contrib/functions/go/delete-annotations/go.sum -------------------------------------------------------------------------------- /contrib/functions/go/delete-annotations/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/contrib/functions/go/delete-annotations/main.go -------------------------------------------------------------------------------- /contrib/functions/go/delete-annotations/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/contrib/functions/go/delete-annotations/main_test.go -------------------------------------------------------------------------------- /documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/Makefile -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/icons/logo.svg -------------------------------------------------------------------------------- /documentation/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/js/search.js -------------------------------------------------------------------------------- /documentation/assets/scss/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_about.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_archive.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_buttons.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_cookie-banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_cookie-banner.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_footer.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_hamburger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_hamburger.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_header.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_main.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_nav.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_projects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_projects.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_reset.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_search.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_sidebar-left.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_sidebar-left.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_sidebar-toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_sidebar-toc.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_styles_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_styles_project.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_taxonomy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_taxonomy.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_typography.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_variables_project.scss -------------------------------------------------------------------------------- /documentation/assets/scss/_video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/assets/scss/_video.scss -------------------------------------------------------------------------------- /documentation/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/config.toml -------------------------------------------------------------------------------- /documentation/content/en/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/_index.md -------------------------------------------------------------------------------- /documentation/content/en/gatekeeper/v0.1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/gatekeeper/v0.1/_index.md -------------------------------------------------------------------------------- /documentation/content/en/gatekeeper/v0.2/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/gatekeeper/v0.2/_index.md -------------------------------------------------------------------------------- /documentation/content/en/kubeconform/v0.1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/kubeconform/v0.1/_index.md -------------------------------------------------------------------------------- /documentation/content/en/kubeval/v0.3/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/kubeval/v0.3/_index.md -------------------------------------------------------------------------------- /documentation/content/en/list-setters/v0.1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/list-setters/v0.1/_index.md -------------------------------------------------------------------------------- /documentation/content/en/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/search.md -------------------------------------------------------------------------------- /documentation/content/en/set-image/v0.1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/set-image/v0.1/_index.md -------------------------------------------------------------------------------- /documentation/content/en/set-labels/v0.1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/set-labels/v0.1/_index.md -------------------------------------------------------------------------------- /documentation/content/en/set-labels/v0.2/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/set-labels/v0.2/_index.md -------------------------------------------------------------------------------- /documentation/content/en/starlark/v0.1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/starlark/v0.1/_index.md -------------------------------------------------------------------------------- /documentation/content/en/starlark/v0.2/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/starlark/v0.2/_index.md -------------------------------------------------------------------------------- /documentation/content/en/starlark/v0.3/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/starlark/v0.3/_index.md -------------------------------------------------------------------------------- /documentation/content/en/starlark/v0.4/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/starlark/v0.4/_index.md -------------------------------------------------------------------------------- /documentation/content/en/starlark/v0.5/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/content/en/starlark/v0.5/_index.md -------------------------------------------------------------------------------- /documentation/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/go.mod -------------------------------------------------------------------------------- /documentation/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/go.sum -------------------------------------------------------------------------------- /documentation/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/404.html -------------------------------------------------------------------------------- /documentation/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/_default/baseof.html -------------------------------------------------------------------------------- /documentation/layouts/_default/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/_default/content.html -------------------------------------------------------------------------------- /documentation/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/_default/list.html -------------------------------------------------------------------------------- /documentation/layouts/_default/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/_default/search.html -------------------------------------------------------------------------------- /documentation/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/_default/single.html -------------------------------------------------------------------------------- /documentation/layouts/blog/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/blog/baseof.html -------------------------------------------------------------------------------- /documentation/layouts/blog/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/blog/content.html -------------------------------------------------------------------------------- /documentation/layouts/blog/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/blog/list.html -------------------------------------------------------------------------------- /documentation/layouts/blog/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/blog/single.html -------------------------------------------------------------------------------- /documentation/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/home.html -------------------------------------------------------------------------------- /documentation/layouts/partials/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/breadcrumb.html -------------------------------------------------------------------------------- /documentation/layouts/partials/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/favicons.html -------------------------------------------------------------------------------- /documentation/layouts/partials/featured-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/featured-image.html -------------------------------------------------------------------------------- /documentation/layouts/partials/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/feedback.html -------------------------------------------------------------------------------- /documentation/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/footer.html -------------------------------------------------------------------------------- /documentation/layouts/partials/gtm-noscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/gtm-noscript.html -------------------------------------------------------------------------------- /documentation/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/head.html -------------------------------------------------------------------------------- /documentation/layouts/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/navbar.html -------------------------------------------------------------------------------- /documentation/layouts/partials/page-meta-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/page-meta-links.html -------------------------------------------------------------------------------- /documentation/layouts/partials/search-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/search-input.html -------------------------------------------------------------------------------- /documentation/layouts/partials/section-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/section-index.html -------------------------------------------------------------------------------- /documentation/layouts/partials/sidebar-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/sidebar-tree.html -------------------------------------------------------------------------------- /documentation/layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/toc.html -------------------------------------------------------------------------------- /documentation/layouts/partials/twitter_cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/partials/twitter_cards.html -------------------------------------------------------------------------------- /documentation/layouts/shortcodes/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/shortcodes/alert.html -------------------------------------------------------------------------------- /documentation/layouts/shortcodes/blocks/feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/shortcodes/blocks/feature.html -------------------------------------------------------------------------------- /documentation/layouts/shortcodes/blocks/lead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/shortcodes/blocks/lead.html -------------------------------------------------------------------------------- /documentation/layouts/shortcodes/blocks/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/shortcodes/blocks/section.html -------------------------------------------------------------------------------- /documentation/layouts/shortcodes/listdocs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/shortcodes/listdocs.html -------------------------------------------------------------------------------- /documentation/layouts/shortcodes/listexamples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/shortcodes/listexamples.html -------------------------------------------------------------------------------- /documentation/layouts/shortcodes/listfunctions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/shortcodes/listfunctions.html -------------------------------------------------------------------------------- /documentation/layouts/shortcodes/listversions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/shortcodes/listversions.html -------------------------------------------------------------------------------- /documentation/layouts/whitepapers/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/layouts/whitepapers/content.html -------------------------------------------------------------------------------- /documentation/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/netlify.toml -------------------------------------------------------------------------------- /documentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/package.json -------------------------------------------------------------------------------- /documentation/static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/custom.css -------------------------------------------------------------------------------- /documentation/static/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /documentation/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /documentation/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /documentation/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/favicons/favicon.ico -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-100.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-100.woff -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-100.woff2 -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-100Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-100Italic.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-200.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-200.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-200.woff -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-200.woff2 -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-200Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-200Italic.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-300.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-300.woff -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-300.woff2 -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-300Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-300Italic.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-400.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-400.woff -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-400.woff2 -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-400Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-400Italic.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-500.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-500.woff -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-500.woff2 -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-500Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-500Italic.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-600.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-600.woff -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-600.woff2 -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-600Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-600Italic.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-700.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-700.woff -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-700.woff2 -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-700Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-700Italic.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-800.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-800.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-800.woff -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-800.woff2 -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-800Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-800Italic.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-900.ttf -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-900.woff -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-900.woff2 -------------------------------------------------------------------------------- /documentation/static/fonts/ClarityCity-900Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/fonts/ClarityCity-900Italic.ttf -------------------------------------------------------------------------------- /documentation/static/images/KptLogoSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/KptLogoSmall.png -------------------------------------------------------------------------------- /documentation/static/images/cncf-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/cncf-color.svg -------------------------------------------------------------------------------- /documentation/static/images/func-target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/func-target.svg -------------------------------------------------------------------------------- /documentation/static/images/func.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/func.svg -------------------------------------------------------------------------------- /documentation/static/images/kpt_horizontal_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/kpt_horizontal_color.svg -------------------------------------------------------------------------------- /documentation/static/images/kpt_stacked_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/kpt_stacked_color.svg -------------------------------------------------------------------------------- /documentation/static/images/lifecycle/flow1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/lifecycle/flow1.svg -------------------------------------------------------------------------------- /documentation/static/images/lifecycle/flow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/lifecycle/flow2.svg -------------------------------------------------------------------------------- /documentation/static/images/lifecycle/flow3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/lifecycle/flow3.svg -------------------------------------------------------------------------------- /documentation/static/images/lifecycle/flow4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/lifecycle/flow4.svg -------------------------------------------------------------------------------- /documentation/static/images/lifecycle/flow5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/lifecycle/flow5.svg -------------------------------------------------------------------------------- /documentation/static/images/pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/pipeline.svg -------------------------------------------------------------------------------- /documentation/static/images/set-command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/set-command.svg -------------------------------------------------------------------------------- /documentation/static/images/set-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/set-model.svg -------------------------------------------------------------------------------- /documentation/static/images/status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/status.svg -------------------------------------------------------------------------------- /documentation/static/images/substitute-command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/substitute-command.svg -------------------------------------------------------------------------------- /documentation/static/images/substitute-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/substitute-model.svg -------------------------------------------------------------------------------- /documentation/static/images/tenant-onboarding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/images/tenant-onboarding.svg -------------------------------------------------------------------------------- /documentation/static/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/js/home.js -------------------------------------------------------------------------------- /documentation/static/social/boxed-blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-blog.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-discussion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-discussion.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-email.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-facebook.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-flickr.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-github.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-gitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-gitter.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-instagram.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-lf-artwork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-lf-artwork.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-lf-devstats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-lf-devstats.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-linkedin.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-meetup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-meetup.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-qq.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-rss.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-slack.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-stack-overflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-stack-overflow.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-twitch.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-twitter.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-website.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-wechat.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-whatsapp.svg -------------------------------------------------------------------------------- /documentation/static/social/boxed-youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/boxed-youtube.svg -------------------------------------------------------------------------------- /documentation/static/social/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/email.svg -------------------------------------------------------------------------------- /documentation/static/social/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/facebook.svg -------------------------------------------------------------------------------- /documentation/static/social/flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/flickr.svg -------------------------------------------------------------------------------- /documentation/static/social/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/github.svg -------------------------------------------------------------------------------- /documentation/static/social/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/instagram.svg -------------------------------------------------------------------------------- /documentation/static/social/linkedin-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/linkedin-black.svg -------------------------------------------------------------------------------- /documentation/static/social/linkedin-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/linkedin-white.svg -------------------------------------------------------------------------------- /documentation/static/social/meetup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/meetup.svg -------------------------------------------------------------------------------- /documentation/static/social/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/slack.svg -------------------------------------------------------------------------------- /documentation/static/social/twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/twitch.svg -------------------------------------------------------------------------------- /documentation/static/social/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/twitter.svg -------------------------------------------------------------------------------- /documentation/static/social/wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/wechat.svg -------------------------------------------------------------------------------- /documentation/static/social/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/documentation/static/social/youtube.svg -------------------------------------------------------------------------------- /examples/_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/_template/README.md -------------------------------------------------------------------------------- /examples/apply-replacements-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/apply-replacements-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/apply-replacements-simple/Kptfile -------------------------------------------------------------------------------- /examples/apply-replacements-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/apply-replacements-simple/README.md -------------------------------------------------------------------------------- /examples/apply-replacements-simple/job.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: batch/v1 2 | kind: Job 3 | metadata: 4 | name: hello 5 | -------------------------------------------------------------------------------- /examples/apply-replacements-simple/replacements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/apply-replacements-simple/replacements.yaml -------------------------------------------------------------------------------- /examples/apply-replacements-simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/apply-replacements-simple/resources.yaml -------------------------------------------------------------------------------- /examples/apply-setters-simple/.expected/diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/apply-setters-simple/.expected/diff.patch -------------------------------------------------------------------------------- /examples/apply-setters-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/apply-setters-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/apply-setters-simple/Kptfile -------------------------------------------------------------------------------- /examples/apply-setters-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/apply-setters-simple/README.md -------------------------------------------------------------------------------- /examples/apply-setters-simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/apply-setters-simple/resources.yaml -------------------------------------------------------------------------------- /examples/apply-setters-simple/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/apply-setters-simple/setters.yaml -------------------------------------------------------------------------------- /examples/create-setters-simple/.expected/diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/create-setters-simple/.expected/diff.patch -------------------------------------------------------------------------------- /examples/create-setters-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/create-setters-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/create-setters-simple/Kptfile -------------------------------------------------------------------------------- /examples/create-setters-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/create-setters-simple/README.md -------------------------------------------------------------------------------- /examples/create-setters-simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/create-setters-simple/resources.yaml -------------------------------------------------------------------------------- /examples/create-setters-simple/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/create-setters-simple/setters.yaml -------------------------------------------------------------------------------- /examples/ensure-name-substring-advanced/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/ensure-name-substring-advanced/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/ensure-name-substring-advanced/Kptfile -------------------------------------------------------------------------------- /examples/ensure-name-substring-advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/ensure-name-substring-advanced/README.md -------------------------------------------------------------------------------- /examples/ensure-name-substring-depends-on/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/ensure-name-substring-depends-on/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/ensure-name-substring-depends-on/Kptfile -------------------------------------------------------------------------------- /examples/ensure-name-substring-depends-on/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/ensure-name-substring-depends-on/README.md -------------------------------------------------------------------------------- /examples/ensure-name-substring-imperative/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/ensure-name-substring-imperative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/ensure-name-substring-imperative/README.md -------------------------------------------------------------------------------- /examples/ensure-name-substring-imperative/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/ensure-name-substring-imperative/app.yaml -------------------------------------------------------------------------------- /examples/ensure-name-substring-prefix/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/ensure-name-substring-prefix/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/ensure-name-substring-prefix/Kptfile -------------------------------------------------------------------------------- /examples/ensure-name-substring-prefix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/ensure-name-substring-prefix/README.md -------------------------------------------------------------------------------- /examples/ensure-name-substring-prefix/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/ensure-name-substring-prefix/resources.yaml -------------------------------------------------------------------------------- /examples/ensure-name-substring-suffix/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/ensure-name-substring-suffix/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/ensure-name-substring-suffix/Kptfile -------------------------------------------------------------------------------- /examples/ensure-name-substring-suffix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/ensure-name-substring-suffix/README.md -------------------------------------------------------------------------------- /examples/gatekeeper-disallow-root-user/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | -------------------------------------------------------------------------------- /examples/gatekeeper-disallow-root-user/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/gatekeeper-disallow-root-user/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/gatekeeper-disallow-root-user/Kptfile -------------------------------------------------------------------------------- /examples/gatekeeper-disallow-root-user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/gatekeeper-disallow-root-user/README.md -------------------------------------------------------------------------------- /examples/gatekeeper-imperative/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/gatekeeper-imperative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/gatekeeper-imperative/README.md -------------------------------------------------------------------------------- /examples/gatekeeper-imperative/config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/gatekeeper-imperative/config-map.yaml -------------------------------------------------------------------------------- /examples/gatekeeper-imperative/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/gatekeeper-imperative/policy.yaml -------------------------------------------------------------------------------- /examples/gatekeeper-invalid-configmap/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | -------------------------------------------------------------------------------- /examples/gatekeeper-invalid-configmap/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/gatekeeper-invalid-configmap/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/gatekeeper-invalid-configmap/Kptfile -------------------------------------------------------------------------------- /examples/gatekeeper-invalid-configmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/gatekeeper-invalid-configmap/README.md -------------------------------------------------------------------------------- /examples/gatekeeper-invalid-configmap/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/gatekeeper-invalid-configmap/policy.yaml -------------------------------------------------------------------------------- /examples/gatekeeper-warning-only/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/gatekeeper-warning-only/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/gatekeeper-warning-only/Kptfile -------------------------------------------------------------------------------- /examples/gatekeeper-warning-only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/gatekeeper-warning-only/README.md -------------------------------------------------------------------------------- /examples/gatekeeper-warning-only/config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/gatekeeper-warning-only/config-map.yaml -------------------------------------------------------------------------------- /examples/gatekeeper-warning-only/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/gatekeeper-warning-only/policy.yaml -------------------------------------------------------------------------------- /examples/generate-kpt-pkg-docs-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/generate-kpt-pkg-docs-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/generate-kpt-pkg-docs-simple/Kptfile -------------------------------------------------------------------------------- /examples/generate-kpt-pkg-docs-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/generate-kpt-pkg-docs-simple/README.md -------------------------------------------------------------------------------- /examples/generate-kpt-pkg-docs-simple/bucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/generate-kpt-pkg-docs-simple/bucket.yaml -------------------------------------------------------------------------------- /examples/kubeconform-imperative/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/kubeconform-imperative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/kubeconform-imperative/README.md -------------------------------------------------------------------------------- /examples/kubeconform-imperative/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/kubeconform-imperative/app.yaml -------------------------------------------------------------------------------- /examples/kubeconform-mount-schema/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | skip: false 3 | -------------------------------------------------------------------------------- /examples/kubeconform-mount-schema/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | jsonschema 3 | -------------------------------------------------------------------------------- /examples/kubeconform-mount-schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/kubeconform-mount-schema/README.md -------------------------------------------------------------------------------- /examples/kubeconform-simple/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | skip: false 3 | -------------------------------------------------------------------------------- /examples/kubeconform-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/kubeconform-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/kubeconform-simple/Kptfile -------------------------------------------------------------------------------- /examples/kubeconform-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/kubeconform-simple/README.md -------------------------------------------------------------------------------- /examples/kubeconform-simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/kubeconform-simple/resources.yaml -------------------------------------------------------------------------------- /examples/list-setters-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/list-setters-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/list-setters-simple/README.md -------------------------------------------------------------------------------- /examples/list-setters-simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/list-setters-simple/resources.yaml -------------------------------------------------------------------------------- /examples/remove-local-config-resources-imperative/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/render-helm-chart-crds/.expected/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/render-helm-chart-crds/.expected/exec.sh -------------------------------------------------------------------------------- /examples/render-helm-chart-crds/.krmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/render-helm-chart-crds/.krmignore -------------------------------------------------------------------------------- /examples/render-helm-chart-crds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/render-helm-chart-crds/README.md -------------------------------------------------------------------------------- /examples/render-helm-chart-kustomize-inline-values/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/render-helm-chart-kustomize-private-git/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/render-helm-chart-kustomize-values-files/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/render-helm-chart-local/.krmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/render-helm-chart-local/.krmignore -------------------------------------------------------------------------------- /examples/render-helm-chart-local/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/render-helm-chart-local/README.md -------------------------------------------------------------------------------- /examples/render-helm-chart-remote/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/render-helm-chart-remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/render-helm-chart-remote/README.md -------------------------------------------------------------------------------- /examples/search-replace-create-setters/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/search-replace-create-setters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/search-replace-create-setters/README.md -------------------------------------------------------------------------------- /examples/search-replace-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/search-replace-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/search-replace-simple/Kptfile -------------------------------------------------------------------------------- /examples/search-replace-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/search-replace-simple/README.md -------------------------------------------------------------------------------- /examples/search-replace-simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/search-replace-simple/resources.yaml -------------------------------------------------------------------------------- /examples/set-annotations-advanced/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-annotations-advanced/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-annotations-advanced/Kptfile -------------------------------------------------------------------------------- /examples/set-annotations-advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-annotations-advanced/README.md -------------------------------------------------------------------------------- /examples/set-annotations-advanced/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-annotations-advanced/fn-config.yaml -------------------------------------------------------------------------------- /examples/set-annotations-advanced/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-annotations-advanced/resources.yaml -------------------------------------------------------------------------------- /examples/set-annotations-imperative/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-annotations-imperative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-annotations-imperative/README.md -------------------------------------------------------------------------------- /examples/set-annotations-imperative/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-annotations-imperative/app.yaml -------------------------------------------------------------------------------- /examples/set-annotations-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-annotations-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-annotations-simple/Kptfile -------------------------------------------------------------------------------- /examples/set-annotations-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-annotations-simple/README.md -------------------------------------------------------------------------------- /examples/set-annotations-simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-annotations-simple/resources.yaml -------------------------------------------------------------------------------- /examples/set-enforcement-action-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-enforcement-action-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-enforcement-action-simple/Kptfile -------------------------------------------------------------------------------- /examples/set-enforcement-action-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-enforcement-action-simple/README.md -------------------------------------------------------------------------------- /examples/set-image-advanced/.expected/diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-advanced/.expected/diff.patch -------------------------------------------------------------------------------- /examples/set-image-advanced/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-image-advanced/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-advanced/Kptfile -------------------------------------------------------------------------------- /examples/set-image-advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-advanced/README.md -------------------------------------------------------------------------------- /examples/set-image-advanced/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-advanced/fn-config.yaml -------------------------------------------------------------------------------- /examples/set-image-advanced/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-advanced/resources.yaml -------------------------------------------------------------------------------- /examples/set-image-digest/.expected/diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-digest/.expected/diff.patch -------------------------------------------------------------------------------- /examples/set-image-digest/.expected/results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-digest/.expected/results.yaml -------------------------------------------------------------------------------- /examples/set-image-digest/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-image-digest/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-digest/Kptfile -------------------------------------------------------------------------------- /examples/set-image-digest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-digest/README.md -------------------------------------------------------------------------------- /examples/set-image-digest/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-digest/resources.yaml -------------------------------------------------------------------------------- /examples/set-image-imperative/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-image-imperative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-imperative/README.md -------------------------------------------------------------------------------- /examples/set-image-imperative/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-imperative/app.yaml -------------------------------------------------------------------------------- /examples/set-image-simple/.expected/diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-simple/.expected/diff.patch -------------------------------------------------------------------------------- /examples/set-image-simple/.expected/results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-simple/.expected/results.yaml -------------------------------------------------------------------------------- /examples/set-image-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-image-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-simple/Kptfile -------------------------------------------------------------------------------- /examples/set-image-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-simple/README.md -------------------------------------------------------------------------------- /examples/set-image-simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-image-simple/resources.yaml -------------------------------------------------------------------------------- /examples/set-labels-full-coverage/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-labels-full-coverage/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-labels-full-coverage/Kptfile -------------------------------------------------------------------------------- /examples/set-labels-full-coverage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-labels-full-coverage/README.md -------------------------------------------------------------------------------- /examples/set-labels-full-coverage/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-labels-full-coverage/fn-config.yaml -------------------------------------------------------------------------------- /examples/set-labels-full-coverage/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-labels-full-coverage/resources.yaml -------------------------------------------------------------------------------- /examples/set-labels-imperative/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-labels-imperative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-labels-imperative/README.md -------------------------------------------------------------------------------- /examples/set-labels-imperative/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-labels-imperative/app.yaml -------------------------------------------------------------------------------- /examples/set-labels-simple/.expected/diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-labels-simple/.expected/diff.patch -------------------------------------------------------------------------------- /examples/set-labels-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-labels-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-labels-simple/Kptfile -------------------------------------------------------------------------------- /examples/set-labels-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-labels-simple/README.md -------------------------------------------------------------------------------- /examples/set-labels-simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-labels-simple/resources.yaml -------------------------------------------------------------------------------- /examples/set-namespace-depends-on/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-namespace-depends-on/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-namespace-depends-on/Kptfile -------------------------------------------------------------------------------- /examples/set-namespace-depends-on/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-namespace-depends-on/README.md -------------------------------------------------------------------------------- /examples/set-namespace-depends-on/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-namespace-depends-on/resources.yaml -------------------------------------------------------------------------------- /examples/set-namespace-kpt-package-context/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-namespace-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/set-namespace-simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-namespace-simple/Kptfile -------------------------------------------------------------------------------- /examples/set-namespace-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-namespace-simple/README.md -------------------------------------------------------------------------------- /examples/set-namespace-simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/set-namespace-simple/resources.yaml -------------------------------------------------------------------------------- /examples/starlark-configmap-as-functionconfig/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/starlark-inject-sidecar/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/starlark-inject-sidecar/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-inject-sidecar/Kptfile -------------------------------------------------------------------------------- /examples/starlark-inject-sidecar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-inject-sidecar/README.md -------------------------------------------------------------------------------- /examples/starlark-inject-sidecar/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-inject-sidecar/deployment.yaml -------------------------------------------------------------------------------- /examples/starlark-inject-sidecar/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-inject-sidecar/fn-config.yaml -------------------------------------------------------------------------------- /examples/starlark-load-library/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | results 3 | -------------------------------------------------------------------------------- /examples/starlark-load-library/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-load-library/Kptfile -------------------------------------------------------------------------------- /examples/starlark-load-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-load-library/README.md -------------------------------------------------------------------------------- /examples/starlark-load-library/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-load-library/app.yaml -------------------------------------------------------------------------------- /examples/starlark-load-library/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-load-library/fn-config.yaml -------------------------------------------------------------------------------- /examples/starlark-poddisruptionbudget/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/starlark-poddisruptionbudget/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-poddisruptionbudget/Kptfile -------------------------------------------------------------------------------- /examples/starlark-poddisruptionbudget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-poddisruptionbudget/README.md -------------------------------------------------------------------------------- /examples/starlark-set-namespace/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/starlark-set-namespace/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-set-namespace/Kptfile -------------------------------------------------------------------------------- /examples/starlark-set-namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-set-namespace/README.md -------------------------------------------------------------------------------- /examples/starlark-set-namespace/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-set-namespace/app.yaml -------------------------------------------------------------------------------- /examples/starlark-set-namespace/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-set-namespace/fn-config.yaml -------------------------------------------------------------------------------- /examples/starlark-validation/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | -------------------------------------------------------------------------------- /examples/starlark-validation/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/starlark-validation/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-validation/Kptfile -------------------------------------------------------------------------------- /examples/starlark-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-validation/README.md -------------------------------------------------------------------------------- /examples/starlark-validation/config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-validation/config-map.yaml -------------------------------------------------------------------------------- /examples/starlark-validation/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/starlark-validation/fn-config.yaml -------------------------------------------------------------------------------- /examples/upsert-resource-at-path/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/upsert-resource-at-path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/upsert-resource-at-path/README.md -------------------------------------------------------------------------------- /examples/upsert-resource-at-path/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/upsert-resource-at-path/fn-config.yaml -------------------------------------------------------------------------------- /examples/upsert-resource-at-path/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/upsert-resource-at-path/resources.yaml -------------------------------------------------------------------------------- /examples/upsert-resource-multiple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/upsert-resource-multiple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/upsert-resource-multiple/README.md -------------------------------------------------------------------------------- /examples/upsert-resource-multiple/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/upsert-resource-multiple/fn-config.yaml -------------------------------------------------------------------------------- /examples/upsert-resource-multiple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/upsert-resource-multiple/resources.yaml -------------------------------------------------------------------------------- /examples/upsert-resource-simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /examples/upsert-resource-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/upsert-resource-simple/README.md -------------------------------------------------------------------------------- /examples/upsert-resource-simple/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/upsert-resource-simple/fn-config.yaml -------------------------------------------------------------------------------- /examples/upsert-resource-simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/examples/upsert-resource-simple/resources.yaml -------------------------------------------------------------------------------- /functions/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/Makefile -------------------------------------------------------------------------------- /functions/go/_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/_template/README.md -------------------------------------------------------------------------------- /functions/go/apply-replacements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-replacements/README.md -------------------------------------------------------------------------------- /functions/go/apply-replacements/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-replacements/generated/docs.go -------------------------------------------------------------------------------- /functions/go/apply-replacements/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-replacements/go.mod -------------------------------------------------------------------------------- /functions/go/apply-replacements/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-replacements/go.sum -------------------------------------------------------------------------------- /functions/go/apply-replacements/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-replacements/main.go -------------------------------------------------------------------------------- /functions/go/apply-replacements/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-replacements/metadata.yaml -------------------------------------------------------------------------------- /functions/go/apply-replacements/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-replacements/run.go -------------------------------------------------------------------------------- /functions/go/apply-replacements/run_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-replacements/run_js.go -------------------------------------------------------------------------------- /functions/go/apply-setters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-setters/Makefile -------------------------------------------------------------------------------- /functions/go/apply-setters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-setters/README.md -------------------------------------------------------------------------------- /functions/go/apply-setters/applysetters/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-setters/applysetters/walk.go -------------------------------------------------------------------------------- /functions/go/apply-setters/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-setters/generated/docs.go -------------------------------------------------------------------------------- /functions/go/apply-setters/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-setters/go.mod -------------------------------------------------------------------------------- /functions/go/apply-setters/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-setters/go.sum -------------------------------------------------------------------------------- /functions/go/apply-setters/krm-fn-metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-setters/krm-fn-metadata.yaml -------------------------------------------------------------------------------- /functions/go/apply-setters/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-setters/main.go -------------------------------------------------------------------------------- /functions/go/apply-setters/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/apply-setters/metadata.yaml -------------------------------------------------------------------------------- /functions/go/create-setters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/create-setters/README.md -------------------------------------------------------------------------------- /functions/go/create-setters/createsetters/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/create-setters/createsetters/walk.go -------------------------------------------------------------------------------- /functions/go/create-setters/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/create-setters/generated/docs.go -------------------------------------------------------------------------------- /functions/go/create-setters/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/create-setters/go.mod -------------------------------------------------------------------------------- /functions/go/create-setters/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/create-setters/go.sum -------------------------------------------------------------------------------- /functions/go/create-setters/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/create-setters/main.go -------------------------------------------------------------------------------- /functions/go/create-setters/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/create-setters/metadata.yaml -------------------------------------------------------------------------------- /functions/go/ensure-name-substring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/ensure-name-substring/README.md -------------------------------------------------------------------------------- /functions/go/ensure-name-substring/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/ensure-name-substring/go.mod -------------------------------------------------------------------------------- /functions/go/ensure-name-substring/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/ensure-name-substring/go.sum -------------------------------------------------------------------------------- /functions/go/ensure-name-substring/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/ensure-name-substring/main.go -------------------------------------------------------------------------------- /functions/go/ensure-name-substring/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/ensure-name-substring/metadata.yaml -------------------------------------------------------------------------------- /functions/go/gatekeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/gatekeeper/README.md -------------------------------------------------------------------------------- /functions/go/gatekeeper/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/gatekeeper/generated/docs.go -------------------------------------------------------------------------------- /functions/go/gatekeeper/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/gatekeeper/go.mod -------------------------------------------------------------------------------- /functions/go/gatekeeper/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/gatekeeper/go.sum -------------------------------------------------------------------------------- /functions/go/gatekeeper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/gatekeeper/main.go -------------------------------------------------------------------------------- /functions/go/gatekeeper/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/gatekeeper/metadata.yaml -------------------------------------------------------------------------------- /functions/go/gatekeeper/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/gatekeeper/validate.go -------------------------------------------------------------------------------- /functions/go/gatekeeper/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/gatekeeper/validate_test.go -------------------------------------------------------------------------------- /functions/go/generate-kpt-pkg-docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/generate-kpt-pkg-docs/Dockerfile -------------------------------------------------------------------------------- /functions/go/generate-kpt-pkg-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/generate-kpt-pkg-docs/README.md -------------------------------------------------------------------------------- /functions/go/generate-kpt-pkg-docs/docs/insert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/generate-kpt-pkg-docs/docs/insert.go -------------------------------------------------------------------------------- /functions/go/generate-kpt-pkg-docs/docs/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/generate-kpt-pkg-docs/docs/pkg.go -------------------------------------------------------------------------------- /functions/go/generate-kpt-pkg-docs/docs/readme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/generate-kpt-pkg-docs/docs/readme.go -------------------------------------------------------------------------------- /functions/go/generate-kpt-pkg-docs/docs/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/generate-kpt-pkg-docs/docs/tables.go -------------------------------------------------------------------------------- /functions/go/generate-kpt-pkg-docs/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/generate-kpt-pkg-docs/go.mod -------------------------------------------------------------------------------- /functions/go/generate-kpt-pkg-docs/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/generate-kpt-pkg-docs/go.sum -------------------------------------------------------------------------------- /functions/go/generate-kpt-pkg-docs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/generate-kpt-pkg-docs/main.go -------------------------------------------------------------------------------- /functions/go/generate-kpt-pkg-docs/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/generate-kpt-pkg-docs/metadata.yaml -------------------------------------------------------------------------------- /functions/go/kubeconform/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/kubeconform/Dockerfile -------------------------------------------------------------------------------- /functions/go/kubeconform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/kubeconform/README.md -------------------------------------------------------------------------------- /functions/go/kubeconform/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/kubeconform/generated/docs.go -------------------------------------------------------------------------------- /functions/go/kubeconform/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/kubeconform/go.mod -------------------------------------------------------------------------------- /functions/go/kubeconform/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/kubeconform/go.sum -------------------------------------------------------------------------------- /functions/go/kubeconform/kubeconform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/kubeconform/kubeconform.go -------------------------------------------------------------------------------- /functions/go/kubeconform/kubeconform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/kubeconform/kubeconform_test.go -------------------------------------------------------------------------------- /functions/go/kubeconform/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/kubeconform/main.go -------------------------------------------------------------------------------- /functions/go/kubeconform/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/kubeconform/metadata.yaml -------------------------------------------------------------------------------- /functions/go/list-setters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/list-setters/README.md -------------------------------------------------------------------------------- /functions/go/list-setters/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/list-setters/generated/docs.go -------------------------------------------------------------------------------- /functions/go/list-setters/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/list-setters/go.mod -------------------------------------------------------------------------------- /functions/go/list-setters/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/list-setters/go.sum -------------------------------------------------------------------------------- /functions/go/list-setters/listsetters/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/list-setters/listsetters/walk.go -------------------------------------------------------------------------------- /functions/go/list-setters/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/list-setters/main.go -------------------------------------------------------------------------------- /functions/go/list-setters/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/list-setters/metadata.yaml -------------------------------------------------------------------------------- /functions/go/remove-local-config-resources/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/remove-local-config-resources/go.mod -------------------------------------------------------------------------------- /functions/go/remove-local-config-resources/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/remove-local-config-resources/go.sum -------------------------------------------------------------------------------- /functions/go/render-helm-chart/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/render-helm-chart/Dockerfile -------------------------------------------------------------------------------- /functions/go/render-helm-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/render-helm-chart/README.md -------------------------------------------------------------------------------- /functions/go/render-helm-chart/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/render-helm-chart/generated/docs.go -------------------------------------------------------------------------------- /functions/go/render-helm-chart/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/render-helm-chart/go.mod -------------------------------------------------------------------------------- /functions/go/render-helm-chart/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/render-helm-chart/go.sum -------------------------------------------------------------------------------- /functions/go/render-helm-chart/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/render-helm-chart/main.go -------------------------------------------------------------------------------- /functions/go/render-helm-chart/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/render-helm-chart/metadata.yaml -------------------------------------------------------------------------------- /functions/go/search-replace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/search-replace/README.md -------------------------------------------------------------------------------- /functions/go/search-replace/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/search-replace/generated/docs.go -------------------------------------------------------------------------------- /functions/go/search-replace/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/search-replace/go.mod -------------------------------------------------------------------------------- /functions/go/search-replace/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/search-replace/go.sum -------------------------------------------------------------------------------- /functions/go/search-replace/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/search-replace/main.go -------------------------------------------------------------------------------- /functions/go/search-replace/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/search-replace/metadata.yaml -------------------------------------------------------------------------------- /functions/go/search-replace/searchreplace/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/search-replace/searchreplace/walk.go -------------------------------------------------------------------------------- /functions/go/set-annotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-annotations/README.md -------------------------------------------------------------------------------- /functions/go/set-annotations/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-annotations/generated/docs.go -------------------------------------------------------------------------------- /functions/go/set-annotations/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-annotations/go.mod -------------------------------------------------------------------------------- /functions/go/set-annotations/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-annotations/go.sum -------------------------------------------------------------------------------- /functions/go/set-annotations/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-annotations/main.go -------------------------------------------------------------------------------- /functions/go/set-annotations/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-annotations/metadata.yaml -------------------------------------------------------------------------------- /functions/go/set-enforcement-action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-enforcement-action/README.md -------------------------------------------------------------------------------- /functions/go/set-enforcement-action/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-enforcement-action/go.mod -------------------------------------------------------------------------------- /functions/go/set-enforcement-action/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-enforcement-action/go.sum -------------------------------------------------------------------------------- /functions/go/set-enforcement-action/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-enforcement-action/main.go -------------------------------------------------------------------------------- /functions/go/set-enforcement-action/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-enforcement-action/main_test.go -------------------------------------------------------------------------------- /functions/go/set-enforcement-action/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-enforcement-action/metadata.yaml -------------------------------------------------------------------------------- /functions/go/set-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-image/README.md -------------------------------------------------------------------------------- /functions/go/set-image/custom/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-image/custom/custom.go -------------------------------------------------------------------------------- /functions/go/set-image/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-image/generated/docs.go -------------------------------------------------------------------------------- /functions/go/set-image/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-image/go.mod -------------------------------------------------------------------------------- /functions/go/set-image/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-image/go.sum -------------------------------------------------------------------------------- /functions/go/set-image/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-image/main.go -------------------------------------------------------------------------------- /functions/go/set-image/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-image/metadata.yaml -------------------------------------------------------------------------------- /functions/go/set-image/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-image/run.go -------------------------------------------------------------------------------- /functions/go/set-image/third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-image/third_party/README.md -------------------------------------------------------------------------------- /functions/go/set-labels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-labels/README.md -------------------------------------------------------------------------------- /functions/go/set-labels/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-labels/generated/docs.go -------------------------------------------------------------------------------- /functions/go/set-labels/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-labels/go.mod -------------------------------------------------------------------------------- /functions/go/set-labels/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-labels/go.sum -------------------------------------------------------------------------------- /functions/go/set-labels/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-labels/main.go -------------------------------------------------------------------------------- /functions/go/set-labels/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-labels/metadata.yaml -------------------------------------------------------------------------------- /functions/go/set-labels/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-labels/run.go -------------------------------------------------------------------------------- /functions/go/set-labels/run_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-labels/run_js.go -------------------------------------------------------------------------------- /functions/go/set-labels/setlabels/transformer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-labels/setlabels/transformer.go -------------------------------------------------------------------------------- /functions/go/set-namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-namespace/README.md -------------------------------------------------------------------------------- /functions/go/set-namespace/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-namespace/generated/docs.go -------------------------------------------------------------------------------- /functions/go/set-namespace/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-namespace/go.mod -------------------------------------------------------------------------------- /functions/go/set-namespace/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-namespace/go.sum -------------------------------------------------------------------------------- /functions/go/set-namespace/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-namespace/main.go -------------------------------------------------------------------------------- /functions/go/set-namespace/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-namespace/metadata.yaml -------------------------------------------------------------------------------- /functions/go/set-namespace/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-namespace/run.go -------------------------------------------------------------------------------- /functions/go/set-namespace/run_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-namespace/run_js.go -------------------------------------------------------------------------------- /functions/go/set-namespace/transformer/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/set-namespace/transformer/consts.go -------------------------------------------------------------------------------- /functions/go/starlark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/README.md -------------------------------------------------------------------------------- /functions/go/starlark/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/generated/docs.go -------------------------------------------------------------------------------- /functions/go/starlark/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/go.mod -------------------------------------------------------------------------------- /functions/go/starlark/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/go.sum -------------------------------------------------------------------------------- /functions/go/starlark/krmfn/krmfn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/krmfn/krmfn.go -------------------------------------------------------------------------------- /functions/go/starlark/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/main.go -------------------------------------------------------------------------------- /functions/go/starlark/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/metadata.yaml -------------------------------------------------------------------------------- /functions/go/starlark/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/run.go -------------------------------------------------------------------------------- /functions/go/starlark/run_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/run_js.go -------------------------------------------------------------------------------- /functions/go/starlark/starlark/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/starlark/config.go -------------------------------------------------------------------------------- /functions/go/starlark/starlark/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/starlark/config_test.go -------------------------------------------------------------------------------- /functions/go/starlark/starlark/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/starlark/processor.go -------------------------------------------------------------------------------- /functions/go/starlark/third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/starlark/third_party/README.md -------------------------------------------------------------------------------- /functions/go/upsert-resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/upsert-resource/README.md -------------------------------------------------------------------------------- /functions/go/upsert-resource/generated/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/upsert-resource/generated/docs.go -------------------------------------------------------------------------------- /functions/go/upsert-resource/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/upsert-resource/go.mod -------------------------------------------------------------------------------- /functions/go/upsert-resource/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/upsert-resource/go.sum -------------------------------------------------------------------------------- /functions/go/upsert-resource/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/upsert-resource/main.go -------------------------------------------------------------------------------- /functions/go/upsert-resource/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/functions/go/upsert-resource/metadata.yaml -------------------------------------------------------------------------------- /hack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/hack/Dockerfile -------------------------------------------------------------------------------- /scripts/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/docker.sh -------------------------------------------------------------------------------- /scripts/git-tag-parser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/git-tag-parser.sh -------------------------------------------------------------------------------- /scripts/go-function-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/go-function-release.sh -------------------------------------------------------------------------------- /scripts/patch_reader/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/patch_reader/go.mod -------------------------------------------------------------------------------- /scripts/patch_reader/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/patch_reader/go.sum -------------------------------------------------------------------------------- /scripts/patch_reader/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/patch_reader/main.go -------------------------------------------------------------------------------- /scripts/update_function_docs/function_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/update_function_docs/function_release.go -------------------------------------------------------------------------------- /scripts/update_function_docs/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/update_function_docs/git.go -------------------------------------------------------------------------------- /scripts/update_function_docs/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/update_function_docs/go.mod -------------------------------------------------------------------------------- /scripts/update_function_docs/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/update_function_docs/go.sum -------------------------------------------------------------------------------- /scripts/update_function_docs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/update_function_docs/main.go -------------------------------------------------------------------------------- /scripts/verify-docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/verify-docs.py -------------------------------------------------------------------------------- /scripts/version-kpt-functions-sdk-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/scripts/version-kpt-functions-sdk-deps.sh -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/apply-setters/no-matches-error/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | runCount: 2 2 | exitCode: 0 3 | -------------------------------------------------------------------------------- /tests/apply-setters/no-matches-error/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/apply-setters/no-matches-error/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/apply-setters/no-matches-error/Kptfile -------------------------------------------------------------------------------- /tests/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/common.sh -------------------------------------------------------------------------------- /tests/e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/e2e.sh -------------------------------------------------------------------------------- /tests/e2etest/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/e2etest/e2e_test.go -------------------------------------------------------------------------------- /tests/e2etest/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/e2etest/go.mod -------------------------------------------------------------------------------- /tests/e2etest/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/e2etest/go.sum -------------------------------------------------------------------------------- /tests/ensure-name-substring/legacy-config/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/ensure-name-substring/legacy-config/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/ensure-name-substring/legacy-config/Kptfile -------------------------------------------------------------------------------- /tests/ensure-name-substring/local-config/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/ensure-name-substring/local-config/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/ensure-name-substring/local-config/Kptfile -------------------------------------------------------------------------------- /tests/gatekeeper/decode-json-as-yaml/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | stdErr: tried to parse JSON as YAML. Use --json flag 3 | -------------------------------------------------------------------------------- /tests/gatekeeper/dryrun/.expected/results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/gatekeeper/dryrun/.expected/results.yaml -------------------------------------------------------------------------------- /tests/gatekeeper/dryrun/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/gatekeeper/dryrun/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/gatekeeper/dryrun/Kptfile -------------------------------------------------------------------------------- /tests/gatekeeper/dryrun/config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/gatekeeper/dryrun/config-map.yaml -------------------------------------------------------------------------------- /tests/gatekeeper/dryrun/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/gatekeeper/dryrun/policy.yaml -------------------------------------------------------------------------------- /tests/gatekeeper/inputoutputflags/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | -------------------------------------------------------------------------------- /tests/gatekeeper/jsonflag/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | -------------------------------------------------------------------------------- /tests/gatekeeper/jsonflag/.expected/diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/gatekeeper/jsonflag/.expected/diff.patch -------------------------------------------------------------------------------- /tests/gatekeeper/jsonflag/.expected/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/gatekeeper/jsonflag/.expected/exec.sh -------------------------------------------------------------------------------- /tests/gatekeeper/v1beta1-template/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | -------------------------------------------------------------------------------- /tests/gatekeeper/v1beta1-template/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/gatekeeper/v1beta1-template/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/gatekeeper/v1beta1-template/Kptfile -------------------------------------------------------------------------------- /tests/gatekeeper/v1beta1-template/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/gatekeeper/v1beta1-template/deployment.yaml -------------------------------------------------------------------------------- /tests/gatekeeper/v1beta1-template/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/gatekeeper/v1beta1-template/policy.yaml -------------------------------------------------------------------------------- /tests/gatekeeper/valid/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gatekeeper/valid/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/gatekeeper/valid/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/gatekeeper/valid/Kptfile -------------------------------------------------------------------------------- /tests/gatekeeper/valid/config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/gatekeeper/valid/config-map.yaml -------------------------------------------------------------------------------- /tests/gatekeeper/valid/policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/gatekeeper/valid/policy.yaml -------------------------------------------------------------------------------- /tests/list-setters/no-matches-error/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/search-replace/file-path-match/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/search-replace/file-path-match/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/search-replace/file-path-match/Kptfile -------------------------------------------------------------------------------- /tests/search-replace/file-path-match/setters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/search-replace/file-path-match/setters.yaml -------------------------------------------------------------------------------- /tests/search-replace/no-results/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/search-replace/no-results/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/search-replace/no-results/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/search-replace/no-results/Kptfile -------------------------------------------------------------------------------- /tests/search-replace/no-results/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/search-replace/no-results/resources.yaml -------------------------------------------------------------------------------- /tests/set-annotations/additional-annotations/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-annotations/empty-list/advanced/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | -------------------------------------------------------------------------------- /tests/set-annotations/empty-list/advanced/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-annotations/empty-list/advanced/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-annotations/empty-list/advanced/Kptfile -------------------------------------------------------------------------------- /tests/set-annotations/empty-list/simple/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | -------------------------------------------------------------------------------- /tests/set-annotations/empty-list/simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-annotations/empty-list/simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-annotations/empty-list/simple/Kptfile -------------------------------------------------------------------------------- /tests/set-annotations/legacy-config/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-annotations/legacy-config/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-annotations/legacy-config/Kptfile -------------------------------------------------------------------------------- /tests/set-annotations/local-config/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-annotations/local-config/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-annotations/local-config/Kptfile -------------------------------------------------------------------------------- /tests/set-annotations/local-config/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-annotations/local-config/fn-config.yaml -------------------------------------------------------------------------------- /tests/set-annotations/local-config/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-annotations/local-config/resources.yaml -------------------------------------------------------------------------------- /tests/set-image/no-image-name/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-image/no-image-name/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-image/no-image-name/Kptfile -------------------------------------------------------------------------------- /tests/set-image/no-image-name/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-image/no-image-name/resources.yaml -------------------------------------------------------------------------------- /tests/set-image/no-newName-or-newTag/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-image/no-newName-or-newTag/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-image/no-newName-or-newTag/Kptfile -------------------------------------------------------------------------------- /tests/set-image/set-image-with-same-name/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-image/set-image-with-same-name/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-image/set-image-with-same-name/Kptfile -------------------------------------------------------------------------------- /tests/set-labels/configmap-config/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-labels/configmap-config/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/configmap-config/Kptfile -------------------------------------------------------------------------------- /tests/set-labels/configmap-config/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/configmap-config/fn-config.yaml -------------------------------------------------------------------------------- /tests/set-labels/configmap-config/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/configmap-config/resources.yaml -------------------------------------------------------------------------------- /tests/set-labels/empty-list/advanced/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 0 2 | -------------------------------------------------------------------------------- /tests/set-labels/empty-list/advanced/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-labels/empty-list/advanced/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/empty-list/advanced/Kptfile -------------------------------------------------------------------------------- /tests/set-labels/empty-list/simple/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | -------------------------------------------------------------------------------- /tests/set-labels/empty-list/simple/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-labels/empty-list/simple/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/empty-list/simple/Kptfile -------------------------------------------------------------------------------- /tests/set-labels/empty-list/simple/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/empty-list/simple/resources.yaml -------------------------------------------------------------------------------- /tests/set-labels/empty-resource/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 0 -------------------------------------------------------------------------------- /tests/set-labels/empty-resource/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-labels/empty-resource/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/empty-resource/Kptfile -------------------------------------------------------------------------------- /tests/set-labels/empty-resource/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/empty-resource/fn-config.yaml -------------------------------------------------------------------------------- /tests/set-labels/empty-resource/resources.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/set-labels/ill-formatted-fn-config/.krmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/set-labels/ill-formatted-fn-config/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/ill-formatted-fn-config/Kptfile -------------------------------------------------------------------------------- /tests/set-labels/setlabels-config/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-labels/setlabels-config/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/setlabels-config/Kptfile -------------------------------------------------------------------------------- /tests/set-labels/setlabels-config/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/setlabels-config/fn-config.yaml -------------------------------------------------------------------------------- /tests/set-labels/setlabels-config/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/setlabels-config/resources.yaml -------------------------------------------------------------------------------- /tests/set-labels/wrong-config-data-type/.krmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/set-labels/wrong-config-data-type/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/wrong-config-data-type/Kptfile -------------------------------------------------------------------------------- /tests/set-labels/wrong-config-group/.krmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/set-labels/wrong-config-group/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-labels/wrong-config-group/Kptfile -------------------------------------------------------------------------------- /tests/set-namespace/no-fnconfig-resource/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-namespace/no-fnconfig-resource/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-namespace/no-fnconfig-resource/Kptfile -------------------------------------------------------------------------------- /tests/set-namespace/replace-all/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-namespace/replace-all/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-namespace/replace-all/Kptfile -------------------------------------------------------------------------------- /tests/set-namespace/replace-all/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-namespace/replace-all/resources.yaml -------------------------------------------------------------------------------- /tests/set-namespace/replace-local-raw-edit/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-namespace/replace-match/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/set-namespace/replace-match/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-namespace/replace-match/Kptfile -------------------------------------------------------------------------------- /tests/set-namespace/replace-match/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/set-namespace/replace-match/resources.yaml -------------------------------------------------------------------------------- /tests/starlark/empty-input/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 1 2 | -------------------------------------------------------------------------------- /tests/starlark/empty-input/.expected/results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/empty-input/.expected/results.yaml -------------------------------------------------------------------------------- /tests/starlark/empty-input/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/starlark/empty-input/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/empty-input/Kptfile -------------------------------------------------------------------------------- /tests/starlark/empty-input/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/empty-input/fn-config.yaml -------------------------------------------------------------------------------- /tests/starlark/empty-input/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/empty-input/resources.yaml -------------------------------------------------------------------------------- /tests/starlark/eval-fn-config/.expected/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/eval-fn-config/.expected/exec.sh -------------------------------------------------------------------------------- /tests/starlark/eval-fn-config/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/starlark/eval-fn-config/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/eval-fn-config/app.yaml -------------------------------------------------------------------------------- /tests/starlark/eval-fn-config/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/eval-fn-config/fn-config.yaml -------------------------------------------------------------------------------- /tests/starlark/load-library/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | exitCode: 0 2 | -------------------------------------------------------------------------------- /tests/starlark/load-library/.expected/diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/load-library/.expected/diff.patch -------------------------------------------------------------------------------- /tests/starlark/load-library/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | results 3 | -------------------------------------------------------------------------------- /tests/starlark/load-library/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/load-library/Kptfile -------------------------------------------------------------------------------- /tests/starlark/load-library/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/load-library/app.yaml -------------------------------------------------------------------------------- /tests/starlark/load-library/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/load-library/fn-config.yaml -------------------------------------------------------------------------------- /tests/starlark/map-key-inline-comment/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/starlark/map-key-inline-comment/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/map-key-inline-comment/Kptfile -------------------------------------------------------------------------------- /tests/starlark/map-key-inline-comment/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/map-key-inline-comment/app.yaml -------------------------------------------------------------------------------- /tests/starlark/non-standard-features/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/starlark/non-standard-features/Kptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/non-standard-features/Kptfile -------------------------------------------------------------------------------- /tests/starlark/non-standard-features/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/non-standard-features/app.yaml -------------------------------------------------------------------------------- /tests/starlark/openapi/.expected/config.yaml: -------------------------------------------------------------------------------- 1 | stdErr: Deployment 2 | -------------------------------------------------------------------------------- /tests/starlark/openapi/.expected/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/openapi/.expected/exec.sh -------------------------------------------------------------------------------- /tests/starlark/openapi/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/starlark/openapi/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/openapi/app.yaml -------------------------------------------------------------------------------- /tests/starlark/openapi/fn-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/openapi/fn-config.yaml -------------------------------------------------------------------------------- /tests/starlark/preserve-id-annotations/.krmignore: -------------------------------------------------------------------------------- 1 | .expected 2 | -------------------------------------------------------------------------------- /tests/starlark/preserve-id-annotations/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kptdev/krm-functions-catalog/HEAD/tests/starlark/preserve-id-annotations/app.yaml --------------------------------------------------------------------------------