vcoworkflows-ruby2 0.2.3
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 +7 -0
- data/.coveralls.yml +1 -0
- data/.gitignore +20 -0
- data/.rubocop.yml +14 -0
- data/.travis.yml +3 -0
- data/CHANGELOG.md +72 -0
- data/Gemfile +4 -0
- data/Guardfile +41 -0
- data/LICENSE.txt +203 -0
- data/README.md +399 -0
- data/Rakefile +21 -0
- data/bin/vcoworkflows +7 -0
- data/example.rb +46 -0
- data/lib/vcoworkflows.rb +33 -0
- data/lib/vcoworkflows/cli/execute.rb +109 -0
- data/lib/vcoworkflows/cli/query.rb +106 -0
- data/lib/vcoworkflows/config.rb +91 -0
- data/lib/vcoworkflows/constants.rb +94 -0
- data/lib/vcoworkflows/runner.rb +44 -0
- data/lib/vcoworkflows/vcosession.rb +71 -0
- data/lib/vcoworkflows/version.rb +5 -0
- data/lib/vcoworkflows/workflow.rb +395 -0
- data/lib/vcoworkflows/workflowexecutionlog.rb +42 -0
- data/lib/vcoworkflows/workflowparameter.rb +150 -0
- data/lib/vcoworkflows/workflowpresentation.rb +62 -0
- data/lib/vcoworkflows/workflowservice.rb +109 -0
- data/lib/vcoworkflows/workflowtoken.rb +154 -0
- data/spec/spec_helper.rb +4 -0
- data/spec/vcoworkflows/config_spec.rb +57 -0
- data/spec/vcoworkflows/vcosession_spec.rb +53 -0
- data/spec/vcoworkflows/workflow_spec.rb +197 -0
- data/spec/vcoworkflows/workflowexecutionlog_spec.rb +22 -0
- data/spec/vcoworkflows/workflowparameter_spec.rb +68 -0
- data/spec/vcoworkflows/workflowpresentation_spec.rb +34 -0
- data/spec/vcoworkflows/workflowservice_spec.rb +114 -0
- data/spec/vcoworkflows/workflowtoken_spec.rb +65 -0
- data/vcoworkflows-ruby2.gemspec +41 -0
- metadata +285 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 05372530bb745d8e1581144a12bf57a6731724cb
|
4
|
+
data.tar.gz: a982a561f6a140f669e4ef55f56c21804db41463
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bb1a7f9789c4db58f45acdf2a9afb92265d1faa11255bdf3bf3f8801d14934e7002e117f26c5863ad3b1392871679174a11e483bae4fd0d324cf0ba676d45a42
|
7
|
+
data.tar.gz: 1fae4b0fa60876415a61a78741abc6c617d977e04b1a8caeca404fd1608d6f719ea7076c317831f2fde42335a1cf67cac719a10fa8f12840f92920ac3583891f
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
service_name: travis-ci
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
data/.travis.yml
ADDED
data/CHANGELOG.md
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
vcoworkflows CHANGELOG
|
2
|
+
================
|
3
|
+
|
4
|
+
## 0.2.1
|
5
|
+
|
6
|
+
- Update README with configuration file instructions
|
7
|
+
|
8
|
+
## 0.2.0
|
9
|
+
|
10
|
+
- Removes `VcoWorkflows::Cli::Auth`
|
11
|
+
- Slightly breaks the behavior of `VcoWorkflows::VcoSession` from v0.1.x; all parameters for `VcoWorkflows::VcoSession.new()` are optional now, and if none are given, an attempt to load configuration from the default configuration file (currently `${HOME}/.vcoworkflows/config.json`) will be made.
|
12
|
+
- Added `config` and `config_file` options to `VcoWorkflows::Workflow.new`. If only name is specified, attempt to grab configuration from `${HOME}/.vcoworkflows/config.json`
|
13
|
+
|
14
|
+
## 0.1.4
|
15
|
+
|
16
|
+
## 0.1.3
|
17
|
+
|
18
|
+
### Third Time's the Charm
|
19
|
+
|
20
|
+
General cleanup and spit-polish. There are still a few rough spots that'll take some elbow grease, but at least all the parts are in the tin.
|
21
|
+
|
22
|
+
- Update gem spec and documentation to reflect the repo being transferred to [activenetwork-automation](https://github.com/activenetwork-automation)
|
23
|
+
- Set a minimum Ruby version (`>= 2.0`) for the gem (fixes [#9](https://github.com/activenetwork-automation/vcoworkflows/issues/9))
|
24
|
+
- Fix Coveralls integration for CI ([#7](https://github.com/activenetwork-automation/vcoworkflows/issues/7))
|
25
|
+
- Deprecate `Workflow#set_parameter` and `Workflow#get_parameter`, as they're not very Ruby-ish, and if we're going to do things, we might as well do things right. I think this might be more right-ish than before. Anyway, they're deprecated in favor of:
|
26
|
+
- `Workflow#parameter` - Set an input parameter using name and value:
|
27
|
+
```ruby
|
28
|
+
workflow.parameter('foo', 'bar')
|
29
|
+
```
|
30
|
+
|
31
|
+
- `Workflow#parameter=` - Set an input parameter using a WorkflowParameter object:
|
32
|
+
```ruby
|
33
|
+
workflow.parameter = VcoWorkflows::WorkflowParameter.new('my_parameter',
|
34
|
+
'string',
|
35
|
+
value: 'foo')
|
36
|
+
```
|
37
|
+
|
38
|
+
- `Workflow#parameter?` - Determine if an input parameter is set.
|
39
|
+
```ruby
|
40
|
+
workflow.parameter? 'foo'
|
41
|
+
```
|
42
|
+
|
43
|
+
- Add `Workflow#parameters=` to set all input parameters using a hash, instead of having to set parameter values individually. Basically, `Workflow` will do the work instead of making you do it. (Resolves [#3](https://github.com/activenetwork-automation/vcoworkflows/issues/3))
|
44
|
+
```ruby
|
45
|
+
input_parameters = { 'name' => 'a string value',
|
46
|
+
'version' => '2',
|
47
|
+
'words' => %w(fe fi fo fum) }
|
48
|
+
workflow.parameters = input_parameters
|
49
|
+
```
|
50
|
+
|
51
|
+
- Added `Guardfile` to aid in development. See what you break as you break it! `rspec`, `rubocop` and `yard` will do their things, until you make them stop.
|
52
|
+
- Speaking of `rspec`, replaced lots of repetitive typing with a loop, because I'm *smart* like that.
|
53
|
+
- More fixes and updates to documentation.
|
54
|
+
- Pull my username out of some of the examples. *Embarrasing...* At least I didn't commit any passwords (yet).
|
55
|
+
|
56
|
+
## 0.1.2
|
57
|
+
|
58
|
+
- Fix lots of documentation typos
|
59
|
+
|
60
|
+
## 0.1.1
|
61
|
+
|
62
|
+
- Releases are scary.
|
63
|
+
|
64
|
+
## 0.1.0
|
65
|
+
|
66
|
+
* Initial setup of gem framework.
|
67
|
+
|
68
|
+
*note, at this point the guard implementation throws errors when running. Not sure what the cause is...
|
69
|
+
|
70
|
+
|
71
|
+
Check the [Markdown Syntax Guide](http://daringfireball.net/projects/markdown/syntax) for help with Markdown.
|
72
|
+
The [Github Flavored Markdown page](http://github.github.com/github-flavored-markdown/) describes the differences between markdown on github and standard markdown.
|
data/Gemfile
ADDED
data/Guardfile
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
notification :growl, sticky:true
|
2
|
+
|
3
|
+
# Note: The cmd option is now required due to the increasing number of ways
|
4
|
+
# rspec may be run, below are examples of the most common uses.
|
5
|
+
# * bundler: 'bundle exec rspec'
|
6
|
+
# * bundler binstubs: 'bin/rspec'
|
7
|
+
# * spring: 'bin/rspec' (This will use spring if running and you have
|
8
|
+
# installed the spring binstubs per the docs)
|
9
|
+
# * zeus: 'zeus rspec' (requires the server to be started separately)
|
10
|
+
# * 'just' rspec: 'rspec'
|
11
|
+
|
12
|
+
guard :rubocop do
|
13
|
+
watch(%r{.+\.rb$})
|
14
|
+
watch(%r{bin/.+\.rb$})
|
15
|
+
watch(%r{lib/vcoworkflows/.+\.rb$})
|
16
|
+
watch(%r{spec/.+\.rb$})
|
17
|
+
watch(%r{spec/vcoworkflows/.+_spec\.rb$})
|
18
|
+
watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.direname(m[0]) }
|
19
|
+
end
|
20
|
+
|
21
|
+
guard :rspec, cmd: "bundle exec rspec" do
|
22
|
+
require "guard/rspec/dsl"
|
23
|
+
dsl = Guard::RSpec::Dsl.new(self)
|
24
|
+
|
25
|
+
# Feel free to open issues for suggestions and improvements
|
26
|
+
|
27
|
+
# RSpec files
|
28
|
+
rspec = dsl.rspec
|
29
|
+
watch(rspec.spec_helper) { rspec.spec_dir }
|
30
|
+
watch(rspec.spec_support) { rspec.spec_dir }
|
31
|
+
watch(rspec.spec_files)
|
32
|
+
|
33
|
+
# Ruby files
|
34
|
+
ruby = dsl.ruby
|
35
|
+
dsl.watch_spec_files_for(ruby.lib_files)
|
36
|
+
end
|
37
|
+
|
38
|
+
guard 'yard' do
|
39
|
+
watch(%r{bin/.+\.rb})
|
40
|
+
watch(%r{lib/.+\.rb})
|
41
|
+
end
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,203 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright 2014
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
203
|
+
-
|
data/README.md
ADDED
@@ -0,0 +1,399 @@
|
|
1
|
+
[][travis]
|
2
|
+
[][coveralls]
|
3
|
+
[][inch]
|
4
|
+
|
5
|
+
[travis]: http://travis-ci.org/wintermeyer/vcoworkflows-ruby2
|
6
|
+
[gemnasium]: https://gemnasium.com/wintermeyer/vcoworkflows-ruby2
|
7
|
+
[coveralls]: https://coveralls.io/r/wintermeyer/vcoworkflows-ruby2
|
8
|
+
[inch]: http://inch-ci.org/github/wintermeyer/vcoworkflows-ruby2
|
9
|
+
|
10
|
+
# Vcoworkflows
|
11
|
+
|
12
|
+
> **Warning:**
|
13
|
+
> This is a Fork of the [vcoworkflows gem](https://github.com/wintermeyer/vcoworkflows-ruby2)
|
14
|
+
> to make it compatible to ruby 2.0.0. We don't guarantee that this repo will work for any other
|
15
|
+
> ruby versions. So if you don't need ruby 2.0.0 support, please use the original gem.
|
16
|
+
|
17
|
+
`vcoworkflows` provides a Ruby API for finding and executing vCenter
|
18
|
+
Orchestrator workflows. You can search for a workflow either by name or
|
19
|
+
by GUID, populate the resulting `VcoWorkflows::Workflow` object's
|
20
|
+
input parameters with the required values, and then request that the
|
21
|
+
the configured workflow be executed by vCenter Orchestrator.
|
22
|
+
|
23
|
+
Under the hood, communcations with vCenter Orchestrator is done via its
|
24
|
+
REST API, and all the REST heavy-lifting here is done by the fine and reliable
|
25
|
+
[`rest-client`](https://rubygems.org/gems/rest-client) gem. HTTP Basic
|
26
|
+
authentication is used with vCenter Orchestrator, and the username and
|
27
|
+
password can either be passed as command-line arguments or set as environment
|
28
|
+
variables (`$VCO_USER` and `$VCO_PASSWD`).
|
29
|
+
|
30
|
+
## Requirements
|
31
|
+
|
32
|
+
- [rest-client](https://github.com/rest-client/rest-client) is used for all the
|
33
|
+
communications with vCenter Orchestrator.
|
34
|
+
- [thor](http://whatisthor.com) is used for the command-line utilities.
|
35
|
+
|
36
|
+
The only external dependency is vCenter Orchestrator.
|
37
|
+
|
38
|
+
## Installation
|
39
|
+
|
40
|
+
`vcoworkflows` is distributed as a ruby gem.
|
41
|
+
|
42
|
+
Add this line to your application's Gemfile:
|
43
|
+
|
44
|
+
```ruby
|
45
|
+
gem 'vcoworkflows', github: 'wintermeyer/vcoworkflows-ruby2'
|
46
|
+
```
|
47
|
+
|
48
|
+
And then execute:
|
49
|
+
|
50
|
+
$ bundle
|
51
|
+
|
52
|
+
Or install it yourself as:
|
53
|
+
|
54
|
+
$ gem install vcoworkflows
|
55
|
+
|
56
|
+
## Usage
|
57
|
+
|
58
|
+
Quick example:
|
59
|
+
|
60
|
+
```ruby
|
61
|
+
require 'vcoworkflows'
|
62
|
+
workflow = VcoWorkflows::Workflow.new(
|
63
|
+
'Request Component',
|
64
|
+
url: 'https://vco.example.com:8281/',
|
65
|
+
username: 'jdoe',
|
66
|
+
password: 's3cr3t'
|
67
|
+
)
|
68
|
+
```
|
69
|
+
|
70
|
+
All the necessary interactions with a Workflow in vCenter Orchestrator are
|
71
|
+
available via the [`VcoWorkflows::Workflow`](lib/vcoworkflows/Workflow.rb)
|
72
|
+
class.
|
73
|
+
|
74
|
+
### Configuration
|
75
|
+
|
76
|
+
#### Configuration File
|
77
|
+
|
78
|
+
The configuration file format is a simple JSON document with the following keys:
|
79
|
+
|
80
|
+
- `url` - (*Required*) The vCO server URL (i.e., 'https://vco.example.com:8281/')
|
81
|
+
- `username` - (*Optional*) User to authenticate as. Likely in the form
|
82
|
+
`DOMAIN\\username` (be sure to escape backslashes). If not present, this can
|
83
|
+
be provided via the command-line parameter `--username` or by setting
|
84
|
+
`$VCO_USER` in the environment.
|
85
|
+
- `password` - (*Optional*) Password to authenticate with. If not present, this
|
86
|
+
can be provided via the command-line parameter `--password` or by setting
|
87
|
+
`$VCO_PASSWD` in the environment.
|
88
|
+
- `verify_ssl` - (*Optional*) Whether to perform TLS/SSL certificate validation.
|
89
|
+
Defaults to `true`.
|
90
|
+
|
91
|
+
An example configuration file, then, would look like:
|
92
|
+
|
93
|
+
```json
|
94
|
+
{
|
95
|
+
"verify_ssl": true,
|
96
|
+
"password": "s3cr3t",
|
97
|
+
"username": "EXAMPLE\\jdoe",
|
98
|
+
"url": "https://vco.example.com:8281/"
|
99
|
+
}
|
100
|
+
```
|
101
|
+
|
102
|
+
If `url`, `username` and `password` are not provided when created a new
|
103
|
+
`Workflow` object, `VcoWorkflows` will look for a configuration file at:
|
104
|
+
|
105
|
+
```shell
|
106
|
+
${HOME}/.vcoworkflows/config.json
|
107
|
+
```
|
108
|
+
|
109
|
+
Alternately, you can specify a different configuration file when constructing
|
110
|
+
the `Workflow` object:
|
111
|
+
|
112
|
+
```ruby
|
113
|
+
workflow = VcoWorkflows::Workflow.new(
|
114
|
+
'My Workflow',
|
115
|
+
config_file: '/tmp/vcoworkflow.json`
|
116
|
+
)
|
117
|
+
```
|
118
|
+
|
119
|
+
#### `VcoWorkflows::Config` class
|
120
|
+
|
121
|
+
For additional control, you can create a `VcoWorkflows::Config` object and
|
122
|
+
hand that to the `Workflow` constructor. If you provide no parameters, it will
|
123
|
+
attempt to load the default configuration file, as above:
|
124
|
+
|
125
|
+
```ruby
|
126
|
+
config = VcoWorkflows::Config.new
|
127
|
+
workflow = VcoWorkflows::Workflow.new('My Workflow', config: config)
|
128
|
+
```
|
129
|
+
|
130
|
+
You can also specify a non-default configuration file:
|
131
|
+
|
132
|
+
```ruby
|
133
|
+
config = VcoWorkflows::Config.new(config_file: '/tmp/myconfig.json')
|
134
|
+
```
|
135
|
+
|
136
|
+
And, of course, you can set all the required parameters yourself if you don't
|
137
|
+
want or need to use a configuration file:
|
138
|
+
|
139
|
+
```ruby
|
140
|
+
config = VcoWorkflows::Config.new(
|
141
|
+
url: 'https://vco.example.com:8281/',
|
142
|
+
username: 'jdoe',
|
143
|
+
password: 's3cr3t'
|
144
|
+
)
|
145
|
+
workflow = VcoWorkflows::Workflow.new('My Workflow', config: config)
|
146
|
+
```
|
147
|
+
|
148
|
+
### Selecting a Workflow
|
149
|
+
|
150
|
+
It is possible to select a Workflow by GUID (as divined by the vCenter
|
151
|
+
Orchestrator client) or by specifying the Workflow's name. If specifying by
|
152
|
+
name, however, an exception will be raised if either no workflows are found,
|
153
|
+
or multiple workflows are found. Therefor, GUID is likely "safer". In either
|
154
|
+
case, however, the workflow name must be given, as in the example above.
|
155
|
+
|
156
|
+
Selecting a workflow by GUID is done by adding the `id:` parameter when
|
157
|
+
creating a new `Workflow` object:
|
158
|
+
|
159
|
+
```ruby
|
160
|
+
workflow = VcoWorkflows::Workflow.new(
|
161
|
+
'My Workflow',
|
162
|
+
id: '6e04a460-4a45-4e16-9603-db2922c24462',
|
163
|
+
url: 'https://vco.example.com:8281/',
|
164
|
+
username: 'jdoe',
|
165
|
+
password: 's3cr3t'
|
166
|
+
)
|
167
|
+
```
|
168
|
+
|
169
|
+
### Executing a workflow
|
170
|
+
|
171
|
+
To execute a workflow, set any input parameters to appropriate values (if
|
172
|
+
required), then send call `execute`. This will return an execution ID from
|
173
|
+
vCenter Orchestrator, which identifies the run you have requested. The
|
174
|
+
execution ID is also preserved in the `Workflow` object for simplicity.
|
175
|
+
|
176
|
+
Setting parameters individually:
|
177
|
+
|
178
|
+
```ruby
|
179
|
+
workflow.parameter('name', 'a string value')
|
180
|
+
worfklow.parameter('version', 2)
|
181
|
+
workflow.parameter('words', %w(fe fi fo fum))
|
182
|
+
```
|
183
|
+
|
184
|
+
Setting parameters via a hash:
|
185
|
+
|
186
|
+
```ruby
|
187
|
+
workflow.parameters = { 'name' => 'a string value',
|
188
|
+
'version' => '2',
|
189
|
+
'words' => %w(fe fi fo fum) }
|
190
|
+
```
|
191
|
+
|
192
|
+
Then execute:
|
193
|
+
|
194
|
+
```ruby
|
195
|
+
workflow.execute
|
196
|
+
```
|
197
|
+
|
198
|
+
### Checking an execution status
|
199
|
+
|
200
|
+
You can then get a Workflow Token from the Workflow, which will contain
|
201
|
+
state and result information for the execution.
|
202
|
+
|
203
|
+
```ruby
|
204
|
+
wf_token = workflow.token(workflow.execute)
|
205
|
+
```
|
206
|
+
|
207
|
+
The `WorkflowToken` can be used to determine the current state and disposition
|
208
|
+
of a Workflow execution. This can be used to periodically check up on the
|
209
|
+
execution, if you want to follow its status:
|
210
|
+
|
211
|
+
```ruby
|
212
|
+
finished = false
|
213
|
+
until finished
|
214
|
+
sleep 5
|
215
|
+
# Fetch a new workflow token to check the status of the workflow execution
|
216
|
+
wftoken = workflow.token
|
217
|
+
# If the execution is no longer alive, exit the loop and report the results.
|
218
|
+
unless wftoken.alive?
|
219
|
+
finished = true
|
220
|
+
wftoken.output_parameters.each { |k, v| puts " #{k}: #{v}" }
|
221
|
+
end
|
222
|
+
end
|
223
|
+
```
|
224
|
+
|
225
|
+
### Fetching the execution log
|
226
|
+
|
227
|
+
For any workflow execution, you can fetch the log:
|
228
|
+
|
229
|
+
```ruby
|
230
|
+
workflow.execute
|
231
|
+
# ... some time later
|
232
|
+
log = workflow.log
|
233
|
+
puts log
|
234
|
+
```
|
235
|
+
|
236
|
+
If you have the execution ID from a previous execution:
|
237
|
+
|
238
|
+
```ruby
|
239
|
+
log = workflow.log(execution_id)
|
240
|
+
puts log
|
241
|
+
```
|
242
|
+
|
243
|
+
### Querying a Workflow from the command line
|
244
|
+
|
245
|
+
The `vcoworkflows` command line allows you to query a vCO server for a
|
246
|
+
workflow, as well as executions and details on a specific execution.
|
247
|
+
|
248
|
+
```
|
249
|
+
$ vcoworkflows query "Request Component" \
|
250
|
+
--server=https://vco.example.com:8281/
|
251
|
+
|
252
|
+
Retrieving workflow 'Request Component' ...
|
253
|
+
|
254
|
+
Workflow: Request Component
|
255
|
+
ID: 6e04a460-4a45-4e16-9603-db2922c24462
|
256
|
+
Description:
|
257
|
+
Version: 0.0.33
|
258
|
+
|
259
|
+
Input Parameters:
|
260
|
+
coreCount (string) [required]
|
261
|
+
ramMB (string) [required]
|
262
|
+
onBehalfOf (string) [required]
|
263
|
+
machineCount (string) [required]
|
264
|
+
businessUnit (string) [required]
|
265
|
+
reservation (string) [required]
|
266
|
+
location (string) [required]
|
267
|
+
environment (string) [required]
|
268
|
+
image (string) [required]
|
269
|
+
runlist (Array/string) [required]
|
270
|
+
nodename (string) [required]
|
271
|
+
component (string) [required]
|
272
|
+
attributesJS (string) [required]
|
273
|
+
|
274
|
+
Output Parameters:
|
275
|
+
result (string) [required]
|
276
|
+
requestNumber (number) [required]
|
277
|
+
requestCompletionDetails (string) [required]
|
278
|
+
```
|
279
|
+
|
280
|
+
You can also retrieve a full list of executions, or only the last N:
|
281
|
+
|
282
|
+
```
|
283
|
+
$ vcoworkflows query "Request Component" \
|
284
|
+
--server=https://vco.example.com:8281/ \
|
285
|
+
--executions --last 5
|
286
|
+
|
287
|
+
Retrieving workflow 'Request Component' ...
|
288
|
+
|
289
|
+
|
290
|
+
Workflow: Request Component
|
291
|
+
ID: 6e04a460-4a45-4e16-9603-db2922c24462
|
292
|
+
Description:
|
293
|
+
Version: 0.0.33
|
294
|
+
|
295
|
+
Executions:
|
296
|
+
2014-12-19T20:38:18.457Z [ff8080814a1cb55c014a6445b85b7714] completed
|
297
|
+
2014-12-19T20:49:04.087Z [ff8080814a1cb55c014a644f925577cf] completed
|
298
|
+
2014-12-19T21:00:25.587Z [ff8080814a1cb55c014a6459f87278c0] completed
|
299
|
+
2014-12-19T21:25:04.170Z [ff8080814a1cb55c014a64708829797f] completed
|
300
|
+
2014-12-19T21:43:46.833Z [ff8080814a1cb55c014a6481a9927a78] completed
|
301
|
+
```
|
302
|
+
|
303
|
+
To get the logs from a specific execution:
|
304
|
+
|
305
|
+
```
|
306
|
+
vcoworkflows query "Request Component" \
|
307
|
+
--server=https://vco.example.com:8281/ \
|
308
|
+
--execution-id ff8080814a1cb55c014a6481a9927a78 \
|
309
|
+
--log
|
310
|
+
|
311
|
+
Retrieving workflow 'Request Component' ...
|
312
|
+
|
313
|
+
Fetching data for execution ff8080814a1cb55c014a6481a9927a78...
|
314
|
+
|
315
|
+
Execution ID: ff8080814a1cb55c014a6481a9927a78
|
316
|
+
Name: Request Component
|
317
|
+
Workflow ID: 6e04a460-4a45-4e16-9603-db2922c24462
|
318
|
+
State: completed
|
319
|
+
Start Date: 2014-12-19 13:43:46 -0800
|
320
|
+
End Date: 2014-12-19 13:55:24 -0800
|
321
|
+
Started By: jdoe@example.com
|
322
|
+
|
323
|
+
Input Parameters:
|
324
|
+
coreCount = 2
|
325
|
+
ramMB = 2048
|
326
|
+
onBehalfOf = service_account@example.com
|
327
|
+
machineCount = 1
|
328
|
+
businessUnit = aw
|
329
|
+
reservation = nonprodlinux
|
330
|
+
location = us_east
|
331
|
+
environment = dev1
|
332
|
+
image = centos-6.6-x86_64-20141203-1
|
333
|
+
runlist =
|
334
|
+
- role[base]
|
335
|
+
- role[api]
|
336
|
+
nodename =
|
337
|
+
component = api
|
338
|
+
attributesJS =
|
339
|
+
|
340
|
+
Output Parameters:
|
341
|
+
result = SUCCESSFUL
|
342
|
+
requestNumber = 326.0
|
343
|
+
requestCompletionDetails = Request succeeded. Created vm00378.
|
344
|
+
|
345
|
+
2014-12-19 13:43:46 -0800 info: jdoe: Workflow 'Request Component' has started
|
346
|
+
2014-12-19 13:43:59 -0800 info: jdoe: Workflow is paused; Workflow 'Request Component' has paused while waiting on signal
|
347
|
+
2014-12-19 13:55:23 -0800 info: jdoe: Workflow 'Request Component' has resumed
|
348
|
+
2014-12-19 13:55:24 -0800 info: jdoe: Workflow 'Request Component' has completed
|
349
|
+
```
|
350
|
+
|
351
|
+
## Current limitations
|
352
|
+
|
353
|
+
### General vCO REST API functionality
|
354
|
+
|
355
|
+
This gem is very specifically targeted at operation of workflows within vCO.
|
356
|
+
As such, anything that was not necessary or required to be able to operate
|
357
|
+
workflows has not yet been included.
|
358
|
+
|
359
|
+
### Cancellation / Termination of running workflows
|
360
|
+
|
361
|
+
There is currently no facility to cancel a running workflow. This will be
|
362
|
+
added at some point in the future.
|
363
|
+
|
364
|
+
### Parameter Types
|
365
|
+
|
366
|
+
Currently, there is no included support for complex parameter types (i.e.,
|
367
|
+
anything other than Strings, Numerics, or Arrays of same). This is not to say
|
368
|
+
they cannot be used, but you will need to marshall vCO object parameters into an
|
369
|
+
appropriately-constructed `Hash` to pass as the parameter value, such that when
|
370
|
+
the values are converted to JSON for the actual REST call, they are properly
|
371
|
+
constructed for vCO.
|
372
|
+
|
373
|
+
## Contributing
|
374
|
+
|
375
|
+
1. Fork it ( https://github.com/wintermeyer/vcoworkflows-ruby2/fork )
|
376
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
377
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
378
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
379
|
+
5. Create a new Pull Request
|
380
|
+
|
381
|
+
### License and Authors
|
382
|
+
|
383
|
+
- [Gregory Ruiz-Ade](https://github.com/gkra)
|
384
|
+
|
385
|
+
```
|
386
|
+
Copyright 2014 ACTIVE Network, LLC
|
387
|
+
|
388
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
389
|
+
you may not use this file except in compliance with the License.
|
390
|
+
You may obtain a copy of the License at
|
391
|
+
|
392
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
393
|
+
|
394
|
+
Unless required by applicable law or agreed to in writing, software
|
395
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
396
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
397
|
+
See the License for the specific language governing permissions and
|
398
|
+
limitations under the License.
|
399
|
+
```
|