cf_deployer 1.2.11 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +0 -0
- data/ChangeLog.md +0 -0
- data/DETAILS.md +0 -0
- data/FAQ.md +0 -0
- data/Gemfile +0 -0
- data/Gemfile.lock +1 -1
- data/LICENSE +0 -0
- data/QUICKSTART.md +0 -0
- data/README.md +0 -0
- data/Rakefile +0 -0
- data/cf_deployer.gemspec +0 -0
- data/lib/cf_deployer.rb +0 -0
- data/lib/cf_deployer/application.rb +0 -0
- data/lib/cf_deployer/application_error.rb +0 -0
- data/lib/cf_deployer/aws_constants.rb +0 -0
- data/lib/cf_deployer/cli.rb +0 -0
- data/lib/cf_deployer/component.rb +0 -0
- data/lib/cf_deployer/config_loader.rb +0 -0
- data/lib/cf_deployer/config_validation.rb +0 -0
- data/lib/cf_deployer/defaults.rb +0 -0
- data/lib/cf_deployer/deployment_strategy/auto_scaling_group_swap.rb +0 -0
- data/lib/cf_deployer/deployment_strategy/base.rb +0 -0
- data/lib/cf_deployer/deployment_strategy/blue_green.rb +0 -0
- data/lib/cf_deployer/deployment_strategy/cname_swap.rb +1 -1
- data/lib/cf_deployer/deployment_strategy/create_or_update.rb +0 -0
- data/lib/cf_deployer/driver/auto_scaling_group.rb +0 -0
- data/lib/cf_deployer/driver/cloud_formation_driver.rb +0 -0
- data/lib/cf_deployer/driver/dry_run.rb +0 -0
- data/lib/cf_deployer/driver/elb_driver.rb +0 -0
- data/lib/cf_deployer/driver/instance.rb +0 -0
- data/lib/cf_deployer/driver/route53_driver.rb +0 -0
- data/lib/cf_deployer/driver/verisign_driver.rb +0 -0
- data/lib/cf_deployer/hook.rb +0 -0
- data/lib/cf_deployer/logger.rb +0 -0
- data/lib/cf_deployer/stack.rb +0 -0
- data/lib/cf_deployer/status_presenter.rb +0 -0
- data/lib/cf_deployer/version.rb +1 -1
- data/spec/fakes/instance.rb +0 -0
- data/spec/fakes/route53_client.rb +0 -0
- data/spec/fakes/stack.rb +0 -0
- data/spec/functional/deploy_spec.rb +0 -0
- data/spec/functional/kill_inactive_spec.rb +0 -0
- data/spec/functional_spec_helper.rb +0 -0
- data/spec/spec_helper.rb +0 -0
- data/spec/unit/application_spec.rb +0 -0
- data/spec/unit/component_spec.rb +0 -0
- data/spec/unit/config_loader_spec.rb +0 -0
- data/spec/unit/config_validation_spec.rb +0 -0
- data/spec/unit/deployment_strategy/auto_scaling_group_swap_spec.rb +0 -0
- data/spec/unit/deployment_strategy/base_spec.rb +0 -0
- data/spec/unit/deployment_strategy/cname_swap_spec.rb +0 -0
- data/spec/unit/deployment_strategy/create_or_update_spec.rb +0 -0
- data/spec/unit/deployment_strategy/deployment_strategy_spec.rb +0 -0
- data/spec/unit/driver/auto_scaling_group_spec.rb +0 -0
- data/spec/unit/driver/cloud_formation_spec.rb +0 -0
- data/spec/unit/driver/elb_spec.rb +0 -0
- data/spec/unit/driver/instance_spec.rb +0 -0
- data/spec/unit/driver/route53_spec.rb +0 -0
- data/spec/unit/driver/verisign_spec.rb +0 -0
- data/spec/unit/hook_spec.rb +0 -0
- data/spec/unit/stack_spec.rb +0 -0
- data/spec/unit/status_presenter_spec.rb +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1db5cec4a3e85b734de2469723174af6076d0334
|
|
4
|
+
data.tar.gz: 79eebbe809bb12a92a59c4c8eed7d7064df46fbd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8568f79cd0a27b30174422ce1edb8cfd05e9c554def87df53423cea0fd3f7547e221c6abf53335dfed02aa735cb73a756b2277dddbe78deaa16ad6a1fa51a010
|
|
7
|
+
data.tar.gz: 5d7fc88066821fc2bffd2abed89914354e516d913635c1274b8bcf681e8417505ff3c9e5ba1c13098e475401921d1f353317f604a189225afdb5e93b3e0f06ed
|
data/.gitignore
CHANGED
|
File without changes
|
data/ChangeLog.md
CHANGED
|
File without changes
|
data/DETAILS.md
CHANGED
|
File without changes
|
data/FAQ.md
CHANGED
|
File without changes
|
data/Gemfile
CHANGED
|
File without changes
|
data/Gemfile.lock
CHANGED
data/LICENSE
CHANGED
|
File without changes
|
data/QUICKSTART.md
CHANGED
|
File without changes
|
data/README.md
CHANGED
|
File without changes
|
data/Rakefile
CHANGED
|
File without changes
|
data/cf_deployer.gemspec
CHANGED
|
File without changes
|
data/lib/cf_deployer.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/cf_deployer/cli.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/cf_deployer/defaults.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -7,6 +7,7 @@ module CfDeployer
|
|
|
7
7
|
delete_stack inactive_stack
|
|
8
8
|
create_inactive_stack
|
|
9
9
|
warm_up_inactive_stack
|
|
10
|
+
run_hook(:'after-create')
|
|
10
11
|
swap_cname
|
|
11
12
|
Kernel.sleep 60
|
|
12
13
|
run_hook(:'after-swap')
|
|
@@ -44,7 +45,6 @@ module CfDeployer
|
|
|
44
45
|
def create_inactive_stack
|
|
45
46
|
inactive_stack.deploy
|
|
46
47
|
get_parameters_outputs(inactive_stack)
|
|
47
|
-
run_hook(:'after-create')
|
|
48
48
|
end
|
|
49
49
|
|
|
50
50
|
def swap_cname
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/cf_deployer/hook.rb
CHANGED
|
File without changes
|
data/lib/cf_deployer/logger.rb
CHANGED
|
File without changes
|
data/lib/cf_deployer/stack.rb
CHANGED
|
File without changes
|
|
File without changes
|
data/lib/cf_deployer/version.rb
CHANGED
data/spec/fakes/instance.rb
CHANGED
|
File without changes
|
|
File without changes
|
data/spec/fakes/stack.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
|
File without changes
|
|
File without changes
|
data/spec/unit/component_spec.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/spec/unit/hook_spec.rb
CHANGED
|
File without changes
|
data/spec/unit/stack_spec.rb
CHANGED
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cf_deployer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jame Brechtel
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2014-
|
|
14
|
+
date: 2014-07-01 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: aws-sdk
|