{"id":15134911,"url":"https://github.com/jetbrains/teamcity-kubernetes-plugin","last_synced_at":"2025-04-07T14:13:42.423Z","repository":{"id":50109261,"uuid":"92611668","full_name":"JetBrains/teamcity-kubernetes-plugin","owner":"JetBrains","description":"Run TeamCity cloud agents on Kubernetes cluster","archived":false,"fork":false,"pushed_at":"2025-01-29T12:55:47.000Z","size":21136,"stargazers_count":57,"open_issues_count":18,"forks_count":16,"subscribers_count":14,"default_branch":"master","last_synced_at":"2025-04-07T14:13:30.869Z","etag":null,"topics":["continuous-integration","docker","kubernetes","teamcity"],"latest_commit_sha":null,"homepage":"https://plugins.jetbrains.com/plugin/9818-kubernetes-support","language":"Java","has_issues":false,"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/JetBrains.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-27T16:49:21.000Z","updated_at":"2025-02-28T14:02:06.000Z","dependencies_parsed_at":"2024-01-11T21:24:21.553Z","dependency_job_id":"cad2b9dc-900d-4bc3-8d12-ca392e777b68","html_url":"https://github.com/JetBrains/teamcity-kubernetes-plugin","commit_stats":{"total_commits":473,"total_committers":21,"mean_commits":"22.523809523809526","dds":0.4841437632135307,"last_synced_commit":"d61b48d3a81a0c3db7f6796b2d481c2e39aa0814"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JetBrains%2Fteamcity-kubernetes-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JetBrains%2Fteamcity-kubernetes-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JetBrains%2Fteamcity-kubernetes-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JetBrains%2Fteamcity-kubernetes-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JetBrains","download_url":"https://codeload.github.com/JetBrains/teamcity-kubernetes-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247666015,"owners_count":20975788,"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","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":["continuous-integration","docker","kubernetes","teamcity"],"created_at":"2024-09-26T05:40:34.487Z","updated_at":"2025-04-07T14:13:42.401Z","avatar_url":"https://github.com/JetBrains.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TeamCity Kubernetes Support Plugin\n[![official JetBrains project](http://jb.gg/badges/official.svg)](https://plugins.jetbrains.com/plugin/9818-kubernetes-cloud-support)\n[![plugin status](https://teamcity.jetbrains.com/app/rest/builds/buildType:(id:TeamCityPluginsByJetBrains_TeamCityKubernetesPlugin_Build)/statusIcon.svg)](https://teamcity.jetbrains.com/viewType.html?buildTypeId=TeamCityPluginsByJetBrains_TeamCityKubernetesPlugin_Build20181x\u0026guest=1)\n\nRun [TeamCity cloud agents](https://www.jetbrains.com/help/teamcity/?TeamCity+Integration+with+Cloud+Solutions) in a [Kubernetes](https://kubernetes.io/) cluster. \n\nSupport [Helm](https://docs.helm.sh/) build steps.\n\n## Compatibility\n\nThe plugin is compatible with TeamCity 2017.1.x and later.\n\n## Installation\n\nYou can [download the plugin](https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:TeamCityPluginsByJetBrains_TeamCityKubernetesPlugin_Build20172x,tags:release/artifacts/content/teamcity-kubernetes-plugin.zip) and install it as an [additional TeamCity plugin](https://www.jetbrains.com/help/teamcity/?Installing+Additional+Plugins).\n\n## Configuration\n\n### Cloud agents\n\nConfigure Kubernetes [Cloud Profile](https://www.jetbrains.com/help/teamcity/?Agent+Cloud+Profile#AgentCloudProfile-ConfiguringCloudProfile) for your project in the Server Administration UI.\n\nThe plugin supports Kubernetes cluster images to start new pods with a TeamCity build agent running in one of the containers. The plugin supports the [official TeamCity Build Agent Docker image](https://hub.docker.com/r/jetbrains/teamcity-agent) out of the box. You can use your own image as well.\n\n### Helm steps\n\nAdd **Helm** build step to build configuration, choose one of supported commands: [install](https://docs.helm.sh/helm/#helm-install), [upgrade](https://docs.helm.sh/helm/#helm-upgrade), [rollback](https://docs.helm.sh/helm/#helm-rollback), [test](https://docs.helm.sh/helm/#helm-test), [delete](https://docs.helm.sh/helm/#helm-delete). \n\nOr use Kotlin DSL\n\n```kotlin\nobject Helm_Deployment : BuildType({\n    uuid = \"866dd903-6f55-4a54-a621-065b380dd7fc\"\n    extId = \"Helm_Deployment\"\n    name = \"Deployment\"\n\n    steps {\n        helmInstall {\n            chart = \"stable/teamcity-server\"\n            param(\"teamcity.helm.command\", \"helm-install\")\n        }\n    }\n})\n```\n\nBuild agent to be compatible with Helm runner should provide **Helm_Path** configuration parameter which should point to the location of Helm executable. \nPlugin searches Helm in default location **/usr/local/bin/helm** on Linux machines.\n\n## License\n\nApache 2.0\n\n## Feedback\n\nPlease feel free to post feedback in the repository [issues](https://youtrack.jetbrains.com/issues/TW).\n\n## Contributing guidelines\n\nFollow general instructions to [build TeamCity plugins using Maven](https://plugins.jetbrains.com/docs/teamcity/developing-plugins-using-maven.html).\nPlugin uses [TeamCity SDK Maven plugin](https://github.com/JetBrains/teamcity-sdk-maven-plugin)\n\n``` bash\n# build and package plugin\nmvn clean package\n\n# deploy packed plugin to local Teamcity installation and start server and build agent\nmvn tc-sdk:start\n\n# stop locally running server and build agent\nmvn tc-sdk:stop\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjetbrains%2Fteamcity-kubernetes-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjetbrains%2Fteamcity-kubernetes-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjetbrains%2Fteamcity-kubernetes-plugin/lists"}