Skip to content

Software (Spring) Delivery Machine - Cloud Foundry (CF Dev)

License

Notifications You must be signed in to change notification settings

idugalic/sdm-spring-cf

Repository files navigation

Software Delivery Machine (Cloudfoundry) - by Atomist

The SDM framework enables you to control your delivery process in code. Think of it as an API for your software delivery. See this introduction for more information on the concept of a Software Delivery Machine and how to create and develop on an SDM.

Getting Started

Clone this repo to:

~/atomist/<owner>/sdm-spring-cf

Note: <owner> is your Github owner, e.g: idugalic

CF Dev

Once the installation is complete, start CF Dev:

$ cf dev start

After a couple of minutes (30) you should have system running.

Login and create two spaces cf-staging-space , cf-production-space within cfdev-org organization:

$ cf login -a https://api.dev.cfdev.sh -o cfdev-org --skip-ssl-validation
$ cf create-space cf-staging-space
$ cf create-space cf-production-space

Install the Atomist command-line utility

$ npm install -g @atomist/cli

Configuration

The following configuration should be in your ~/.atomist/client.config.json in order to successfully connect your SDM to CF Dev:

   "sdm": {
    "cloudfoundry": {
      "api": "https://api.dev.cfdev.sh",
      "user": "admin",
      "password": "admin",
      "org": "cfdev-org",
      "spaces": {
        "staging": "cf-staging-space",
        "production": "cf-production-space"
      }
    }
  }

Start your local SDM

Install the project dependencies using NPM, compile the TypeScript, and start your SDM in local mode:

$ cd ~/atomist/<owner>/sdm-spring-cf
$ atomist start --local

See messages from SDM events

In order to see messages from events (not interspersed with logs), activate a message listener in another terminal:

atomist feed

Adding Projects

Further projects can be added under the expanded directory tree in two ways:

Configure Existing Projects

If you already have repositories cloned/copied under your ~/atomist/<owner>/, configure them to activate the local SDM on commit.

Add the Atomist git hook to the existing git projects within this directory structure by running the following command/s:

$ cd ~/atomist/<owner>/<repo>
$ atomist add git hooks

'atomist clone' Command

The 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:

atomist clone https://github.com/<owner>/<repo>

Create new Spring Boot project

You can create new spring boot projects from seed project with atomist command:

$ atomist create spring

This command will create a Spring Boot project and commit it into a local Git repository at ~/atomist/<owner>/<repository>. The SDM will react to commits on this repository, scheduling goals such as Maven build and test.

About

Software (Spring) Delivery Machine - Cloud Foundry (CF Dev)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published