orchestration 0.6.11 → 0.6.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60c52d91f6eb17469c4244093217f7c37bdf083bc9b045e175869788178a9196
4
- data.tar.gz: 2b70b8a444c78beb19ffbf9b2690349e942374c16ca36edecd714f33d798bae0
3
+ metadata.gz: 1de0a5221b816f60d95a04376bb965de0f6381b585b454f3b8d49f1c0e05086d
4
+ data.tar.gz: 811bba578ba6e1166db99f95bf51dbb4e33e349f82e442013725651640d0bb63
5
5
  SHA512:
6
- metadata.gz: 03efb92b5de3ef15940464ae6e5ba5739c98c4b18d312490f70a497ed0e2fdc2f8094cc482301fe0f81e6667a254fc481783a9f5e349e98a4f0b598d54827640
7
- data.tar.gz: bbc0087cd77db01f1a87f69222425a91ff2f5f8d204794795b4872d8f5157df208caa05343c5fed67bd1461633baa3aed344ebe2db52a82998932f32c215843a
6
+ metadata.gz: 8fe95b455287bd1e7c4b874c3bccffc8595b259f11ea892419e23ba074c60235e1a1f48a8eeb71aef8a5a76522e0833717c3b22b06987326b8a67a5d4a0c128e
7
+ data.tar.gz: 716c7c3389b69be2d80ee0b1f690d42f66f09f047752c97d5b806aa88bd85998b446bf266b2ef7a57b357ae37337f3cea4a6e391a88456246f4f6fa726306b13
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- orchestration (0.6.11)
4
+ orchestration (0.6.12)
5
5
  database_url (~> 0.1.2)
6
6
  dotenv-rails (~> 2.8)
7
7
  erubis (~> 2.7)
data/README.md CHANGED
@@ -50,13 +50,14 @@ rake orchestration:install server=unicorn # (or 'puma' [default], etc.)
50
50
 
51
51
  To rebuild all build-out at any time, pass `force=yes` to the above install command.
52
52
 
53
- To rebuild just `orchestration/Makefile` (useful after upgrading the _Orchestration_ gem):
53
+ You will be prompted to enter values for your _Docker_ organisation and repository name. For example, the _organisation_ and _repository_ for https://hub.docker.com/r/rubyorchestration/sampleapp are `rubyorchestration` and `sampleapp` respectively. If you are unsure of these values, they can be modified later by editing `.orchestration.yml` in the root of your project directory.
54
+
55
+ Override these values from the command line by passing `project` and `organization` variables:
56
+
54
57
  ```bash
55
- rake orchestration:install:makefile
58
+ rake orchestration:install project=myapp organization=myorg
56
59
  ```
57
60
 
58
- You will be prompted to enter values for your _Docker_ organisation and repository name. For example, the _organisation_ and _repository_ for https://hub.docker.com/r/rubyorchestration/sampleapp are `rubyorchestration` and `sampleapp` respectively. If you are unsure of these values, they can be modified later by editing `.orchestration.yml` in the root of your project directory.
59
-
60
61
  #### Configuration files
61
62
 
62
63
  _Orchestration_ generates the following files where appropriate. Backups are created if a file is replaced.
@@ -17,10 +17,8 @@ module Orchestration
17
17
  end
18
18
 
19
19
  def orchestration_configuration
20
- path = @env.orchestration_configuration_path
21
- @terminal.ask_setting('docker.organization')
22
- @terminal.ask_setting('docker.repository', @env.default_app_name)
23
- relpath = relative_path(path)
20
+ configure_orchestration_settings
21
+ relpath = relative_path(@env.orchestration_configuration_path)
24
22
  return @terminal.write(:create, relpath) unless @settings.exist? || force?
25
23
  return @terminal.write(:update, relpath) if @settings.dirty?
26
24
 
@@ -149,6 +147,19 @@ module Orchestration
149
147
  healthcheck: DockerCompose::AppService.healthcheck
150
148
  )
151
149
  end
150
+
151
+ def configure_orchestration_settings
152
+ @terminal.ask_setting(
153
+ 'docker.organization',
154
+ override: ENV.fetch('organization', nil)
155
+ )
156
+
157
+ @terminal.ask_setting(
158
+ 'docker.repository',
159
+ default: @env.default_app_name,
160
+ override: ENV.fetch('project', nil)
161
+ )
162
+ end
152
163
  end
153
164
  # rubocop:enable Metrics/ClassLength
154
165
  end
@@ -39,8 +39,9 @@ module Orchestration
39
39
  result
40
40
  end
41
41
 
42
- def ask_setting(setting, default = nil)
42
+ def ask_setting(setting, default: nil, override: nil)
43
43
  return unless @settings.get(setting).nil?
44
+ return @settings.set(setting, override) unless override.nil?
44
45
 
45
46
  write(:setup, t("settings.#{setting}.description"))
46
47
  prompt = t("settings.#{setting}.prompt")
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Orchestration
4
- VERSION = '0.6.11'
4
+ VERSION = '0.6.12'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orchestration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.11
4
+ version: 0.6.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Farrell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-05 00:00:00.000000000 Z
11
+ date: 2023-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: database_url