{"id":31646193,"url":"https://github.com/codefresh-io/google-marketplace-integration","last_synced_at":"2025-10-24T09:37:33.817Z","repository":{"id":37898131,"uuid":"142064149","full_name":"codefresh-io/google-marketplace-integration","owner":"codefresh-io","description":"Google Cloud Marketplace app","archived":false,"fork":false,"pushed_at":"2022-06-14T18:26:12.000Z","size":68,"stargazers_count":2,"open_issues_count":1,"forks_count":5,"subscribers_count":14,"default_branch":"master","last_synced_at":"2025-10-07T05:36:07.903Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://console.cloud.google.com/marketplace/details/codefresh-gke/codefresh-saas","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codefresh-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-07-23T20:11:12.000Z","updated_at":"2023-03-22T18:20:52.000Z","dependencies_parsed_at":"2022-08-20T03:00:21.361Z","dependency_job_id":null,"html_url":"https://github.com/codefresh-io/google-marketplace-integration","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codefresh-io/google-marketplace-integration","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codefresh-io%2Fgoogle-marketplace-integration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codefresh-io%2Fgoogle-marketplace-integration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codefresh-io%2Fgoogle-marketplace-integration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codefresh-io%2Fgoogle-marketplace-integration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codefresh-io","download_url":"https://codeload.github.com/codefresh-io/google-marketplace-integration/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codefresh-io%2Fgoogle-marketplace-integration/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280776495,"owners_count":26388949,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-24T02:00:06.418Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-07T05:20:47.253Z","updated_at":"2025-10-24T09:37:33.789Z","avatar_url":"https://github.com/codefresh-io.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overview\n\nThis repository contains an application (\"codefresh\") that meets the\nrequirements for integration with Google Cloud Marketplace. For a complete\ndescription of those requirements, see the technical onboarding guide.\n*TODO: add link*\n\nThe related [marketplace-k8s-app-tools](https://github.com/GoogleCloudPlatform/marketplace-k8s-app-tools)\nrepository contains utilities for testing the integration of an app with\nMarketplace, including a test harness for simulating UI-based deployment.\nThe repository is submoduled under `/vendor/marketplace-tools`.\n\n# Getting started\n\n## Updating git submodules\n\nYou can run the following commands to make sure submodules\nare populated with proper code.\n\n```shell\nmake submodule/init-force\n```\n\n## Setting up your cluster and environment\n\nSee [Getting Started](https://github.com/GoogleCloudPlatform/marketplace-k8s-app-tools/blob/master/README.md#getting-started)\n\n## Installing Codefresh\n\nRun the following commands from within `codefresh` folder.\n\nExport the following required environment variables:\n\n```shell\nexport CF_API_KEY=\"\u003ccodefresh-api-key\u003e\"\nexport KUBE_ENDPOINT=\"https://\u003cpublic-ip\u003e\"\n```\n\nDo a one time setup for application CRD:\n\n```shell\nmake crd/install\n```\n\nBuild and install Codefresh onto your cluster:\n\n```shell\n\nmake app/install\n```\n\nThis will build the containers and install the application. You can\nwatch the kubernetes resources being created directly from your CLI\nby running:\n\n```shell\nmake app/watch\n```\n\nTo delete the installation, run:\n\n```shell\nmake app/uninstall\n```\n\n## Overriding context values (Optional)\n\nBy default `make` derives docker registry and k8s namespace\nfrom your local configurations of `gcloud` and `kubectl`. \n\nYou can see these values using\n\n```shell\nkubectl config view\n```\n\nIf you want to use values that differ from the local context of `gcloud` and `kubectl`,\nyou can override them by exporting the appropriate environment variables:\n\n```shell\nexport REGISTRY=gcr.io/your-registry\nexport NAMESPACE=your-namespace\nexport APP_INSTANCE_NAME=your-installation-name\nexport APP_TAG=your-tag\n```\n\n# Marketplace Integration Requirements\n\nBriefly, apps must support two modes of installation:\n- **CLI**: via a Kubernetes client tool like kubectl or helm\n- **Marketplace UI**: via the deployment container (\"deployer\") mechanism.\n\nA few additional Marketplace requirements are described below.\n\n## Application resource and controller\n\nApps must supply an Application resource conforming to the\n[Kubernetes community proposal](https://github.com/kubernetes/community/pull/1629).\nThe proposal describes the Application resource, as well as a corresponding\ncontroller that would be responsible for application-generic functionality such\nas assigning owner references to application components.\n\n## Deployer\n\nApps must supply a deployment container image (\"deployer\") which is used in\nUI-based deployment. This image should extend from one of the base images\nprovided in the marketplace-k8s-app-tools repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodefresh-io%2Fgoogle-marketplace-integration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodefresh-io%2Fgoogle-marketplace-integration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodefresh-io%2Fgoogle-marketplace-integration/lists"}