@itentialopensource/adapter-docker 0.7.1 → 0.7.2
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.
- package/CHANGELOG.md +8 -0
- package/metadata.json +12 -5
- package/package.json +2 -2
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +1 -1
- package/test/unit/adapterTestUnit.js +1 -1
package/CHANGELOG.md
CHANGED
package/metadata.json
CHANGED
|
@@ -18,12 +18,18 @@
|
|
|
18
18
|
],
|
|
19
19
|
"tags": [
|
|
20
20
|
"Cloud Networking",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
21
|
+
"Configuration Management",
|
|
22
|
+
"Virtual Compute"
|
|
23
23
|
],
|
|
24
24
|
"useCases": [
|
|
25
|
-
"
|
|
26
|
-
"
|
|
25
|
+
"Add or remove Virtual Machine Images",
|
|
26
|
+
"Instantiate, manage, remove Virtual Machine Instances",
|
|
27
|
+
"Deploy Virtual Services and Functions",
|
|
28
|
+
"Determine available Cloud Resources",
|
|
29
|
+
"Assign resources to Virtual Machine Instances",
|
|
30
|
+
"Add or remove Virtual Networks",
|
|
31
|
+
"Management of Cloud Network Assignments",
|
|
32
|
+
"Management of Cloud Storage"
|
|
27
33
|
],
|
|
28
34
|
"deprecated": {
|
|
29
35
|
"isDeprecated": false
|
|
@@ -32,9 +38,10 @@
|
|
|
32
38
|
"documentation": {
|
|
33
39
|
"storeLink": "",
|
|
34
40
|
"npmLink": "https://www.npmjs.com/package/@itentialopensource/adapter-docker",
|
|
35
|
-
"repoLink": "https://gitlab.com/itentialopensource/adapters/cloud/adapter-docker
|
|
41
|
+
"repoLink": "https://gitlab.com/itentialopensource/adapters/cloud/adapter-docker",
|
|
36
42
|
"docLink": "https://docs.itential.com/opensource/docs/docker",
|
|
37
43
|
"demoLinks": [],
|
|
44
|
+
"trainingLinks": [],
|
|
38
45
|
"faqLink": "https://docs.itential.com/opensource/docs/troubleshooting-an-adapter",
|
|
39
46
|
"contributeLink": "https://gitlab.com/itentialopensource/adapters/contributing-guide",
|
|
40
47
|
"issueLink": "https://itential.atlassian.net/servicedesk/customer/portals",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-docker",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "This adapter integrates with system Docker",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "Docker Engine",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@itentialopensource/adapter-utils": "^5.3.0",
|
|
58
58
|
"acorn": "^8.10.0",
|
|
59
59
|
"ajv": "^8.12.0",
|
|
60
|
-
"axios": "^1.
|
|
60
|
+
"axios": "^1.6.2",
|
|
61
61
|
"commander": "^11.0.0",
|
|
62
62
|
"dns-lookup-promise": "^1.0.4",
|
|
63
63
|
"fs-extra": "^11.1.1",
|
|
Binary file
|
package/report/adapterInfo.json
CHANGED
|
@@ -316,7 +316,7 @@ describe('[unit] Docker Adapter Test', () => {
|
|
|
316
316
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
317
317
|
assert.notEqual('', packageDotJson.dependencies);
|
|
318
318
|
assert.equal('^8.12.0', packageDotJson.dependencies.ajv);
|
|
319
|
-
assert.equal('^1.
|
|
319
|
+
assert.equal('^1.6.2', packageDotJson.dependencies.axios);
|
|
320
320
|
assert.equal('^11.0.0', packageDotJson.dependencies.commander);
|
|
321
321
|
assert.equal('^11.1.1', packageDotJson.dependencies['fs-extra']);
|
|
322
322
|
assert.equal('^10.2.0', packageDotJson.dependencies.mocha);
|