{"id":17274480,"url":"https://github.com/idugalic/sdm-spring-k8","last_synced_at":"2026-04-13T20:02:17.877Z","repository":{"id":113631453,"uuid":"149601184","full_name":"idugalic/sdm-spring-k8","owner":"idugalic","description":"Software (Spring) Delivery Machine - Kubernetes (Minikube)","archived":false,"fork":false,"pushed_at":"2018-09-29T16:20:36.000Z","size":172,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-26T13:46:29.716Z","etag":null,"topics":["atomist","continuous-delivery","java","kubernetes","spring-boot"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/idugalic.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-09-20T11:49:04.000Z","updated_at":"2018-09-29T16:20:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"1264fa3f-4026-4b76-95fe-2f076693684a","html_url":"https://github.com/idugalic/sdm-spring-k8","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/idugalic/sdm-spring-k8","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idugalic%2Fsdm-spring-k8","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idugalic%2Fsdm-spring-k8/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idugalic%2Fsdm-spring-k8/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idugalic%2Fsdm-spring-k8/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/idugalic","download_url":"https://codeload.github.com/idugalic/sdm-spring-k8/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idugalic%2Fsdm-spring-k8/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31768649,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["atomist","continuous-delivery","java","kubernetes","spring-boot"],"created_at":"2024-10-15T08:54:01.274Z","updated_at":"2026-04-13T20:02:17.862Z","avatar_url":"https://github.com/idugalic.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Software Delivery Machine (K8) - by Atomist\n\nThe SDM framework enables you to control your delivery process in\ncode.  Think of it as an API for your software delivery.  See this\n[introduction][atomist-doc] for more information on the concept of a\nSoftware Delivery Machine and how to create and develop on an SDM.\n\n[atomist-doc]: https://docs.atomist.com/ (Atomist Documentation)\n\n## Getting Started\n\n### Clone this repo to:\n\n```\n~/atomist/\u003cowner\u003e/sdm-spring-k8\n```\nNote: `\u003cowner\u003e` is your Github owner, e.g: idugalic\n\n### Minikube on a Mac\n\n - Install VirtualBox or another supported hypervisor for your operating system\n - Install the Kubernetes command line client [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) with Homebrew `brew install kubernetes-cli`\n - Install the [Minikube](https://kubernetes.io/docs/tasks/tools/install-minikube/) with Homebrew by running `brew cask install minikube`\n\nOnce the installation is complete, start Minikube to create a new cluster:\n```\n$ minikube start\n```\n\nInstall the [ingress](https://github.com/kubernetes/ingress-nginx#what-is-an-ingress-controller) addon:\n\n```\n$ minikube addons enable ingress\n```\nNow check the status of your local Kubernetes cluster by running:\n```\n$ kubectl get pods --all-namespaces\n```\n\nAfter a couple of minutes all system internal pods should show in `Running` status with a ready count of `1/1`\n\n### Install the Atomist command-line utility\n\n```\n$ npm install -g @atomist/cli\n```\n\n### Start your local SDM\n\nInstall the project dependencies using NPM, compile the TypeScript, and start your SDM in local mode:\n```\n$ cd ~/atomist/\u003cowner\u003e/sdm-spring-k8\n$ atomist start --local\n```\n\n### See messages from SDM events\n\nIn order to see messages from events (not interspersed with logs), activate a message listener in another terminal:\n```\natomist feed\n```\n\n### Adding Projects\n\nFurther projects can be added under the expanded directory tree in two ways:\n\n#### Configure Existing Projects\nIf you already have repositories cloned/copied under your `~/atomist/\u003cowner\u003e/`, configure them to activate the local SDM on commit.\n\nAdd the Atomist git hook to the existing git projects within this directory structure by running the following command/s:\n```\n$ cd ~/atomist/\u003cowner\u003e/\u003crepo\u003e\n$ atomist add git hooks\n```\n#### 'atomist clone' Command\nThe easiest way to add an existing project to your SDM projects is: run the atomist clone command to clone a GitHub.com repository in the right place in the expanded tree and automatically install the git hooks:\n\n`atomist clone https://github.com/\u003cowner\u003e/\u003crepo\u003e`","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidugalic%2Fsdm-spring-k8","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fidugalic%2Fsdm-spring-k8","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidugalic%2Fsdm-spring-k8/lists"}