@itentialopensource/adapter-kubernetes 0.8.0 → 0.8.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 CHANGED
@@ -1,4 +1,20 @@
1
1
 
2
+ ## 0.8.2 [12-26-2023]
3
+
4
+ * update axios and metadata
5
+
6
+ See merge request itentialopensource/adapters/cloud/adapter-kubernetes!11
7
+
8
+ ---
9
+
10
+ ## 0.8.1 [12-14-2023]
11
+
12
+ * Remediation Merge Request
13
+
14
+ See merge request itentialopensource/adapters/cloud/adapter-kubernetes!10
15
+
16
+ ---
17
+
2
18
  ## 0.8.0 [12-14-2023]
3
19
 
4
20
  * Adapter Engine has been updated and the changes are being migrated to the adapter
package/metadata.json CHANGED
@@ -18,15 +18,19 @@
18
18
  "Data Center"
19
19
  ],
20
20
  "tags": [
21
- "Pod Operations",
22
- "Deployment Management",
23
- "Cluster Management",
24
- "ConfigMap Handling",
25
- "Secret Handling"
21
+ "Cloud Networking",
22
+ "Configuration Management",
23
+ "Virtual Compute"
26
24
  ],
27
25
  "useCases": [
28
- "Create, update or delete Pods",
29
- "Manage network policies and load balancing"
26
+ "Add or remove Virtual Machine Images",
27
+ "Instantiate, manage, remove Virtual Machine Instances",
28
+ "Deploy Virtual Services and Functions",
29
+ "Determine available Cloud Resources",
30
+ "Assign resources to Virtual Machine Instances",
31
+ "Add or remove Virtual Networks",
32
+ "Management of Cloud Network Assignments",
33
+ "Management of Cloud Storage"
30
34
  ],
31
35
  "deprecated": {
32
36
  "isDeprecated": false
@@ -35,7 +39,7 @@
35
39
  "documentation": {
36
40
  "storeLink": "",
37
41
  "npmLink": "https://www.npmjs.com/package/@itentialopensource/adapter-kubernetes",
38
- "repoLink": "https://gitlab.com/itentialopensource/adapters/cloud/adapter-kubernetes.git",
42
+ "repoLink": "https://gitlab.com/itentialopensource/adapters/cloud/adapter-kubernetes",
39
43
  "docLink": "https://docs.itential.com/opensource/docs/kubernetes",
40
44
  "demoLinks": [],
41
45
  "faqLink": "https://docs.itential.com/opensource/docs/troubleshooting-an-adapter",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-kubernetes",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
4
4
  "description": "This adapter integrates with system described as: kubernetes.",
5
5
  "main": "adapter.js",
6
6
  "systemName": "Kubernetes",
@@ -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.4.0",
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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.7.0",
2
+ "version": "0.8.1",
3
3
  "configLines": 57464,
4
4
  "scriptLines": 1783,
5
5
  "codeLines": 72913,
@@ -316,7 +316,7 @@ describe('[unit] Kubernetes 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.4.0', packageDotJson.dependencies.axios);
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);