deploy-context 2.1.35.3.g2abab85 → 2.1.35.3.g2abab85.16.g399fb24.9.g1523b69
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
- checksums.yaml.gz.sig +0 -0
- data/.gitignore +24 -56
- data/.kitchen/logs/kitchen.log +254 -29
- data/CHANGELOG.md +10 -0
- data/Policyfile.rb +16 -0
- data/Rakefile +1 -1
- data/chefignore +115 -0
- data/compliance/README.md +25 -0
- data/features/step_definitions/deploy-context.rb +1 -1
- data/features/support/env.rb +1 -1
- data/kitchen.yml +31 -0
- data/{lib → libraries}/deploy-context/deploy/cookbook.rb +12 -3
- data/{lib → libraries}/deploy-context/deploy/deployer.rb +3 -4
- data/{lib → libraries}/deploy-context/deploy/git.rb +1 -0
- data/{lib → libraries}/deploy-context/deploy.rb +7 -4
- data/{lib → libraries}/deploy-context/helpers/command.rb +4 -0
- data/{lib → libraries}/deploy-context/step_definitions/deploy-context.rb +2 -0
- data/metadata.rb +22 -0
- data/recipes/default.rb +8 -0
- data/test/integration/default/default_test.rb +16 -0
- data.tar.gz.sig +0 -0
- metadata +21 -13
- metadata.gz.sig +0 -0
- /data/{lib → libraries}/context-manager.rb +0 -0
- /data/{lib → libraries}/deploy-context/deploy/cucumber.rb +0 -0
- /data/{lib → libraries}/deploy-context/deploy/ruby.rb +0 -0
- /data/{lib → libraries}/deploy-context/helpers/binary.rb +0 -0
- /data/{lib → libraries}/deploy-context/helpers/rake_tasks.rb +0 -0
- /data/{lib → libraries}/deploy-context.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cada65dba738982c3c85dcbb4264db8860cfa1cb005983e43c18a5000cef390d
|
4
|
+
data.tar.gz: eb4a6bf618d9991ce613e5f6b5e107489907cf5daf573f75df540c05f272584d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f73ba29d9d273c75642d8ad619b89f46ff2f5148ecee149366e428acbd55c3c32fb8c03cebab0728c2a2e0f8ab4b5b8d8974a402710376bfc2559eae9f0f2f01
|
7
|
+
data.tar.gz: 87a3f89824495f07b8c15eb9e5ab9e5ad1d94d5e3a69ef737b19043cb3afa9648bbb637a96d0731b6f49a1c3726bee891af4542abd91040d9a4dae5c83375f25
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/.gitignore
CHANGED
@@ -1,57 +1,25 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
1
|
+
.vagrant
|
2
|
+
*~
|
3
|
+
*#
|
4
|
+
.#*
|
5
|
+
\#*#
|
6
|
+
.*.sw[a-z]
|
7
|
+
*.un~
|
8
|
+
|
9
|
+
# Bundler
|
10
|
+
Gemfile.lock
|
11
|
+
gems.locked
|
12
|
+
bin/*
|
13
|
+
.bundle/*
|
14
|
+
|
15
|
+
# test kitchen
|
16
|
+
.kitchen/
|
17
|
+
kitchen.local.yml
|
18
|
+
|
19
|
+
# Chef Infra
|
20
|
+
Berksfile.lock
|
21
|
+
.zero-knife.rb
|
22
|
+
Policyfile.lock.json
|
23
|
+
|
24
|
+
.idea/
|
13
25
|
|
14
|
-
# Used by dotenv library to load environment variables.
|
15
|
-
# .env
|
16
|
-
|
17
|
-
# Ignore Byebug command history file.
|
18
|
-
.byebug_history
|
19
|
-
|
20
|
-
## Specific to RubyMotion:
|
21
|
-
.dat*
|
22
|
-
.repl_history
|
23
|
-
build/
|
24
|
-
*.bridgesupport
|
25
|
-
build-iPhoneOS/
|
26
|
-
build-iPhoneSimulator/
|
27
|
-
|
28
|
-
## Specific to RubyMotion (use of CocoaPods):
|
29
|
-
#
|
30
|
-
# We recommend against adding the Pods directory to your .gitignore. However
|
31
|
-
# you should judge for yourself, the pros and cons are mentioned at:
|
32
|
-
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
33
|
-
#
|
34
|
-
# vendor/Pods/
|
35
|
-
|
36
|
-
## Documentation cache and generated files:
|
37
|
-
/.yardoc/
|
38
|
-
/_yardoc/
|
39
|
-
/doc/
|
40
|
-
/rdoc/
|
41
|
-
|
42
|
-
## Environment normalization:
|
43
|
-
/.bundle/
|
44
|
-
/vendor/bundle
|
45
|
-
/lib/bundler/man/
|
46
|
-
|
47
|
-
# for a library or gem, you might want to ignore these files since the code is
|
48
|
-
# intended to run in multiple environments; otherwise, check them in:
|
49
|
-
# Gemfile.lock
|
50
|
-
# .ruby-version
|
51
|
-
# .ruby-gemset
|
52
|
-
|
53
|
-
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
54
|
-
.rvmrc
|
55
|
-
|
56
|
-
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
57
|
-
# .rubocop-https?--*
|
data/.kitchen/logs/kitchen.log
CHANGED
@@ -1,29 +1,254 @@
|
|
1
|
-
I, [2023-10-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
E, [2023-10-
|
12
|
-
E, [2023-10-
|
13
|
-
E, [2023-10-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
1
|
+
I, [2023-10-04T16:03:18.872279 #629620] INFO -- Kitchen: -----> Starting Test Kitchen (v3.3.2)
|
2
|
+
I, [2023-10-04T16:03:19.873414 #629620] INFO -- Kitchen: -----> Cleaning up any prior instances of <default-ubuntu-2004>
|
3
|
+
I, [2023-10-04T16:03:19.873899 #629620] INFO -- Kitchen: -----> Destroying <default-ubuntu-2004>...
|
4
|
+
I, [2023-10-04T16:03:19.874784 #629620] INFO -- Kitchen: -----> Testing <default-ubuntu-2004>
|
5
|
+
I, [2023-10-04T16:03:19.874910 #629620] INFO -- Kitchen: -----> Creating <default-ubuntu-2004>...
|
6
|
+
I, [2023-10-04T16:03:32.718184 #629620] INFO -- Kitchen: -----> Cleaning up any prior instances of <default-centos-8>
|
7
|
+
I, [2023-10-04T16:03:32.718625 #629620] INFO -- Kitchen: -----> Destroying <default-centos-8>...
|
8
|
+
I, [2023-10-04T16:03:37.709650 #629620] INFO -- Kitchen: -----> Testing <default-centos-8>
|
9
|
+
I, [2023-10-04T16:03:37.709775 #629620] INFO -- Kitchen: -----> Creating <default-centos-8>...
|
10
|
+
I, [2023-10-04T16:04:44.214580 #629620] INFO -- Kitchen: -----> Converging <default-centos-8>...
|
11
|
+
E, [2023-10-04T16:04:45.405017 #629620] ERROR -- Kitchen: ------Exception-------
|
12
|
+
E, [2023-10-04T16:04:45.405090 #629620] ERROR -- Kitchen: Class: Kitchen::ActionFailed
|
13
|
+
E, [2023-10-04T16:04:45.405125 #629620] ERROR -- Kitchen: Message: 2 actions failed.
|
14
|
+
>>>>>> Failed to complete #create action: [Expected process to exit with [0], but received '1'
|
15
|
+
---- Begin output of vagrant up --no-provision --provider virtualbox ----
|
16
|
+
STDOUT: Bringing machine 'default' up with 'virtualbox' provider...
|
17
|
+
==> default: Importing base box 'bento/ubuntu-20.04'...
|
18
|
+
|
19
|
+
STDERR: There was an error while executing `VBoxManage`, a CLI used by Vagrant
|
20
|
+
for controlling VirtualBox. The command and stderr is shown below.
|
21
|
+
|
22
|
+
Command: ["import", "/home/jimboadmin/.vagrant.d/boxes/bento-VAGRANTSLASH-ubuntu-20.04/202206.03.0/virtualbox/box.ovf", "--vsys", "0", "--vmname", "ubuntu-20.04-amd64_1696449801155_14898", "--vsys", "0", "--unit", "11", "--disk", "/home/jimboadmin/VirtualBox VMs/ubuntu-20.04-amd64_1696449801155_14898/ubuntu-20.04-amd64-disk001.vmdk"]
|
23
|
+
|
24
|
+
Stderr: 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
|
25
|
+
Interpreting /home/jimboadmin/.vagrant.d/boxes/bento-VAGRANTSLASH-ubuntu-20.04/202206.03.0/virtualbox/box.ovf...
|
26
|
+
OK.
|
27
|
+
0%...
|
28
|
+
Progress state: NS_ERROR_INVALID_ARG
|
29
|
+
VBoxManage: error: Appliance import failed
|
30
|
+
VBoxManage: error: Code NS_ERROR_INVALID_ARG (0x80070057) - Invalid argument value (extended info not available)
|
31
|
+
VBoxManage: error: Context: "RTEXITCODE handleImportAppliance(HandlerArg*)" at line 1363 of file VBoxManageAppliance.cpp
|
32
|
+
---- End output of vagrant up --no-provision --provider virtualbox ----
|
33
|
+
Ran vagrant up --no-provision --provider virtualbox returned 1] on default-ubuntu-2004
|
34
|
+
>>>>>> Failed to complete #converge action: [Expected process to exit with [0], but received '1'
|
35
|
+
---- Begin output of /opt/chef-workstation/bin/chef-cli install /home/jimboadmin/deploy-context/Policyfile.rb --chef-license accept ----
|
36
|
+
STDOUT: Installing cookbooks from lock
|
37
|
+
Installing deploy-context 0.1.0
|
38
|
+
STDERR: Error: Failed to install cookbooks from lockfile
|
39
|
+
Reason: (Chef::Exceptions::InvalidCookbookVersion) '2.1.35.3.g2abab85.16.g399fb24.8.gf51eaae.1.dirty.20231004.160445' does not match 'x.y.z' or 'x.y'
|
40
|
+
---- End output of /opt/chef-workstation/bin/chef-cli install /home/jimboadmin/deploy-context/Policyfile.rb --chef-license accept ----
|
41
|
+
Ran /opt/chef-workstation/bin/chef-cli install /home/jimboadmin/deploy-context/Policyfile.rb --chef-license accept returned 1] on default-centos-8
|
42
|
+
E, [2023-10-04T16:04:45.405162 #629620] ERROR -- Kitchen: ----------------------
|
43
|
+
E, [2023-10-04T16:04:45.405197 #629620] ERROR -- Kitchen: ------Backtrace-------
|
44
|
+
E, [2023-10-04T16:04:45.405230 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:181:in `report_errors'
|
45
|
+
E, [2023-10-04T16:04:45.405270 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:172:in `run_action'
|
46
|
+
E, [2023-10-04T16:04:45.405307 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command/test.rb:41:in `block in call'
|
47
|
+
E, [2023-10-04T16:04:45.405364 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/3.0.0/benchmark.rb:293:in `measure'
|
48
|
+
E, [2023-10-04T16:04:45.405401 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command/test.rb:37:in `call'
|
49
|
+
E, [2023-10-04T16:04:45.405434 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/cli.rb:52:in `perform'
|
50
|
+
E, [2023-10-04T16:04:45.405466 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/cli.rb:250:in `test'
|
51
|
+
E, [2023-10-04T16:04:45.405506 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/thor-1.2.1/lib/thor/command.rb:27:in `run'
|
52
|
+
E, [2023-10-04T16:04:45.405545 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/thor-1.2.1/lib/thor/invocation.rb:127:in `invoke_command'
|
53
|
+
E, [2023-10-04T16:04:45.405591 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/thor-1.2.1/lib/thor.rb:392:in `dispatch'
|
54
|
+
E, [2023-10-04T16:04:45.405625 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/thor-1.2.1/lib/thor/base.rb:485:in `start'
|
55
|
+
E, [2023-10-04T16:04:45.405660 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/bin/kitchen:11:in `block in <top (required)>'
|
56
|
+
E, [2023-10-04T16:04:45.405691 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/errors.rb:183:in `with_friendly_errors'
|
57
|
+
E, [2023-10-04T16:04:45.405721 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/bin/kitchen:11:in `<top (required)>'
|
58
|
+
E, [2023-10-04T16:04:45.405757 #629620] ERROR -- Kitchen: /opt/chef-workstation/bin/kitchen:389:in `load'
|
59
|
+
E, [2023-10-04T16:04:45.405791 #629620] ERROR -- Kitchen: /opt/chef-workstation/bin/kitchen:389:in `<main>'
|
60
|
+
E, [2023-10-04T16:04:45.405823 #629620] ERROR -- Kitchen: ----End Backtrace-----
|
61
|
+
E, [2023-10-04T16:04:45.405856 #629620] ERROR -- Kitchen: -Composite Exception--
|
62
|
+
E, [2023-10-04T16:04:45.405891 #629620] ERROR -- Kitchen: Class: Kitchen::ActionFailed
|
63
|
+
E, [2023-10-04T16:04:45.405926 #629620] ERROR -- Kitchen: Message: Failed to complete #create action: [Expected process to exit with [0], but received '1'
|
64
|
+
---- Begin output of vagrant up --no-provision --provider virtualbox ----
|
65
|
+
STDOUT: Bringing machine 'default' up with 'virtualbox' provider...
|
66
|
+
==> default: Importing base box 'bento/ubuntu-20.04'...
|
67
|
+
|
68
|
+
STDERR: There was an error while executing `VBoxManage`, a CLI used by Vagrant
|
69
|
+
for controlling VirtualBox. The command and stderr is shown below.
|
70
|
+
|
71
|
+
Command: ["import", "/home/jimboadmin/.vagrant.d/boxes/bento-VAGRANTSLASH-ubuntu-20.04/202206.03.0/virtualbox/box.ovf", "--vsys", "0", "--vmname", "ubuntu-20.04-amd64_1696449801155_14898", "--vsys", "0", "--unit", "11", "--disk", "/home/jimboadmin/VirtualBox VMs/ubuntu-20.04-amd64_1696449801155_14898/ubuntu-20.04-amd64-disk001.vmdk"]
|
72
|
+
|
73
|
+
Stderr: 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
|
74
|
+
Interpreting /home/jimboadmin/.vagrant.d/boxes/bento-VAGRANTSLASH-ubuntu-20.04/202206.03.0/virtualbox/box.ovf...
|
75
|
+
OK.
|
76
|
+
0%...
|
77
|
+
Progress state: NS_ERROR_INVALID_ARG
|
78
|
+
VBoxManage: error: Appliance import failed
|
79
|
+
VBoxManage: error: Code NS_ERROR_INVALID_ARG (0x80070057) - Invalid argument value (extended info not available)
|
80
|
+
VBoxManage: error: Context: "RTEXITCODE handleImportAppliance(HandlerArg*)" at line 1363 of file VBoxManageAppliance.cpp
|
81
|
+
---- End output of vagrant up --no-provision --provider virtualbox ----
|
82
|
+
Ran vagrant up --no-provision --provider virtualbox returned 1] on default-ubuntu-2004
|
83
|
+
E, [2023-10-04T16:04:45.405964 #629620] ERROR -- Kitchen: ----------------------
|
84
|
+
E, [2023-10-04T16:04:45.405999 #629620] ERROR -- Kitchen: ------Backtrace-------
|
85
|
+
E, [2023-10-04T16:04:45.406042 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/shell_out.rb:70:in `rescue in run_command'
|
86
|
+
E, [2023-10-04T16:04:45.406084 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/shell_out.rb:57:in `run_command'
|
87
|
+
E, [2023-10-04T16:04:45.406119 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/kitchen-vagrant-1.12.1/lib/kitchen/driver/vagrant.rb:484:in `run_command'
|
88
|
+
E, [2023-10-04T16:04:45.406153 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/kitchen-vagrant-1.12.1/lib/kitchen/driver/vagrant.rb:431:in `run'
|
89
|
+
E, [2023-10-04T16:04:45.406193 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/kitchen-vagrant-1.12.1/lib/kitchen/driver/vagrant.rb:535:in `run_vagrant_up'
|
90
|
+
E, [2023-10-04T16:04:45.406231 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/kitchen-vagrant-1.12.1/lib/kitchen/driver/vagrant.rb:119:in `create'
|
91
|
+
E, [2023-10-04T16:04:45.406264 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:495:in `public_send'
|
92
|
+
E, [2023-10-04T16:04:45.406296 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:495:in `block in perform_action'
|
93
|
+
E, [2023-10-04T16:04:45.406329 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:560:in `block in synchronize_or_call'
|
94
|
+
E, [2023-10-04T16:04:45.406378 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:558:in `synchronize'
|
95
|
+
E, [2023-10-04T16:04:45.406415 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:558:in `synchronize_or_call'
|
96
|
+
E, [2023-10-04T16:04:45.406454 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:524:in `block in action'
|
97
|
+
E, [2023-10-04T16:04:45.406489 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/3.0.0/benchmark.rb:293:in `measure'
|
98
|
+
E, [2023-10-04T16:04:45.406532 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:523:in `action'
|
99
|
+
E, [2023-10-04T16:04:45.406572 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:495:in `perform_action'
|
100
|
+
E, [2023-10-04T16:04:45.406610 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:404:in `create_action'
|
101
|
+
E, [2023-10-04T16:04:45.406646 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:392:in `block (2 levels) in transition_to'
|
102
|
+
E, [2023-10-04T16:04:45.406684 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/lifecycle_hooks.rb:47:in `run_with_hooks'
|
103
|
+
E, [2023-10-04T16:04:45.406722 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:391:in `block in transition_to'
|
104
|
+
E, [2023-10-04T16:04:45.406757 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:390:in `each'
|
105
|
+
E, [2023-10-04T16:04:45.406793 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:390:in `transition_to'
|
106
|
+
E, [2023-10-04T16:04:45.406835 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:161:in `verify'
|
107
|
+
E, [2023-10-04T16:04:45.406873 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:190:in `block in test'
|
108
|
+
E, [2023-10-04T16:04:45.406917 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/3.0.0/benchmark.rb:293:in `measure'
|
109
|
+
E, [2023-10-04T16:04:45.406957 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:186:in `test'
|
110
|
+
E, [2023-10-04T16:04:45.406993 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:195:in `public_send'
|
111
|
+
E, [2023-10-04T16:04:45.407026 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:195:in `run_action_in_thread'
|
112
|
+
E, [2023-10-04T16:04:45.407061 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:166:in `block (2 levels) in run_action'
|
113
|
+
E, [2023-10-04T16:04:45.407094 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/logging-2.3.1/lib/logging/diagnostic_context.rb:474:in `block in create_with_logging_context'
|
114
|
+
E, [2023-10-04T16:04:45.407132 #629620] ERROR -- Kitchen: ----End Backtrace-----
|
115
|
+
E, [2023-10-04T16:04:45.407165 #629620] ERROR -- Kitchen: ---Nested Exception---
|
116
|
+
E, [2023-10-04T16:04:45.407200 #629620] ERROR -- Kitchen: Class: Kitchen::ActionFailed
|
117
|
+
E, [2023-10-04T16:04:45.407238 #629620] ERROR -- Kitchen: Message: Failed to complete #create action: [Expected process to exit with [0], but received '1'
|
118
|
+
---- Begin output of vagrant up --no-provision --provider virtualbox ----
|
119
|
+
STDOUT: Bringing machine 'default' up with 'virtualbox' provider...
|
120
|
+
==> default: Importing base box 'bento/ubuntu-20.04'...
|
121
|
+
|
122
|
+
STDERR: There was an error while executing `VBoxManage`, a CLI used by Vagrant
|
123
|
+
for controlling VirtualBox. The command and stderr is shown below.
|
124
|
+
|
125
|
+
Command: ["import", "/home/jimboadmin/.vagrant.d/boxes/bento-VAGRANTSLASH-ubuntu-20.04/202206.03.0/virtualbox/box.ovf", "--vsys", "0", "--vmname", "ubuntu-20.04-amd64_1696449801155_14898", "--vsys", "0", "--unit", "11", "--disk", "/home/jimboadmin/VirtualBox VMs/ubuntu-20.04-amd64_1696449801155_14898/ubuntu-20.04-amd64-disk001.vmdk"]
|
126
|
+
|
127
|
+
Stderr: 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
|
128
|
+
Interpreting /home/jimboadmin/.vagrant.d/boxes/bento-VAGRANTSLASH-ubuntu-20.04/202206.03.0/virtualbox/box.ovf...
|
129
|
+
OK.
|
130
|
+
0%...
|
131
|
+
Progress state: NS_ERROR_INVALID_ARG
|
132
|
+
VBoxManage: error: Appliance import failed
|
133
|
+
VBoxManage: error: Code NS_ERROR_INVALID_ARG (0x80070057) - Invalid argument value (extended info not available)
|
134
|
+
VBoxManage: error: Context: "RTEXITCODE handleImportAppliance(HandlerArg*)" at line 1363 of file VBoxManageAppliance.cpp
|
135
|
+
---- End output of vagrant up --no-provision --provider virtualbox ----
|
136
|
+
Ran vagrant up --no-provision --provider virtualbox returned 1]
|
137
|
+
E, [2023-10-04T16:04:45.407275 #629620] ERROR -- Kitchen: ----------------------
|
138
|
+
E, [2023-10-04T16:04:45.407310 #629620] ERROR -- Kitchen: ------Backtrace-------
|
139
|
+
E, [2023-10-04T16:04:45.407349 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/shell_out.rb:70:in `rescue in run_command'
|
140
|
+
E, [2023-10-04T16:04:45.407389 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/shell_out.rb:57:in `run_command'
|
141
|
+
E, [2023-10-04T16:04:45.407432 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/kitchen-vagrant-1.12.1/lib/kitchen/driver/vagrant.rb:484:in `run_command'
|
142
|
+
E, [2023-10-04T16:04:45.407471 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/kitchen-vagrant-1.12.1/lib/kitchen/driver/vagrant.rb:431:in `run'
|
143
|
+
E, [2023-10-04T16:04:45.407509 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/kitchen-vagrant-1.12.1/lib/kitchen/driver/vagrant.rb:535:in `run_vagrant_up'
|
144
|
+
E, [2023-10-04T16:04:45.407548 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/kitchen-vagrant-1.12.1/lib/kitchen/driver/vagrant.rb:119:in `create'
|
145
|
+
E, [2023-10-04T16:04:45.407595 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:495:in `public_send'
|
146
|
+
E, [2023-10-04T16:04:45.407637 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:495:in `block in perform_action'
|
147
|
+
E, [2023-10-04T16:04:45.407679 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:560:in `block in synchronize_or_call'
|
148
|
+
E, [2023-10-04T16:04:45.407719 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:558:in `synchronize'
|
149
|
+
E, [2023-10-04T16:04:45.407759 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:558:in `synchronize_or_call'
|
150
|
+
E, [2023-10-04T16:04:45.407802 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:524:in `block in action'
|
151
|
+
E, [2023-10-04T16:04:45.407842 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/3.0.0/benchmark.rb:293:in `measure'
|
152
|
+
E, [2023-10-04T16:04:45.407878 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:523:in `action'
|
153
|
+
E, [2023-10-04T16:04:45.407918 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:495:in `perform_action'
|
154
|
+
E, [2023-10-04T16:04:45.407959 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:404:in `create_action'
|
155
|
+
E, [2023-10-04T16:04:45.408002 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:392:in `block (2 levels) in transition_to'
|
156
|
+
E, [2023-10-04T16:04:45.408043 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/lifecycle_hooks.rb:47:in `run_with_hooks'
|
157
|
+
E, [2023-10-04T16:04:45.408084 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:391:in `block in transition_to'
|
158
|
+
E, [2023-10-04T16:04:45.408121 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:390:in `each'
|
159
|
+
E, [2023-10-04T16:04:45.408161 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:390:in `transition_to'
|
160
|
+
E, [2023-10-04T16:04:45.408205 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:161:in `verify'
|
161
|
+
E, [2023-10-04T16:04:45.408242 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:190:in `block in test'
|
162
|
+
E, [2023-10-04T16:04:45.408695 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/3.0.0/benchmark.rb:293:in `measure'
|
163
|
+
E, [2023-10-04T16:04:45.408732 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:186:in `test'
|
164
|
+
E, [2023-10-04T16:04:45.408767 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:195:in `public_send'
|
165
|
+
E, [2023-10-04T16:04:45.408802 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:195:in `run_action_in_thread'
|
166
|
+
E, [2023-10-04T16:04:45.408837 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:166:in `block (2 levels) in run_action'
|
167
|
+
E, [2023-10-04T16:04:45.408872 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/logging-2.3.1/lib/logging/diagnostic_context.rb:474:in `block in create_with_logging_context'
|
168
|
+
E, [2023-10-04T16:04:45.408917 #629620] ERROR -- Kitchen: ----End Backtrace-----
|
169
|
+
E, [2023-10-04T16:04:45.408952 #629620] ERROR -- Kitchen: -Composite Exception--
|
170
|
+
E, [2023-10-04T16:04:45.408986 #629620] ERROR -- Kitchen: Class: Kitchen::ActionFailed
|
171
|
+
E, [2023-10-04T16:04:45.409020 #629620] ERROR -- Kitchen: Message: Failed to complete #converge action: [Expected process to exit with [0], but received '1'
|
172
|
+
---- Begin output of /opt/chef-workstation/bin/chef-cli install /home/jimboadmin/deploy-context/Policyfile.rb --chef-license accept ----
|
173
|
+
STDOUT: Installing cookbooks from lock
|
174
|
+
Installing deploy-context 0.1.0
|
175
|
+
STDERR: Error: Failed to install cookbooks from lockfile
|
176
|
+
Reason: (Chef::Exceptions::InvalidCookbookVersion) '2.1.35.3.g2abab85.16.g399fb24.8.gf51eaae.1.dirty.20231004.160445' does not match 'x.y.z' or 'x.y'
|
177
|
+
---- End output of /opt/chef-workstation/bin/chef-cli install /home/jimboadmin/deploy-context/Policyfile.rb --chef-license accept ----
|
178
|
+
Ran /opt/chef-workstation/bin/chef-cli install /home/jimboadmin/deploy-context/Policyfile.rb --chef-license accept returned 1] on default-centos-8
|
179
|
+
E, [2023-10-04T16:04:45.409055 #629620] ERROR -- Kitchen: ----------------------
|
180
|
+
E, [2023-10-04T16:04:45.409088 #629620] ERROR -- Kitchen: ------Backtrace-------
|
181
|
+
E, [2023-10-04T16:04:45.409122 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/shell_out.rb:70:in `rescue in run_command'
|
182
|
+
E, [2023-10-04T16:04:45.409370 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/shell_out.rb:57:in `run_command'
|
183
|
+
E, [2023-10-04T16:04:45.409435 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef/policyfile.rb:81:in `compile'
|
184
|
+
E, [2023-10-04T16:04:45.409474 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef/common_sandbox.rb:296:in `block in update_dna_for_policyfile'
|
185
|
+
E, [2023-10-04T16:04:45.409504 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef/common_sandbox.rb:295:in `synchronize'
|
186
|
+
E, [2023-10-04T16:04:45.409549 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef/common_sandbox.rb:295:in `update_dna_for_policyfile'
|
187
|
+
E, [2023-10-04T16:04:45.409576 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef/common_sandbox.rb:274:in `prepare_json'
|
188
|
+
E, [2023-10-04T16:04:45.409600 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef/common_sandbox.rb:45:in `populate'
|
189
|
+
E, [2023-10-04T16:04:45.409633 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef_base.rb:308:in `create_sandbox'
|
190
|
+
E, [2023-10-04T16:04:45.409658 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef_infra.rb:49:in `create_sandbox'
|
191
|
+
E, [2023-10-04T16:04:45.409694 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/base.rb:72:in `call'
|
192
|
+
E, [2023-10-04T16:04:45.409735 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:419:in `block in converge_action'
|
193
|
+
E, [2023-10-04T16:04:45.409778 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:563:in `synchronize_or_call'
|
194
|
+
E, [2023-10-04T16:04:45.409828 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:524:in `block in action'
|
195
|
+
E, [2023-10-04T16:04:45.409880 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/3.0.0/benchmark.rb:293:in `measure'
|
196
|
+
E, [2023-10-04T16:04:45.409923 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:523:in `action'
|
197
|
+
E, [2023-10-04T16:04:45.409967 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:414:in `converge_action'
|
198
|
+
E, [2023-10-04T16:04:45.410010 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:392:in `block (2 levels) in transition_to'
|
199
|
+
E, [2023-10-04T16:04:45.410048 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/lifecycle_hooks.rb:47:in `run_with_hooks'
|
200
|
+
E, [2023-10-04T16:04:45.410087 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:391:in `block in transition_to'
|
201
|
+
E, [2023-10-04T16:04:45.410127 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:390:in `each'
|
202
|
+
E, [2023-10-04T16:04:45.410173 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:390:in `transition_to'
|
203
|
+
E, [2023-10-04T16:04:45.410216 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:161:in `verify'
|
204
|
+
E, [2023-10-04T16:04:45.410257 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:190:in `block in test'
|
205
|
+
E, [2023-10-04T16:04:45.410301 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/3.0.0/benchmark.rb:293:in `measure'
|
206
|
+
E, [2023-10-04T16:04:45.410340 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:186:in `test'
|
207
|
+
E, [2023-10-04T16:04:45.410391 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:195:in `public_send'
|
208
|
+
E, [2023-10-04T16:04:45.410433 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:195:in `run_action_in_thread'
|
209
|
+
E, [2023-10-04T16:04:45.410472 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:166:in `block (2 levels) in run_action'
|
210
|
+
E, [2023-10-04T16:04:45.410518 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/logging-2.3.1/lib/logging/diagnostic_context.rb:474:in `block in create_with_logging_context'
|
211
|
+
E, [2023-10-04T16:04:45.410560 #629620] ERROR -- Kitchen: ----End Backtrace-----
|
212
|
+
E, [2023-10-04T16:04:45.410601 #629620] ERROR -- Kitchen: ---Nested Exception---
|
213
|
+
E, [2023-10-04T16:04:45.410639 #629620] ERROR -- Kitchen: Class: Kitchen::ActionFailed
|
214
|
+
E, [2023-10-04T16:04:45.410682 #629620] ERROR -- Kitchen: Message: Failed to complete #converge action: [Expected process to exit with [0], but received '1'
|
215
|
+
---- Begin output of /opt/chef-workstation/bin/chef-cli install /home/jimboadmin/deploy-context/Policyfile.rb --chef-license accept ----
|
216
|
+
STDOUT: Installing cookbooks from lock
|
217
|
+
Installing deploy-context 0.1.0
|
218
|
+
STDERR: Error: Failed to install cookbooks from lockfile
|
219
|
+
Reason: (Chef::Exceptions::InvalidCookbookVersion) '2.1.35.3.g2abab85.16.g399fb24.8.gf51eaae.1.dirty.20231004.160445' does not match 'x.y.z' or 'x.y'
|
220
|
+
---- End output of /opt/chef-workstation/bin/chef-cli install /home/jimboadmin/deploy-context/Policyfile.rb --chef-license accept ----
|
221
|
+
Ran /opt/chef-workstation/bin/chef-cli install /home/jimboadmin/deploy-context/Policyfile.rb --chef-license accept returned 1]
|
222
|
+
E, [2023-10-04T16:04:45.410725 #629620] ERROR -- Kitchen: ----------------------
|
223
|
+
E, [2023-10-04T16:04:45.410770 #629620] ERROR -- Kitchen: ------Backtrace-------
|
224
|
+
E, [2023-10-04T16:04:45.410818 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/shell_out.rb:70:in `rescue in run_command'
|
225
|
+
E, [2023-10-04T16:04:45.410864 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/shell_out.rb:57:in `run_command'
|
226
|
+
E, [2023-10-04T16:04:45.410907 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef/policyfile.rb:81:in `compile'
|
227
|
+
E, [2023-10-04T16:04:45.410949 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef/common_sandbox.rb:296:in `block in update_dna_for_policyfile'
|
228
|
+
E, [2023-10-04T16:04:45.410989 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef/common_sandbox.rb:295:in `synchronize'
|
229
|
+
E, [2023-10-04T16:04:45.411029 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef/common_sandbox.rb:295:in `update_dna_for_policyfile'
|
230
|
+
E, [2023-10-04T16:04:45.411070 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef/common_sandbox.rb:274:in `prepare_json'
|
231
|
+
E, [2023-10-04T16:04:45.411111 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef/common_sandbox.rb:45:in `populate'
|
232
|
+
E, [2023-10-04T16:04:45.411153 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef_base.rb:308:in `create_sandbox'
|
233
|
+
E, [2023-10-04T16:04:45.411198 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/chef_infra.rb:49:in `create_sandbox'
|
234
|
+
E, [2023-10-04T16:04:45.411239 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/provisioner/base.rb:72:in `call'
|
235
|
+
E, [2023-10-04T16:04:45.411282 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:419:in `block in converge_action'
|
236
|
+
E, [2023-10-04T16:04:45.411326 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:563:in `synchronize_or_call'
|
237
|
+
E, [2023-10-04T16:04:45.411369 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:524:in `block in action'
|
238
|
+
E, [2023-10-04T16:04:45.411412 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/3.0.0/benchmark.rb:293:in `measure'
|
239
|
+
E, [2023-10-04T16:04:45.411451 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:523:in `action'
|
240
|
+
E, [2023-10-04T16:04:45.411494 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:414:in `converge_action'
|
241
|
+
E, [2023-10-04T16:04:45.411539 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:392:in `block (2 levels) in transition_to'
|
242
|
+
E, [2023-10-04T16:04:45.411581 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/lifecycle_hooks.rb:47:in `run_with_hooks'
|
243
|
+
E, [2023-10-04T16:04:45.411623 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:391:in `block in transition_to'
|
244
|
+
E, [2023-10-04T16:04:45.411666 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:390:in `each'
|
245
|
+
E, [2023-10-04T16:04:45.411709 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:390:in `transition_to'
|
246
|
+
E, [2023-10-04T16:04:45.411757 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:161:in `verify'
|
247
|
+
E, [2023-10-04T16:04:45.411800 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:190:in `block in test'
|
248
|
+
E, [2023-10-04T16:04:45.411869 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/3.0.0/benchmark.rb:293:in `measure'
|
249
|
+
E, [2023-10-04T16:04:45.411912 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/instance.rb:186:in `test'
|
250
|
+
E, [2023-10-04T16:04:45.411957 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:195:in `public_send'
|
251
|
+
E, [2023-10-04T16:04:45.411999 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:195:in `run_action_in_thread'
|
252
|
+
E, [2023-10-04T16:04:45.412042 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/test-kitchen-3.3.2/lib/kitchen/command.rb:166:in `block (2 levels) in run_action'
|
253
|
+
E, [2023-10-04T16:04:45.412104 #629620] ERROR -- Kitchen: /opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/logging-2.3.1/lib/logging/diagnostic_context.rb:474:in `block in create_with_logging_context'
|
254
|
+
E, [2023-10-04T16:04:45.412139 #629620] ERROR -- Kitchen: ----End Backtrace-----
|
data/CHANGELOG.md
ADDED
data/Policyfile.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# Policyfile.rb - Describe how you want Chef Infra Client to build your system.
|
2
|
+
#
|
3
|
+
# For more information on the Policyfile feature, visit
|
4
|
+
# https://docs.chef.io/policyfile/
|
5
|
+
|
6
|
+
# A name that describes what the system you're building with Chef does.
|
7
|
+
name 'deploy-context'
|
8
|
+
|
9
|
+
# Where to find external cookbooks:
|
10
|
+
default_source :supermarket
|
11
|
+
|
12
|
+
# run_list: chef-client will run these recipes in the order specified.
|
13
|
+
run_list 'deploy-context::default'
|
14
|
+
|
15
|
+
# Specify a custom source for a single cookbook:
|
16
|
+
cookbook 'deploy-context', path: '.'
|
data/Rakefile
CHANGED
data/chefignore
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
# Put files/directories that should be ignored in this file when uploading
|
2
|
+
# to a Chef Infra Server or Supermarket.
|
3
|
+
# Lines that start with '# ' are comments.
|
4
|
+
|
5
|
+
# OS generated files #
|
6
|
+
######################
|
7
|
+
.DS_Store
|
8
|
+
ehthumbs.db
|
9
|
+
Icon?
|
10
|
+
nohup.out
|
11
|
+
Thumbs.db
|
12
|
+
.envrc
|
13
|
+
|
14
|
+
# EDITORS #
|
15
|
+
###########
|
16
|
+
.#*
|
17
|
+
.project
|
18
|
+
.settings
|
19
|
+
*_flymake
|
20
|
+
*_flymake.*
|
21
|
+
*.bak
|
22
|
+
*.sw[a-z]
|
23
|
+
*.tmproj
|
24
|
+
*~
|
25
|
+
\#*
|
26
|
+
REVISION
|
27
|
+
TAGS*
|
28
|
+
tmtags
|
29
|
+
.vscode
|
30
|
+
.editorconfig
|
31
|
+
|
32
|
+
## COMPILED ##
|
33
|
+
##############
|
34
|
+
*.class
|
35
|
+
*.com
|
36
|
+
*.dll
|
37
|
+
*.exe
|
38
|
+
*.o
|
39
|
+
*.pyc
|
40
|
+
*.so
|
41
|
+
*/rdoc/
|
42
|
+
a.out
|
43
|
+
mkmf.log
|
44
|
+
|
45
|
+
# Testing #
|
46
|
+
###########
|
47
|
+
.circleci/*
|
48
|
+
.codeclimate.yml
|
49
|
+
.delivery/*
|
50
|
+
.foodcritic
|
51
|
+
.kitchen*
|
52
|
+
.mdlrc
|
53
|
+
.overcommit.yml
|
54
|
+
.rspec
|
55
|
+
.rubocop.yml
|
56
|
+
.travis.yml
|
57
|
+
.watchr
|
58
|
+
.yamllint
|
59
|
+
azure-pipelines.yml
|
60
|
+
Dangerfile
|
61
|
+
examples/*
|
62
|
+
features/*
|
63
|
+
Guardfile
|
64
|
+
kitchen.yml*
|
65
|
+
mlc_config.json
|
66
|
+
Procfile
|
67
|
+
Rakefile
|
68
|
+
spec/*
|
69
|
+
test/*
|
70
|
+
|
71
|
+
# SCM #
|
72
|
+
#######
|
73
|
+
.git
|
74
|
+
.gitattributes
|
75
|
+
.gitconfig
|
76
|
+
.github/*
|
77
|
+
.gitignore
|
78
|
+
.gitkeep
|
79
|
+
.gitmodules
|
80
|
+
.svn
|
81
|
+
*/.bzr/*
|
82
|
+
*/.git
|
83
|
+
*/.hg/*
|
84
|
+
*/.svn/*
|
85
|
+
|
86
|
+
# Berkshelf #
|
87
|
+
#############
|
88
|
+
Berksfile
|
89
|
+
Berksfile.lock
|
90
|
+
cookbooks/*
|
91
|
+
tmp
|
92
|
+
|
93
|
+
# Bundler #
|
94
|
+
###########
|
95
|
+
vendor/*
|
96
|
+
Gemfile
|
97
|
+
Gemfile.lock
|
98
|
+
|
99
|
+
# Policyfile #
|
100
|
+
##############
|
101
|
+
Policyfile.rb
|
102
|
+
Policyfile.lock.json
|
103
|
+
|
104
|
+
# Documentation #
|
105
|
+
#############
|
106
|
+
CODE_OF_CONDUCT*
|
107
|
+
CONTRIBUTING*
|
108
|
+
documentation/*
|
109
|
+
TESTING*
|
110
|
+
UPGRADING*
|
111
|
+
|
112
|
+
# Vagrant #
|
113
|
+
###########
|
114
|
+
.vagrant
|
115
|
+
Vagrantfile
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# compliance
|
2
|
+
|
3
|
+
This directory contains Chef InSpec profile, waiver and input objects which are used with the Chef Infra Compliance Phase.
|
4
|
+
|
5
|
+
Detailed information on the Chef Infra Compliance Phase can be found in the [Chef Documentation](https://docs.chef.io/chef_compliance_phase/).
|
6
|
+
|
7
|
+
```plain
|
8
|
+
./compliance
|
9
|
+
├── inputs
|
10
|
+
├── profiles
|
11
|
+
└── waivers
|
12
|
+
```
|
13
|
+
|
14
|
+
Use the `chef generate` command from Chef Workstation to create content for these directories:
|
15
|
+
|
16
|
+
```sh
|
17
|
+
# Generate a Chef InSpec profile
|
18
|
+
chef generate profile PROFILE_NAME
|
19
|
+
|
20
|
+
# Generate a Chef InSpec waiver file
|
21
|
+
chef generate waiver WAIVER_NAME
|
22
|
+
|
23
|
+
# Generate a Chef InSpec input file
|
24
|
+
chef generate input INPUT_NAME
|
25
|
+
```
|
@@ -1,2 +1,2 @@
|
|
1
1
|
|
2
|
-
require_relative '../../
|
2
|
+
require_relative '../../libraries/deploy-context/step_definitions/deploy-context'
|
data/features/support/env.rb
CHANGED
data/kitchen.yml
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
---
|
2
|
+
driver:
|
3
|
+
name: vagrant
|
4
|
+
|
5
|
+
## The forwarded_port port feature lets you connect to ports on the VM guest
|
6
|
+
## via localhost on the host.
|
7
|
+
## see also: https://www.vagrantup.com/docs/networking/forwarded_ports
|
8
|
+
|
9
|
+
# network:
|
10
|
+
# - ["forwarded_port", {guest: 80, host: 8080}]
|
11
|
+
|
12
|
+
provisioner:
|
13
|
+
name: chef_zero
|
14
|
+
|
15
|
+
## product_name and product_version specifies a specific Chef product and version to install.
|
16
|
+
## see the Chef documentation for more details: https://docs.chef.io/workstation/config_yml_kitchen/
|
17
|
+
# product_name: chef
|
18
|
+
# product_version: 17
|
19
|
+
|
20
|
+
verifier:
|
21
|
+
name: inspec
|
22
|
+
|
23
|
+
platforms:
|
24
|
+
- name: ubuntu-20.04
|
25
|
+
- name: centos-8
|
26
|
+
|
27
|
+
suites:
|
28
|
+
- name: default
|
29
|
+
verifier:
|
30
|
+
inspec_tests:
|
31
|
+
- test/integration/default
|
@@ -10,11 +10,12 @@ module Context
|
|
10
10
|
end
|
11
11
|
|
12
12
|
def chef_generate(context, commands)
|
13
|
+
context.log("\n\nGenerating Chef components with command #{commands}")
|
13
14
|
context.chef(context, %w(generate) + commands)
|
14
15
|
end
|
15
16
|
|
16
|
-
def generate_cookbook(context,
|
17
|
-
context.
|
17
|
+
def generate_cookbook(context, cookbookname)
|
18
|
+
context.chef_generate(context, %w(cookbook) + cookbookname)
|
18
19
|
end
|
19
20
|
|
20
21
|
def kitchen(context, commands = %w(test))
|
@@ -30,9 +31,17 @@ module Context
|
|
30
31
|
end
|
31
32
|
|
32
33
|
def cookbook_test(context)
|
33
|
-
context
|
34
|
+
cookbook_build(context)
|
35
|
+
context.log "\n\nExecuting kitchen in folder #{Dir.pwd}\nAnd context #{context.context_name} is created in folder #{context.context_folder} at version #{context.version}"
|
36
|
+
context.chef(context, %w(install))
|
34
37
|
context.kitchen(context)
|
35
38
|
end
|
39
|
+
|
40
|
+
def cookbook_push(context)
|
41
|
+
cookbook_build(context)
|
42
|
+
context.log "\n\nPushing cookbook in folder #{Dir.pwd}\nAnd context #{context.context_name} is created in folder #{context.context_folder} at version #{context.version}"
|
43
|
+
context.chef(context, %w(push))
|
44
|
+
end
|
36
45
|
end
|
37
46
|
end
|
38
47
|
end
|
@@ -43,15 +43,14 @@ module Context
|
|
43
43
|
true
|
44
44
|
when 'test'
|
45
45
|
context.log "\nExecute tests\n"
|
46
|
-
context.
|
47
|
-
true
|
46
|
+
context.test_context_successful?
|
48
47
|
when 'reset'
|
49
48
|
context.log "\nReset versionning\n"
|
50
49
|
system('rake')
|
51
50
|
# context.cucumber_test(deployer)
|
52
51
|
true
|
53
52
|
else
|
54
|
-
context.
|
53
|
+
context.error_log context.context_name, "Unknown setting #{action}"
|
55
54
|
false
|
56
55
|
end
|
57
56
|
end
|
@@ -59,7 +58,7 @@ module Context
|
|
59
58
|
if state_action
|
60
59
|
context.log "Action #{action} executed correctly in context #{context}"
|
61
60
|
else
|
62
|
-
context.
|
61
|
+
context.error_log(context.context_name, "Failed to execute action #{action} in context #{context}")
|
63
62
|
end
|
64
63
|
end
|
65
64
|
end
|
@@ -10,6 +10,7 @@ module Context
|
|
10
10
|
Dir.chdir(context.context_folder)
|
11
11
|
context.git_pull(context)
|
12
12
|
else
|
13
|
+
context.error_log context.context_name, "Cloning from source in #{Dir.pwd}"
|
13
14
|
local_dir = File.join(Dir.pwd, context.context_name)
|
14
15
|
context.git context, ["clone git@github.com:JimboDragonGit/#{context.context_name}.git"] unless ::Dir.exist?(local_dir)
|
15
16
|
context.move_folder(local_dir)
|
@@ -46,11 +46,13 @@ module Context
|
|
46
46
|
def test_context_successful?
|
47
47
|
log "Check if #{context_name} is install #{version}"
|
48
48
|
if gem_installed?(self)
|
49
|
-
|
50
|
-
|
49
|
+
log "Test context #{context_name} was successfully install on version #{version}"
|
50
|
+
true
|
51
51
|
else
|
52
|
-
|
52
|
+
log "Test context #{context_name} has failed to install #{version}"
|
53
|
+
false
|
53
54
|
end
|
55
|
+
cookbook_test(self)
|
54
56
|
end
|
55
57
|
|
56
58
|
def build
|
@@ -64,7 +66,8 @@ module Context
|
|
64
66
|
end
|
65
67
|
|
66
68
|
def release
|
67
|
-
|
69
|
+
log "\n\nRelease #{context_name} at version #{version}"
|
70
|
+
cookbook_push(self)
|
68
71
|
ruby_release(self)
|
69
72
|
git_release(self)
|
70
73
|
end
|
data/metadata.rb
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
|
2
|
+
require 'git-version-bump'
|
3
|
+
|
4
|
+
name 'deploy-context'
|
5
|
+
maintainer 'Jimmy Provencher'
|
6
|
+
maintainer_email 'jimmy.provencher@hotmail.ca'
|
7
|
+
license 'All Rights Reserved'
|
8
|
+
description 'Installs/Configures deploy-context'
|
9
|
+
version GVB.version
|
10
|
+
chef_version '>= 16.0'
|
11
|
+
|
12
|
+
# The `issues_url` points to the location where issues for this cookbook are
|
13
|
+
# tracked. A `View Issues` link will be displayed on this cookbook's page when
|
14
|
+
# uploaded to a Supermarket.
|
15
|
+
#
|
16
|
+
# issues_url 'https://github.com/<insert_org_here>/deploy-context/issues'
|
17
|
+
|
18
|
+
# The `source_url` points to the development repository for this cookbook. A
|
19
|
+
# `View Source` link will be displayed on this cookbook's page when uploaded to
|
20
|
+
# a Supermarket.
|
21
|
+
#
|
22
|
+
# source_url 'https://github.com/<insert_org_here>/deploy-context'
|
data/recipes/default.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# Chef InSpec test for recipe deploy-context::default
|
2
|
+
|
3
|
+
# The Chef InSpec reference, with examples and extensive documentation, can be
|
4
|
+
# found at https://docs.chef.io/inspec/resources/
|
5
|
+
|
6
|
+
unless os.windows?
|
7
|
+
# This is an example test, replace with your own test.
|
8
|
+
describe user('root'), :skip do
|
9
|
+
it { should exist }
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
# This is an example test, replace it with your own test.
|
14
|
+
describe port(80), :skip do
|
15
|
+
it { should_not be_listening }
|
16
|
+
end
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deploy-context
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.35.3.g2abab85
|
4
|
+
version: 2.1.35.3.g2abab85.16.g399fb24.9.g1523b69
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jimmy Provencher
|
@@ -92,11 +92,15 @@ extra_rdoc_files:
|
|
92
92
|
files:
|
93
93
|
- ".gitignore"
|
94
94
|
- ".kitchen/logs/kitchen.log"
|
95
|
+
- CHANGELOG.md
|
95
96
|
- Gemfile
|
96
97
|
- LICENSE
|
98
|
+
- Policyfile.rb
|
97
99
|
- README.md
|
98
100
|
- Rakefile
|
99
101
|
- bin/deploy-context
|
102
|
+
- chefignore
|
103
|
+
- compliance/README.md
|
100
104
|
- deploy-context.feature.disable
|
101
105
|
- deploy-context.gemspec
|
102
106
|
- deploy-context.old
|
@@ -105,18 +109,22 @@ files:
|
|
105
109
|
- features/support/env.rb
|
106
110
|
- features/update_deployer.feature
|
107
111
|
- features/updated_git.feature
|
108
|
-
-
|
109
|
-
-
|
110
|
-
-
|
111
|
-
-
|
112
|
-
-
|
113
|
-
-
|
114
|
-
-
|
115
|
-
-
|
116
|
-
-
|
117
|
-
-
|
118
|
-
-
|
119
|
-
-
|
112
|
+
- kitchen.yml
|
113
|
+
- libraries/context-manager.rb
|
114
|
+
- libraries/deploy-context.rb
|
115
|
+
- libraries/deploy-context/deploy.rb
|
116
|
+
- libraries/deploy-context/deploy/cookbook.rb
|
117
|
+
- libraries/deploy-context/deploy/cucumber.rb
|
118
|
+
- libraries/deploy-context/deploy/deployer.rb
|
119
|
+
- libraries/deploy-context/deploy/git.rb
|
120
|
+
- libraries/deploy-context/deploy/ruby.rb
|
121
|
+
- libraries/deploy-context/helpers/binary.rb
|
122
|
+
- libraries/deploy-context/helpers/command.rb
|
123
|
+
- libraries/deploy-context/helpers/rake_tasks.rb
|
124
|
+
- libraries/deploy-context/step_definitions/deploy-context.rb
|
125
|
+
- metadata.rb
|
126
|
+
- recipes/default.rb
|
127
|
+
- test/integration/default/default_test.rb
|
120
128
|
homepage: https://github.com/JimboDragonGit/deploy-context
|
121
129
|
licenses:
|
122
130
|
- MIT
|
metadata.gz.sig
CHANGED
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|