mcp-server-kubernetes 1.3.0 → 1.3.1
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.
|
@@ -24,6 +24,7 @@ export declare const installHelmChartSchema: {
|
|
|
24
24
|
values: {
|
|
25
25
|
type: string;
|
|
26
26
|
description: string;
|
|
27
|
+
properties: {};
|
|
27
28
|
additionalProperties: boolean;
|
|
28
29
|
};
|
|
29
30
|
};
|
|
@@ -55,6 +56,7 @@ export declare const upgradeHelmChartSchema: {
|
|
|
55
56
|
values: {
|
|
56
57
|
type: string;
|
|
57
58
|
description: string;
|
|
59
|
+
properties: {};
|
|
58
60
|
additionalProperties: boolean;
|
|
59
61
|
};
|
|
60
62
|
};
|
|
@@ -26,6 +26,7 @@ export const installHelmChartSchema = {
|
|
|
26
26
|
values: {
|
|
27
27
|
type: "object",
|
|
28
28
|
description: "Chart values",
|
|
29
|
+
properties: {},
|
|
29
30
|
additionalProperties: true,
|
|
30
31
|
},
|
|
31
32
|
},
|
|
@@ -57,6 +58,7 @@ export const upgradeHelmChartSchema = {
|
|
|
57
58
|
values: {
|
|
58
59
|
type: "object",
|
|
59
60
|
description: "Chart values",
|
|
61
|
+
properties: {},
|
|
60
62
|
additionalProperties: true,
|
|
61
63
|
},
|
|
62
64
|
},
|