rebi 0.4.0 → 0.4.1
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 +5 -5
- data/README.md +1 -1
- data/lib/rebi/version.rb +1 -1
- data/sample/rebi.yml +9 -9
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 8e2ca6467a28efb995a05bc5270d2994f31ba5b545f20b616da47d90b5f6bd89
|
|
4
|
+
data.tar.gz: eef091ebf325a9812e0e2ad2221adb099de8b2d32267abb9231e188da9d760e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4db35e5e70e9e25794977542643e7d8323eb9be349ef5bb6af9377c7741ebf89e277ff227f8e3a11f498ae8c374ed84cd1da15e02ec610c94445a4c514863dbd
|
|
7
|
+
data.tar.gz: b211f98a1a6c64596319994445af35f68514b26cf1f60f63d39b4bfa4e1e81daa9bd5c511a1be076146d65f8276d12d47e601cf01bd5a53a2185ef90d13dfe0e
|
data/README.md
CHANGED
|
@@ -105,7 +105,7 @@ option_settings:
|
|
|
105
105
|
|
|
106
106
|
## Contributing
|
|
107
107
|
Feel free to fork and request a pull, or submit a ticket
|
|
108
|
-
https://github.com/
|
|
108
|
+
https://github.com/kayac/rebi/issues
|
|
109
109
|
|
|
110
110
|
## License
|
|
111
111
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/lib/rebi/version.rb
CHANGED
data/sample/rebi.yml
CHANGED
|
@@ -7,21 +7,21 @@ profile: aws_profile # if use profile config, overwrite with --profile option
|
|
|
7
7
|
aws_key: aws_key
|
|
8
8
|
aws_secret: aws_secret
|
|
9
9
|
|
|
10
|
-
stages: #Required
|
|
11
|
-
development: #Stage name
|
|
10
|
+
stages: # Required, Hash
|
|
11
|
+
development: # Stage name
|
|
12
12
|
web: # Env name
|
|
13
|
-
name: web01 # Optional, default: #{
|
|
13
|
+
name: web01 # Optional, default: #{env_name}-#{stage_name}
|
|
14
14
|
description: Description # Optional,
|
|
15
15
|
cname_prefix: prefix # Optional
|
|
16
16
|
tier: web or worker # Optional, default: web
|
|
17
17
|
instance_type: t2.small # Optional, default: t2.small
|
|
18
|
-
instance_num: # Optional
|
|
18
|
+
instance_num: # Optional, min 1 max 1
|
|
19
19
|
min: 1
|
|
20
20
|
max: 1
|
|
21
21
|
key_name: # Optional, if not set you cannot ssh into ec2 instances
|
|
22
|
-
instance_profile: iam_profile # Optional, default: aws-elasticbeanstalk-
|
|
22
|
+
instance_profile: iam_profile # Optional, default: aws-elasticbeanstalk-ec2-role
|
|
23
23
|
# http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-instanceprofile.html
|
|
24
|
-
solution_stack_name: Ruby # Optional
|
|
24
|
+
solution_stack_name: Ruby # Optional, default: "64bit Amazon Linux 2017.09 v2.6.0 running Ruby 2.4 (Puma)"
|
|
25
25
|
env_file: .env.development # Optional
|
|
26
26
|
environment_variables: # Optional, nil will be deleted when update,
|
|
27
27
|
# Use `rebi get_env stage --from-config` to get env settings
|
|
@@ -29,7 +29,7 @@ stages: #Required: Hash
|
|
|
29
29
|
# Nil env will be deleted when deploy
|
|
30
30
|
|
|
31
31
|
- TIER: web
|
|
32
|
-
ebextensions: ebextension folders # Optional
|
|
32
|
+
ebextensions: ebextension folders # Optional, String or Array of Strings
|
|
33
33
|
# .ebextensions will be added automatically if not exists
|
|
34
34
|
# The below one will be merge in to be above one
|
|
35
35
|
# Example: .ebextensions has 01.config, web_extensions, 02.config, web1_extensions 02.config and 03.config
|
|
@@ -39,10 +39,10 @@ stages: #Required: Hash
|
|
|
39
39
|
# Result will has 01.config, 02.config(from web1_extensions) and 03.config
|
|
40
40
|
|
|
41
41
|
dockerrun: Dockerrun.aws.json.stg # Dockerrun file
|
|
42
|
-
options: #Hash, Other custom options for using in erb
|
|
42
|
+
options: # Hash, Other custom options for using in erb
|
|
43
43
|
use_basic: true # rebi.opts.use_basic
|
|
44
44
|
|
|
45
|
-
ebignore: .ebignore_web #Optional
|
|
45
|
+
ebignore: .ebignore_web # Optional
|
|
46
46
|
hooks:
|
|
47
47
|
pre: ls # String or Array, run before upload source bundle
|
|
48
48
|
post: ls # String or Array, run right after sending deploy request
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rebi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- KhiemNS
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyzip
|
|
@@ -206,7 +206,7 @@ files:
|
|
|
206
206
|
- lib/rebi/zip_helper.rb
|
|
207
207
|
- lib/tasks/rebi.rake
|
|
208
208
|
- sample/rebi.yml
|
|
209
|
-
homepage: https://github.com/
|
|
209
|
+
homepage: https://github.com/kayac/rebi
|
|
210
210
|
licenses:
|
|
211
211
|
- MIT
|
|
212
212
|
metadata: {}
|
|
@@ -226,7 +226,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
226
226
|
version: '0'
|
|
227
227
|
requirements: []
|
|
228
228
|
rubyforge_project:
|
|
229
|
-
rubygems_version: 2.
|
|
229
|
+
rubygems_version: 2.7.8
|
|
230
230
|
signing_key:
|
|
231
231
|
specification_version: 4
|
|
232
232
|
summary: ElasticBeanstalk Deployment Tool
|