An open API service indexing awesome lists of open source software.

https://github.com/mizzy/spinnaker-playground


https://github.com/mizzy/spinnaker-playground

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Spinnaker Playground

## Setup spinnaker

Edit `spinnaker.tf`

```hcl
module "spinnaker" {
source = "./module/spinnaker"
key_name = "your_ssh_key_name"
managing_account_id = "xxxxxxxxxxxx"
managed_account_id = "xxxxxxxxxxxx"
spinnaker_user_public_key = "ssh-rsa ..."

/* These are defaults. You can overrive them.
instance_type = "c5.large"
security_group = "default"
volume_size = "100"
*/
}

output "public_dns" {
value = "${module.spinnaker.public_dns}"
}

...
```

Run terraform to create ec2 instance.

```
$ terraform init
$ terraform apply
```

Run setup.sh

```
$ ./setup.sh
```

Acccess to `http://ec2-xx-xx-xx-xx.ap-northeast-1.compute.amazonaws.com:9000` .

## Remove spinnaker setup

```
$ terraform destroy
```