Spinnaker is an open source, multi-cloud continuous delivery platform for releasing software changes with high velocity and confidence.
Перейти к файлу
microsoft-github-policy-service[bot] 41d126af23
Auto merge mandatory file pr
This pr is auto merged as it contains a mandatory file and is opened for more than 10 days.
2023-06-13 17:53:38 +00:00
.github https://github.com/spinnaker/spinnaker/issues/909: Fix link to troubleshooting documentation. 2016-05-31 14:36:17 -07:00
cassandra Remove references to deprecated rush service. (#942) 2016-06-17 11:01:41 -04:00
config Merge pull request #1429 from Microsoft/objectid 2017-02-16 18:27:46 -05:00
consul (consul) bootstrap script for starting consul (#1326) 2016-12-12 18:41:37 -05:00
dev Make the update_run_scripts default to True. Added noupdate_run_scripts to disable it. 2017-02-24 12:26:21 -06:00
etc Remove Rosco port from Apache2 ProxyPass config (#1368) 2017-01-13 09:14:49 -05:00
experimental adds auth endpoint to k8s/simple settings.js (#1437) 2017-02-21 20:40:07 -05:00
google Install scripts for monitoring support. 2017-02-13 19:18:29 +00:00
gradle travis config 2015-11-20 12:14:34 -08:00
install Dont update gcloud on boot 2017-02-17 04:20:03 +00:00
packer Update deck to resolve bake details url (aka the logs) via gate instead of directly via rosco. (#1232) 2016-10-13 16:29:17 -04:00
pkg_scripts Add fiat 2016-09-03 03:38:47 +00:00
pylib Rename azure storage to azs 2017-02-09 16:55:29 -08:00
runtime Allow InstallSpinnaker.sh to ommit cassandra (#1026) 2016-07-28 14:20:59 -04:00
testing/citest added app engine smoke test (#1433) 2017-02-27 17:47:33 -05:00
unittest feat(annotator) Removed build number and add flag to force rebuild. (#1426) 2017-02-15 14:19:14 -05:00
.gitignore (consul) added sample consul service (#1203) 2016-10-05 12:45:19 -04:00
.travis.yml rotated credentials 2016-11-09 11:46:39 -08:00
AUTHORS Create AUTHORS 2015-11-15 10:16:46 -08:00
InstallSpinnaker.sh Upgrade packer to v0.12.1. (#1370) 2017-01-15 09:25:58 -05:00
LICENSE.txt Update LICENSE.txt 2016-03-14 03:22:31 -07:00
README.adoc Fixed the paths to spinnaker-local.yml in the Configure Spinnaker section of Setting Up Spinnaker for Development in the README. (#1443) 2017-02-27 13:19:49 -05:00
SECURITY.md Microsoft mandatory file 2023-06-02 21:25:56 +00:00
build.gradle chore(gradle): spinnaker-gradle-project version bump. 2017-02-15 15:10:24 -05:00
gradlew newer gradle plugin 2015-11-15 10:04:29 -08:00
gradlew.bat Adding config files. Adding Install Scripts 2015-11-14 17:32:49 -05:00
settings.gradle Adding config files. Adding Install Scripts 2015-11-14 17:32:49 -05:00

README.adoc

:doctype: book

image:http://join.spinnaker.io/badge.svg[Slack Status,link=http://join.spinnaker.io]

= Using Spinnaker

If you are only interested in using Spinnaker, please refer to the main
Spinnaker site and http://www.spinnaker.io/docs/target-deployment-setup[Installation] guide.

If you want more information on how Spinnaker is designed, see the http://www.spinnaker.io/docs/overview[Documentation Overview].

= Setting Up Spinnaker For Development

These instructions cover pulling Spinnaker from source and setting up to run locally against Amazon Web Services and/or Google Cloud Platform accounts. 

Please ensure you have set up your target environment correctly by following step 1 of the http://www.spinnaker.io/docs/target-deployment-setup[Getting Started Documentation].

If you do not wish to build from source, please follow the http://www.spinnaker.io/docs/creating-a-spinnaker-instance#section-localhost[Localhost] section of the Creating a Spinnaker Instance guide.

If you would prefer to try a container based solution, see https://github.com/spinnaker/spinnaker/tree/master/experimental/docker-compose[docker-compose installation].

These scripts are tested on:

* Ubuntu 14.04 LTS
* Mac OS X 10.11

== Get the bootstrap / configuration repo

[source,bash]
----
#export SPINNAKER_HOME=/path/to/your/Spinnaker/workspace
mkdir -p $SPINNAKER_HOME
cd $SPINNAKER_HOME
git clone git@github.com:spinnaker/spinnaker.git
----

== Configure your environment

The Spinnaker platform has a few prerequisites, which are installed as a part of this configuration process. They are: 

* https://www.oracle.com/java/index.html[JDK8]
* http://redis.io/[Redis]
* http://cassandra.apache.org/[Cassandra]
* https://www.packer.io/[Packer]

=== Mac OS X

You need to have http://brew.sh/[homebrew] installed and ensure your version of git is above 2.0.  Cassandra must be 2.1.x where x >= 11 or you must enable thrift.

[source,bash]
----
brew tap caskroom/cask
brew install brew-cask
brew install redis homebrew/versions/cassandra21 packer
brew cask install java
cd $SPINNAKER_HOME
mkdir build
cd build
../spinnaker/dev/refresh_source.sh --pull_origin --use_ssh --github_user default
----

=== Ubuntu Linux

[source,bash]
----
cd $SPINNAKER_HOME
spinnaker/dev/install_development.sh
spinnaker/dev/bootstrap_dev.sh
----

The `bootstrap_dev.sh` script will ask to install additional components. `gcloud`
is only needed to write releases to Google Cloud Storage, but is convenient
to have if you plan on using or accessing Google Cloud Platform resources
from your development environment. These could be installed at a system level
rather than user level, but the default install requires updating your path
so is performed here.

== Configure Spinnaker

We will create a directory for Spinnaker configuration overrides and
create an override to select the appropriate cloud provider(s).

[source,bash]
----
cd $SPINNAKER_HOME
mkdir -p $HOME/.spinnaker
touch $HOME/.spinnaker/spinnaker-local.yml
chmod 600 $HOME/.spinnaker/spinnaker-local.yml

# Ideally you only need to add the properties you want to override.
# However if you are not comfortable editing yml, you can copy the
# entire file. The difference is that you may be overriding future
# changes to default values that you otherwise would not care about.
cp spinnaker/config/spinnaker.yml $HOME/.spinnaker/spinnaker-local.yml

$EDITOR $HOME/.spinnaker/spinnaker-local.yml
----

If you are deployed onto a supported cloud provider (e.g., AWS or Google) and
you only wish to deploy on that platform then you do not need to perform
additional configuration. Otherwise, edit `$HOME/.spinnaker/spinnaker-local.yml`
and set the enabled option for the cloud provider(s) of your choice and
configure the attributes for that provider.

== Start Spinnaker Services

If you're running on Mac OS X, please make sure that your Redis and Cassandra
servers are up and running. Make sure that `cqlsh` is accessible in your path
and you can connect to Cassandra by calling `cqlsh` in your terminal.

[source,bash]
----
cd $SPINNAKER_HOME/build
../spinnaker/dev/run_dev.sh [service]
----

If a service is provided, then just that one service will be started.
If no service is provided, then all the services will be started
(including Redis and Cassandra unless they are specified with a remote host).
If a service is already running (even if not yet available) then it will
not be restarted.

*Note* `run_dev.sh` might get stuck waiting on a service to start. Hitting
CTRL-C just stops the waiting on service, it doesn't terminate the services. If
it seems stuck, stop and restart `run_dev.sh`.

== Stop Spinnaker Services

[source,bash]
----
cd $SPINNAKER_HOME/build
../spinnaker/dev/stop_dev.sh [service]
----

If a service is provided, then just that one service will be stopped.
If no service is provided then all the spinnaker services will be stopped.
Cassandra and Redis are not affected by `stop_dev.sh`.