-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Adrien Mannocci <[email protected]>
- Loading branch information
Showing
3 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
|
||
# Version of configuration to use | ||
version: '1.0' | ||
|
||
# You can define a Google Cloud Account to use | ||
account: | ||
# Project id of the service account | ||
project: '${GCS_PROJECT}' | ||
# Private key id of the service account | ||
private_key_id: '${GCS_PRIVATE_KEY_ID}' | ||
# Private key of the service account | ||
private_key: '${GCS_PRIVATE_KEY}' | ||
# Email of the service account | ||
client_email: '${GCS_CLIENT_EMAIL}' | ||
# URI token | ||
token_uri: 'https://oauth2.googleapis.com/token' | ||
|
||
# List of artifacts | ||
artifacts: | ||
# Path to use for artifacts discovery | ||
- path: './build/dist' | ||
# Files pattern to match | ||
files_pattern: 'elastic-apm-node-(?P<app_version>\d+\.\d+\.\d+)\.tgz' | ||
# File layout on GCS bucket | ||
output_pattern: '{project}/{jenkins_branch_name}/elastic-apm-node-{app_version}-{jenkins_git_commit_short}.tgz' | ||
# List of metadata processors to use. | ||
metadata: | ||
# Define static custom metadata | ||
- name: 'custom' | ||
data: | ||
project: 'apm-agent-nodejs' | ||
# Add git metadata | ||
- name: 'git' | ||
# Add jenkins metadata | ||
- name: 'jenkins' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters