From 3a2c023be20d613532966f0d7cc879ae9b57d087 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 24 Oct 2023 14:27:42 +0200 Subject: [PATCH] feat(helm): Add deployment history --- src/openapi.yaml | 2 -- src/schemas/helm/DeploymentHistoryHelmResponse.yaml | 12 ++++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/openapi.yaml b/src/openapi.yaml index 0f27d48a..2262c328 100644 --- a/src/openapi.yaml +++ b/src/openapi.yaml @@ -802,8 +802,6 @@ paths: $ref: './resources/variable/VariableOverride.yaml' /variable/{variableId}: $ref: './resources/variable/VariableRef.yaml' - #/organization/{organizationId}/job/preview: - #/organization/{organizationId}/job/deploy: components: parameters: $ref: './parameters/_index.yaml' diff --git a/src/schemas/helm/DeploymentHistoryHelmResponse.yaml b/src/schemas/helm/DeploymentHistoryHelmResponse.yaml index 6753fe2d..e93edb4d 100644 --- a/src/schemas/helm/DeploymentHistoryHelmResponse.yaml +++ b/src/schemas/helm/DeploymentHistoryHelmResponse.yaml @@ -7,3 +7,15 @@ allOf: description: name of the helm status: $ref: '../enums/State.yaml' + commit: + $ref: '../CommitResponse.yaml' + repository: + type: object + nullable: true + description: If the chart source if from a repository, the chart name and its version + properties: + chart_name: + type: string + version: + type: string +