mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
ba58d72022
* Update texts of gCTS steps and scenario for SSL and queryP * delete a trailing space
116 lines
3.6 KiB
YAML
116 lines
3.6 KiB
YAML
metadata:
|
|
name: gctsCreateRepository
|
|
description: Creates a Git repository on an ABAP system
|
|
longDescription: |
|
|
Creates a local Git repository on an ABAP system if it does not already exist.
|
|
|
|
spec:
|
|
inputs:
|
|
secrets:
|
|
- name: abapCredentialsId
|
|
description: Jenkins credentials ID containing username and password for authentication to the ABAP system on which you want to create the repository
|
|
type: jenkins
|
|
params:
|
|
- name: username
|
|
type: string
|
|
description: Username to authenticate to the ABAP system
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
mandatory: true
|
|
secret: true
|
|
resourceRef:
|
|
- name: abapCredentialsId
|
|
type: secret
|
|
param: username
|
|
- name: password
|
|
type: string
|
|
description: Password to authenticate to the ABAP system
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
mandatory: true
|
|
secret: true
|
|
resourceRef:
|
|
- name: abapCredentialsId
|
|
type: secret
|
|
param: password
|
|
- name: repository
|
|
type: string
|
|
description: Specifies the name (ID) of the local repository on the ABAP system
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
mandatory: true
|
|
- name: host
|
|
type: string
|
|
description: Specifies the protocol and host address, including the port. Please provide in the format `<protocol>://<host>:<port>`. Supported protocols are `http` and `https`.
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
mandatory: true
|
|
- name: client
|
|
type: string
|
|
description: Specifies the client of the ABAP system to be addressed
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
mandatory: true
|
|
- name: remoteRepositoryURL
|
|
type: string
|
|
description: URL of the corresponding remote repository
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
- name: role
|
|
type: string
|
|
description: Role of the local repository. Choose between 'TARGET' and 'SOURCE'. Local repositories with a TARGET role will NOT be able to be the source of code changes
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
possibleValues:
|
|
- SOURCE
|
|
- TARGET
|
|
default: SOURCE
|
|
- name: vSID
|
|
type: string
|
|
description: Virtual SID of the local repository. The vSID corresponds to the transport route that delivers content to the remote Git repository
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
- name: type
|
|
type: string
|
|
description: Type of the used source code management tool
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
default: GIT
|
|
possibleValues:
|
|
- GIT
|
|
- name: queryParameters
|
|
type: "map[string]interface{}"
|
|
description: Add query parameters (for API requests) that apply to all endpoints of the step. Provide the parameters as key-value pair map in the format `<query parameter>:<value>`.
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
mandatory: false
|
|
- name: skipSSLVerification
|
|
type: bool
|
|
description: Skip the verification of SSL (Secure Socket Layer) certificates when using HTTPS. This parameter is **not recommended** for productive environments.
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
mandatory: false
|
|
default: false
|