chef-core-actions 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +201 -0
- data/i18n/errors/en.yml +394 -0
- data/lib/chef_core/actions.rb +6 -0
- data/lib/chef_core/actions/base.rb +101 -0
- data/lib/chef_core/actions/converge_target.rb +203 -0
- data/lib/chef_core/actions/converge_target/ccr_failure_mapper.rb +111 -0
- data/lib/chef_core/actions/install_chef.rb +119 -0
- data/lib/chef_core/actions/install_chef/minimum_chef_version.rb +85 -0
- metadata +93 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ff4c5219d911c1689de7f5a6442191dbdd210bcf9e48e98ca2b4b33847fb747c
|
4
|
+
data.tar.gz: ee67d92de6abaee5195e93bd46c9f89dfcb82f23586f74852df2b99b4718e9cc
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8baff8714d6c68c726e644d4b924a39a078a46bc3d9d83ce5606b7db8bc758c26ebe030dee6e884d1fe4129db58ccc96f6e64a07780adaa7d5a3abc81735c113
|
7
|
+
data.tar.gz: bb8e0b96d2a5443768d9775e3e3ee0c8134a9dd2ccef69916b93833212072db69882b5dd3a4188cb590a68d7f1c734d83b3e2a0b3cc6631ee4038285b2f6ae52
|
data/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
data/i18n/errors/en.yml
ADDED
@@ -0,0 +1,394 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2018 Chef Software Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
#
|
18
|
+
# Error definitions, usage Text.e.ERR999
|
19
|
+
#
|
20
|
+
# General format:
|
21
|
+
# ERRORID
|
22
|
+
# options: a stringified hash containing a optional hash of display options. See display_defaults below.
|
23
|
+
# text: |
|
24
|
+
# text of the message
|
25
|
+
#
|
26
|
+
# First Line: brief description of the error
|
27
|
+
# Second line: blank
|
28
|
+
# Third+ : detailed description, max 76 characters per line
|
29
|
+
|
30
|
+
# Pluralizing Messages
|
31
|
+
# If the text of an error differs based on quantity of subject,
|
32
|
+
# you can specify different messages as follows:
|
33
|
+
# ERRORID
|
34
|
+
# text: !!pl
|
35
|
+
# 0: You have no things.
|
36
|
+
# 1: You have one thing.
|
37
|
+
# n: You have lots of things.
|
38
|
+
# Text.ERRORID(quanity, [other formatting params])
|
39
|
+
|
40
|
+
errors:
|
41
|
+
|
42
|
+
# These are the default display attributes for all messages.
|
43
|
+
# If you want to override them in your gem or application,
|
44
|
+
# include 'errors' -> 'display_defaults' in your gem's i18n/errors/*.yml
|
45
|
+
# and enable it iwth Text.add_localization(path_to_yml)
|
46
|
+
# The most recent gem to add its own error translations will take precedence.
|
47
|
+
#
|
48
|
+
# If you want to override them for specific errors in your error yml,
|
49
|
+
# you can do so as follows:
|
50
|
+
# EXAMPLERROR001:
|
51
|
+
# options: { decorations: false }
|
52
|
+
# text: |
|
53
|
+
# Here is the message text.
|
54
|
+
display_defaults:
|
55
|
+
# Set 'decorations: false' in a message to show only text. Equivalent
|
56
|
+
# to setting all of the other attributes to false individually
|
57
|
+
# stack: show reference to stack trace location in footer
|
58
|
+
# log: show reference to log file location in footer
|
59
|
+
# header: Show error header (currently bolded error id)
|
60
|
+
# footer: show standard footer
|
61
|
+
#
|
62
|
+
# This (end error 'options') are kept as YML strings that are parsed when
|
63
|
+
# the error is to be rendered.
|
64
|
+
# Using a string type is necessary bedcause we don't have access to the
|
65
|
+
# underlying tree structure via R18n.
|
66
|
+
"{ decorations: true, stack: false, log: false, header: true, footer: true }"
|
67
|
+
|
68
|
+
|
69
|
+
# Error headers and footers that are included with error messages will default to the
|
70
|
+
# text below. You can override this in your gem's localization, but make sure
|
71
|
+
# that you don't add additional argument placeholders (eg %3 if the original message
|
72
|
+
# only has %1 and %2) - they won't be populated since chef_core doesn't know about them.
|
73
|
+
footer:
|
74
|
+
both: |
|
75
|
+
If you are not able to resolve this issue, please contact Chef support
|
76
|
+
at workstation@chef.io and include the log file and stack trace from the
|
77
|
+
locations below:
|
78
|
+
|
79
|
+
%1
|
80
|
+
%2
|
81
|
+
|
82
|
+
log_only: |
|
83
|
+
If you are not able to resolve this issue, please contact Chef support
|
84
|
+
at workstation@chef.io and include the log file from the location below:
|
85
|
+
%1
|
86
|
+
|
87
|
+
stack_only: |
|
88
|
+
If you are not able to resolve this issue, please contact Chef support
|
89
|
+
at workstation@chef.io and include the stack trace from the location below:
|
90
|
+
%1
|
91
|
+
|
92
|
+
neither: |
|
93
|
+
If you are not able to resolve this issue, please contact Chef support
|
94
|
+
at workstation@chef.io
|
95
|
+
|
96
|
+
#
|
97
|
+
# Below are the error text definitions for errors that chef_core will raise.
|
98
|
+
#
|
99
|
+
|
100
|
+
# Remote execution and file operation errors are prefixed CHEFRMT
|
101
|
+
CHEFRMT001:
|
102
|
+
text: |
|
103
|
+
The command '%1' exited with return code '%2' on '%3'.
|
104
|
+
|
105
|
+
The following error was reported:
|
106
|
+
|
107
|
+
%4
|
108
|
+
|
109
|
+
# Train-related errors (connectivity, auth failure, etc)
|
110
|
+
# are prefixed CHEFTRN. Non-specific descendants of Train::Error
|
111
|
+
# will resolve to CHEFTRN001, and we can add additional
|
112
|
+
# more specific text as we need it.
|
113
|
+
#
|
114
|
+
# TODO: Note that due to a temporary oddity in the split of chef-apply
|
115
|
+
# reusable components into the chef_core gems, chef_core itself
|
116
|
+
# has the definitions for CHEFTRN003+ - that's where the associated
|
117
|
+
# exceptions get thrown.
|
118
|
+
CHEFTRN001:
|
119
|
+
text: |
|
120
|
+
An error has occurred on the %1 connection to %2:
|
121
|
+
|
122
|
+
%2.
|
123
|
+
|
124
|
+
CHEFTRN002:
|
125
|
+
text: |
|
126
|
+
An remote error has occurred:
|
127
|
+
|
128
|
+
%1.
|
129
|
+
# Train-related errors (connectivity, auth failure, etc)
|
130
|
+
# are prefixed CHEFTRN. Note that due to the gem split,
|
131
|
+
# some renumbering would make sense - CHEFTRN001 and 2
|
132
|
+
# now live in chef_core-actions
|
133
|
+
CHEFTRN003:
|
134
|
+
text: |
|
135
|
+
Password required for sudo.
|
136
|
+
|
137
|
+
This target requires a password to perform sudo operations. Please provide a
|
138
|
+
password using the --sudo-password option. For example if the sudo password is
|
139
|
+
in the environment variable $CHEF_RUN_SUDO_PASSWORD, you could use:
|
140
|
+
|
141
|
+
--sudo-password $CHEF_RUN_SUDO_PASSWORD
|
142
|
+
|
143
|
+
CHEFTRN004:
|
144
|
+
text: |
|
145
|
+
Incorrect sudo password provided.
|
146
|
+
|
147
|
+
Please ensure that the password you provided with "--sudo-password" is correct.
|
148
|
+
|
149
|
+
CHEFTRN005:
|
150
|
+
text: |
|
151
|
+
sudo command '%1' not found.
|
152
|
+
|
153
|
+
Please verify that the --sudo-command '%1' is valid
|
154
|
+
and installed on this node.
|
155
|
+
|
156
|
+
CHEFTRN006:
|
157
|
+
text: |
|
158
|
+
sudo requires tty on this system
|
159
|
+
|
160
|
+
In order to continue, sudo must be configured to no longer require tty.
|
161
|
+
You can do this by modifying /etc/sudoers:
|
162
|
+
|
163
|
+
For all users:
|
164
|
+
Defaults !requiretty
|
165
|
+
|
166
|
+
Per-user:
|
167
|
+
Defaults:username !requiretty
|
168
|
+
|
169
|
+
CHEFTRN007:
|
170
|
+
text: |
|
171
|
+
No authentication methods available.
|
172
|
+
|
173
|
+
Try...
|
174
|
+
- Provide a password with "--password PASSWORD"
|
175
|
+
- Provide a key with "-identity-file PATH/TO/FILE"
|
176
|
+
- Enable ssh-agent and add keys
|
177
|
+
- Add a host entry to your ssh configuration
|
178
|
+
|
179
|
+
Additional instructions can be found in the troubleshooting documentation:
|
180
|
+
|
181
|
+
https://www.chef.sh/docs/chef-workstation/troubleshooting/#error-code-cheftrn007
|
182
|
+
|
183
|
+
CHEFTRN999:
|
184
|
+
text: |
|
185
|
+
Connection failed: %1
|
186
|
+
|
187
|
+
The following error occured while attempting to connect and authenticate to the target.
|
188
|
+
|
189
|
+
%1
|
190
|
+
|
191
|
+
|
192
|
+
# General errors/unknown errors are handled with CHEFINT
|
193
|
+
CHEFINT001:
|
194
|
+
options: "{ log: true, stack: true }"
|
195
|
+
text: |
|
196
|
+
An unexpected error has occurred:
|
197
|
+
|
198
|
+
%1
|
199
|
+
|
200
|
+
# Internal API errors - give them some formatting
|
201
|
+
CHEFAPI001:
|
202
|
+
options: "{ log: true, stack: true }"
|
203
|
+
text: |
|
204
|
+
API error: provide either :recipe_spec or :resouce_name, :resource_type,
|
205
|
+
and :resource_properties
|
206
|
+
|
207
|
+
You provided: %1
|
208
|
+
|
209
|
+
|
210
|
+
# Maps to: NameError
|
211
|
+
CHEFNET001:
|
212
|
+
text: |
|
213
|
+
A network error occurred:
|
214
|
+
|
215
|
+
%1
|
216
|
+
|
217
|
+
Please verify the host name or address is correct and that the host is
|
218
|
+
reachable before trying again.
|
219
|
+
|
220
|
+
# Remote chef client run failure start here.
|
221
|
+
CHEFUPL003:
|
222
|
+
options: "{ log: true, stack: true }"
|
223
|
+
text: |
|
224
|
+
Uploading config to target failed.
|
225
|
+
|
226
|
+
CHEFUPL004:
|
227
|
+
options: "{ log: true, stack: true }"
|
228
|
+
text: |
|
229
|
+
Uploading handler to target failed.
|
230
|
+
|
231
|
+
CHEFUPL005:
|
232
|
+
options: "{ log: true, stack: true }"
|
233
|
+
text: |
|
234
|
+
Uploading policy bundle to target failed.
|
235
|
+
|
236
|
+
# Maps to: SSL::SSLError with message text indicating verification failure
|
237
|
+
CHEFNET002:
|
238
|
+
text: |
|
239
|
+
SSL host verification failed.
|
240
|
+
|
241
|
+
I could not verify the identity of the remote host.
|
242
|
+
|
243
|
+
If you are certain that you are connecting to the correct host,
|
244
|
+
you can specify the '--no-ssl-verify' option for this command, or
|
245
|
+
make it the default by setting the following in your configuration:
|
246
|
+
|
247
|
+
[connection.winrm]
|
248
|
+
ssl_verify=false
|
249
|
+
|
250
|
+
# Catch-all error when marshalling mulitple parallel failures.
|
251
|
+
CHEFMULTI001:
|
252
|
+
text: |
|
253
|
+
One or more actions has failed.
|
254
|
+
|
255
|
+
A complete list of failures and possible resolutions can
|
256
|
+
be found in the file below:
|
257
|
+
|
258
|
+
%
|
259
|
+
|
260
|
+
# Errors relating to target host state:
|
261
|
+
CHEFTARG001:
|
262
|
+
text: |
|
263
|
+
'%1' is not a supported target operating system at this time.
|
264
|
+
|
265
|
+
We plan to support a range of target operating systems,
|
266
|
+
but during this targeted beta we are constraining our efforts
|
267
|
+
to Windows and Linux.
|
268
|
+
|
269
|
+
# Errors specifying ranges for host names.
|
270
|
+
CHEFRANGE001: |
|
271
|
+
text: |
|
272
|
+
The target '%1' contains an invalid range.
|
273
|
+
|
274
|
+
The range '%2' mixes alphabetic and numeric values.
|
275
|
+
A range must be one or the other.
|
276
|
+
|
277
|
+
CHEFRANGE002:
|
278
|
+
text: |
|
279
|
+
The target '%1' contains too many ranges.
|
280
|
+
|
281
|
+
A single target name can contain up two ranges.
|
282
|
+
|
283
|
+
CHEFRANGE003:
|
284
|
+
text: !!pl
|
285
|
+
1:
|
286
|
+
The target provided resolves to too many hosts.
|
287
|
+
|
288
|
+
At this time there is a limit of %2 hosts in a single operation.
|
289
|
+
n:
|
290
|
+
The targets provided resolve to too many hosts.
|
291
|
+
|
292
|
+
At this time there is a limit of %2 hosts in a single operation.
|
293
|
+
|
294
|
+
CHEFVAL011:
|
295
|
+
display: " { decorations: false } "
|
296
|
+
text: |
|
297
|
+
The protocol '%1' is not supported.
|
298
|
+
|
299
|
+
Currently supported remote access protocols are:
|
300
|
+
|
301
|
+
%2
|
302
|
+
|
303
|
+
# Installer action errors
|
304
|
+
CHEFINS002:
|
305
|
+
text: |
|
306
|
+
The target does not have chef-client installed.
|
307
|
+
|
308
|
+
This command is powered by the Chef client. In order to make use of it
|
309
|
+
on this node, the Chef client must be installed first.
|
310
|
+
|
311
|
+
Re-running this command without the '--no-install' flag will
|
312
|
+
automatically perform the installation.
|
313
|
+
|
314
|
+
CHEFINS003:
|
315
|
+
text: |
|
316
|
+
The target has an older version of Chef client installed.
|
317
|
+
|
318
|
+
The target has version %1 installed, but this command
|
319
|
+
requires a minimum version of %2.
|
320
|
+
|
321
|
+
Please upgrade the Chef client on this node to version %2 or later.
|
322
|
+
|
323
|
+
CHEFINS004: |
|
324
|
+
The target's installed version of Chef Client is too old.
|
325
|
+
|
326
|
+
Version %1 is installed, but this command requires a
|
327
|
+
minimum version of %2.
|
328
|
+
|
329
|
+
|
330
|
+
# Remote chef client run failure start here.
|
331
|
+
CHEFCCR001:
|
332
|
+
text: |
|
333
|
+
Could not determine reason for converge failure.
|
334
|
+
|
335
|
+
An error occurred while converging the remote host.
|
336
|
+
I was unable to retrieve the log file which would allow
|
337
|
+
me to provide more information. Here's where I looked:
|
338
|
+
|
339
|
+
%1
|
340
|
+
|
341
|
+
CHEFCCR002:
|
342
|
+
text: |
|
343
|
+
The converge of the remote host failed for the
|
344
|
+
following reason:
|
345
|
+
|
346
|
+
%1
|
347
|
+
|
348
|
+
CHEFCCR003:
|
349
|
+
text: |
|
350
|
+
The action '%1' is not valid.
|
351
|
+
|
352
|
+
Valid actions are:
|
353
|
+
|
354
|
+
%2
|
355
|
+
|
356
|
+
For more information, please consult the documentation
|
357
|
+
for this resource:
|
358
|
+
|
359
|
+
https://docs.chef.io/resource_reference.html
|
360
|
+
|
361
|
+
CHEFCCR004:
|
362
|
+
text: |
|
363
|
+
A property value you provided is not valid:
|
364
|
+
|
365
|
+
%1
|
366
|
+
|
367
|
+
Please consult the documentation for properties
|
368
|
+
supported by your resource and their valid values:
|
369
|
+
|
370
|
+
https://docs.chef.io/resource_reference.html
|
371
|
+
|
372
|
+
CHEFCCR005:
|
373
|
+
text: |
|
374
|
+
'%1' is not a valid Chef resource.
|
375
|
+
|
376
|
+
Please consult the documentation for a list of valid resources:
|
377
|
+
|
378
|
+
https://docs.chef.io/resource_reference.html
|
379
|
+
|
380
|
+
CHEFCCR006:
|
381
|
+
text: |
|
382
|
+
'%1' is not a property of '%2'.
|
383
|
+
|
384
|
+
Please consult the documentation for %2 for a list of
|
385
|
+
valid properties:
|
386
|
+
|
387
|
+
https://docs.chef.io/resource_reference.html
|
388
|
+
|
389
|
+
CHEFCCR099:
|
390
|
+
text: |
|
391
|
+
The converge of the remote host failed.
|
392
|
+
|
393
|
+
Please examine the log file for a detailed cause of failure.
|
394
|
+
|
@@ -0,0 +1,101 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2017 Chef Software Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
require "chef_core/telemeter"
|
19
|
+
require "chef_core/error"
|
20
|
+
|
21
|
+
module ChefCore
|
22
|
+
module Actions
|
23
|
+
# Derive new Actions from Action::Base
|
24
|
+
# "target_host" is a TargetHost that the action is being applied to. May be nil
|
25
|
+
# if the action does not require a target.
|
26
|
+
# "config" is hash containing any options that your command may need
|
27
|
+
#
|
28
|
+
# Implement perform_action to perform whatever action your class is intended to do.
|
29
|
+
# Run time will be captured via telemetry and categorized under ":action" with the
|
30
|
+
# unqualified class name of your Action.
|
31
|
+
class Base
|
32
|
+
attr_reader :target_host, :config
|
33
|
+
|
34
|
+
def initialize(config = {})
|
35
|
+
c = config.dup
|
36
|
+
@target_host = c.delete :target_host
|
37
|
+
# Remaining options are for child classes to make use of.
|
38
|
+
@config = c
|
39
|
+
end
|
40
|
+
|
41
|
+
def run(&block)
|
42
|
+
@notification_handler = block
|
43
|
+
timed_action_capture(self) do
|
44
|
+
begin
|
45
|
+
perform_action
|
46
|
+
rescue StandardError => e
|
47
|
+
# Give the caller a chance to clean up - if an exception is
|
48
|
+
# raised it'll otherwise get routed through the executing thread,
|
49
|
+
# providing no means of feedback for the caller's current task.
|
50
|
+
notify(:error, e)
|
51
|
+
@error = e
|
52
|
+
end
|
53
|
+
end
|
54
|
+
# Raise outside the block to ensure that the telemetry cpature completes
|
55
|
+
raise @error unless @error.nil?
|
56
|
+
end
|
57
|
+
|
58
|
+
def name
|
59
|
+
self.class.name.split("::").last
|
60
|
+
end
|
61
|
+
|
62
|
+
def perform_action
|
63
|
+
raise NotImplemented
|
64
|
+
end
|
65
|
+
|
66
|
+
# TODO bootstrap 2019-02-07 - we'll need to find the right way to keep this in telemeter,
|
67
|
+
# there are a bunch of exposed details here that the caller shouldn't care about.
|
68
|
+
# I've moved it here temporarily to keep things running until we come back to this
|
69
|
+
# for telemetry updates.
|
70
|
+
def timed_action_capture(action, &block)
|
71
|
+
# Note: we do not directly capture hostname for privacy concerns, but
|
72
|
+
# using a sha1 digest will allow us to anonymously see
|
73
|
+
# unique hosts to derive number of hosts affected by a command
|
74
|
+
target = action.target_host
|
75
|
+
target_data = { platform: {}, hostname_sha1: nil, transport_type: nil }
|
76
|
+
if target
|
77
|
+
target_data[:platform][:name] = target.base_os # :windows, :linux, eventually :macos
|
78
|
+
target_data[:platform][:version] = target.version
|
79
|
+
target_data[:platform][:architecture] = target.architecture
|
80
|
+
target_data[:hostname_sha1] = Digest::SHA1.hexdigest(target.hostname.downcase)
|
81
|
+
target_data[:transport_type] = target.transport_type
|
82
|
+
end
|
83
|
+
ChefCore::Telemeter.timed_capture(:action, { action: action.name, target: target_data }, &block)
|
84
|
+
end
|
85
|
+
|
86
|
+
# Invokes the notification handler with notifications of progress or events
|
87
|
+
# that occur while the action his running.
|
88
|
+
# The notification handler is provided as a block to `#run`.
|
89
|
+
#
|
90
|
+
# event - a symbol describing the thing currently being done by your
|
91
|
+
# action , eg ":download", ":error", ":version_check", etc.
|
92
|
+
# *args - any arguments that should be passed along with this notification to the
|
93
|
+
# notification handler block.
|
94
|
+
def notify(event, *args)
|
95
|
+
return if @notification_handler.nil?
|
96
|
+
ChefCore::Log.debug("[#{name}] Event: #{event}, Event Data: #{args}")
|
97
|
+
@notification_handler.call(event, args) if @notification_handler
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
@@ -0,0 +1,203 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2017 Chef Software Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
require "pathname"
|
19
|
+
require "tempfile"
|
20
|
+
require "chef-config/path_helper"
|
21
|
+
require "chef_core/actions/base"
|
22
|
+
|
23
|
+
module ChefCore
|
24
|
+
module Actions
|
25
|
+
class ConvergeTarget < Base
|
26
|
+
|
27
|
+
RUN_REPORTER_PATH = File.join(__dir__, "../../../resources/chef_run_reporter.rb").freeze
|
28
|
+
|
29
|
+
def perform_action
|
30
|
+
local_policy_path = config.delete :local_policy_path
|
31
|
+
remote_tmp = target_host.temp_dir()
|
32
|
+
remote_dir_path = target_host.normalize_path(remote_tmp)
|
33
|
+
# Ensure the directory is owned by the connecting user,
|
34
|
+
# otherwise we won't be able to put things into it over scp as that user.
|
35
|
+
remote_policy_path = create_remote_policy(local_policy_path, remote_dir_path)
|
36
|
+
remote_config_path = create_remote_config(remote_dir_path)
|
37
|
+
create_remote_handler(remote_dir_path)
|
38
|
+
upload_trusted_certs(remote_dir_path)
|
39
|
+
|
40
|
+
notify(:running_chef)
|
41
|
+
cmd_str = run_chef_cmd(remote_dir_path,
|
42
|
+
File.basename(remote_config_path),
|
43
|
+
File.basename(remote_policy_path))
|
44
|
+
c = target_host.run_command(cmd_str)
|
45
|
+
target_host.del_dir(remote_dir_path)
|
46
|
+
if c.exit_status == 0
|
47
|
+
ChefCore::Log.info(c.stdout)
|
48
|
+
notify(:success)
|
49
|
+
elsif c.exit_status == 35
|
50
|
+
notify(:reboot)
|
51
|
+
else
|
52
|
+
notify(:converge_error)
|
53
|
+
ChefCore::Log.error("Error running command [#{cmd_str}]")
|
54
|
+
ChefCore::Log.error("stdout: #{c.stdout}")
|
55
|
+
ChefCore::Log.error("stderr: #{c.stderr}")
|
56
|
+
handle_ccr_error()
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
def create_remote_policy(local_policy_path, remote_dir_path)
|
61
|
+
remote_policy_path = File.join(remote_dir_path, File.basename(local_policy_path))
|
62
|
+
notify(:creating_remote_policy)
|
63
|
+
begin
|
64
|
+
target_host.upload_file(local_policy_path, remote_policy_path)
|
65
|
+
rescue RuntimeError => e
|
66
|
+
ChefCore::Log.error(e)
|
67
|
+
raise PolicyUploadFailed.new()
|
68
|
+
end
|
69
|
+
remote_policy_path
|
70
|
+
end
|
71
|
+
|
72
|
+
def create_remote_config(dir)
|
73
|
+
remote_config_path = File.join(dir, "workstation.rb")
|
74
|
+
|
75
|
+
workstation_rb = <<~EOM
|
76
|
+
local_mode true
|
77
|
+
color false
|
78
|
+
cache_path "#{target_host.ws_cache_path}"
|
79
|
+
chef_repo_path "#{target_host.ws_cache_path}"
|
80
|
+
require_relative "chef_run_reporter"
|
81
|
+
reporter = ChefCore::ChefRunReporter.new
|
82
|
+
report_handlers << reporter
|
83
|
+
exception_handlers << reporter
|
84
|
+
EOM
|
85
|
+
|
86
|
+
# add the target host's log level value
|
87
|
+
# (we don't set a location because we want output to
|
88
|
+
# go in stdout for reporting back to chef-apply)
|
89
|
+
if !config[:target_log_level].nil?
|
90
|
+
workstation_rb << <<~EOM
|
91
|
+
log_level :#{config[:target_log_level]}
|
92
|
+
EOM
|
93
|
+
end
|
94
|
+
|
95
|
+
# Maybe add data collector endpoint.
|
96
|
+
if !config[:data_collector_url].nil? && !config[:data_collector_token].nil?
|
97
|
+
workstation_rb << <<~EOM
|
98
|
+
data_collector.server_url "#{config[:data_collector_url]}"
|
99
|
+
data_collector.token "#{config[:data_collector_token]}"
|
100
|
+
data_collector.mode :solo
|
101
|
+
data_collector.organization "Chef Workstation"
|
102
|
+
EOM
|
103
|
+
end
|
104
|
+
|
105
|
+
begin
|
106
|
+
config_file = Tempfile.new
|
107
|
+
config_file.write(workstation_rb)
|
108
|
+
config_file.close
|
109
|
+
target_host.upload_file(config_file.path, remote_config_path)
|
110
|
+
rescue RuntimeError
|
111
|
+
raise ConfigUploadFailed.new()
|
112
|
+
ensure
|
113
|
+
config_file.unlink
|
114
|
+
end
|
115
|
+
remote_config_path
|
116
|
+
end
|
117
|
+
|
118
|
+
def create_remote_handler(remote_dir)
|
119
|
+
remote_handler_path = File.join(remote_dir, "chef_run_reporter.rb")
|
120
|
+
target_host.upload_file(RUN_REPORTER_PATH, remote_handler_path)
|
121
|
+
remote_handler_path
|
122
|
+
rescue RuntimeError
|
123
|
+
raise HandlerUploadFailed.new()
|
124
|
+
end
|
125
|
+
|
126
|
+
def upload_trusted_certs(dir)
|
127
|
+
local_tcd = ChefConfig::PathHelper.escape_glob_dir(config[:trusted_certs_dir])
|
128
|
+
certs = Dir.glob(File.join(local_tcd, "*.{crt,pem}"))
|
129
|
+
return if certs.empty?
|
130
|
+
|
131
|
+
notify(:uploading_trusted_certs)
|
132
|
+
remote_tcd = "#{dir}/trusted_certs"
|
133
|
+
target_host.make_directory(remote_tcd)
|
134
|
+
certs.each do |cert_file|
|
135
|
+
target_host.upload_file(cert_file, "#{remote_tcd}/#{File.basename(cert_file)}")
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
def chef_report_path
|
140
|
+
@chef_report_path ||= target_host.normalize_path(File.join(target_host.ws_cache_path, "cache", "run-report.json"))
|
141
|
+
end
|
142
|
+
|
143
|
+
def handle_ccr_error
|
144
|
+
require "chef_core/actions/converge_target/ccr_failure_mapper"
|
145
|
+
mapper_opts = {}
|
146
|
+
content = target_host.fetch_file_contents(chef_report_path)
|
147
|
+
if content.nil?
|
148
|
+
report = {}
|
149
|
+
mapper_opts[:failed_report_path] = chef_report_path
|
150
|
+
ChefCore::Log.error("Could not read remote report at #{chef_report_path}")
|
151
|
+
else
|
152
|
+
# We need to delete the stacktrace after copying it over. Otherwise if we get a
|
153
|
+
# remote failure that does not write a chef stacktrace its possible to get an old
|
154
|
+
# stale stacktrace.
|
155
|
+
target_host.del_file(chef_report_path)
|
156
|
+
report = JSON.parse(content)
|
157
|
+
ChefCore::Log.error("Remote chef-client error follows:")
|
158
|
+
ChefCore::Log.error(report["exception"])
|
159
|
+
end
|
160
|
+
|
161
|
+
mapper = ConvergeTarget::CCRFailureMapper.new(report["exception"],
|
162
|
+
mapper_opts)
|
163
|
+
mapper.raise_mapped_exception!
|
164
|
+
end
|
165
|
+
|
166
|
+
# TODO - move into target_host as 'get_ccr_command_string'
|
167
|
+
# Chef will try 'downloading' the policy from the internet unless we pass it a valid, local file
|
168
|
+
# in the working directory. By pointing it at a local file it will just copy it instead of trying
|
169
|
+
# to download it.
|
170
|
+
#
|
171
|
+
# Chef 13 on Linux requires full path specifiers for --config and --recipe-url while on Chef 13 and 14 on
|
172
|
+
# Windows must use relative specifiers to prevent URI from causing an error
|
173
|
+
# (https://github.com/chef/chef/pull/7223/files).
|
174
|
+
def run_chef_cmd(working_dir, config_file, policy)
|
175
|
+
case target_host.base_os
|
176
|
+
when :windows
|
177
|
+
"Set-Location -Path #{working_dir}; " +
|
178
|
+
# We must 'wait' for chef-client to finish before changing directories and Out-Null does that
|
179
|
+
"chef-client -z --config #{File.join(working_dir, config_file)} --recipe-url #{File.join(working_dir, policy)} | Out-Null; " +
|
180
|
+
# We have to leave working dir so we don't hold a lock on it, which allows us to delete this tempdir later
|
181
|
+
"Set-Location C:/; " +
|
182
|
+
"exit $LASTEXITCODE"
|
183
|
+
else
|
184
|
+
# cd is shell a builtin, so we'll invoke bash. This also means all commands are executed
|
185
|
+
# with sudo (as long as we are hardcoding our sudo use)
|
186
|
+
"bash -c 'cd #{working_dir}; chef-client -z --config #{File.join(working_dir, config_file)} --recipe-url #{File.join(working_dir, policy)}'"
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
190
|
+
class ConfigUploadFailed < ChefCore::Error
|
191
|
+
def initialize(); super("CHEFUPL003"); end
|
192
|
+
end
|
193
|
+
|
194
|
+
class HandlerUploadFailed < ChefCore::Error
|
195
|
+
def initialize(); super("CHEFUPL004"); end
|
196
|
+
end
|
197
|
+
|
198
|
+
class PolicyUploadFailed < ChefCore::Error
|
199
|
+
def initialize(); super("CHEFUPL005"); end
|
200
|
+
end
|
201
|
+
end
|
202
|
+
end
|
203
|
+
end
|
@@ -0,0 +1,111 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2017 Chef Software Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
require "chef_core/error"
|
19
|
+
# TODO - this is a workaround that goes with having to specify inheritence in the module declaration
|
20
|
+
# should not be needed, and we need to track down why (here and in action classes)
|
21
|
+
require "chef_core/actions/base"
|
22
|
+
|
23
|
+
module ChefCore
|
24
|
+
module Actions
|
25
|
+
class ConvergeTarget < Base
|
26
|
+
# This converts chef client run failures
|
27
|
+
# to human-friendly exceptions with detail
|
28
|
+
# and remediation steps based on the failure type.
|
29
|
+
class CCRFailureMapper
|
30
|
+
attr_reader :params
|
31
|
+
|
32
|
+
def initialize(exception, params)
|
33
|
+
@params = params
|
34
|
+
@cause_line = exception
|
35
|
+
end
|
36
|
+
|
37
|
+
def raise_mapped_exception!
|
38
|
+
if @cause_line.nil?
|
39
|
+
raise RemoteChefRunFailedToResolveError.new(params[:failed_report_path])
|
40
|
+
else
|
41
|
+
errid, *args = exception_args_from_cause()
|
42
|
+
if errid.nil?
|
43
|
+
raise RemoteChefClientRunFailedUnknownReason.new()
|
44
|
+
else
|
45
|
+
raise RemoteChefClientRunFailed.new(errid, *args)
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
# Ideally we will write a custom handler to package up data we care
|
52
|
+
# about and present it more directly https://docs.chef.io/handlers.html
|
53
|
+
# For now, we'll just match the most common failures based on their
|
54
|
+
# messages.
|
55
|
+
def exception_args_from_cause
|
56
|
+
# Ordering is important below. Some earlier tests are more detailed
|
57
|
+
# cases of things that will match more general tests further down.
|
58
|
+
case @cause_line
|
59
|
+
when /.*had an error:(.*:)\s+(.*$)/
|
60
|
+
# Some invalid property value cases, among others.
|
61
|
+
["CHEFCCR002", $2]
|
62
|
+
when /.*Chef::Exceptions::ValidationFailed:\s+Option action must be equal to one of:\s+(.*)!\s+You passed :(.*)\./
|
63
|
+
# Invalid action - specialization of invalid property value, below
|
64
|
+
["CHEFCCR003", $2, $1]
|
65
|
+
when /.*Chef::Exceptions::ValidationFailed:\s+(.*)/
|
66
|
+
# Invalid resource property value
|
67
|
+
["CHEFCCR004", $1]
|
68
|
+
when /.*NameError: undefined local variable or method `(.+)' for cookbook.+/
|
69
|
+
# Invalid resource type in most cases
|
70
|
+
["CHEFCCR005", $1]
|
71
|
+
when /.*NoMethodError: undefined method `(.+)' for cookbook.+/
|
72
|
+
# Invalid resource type in most cases
|
73
|
+
["CHEFCCR005", $1]
|
74
|
+
when /.*undefined method `(.*)' for Chef::Resource::(.+)::/
|
75
|
+
# If we can get a resource name show that instead of the class name
|
76
|
+
# TODO - for the best experience, we could instantiate the resource in invoke resource.name
|
77
|
+
["CHEFCCR006", $1, $2]
|
78
|
+
when /.*undefined method `(.*)' for (.+)/
|
79
|
+
# TODO - we started showing the class name instead of hte resource name.
|
80
|
+
# name, which is confusing -
|
81
|
+
# 'blah' is not a property of 'Chef::Resource::User::LinuxUser'.
|
82
|
+
#
|
83
|
+
|
84
|
+
["CHEFCCR006", $1, $2]
|
85
|
+
|
86
|
+
# Below would catch the general form of most errors, but the
|
87
|
+
# message itself in those lines is not generally aligned
|
88
|
+
# with the UX we want to provide.
|
89
|
+
# when /.*Exception|Error.*:\s+(.*)/
|
90
|
+
else
|
91
|
+
nil
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
class RemoteChefClientRunFailed < ChefCore::Error
|
96
|
+
def initialize(id, *args); super(id, *args); end
|
97
|
+
end
|
98
|
+
|
99
|
+
class RemoteChefClientRunFailedUnknownReason < ChefCore::Error
|
100
|
+
def initialize(); super("CHEFCCR099"); end
|
101
|
+
end
|
102
|
+
|
103
|
+
class RemoteChefRunFailedToResolveError < ChefCore::Error
|
104
|
+
def initialize(path); super("CHEFCCR001", path); end
|
105
|
+
end
|
106
|
+
|
107
|
+
end
|
108
|
+
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
@@ -0,0 +1,119 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2017 Chef Software Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
require "chef_core/actions/base"
|
19
|
+
require "chef_core/actions/install_chef/minimum_chef_version"
|
20
|
+
require "fileutils"
|
21
|
+
|
22
|
+
module ChefCore
|
23
|
+
module Actions
|
24
|
+
class InstallChef < Base
|
25
|
+
def initialize(opts = { check_only: false })
|
26
|
+
super
|
27
|
+
end
|
28
|
+
|
29
|
+
def perform_action
|
30
|
+
if InstallChef::MinimumChefVersion.check!(target_host, config[:check_only]) == :minimum_version_met
|
31
|
+
notify(:already_installed)
|
32
|
+
else
|
33
|
+
perform_local_install
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def upgrading?
|
38
|
+
@upgrading
|
39
|
+
end
|
40
|
+
|
41
|
+
def perform_local_install
|
42
|
+
package = lookup_artifact()
|
43
|
+
notify(:downloading)
|
44
|
+
local_path = download_to_workstation(package.url)
|
45
|
+
notify(:uploading)
|
46
|
+
remote_path = upload_to_target(local_path)
|
47
|
+
notify(:installing)
|
48
|
+
target_host.install_package(remote_path)
|
49
|
+
notify(:install_complete)
|
50
|
+
end
|
51
|
+
|
52
|
+
def perform_remote_install
|
53
|
+
# TODO BOOTSTRAP - we'll need to implement this for both platforms
|
54
|
+
# require "mixlib/install"
|
55
|
+
# installer = Mixlib::Install.new({
|
56
|
+
# platform: "windows",/etc -
|
57
|
+
# product_name: "chef",
|
58
|
+
# channel: :stable,
|
59
|
+
# shell_type: :ps1,
|
60
|
+
# version: "13",
|
61
|
+
# })
|
62
|
+
# target_host.run_command! installer.install_command
|
63
|
+
raise NotImplementedError
|
64
|
+
end
|
65
|
+
|
66
|
+
def lookup_artifact
|
67
|
+
return @artifact_info if @artifact_info
|
68
|
+
require "mixlib/install"
|
69
|
+
c = train_to_mixlib(target_host.platform)
|
70
|
+
Mixlib::Install.new(c).artifact_info
|
71
|
+
end
|
72
|
+
|
73
|
+
def version_to_install
|
74
|
+
lookup_artifact.version
|
75
|
+
end
|
76
|
+
|
77
|
+
def train_to_mixlib(platform)
|
78
|
+
opts = {
|
79
|
+
platform_version: platform.release,
|
80
|
+
platform: platform.name,
|
81
|
+
architecture: platform.arch,
|
82
|
+
product_name: "chef",
|
83
|
+
product_version: :latest,
|
84
|
+
channel: :stable,
|
85
|
+
platform_version_compatibility_mode: true,
|
86
|
+
}
|
87
|
+
case platform.name
|
88
|
+
when /windows/
|
89
|
+
opts[:platform] = "windows"
|
90
|
+
when "redhat", "centos"
|
91
|
+
opts[:platform] = "el"
|
92
|
+
when "suse"
|
93
|
+
opts[:platform] = "sles"
|
94
|
+
when "amazon"
|
95
|
+
opts[:platform] = "el"
|
96
|
+
if platform.release.to_i > 2010 # legacy Amazon version 1
|
97
|
+
opts[:platform_version] = "6"
|
98
|
+
else
|
99
|
+
opts[:platform_version] = "7"
|
100
|
+
end
|
101
|
+
end
|
102
|
+
opts
|
103
|
+
end
|
104
|
+
|
105
|
+
def download_to_workstation(url_path)
|
106
|
+
require "chef_core/file_fetcher"
|
107
|
+
ChefCore::FileFetcher.fetch(config[:cache_path],
|
108
|
+
url_path)
|
109
|
+
end
|
110
|
+
|
111
|
+
def upload_to_target(local_path)
|
112
|
+
installer_dir = target_host.temp_dir()
|
113
|
+
remote_path = File.join(installer_dir, File.basename(local_path))
|
114
|
+
target_host.upload_file(local_path, remote_path)
|
115
|
+
remote_path
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
@@ -0,0 +1,85 @@
|
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2017 Chef Software Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
require "chef_core/error"
|
19
|
+
require "chef_core/actions/install_chef/minimum_chef_version"
|
20
|
+
|
21
|
+
module ChefCore
|
22
|
+
module Actions
|
23
|
+
# TODO shouldn't be redeclaring Base here
|
24
|
+
class InstallChef < Base
|
25
|
+
class MinimumChefVersion
|
26
|
+
|
27
|
+
CONSTRAINTS = {
|
28
|
+
windows: {
|
29
|
+
13 => Gem::Version.new("13.10.4"),
|
30
|
+
14 => Gem::Version.new("14.4.22"),
|
31
|
+
},
|
32
|
+
linux: {
|
33
|
+
13 => Gem::Version.new("13.10.4"),
|
34
|
+
14 => Gem::Version.new("14.1.1"),
|
35
|
+
},
|
36
|
+
}.freeze
|
37
|
+
|
38
|
+
def self.check!(target, check_only)
|
39
|
+
begin
|
40
|
+
installed_version = target.installed_chef_version
|
41
|
+
rescue ChefCore::TargetHost::ChefNotInstalled
|
42
|
+
if check_only
|
43
|
+
raise ClientNotInstalled.new()
|
44
|
+
end
|
45
|
+
return :client_not_installed
|
46
|
+
end
|
47
|
+
|
48
|
+
os_constraints = CONSTRAINTS[target.base_os]
|
49
|
+
min_14_version = os_constraints[14]
|
50
|
+
min_13_version = os_constraints[13]
|
51
|
+
|
52
|
+
case
|
53
|
+
when installed_version >= Gem::Version.new("14.0.0") && installed_version < min_14_version
|
54
|
+
raise Client14Outdated.new(installed_version, min_14_version)
|
55
|
+
when installed_version >= Gem::Version.new("13.0.0") && installed_version < min_13_version
|
56
|
+
raise Client13Outdated.new(installed_version, min_13_version, min_14_version)
|
57
|
+
when installed_version < Gem::Version.new("13.0.0")
|
58
|
+
# If they have Chef < 13.0.0 installed we want to show them the easiest upgrade path -
|
59
|
+
# Chef 13 first and then Chef 14 since most customers cannot make the leap directly
|
60
|
+
# to 14.
|
61
|
+
raise Client13Outdated.new(installed_version, min_13_version, min_14_version)
|
62
|
+
end
|
63
|
+
|
64
|
+
:minimum_version_met
|
65
|
+
end
|
66
|
+
|
67
|
+
class ClientNotInstalled < ChefCore::Error
|
68
|
+
def initialize(); super("CHEFINS002"); end
|
69
|
+
end
|
70
|
+
|
71
|
+
class Client13Outdated < ChefCore::Error
|
72
|
+
def initialize(current_version, min_13_version, min_14_version)
|
73
|
+
super("CHEFINS003", current_version, min_13_version, min_14_version)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
class Client14Outdated < ChefCore::Error
|
78
|
+
def initialize(current_version, target_version)
|
79
|
+
super("CHEFINS004", current_version, target_version)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
metadata
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: chef-core-actions
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Chef Software, Inc
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-04-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: mixlib-log
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: chef-core
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: chef-config
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: Common functionality for Chef ruby components
|
56
|
+
email:
|
57
|
+
- workstation@chef.io
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE
|
63
|
+
- i18n/errors/en.yml
|
64
|
+
- lib/chef_core/actions.rb
|
65
|
+
- lib/chef_core/actions/base.rb
|
66
|
+
- lib/chef_core/actions/converge_target.rb
|
67
|
+
- lib/chef_core/actions/converge_target/ccr_failure_mapper.rb
|
68
|
+
- lib/chef_core/actions/install_chef.rb
|
69
|
+
- lib/chef_core/actions/install_chef/minimum_chef_version.rb
|
70
|
+
homepage: https://github.com/chef/chef_core
|
71
|
+
licenses:
|
72
|
+
- Apache-2.0
|
73
|
+
metadata: {}
|
74
|
+
post_install_message:
|
75
|
+
rdoc_options: []
|
76
|
+
require_paths:
|
77
|
+
- lib
|
78
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 2.5.0
|
83
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
requirements: []
|
89
|
+
rubygems_version: 3.0.3
|
90
|
+
signing_key:
|
91
|
+
specification_version: 4
|
92
|
+
summary: Common functionality for Chef ruby components
|
93
|
+
test_files: []
|