1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-18 05:18:24 +02:00

kubernetesDeploy: add step configuration alias (#1857)

This is used for backward compatibility

Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
This commit is contained in:
Oliver Nocon 2020-07-29 11:21:32 +02:00 committed by GitHub
parent 40440f8f01
commit bcd450f06e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -143,7 +143,7 @@ func kubernetesDeployMetadata() config.StepData {
var theMetaData = config.StepData{
Metadata: config.StepMetadata{
Name: "kubernetesDeploy",
Aliases: []config.Alias{},
Aliases: []config.Alias{{Name: "deployToKubernetes", Deprecated: true}},
},
Spec: config.StepSpec{
Inputs: config.StepInputs{

View File

@ -1,5 +1,8 @@
metadata:
name: kubernetesDeploy
aliases:
- name: deployToKubernetes
deprecated: true
description: Deployment to Kubernetes test or production namespace within the specified Kubernetes cluster.
longDescription: |-
Deployment to Kubernetes test or production namespace within the specified Kubernetes cluster.