@daocloud-proto/kpanda 0.31.0-dev-8de5435b → 0.31.0-dev-284599df
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.
|
@@ -146,13 +146,13 @@ export type CreateHelmReleaseRequest = {
|
|
|
146
146
|
disableOpenApiValidation?: boolean
|
|
147
147
|
createNamespace?: boolean
|
|
148
148
|
checkReleaseName?: GoogleProtobufWrappers.BoolValue
|
|
149
|
-
|
|
149
|
+
chart?: HelmChartInstall
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
export type CreateHelmReleaseResponse = {
|
|
153
153
|
cluster?: string
|
|
154
154
|
namespace?: string
|
|
155
|
-
|
|
155
|
+
releaseName?: string
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
export type GetHelmReleaseRequest = {
|
|
@@ -223,7 +223,7 @@ export type DeleteHelmReleaseRequest = {
|
|
|
223
223
|
export type DeleteHelmReleaseResponse = {
|
|
224
224
|
cluster?: string
|
|
225
225
|
namespace?: string
|
|
226
|
-
|
|
226
|
+
releaseName?: string
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
export type HelmChartUpgrade = {
|
|
@@ -252,13 +252,13 @@ export type UpdateHelmReleaseRequest = {
|
|
|
252
252
|
maxHistory?: number
|
|
253
253
|
install?: boolean
|
|
254
254
|
cleanupOnFail?: boolean
|
|
255
|
-
|
|
255
|
+
chart?: HelmChartUpgrade
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
export type UpdateHelmReleaseResponse = {
|
|
259
259
|
cluster?: string
|
|
260
260
|
namespace?: string
|
|
261
|
-
|
|
261
|
+
releaseName?: string
|
|
262
262
|
}
|
|
263
263
|
|
|
264
264
|
export type RollbackHelmReleaseRequest = {
|
|
@@ -278,7 +278,7 @@ export type RollbackHelmReleaseRequest = {
|
|
|
278
278
|
export type RollbackHelmReleaseResponse = {
|
|
279
279
|
cluster?: string
|
|
280
280
|
namespace?: string
|
|
281
|
-
|
|
281
|
+
releaseName?: string
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
export type GetHelmInstallConfigRequest = {
|