Skip to content

Commit

Permalink
[PAR] Add gitlab credentials example (#1695)
Browse files Browse the repository at this point in the history
* Add gitlab credentials example

* bump version
  • Loading branch information
dd-gplassard authored Feb 10, 2025
1 parent 6885b61 commit 6754d6b
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 3 deletions.
4 changes: 4 additions & 0 deletions charts/private-action-runner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Datadog changelog

## 0.15.5

* Add gitlab credentials file example

## 0.15.4

* Update private action image version to `v0.1.10-beta`
Expand Down
2 changes: 1 addition & 1 deletion charts/private-action-runner/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: private-action-runner
description: A Helm chart to deploy the private action runner

type: application
version: 0.15.4
version: 0.15.5
appVersion: "1.22.0"
keywords:
- app builder
Expand Down
2 changes: 1 addition & 1 deletion charts/private-action-runner/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Datadog Private Action Runner

![Version: 0.15.4](https://img.shields.io/badge/Version-0.15.4-informational?style=flat-square) ![AppVersion: v0.1.10-beta](https://img.shields.io/badge/AppVersion-v0.1.6--beta-informational?style=flat-square)
![Version: 0.15.5](https://img.shields.io/badge/Version-0.15.4-informational?style=flat-square) ![AppVersion: v0.1.10-beta](https://img.shields.io/badge/AppVersion-v0.1.6--beta-informational?style=flat-square)

This Helm Chart deploys the Datadog Private Action runner inside a Kubernetes cluster. It allows you to use private actions from the Datadog Workflow and Datadog App Builder products. When deploying this chart, you can give permissions to the runner in order to be able to run Kubernetes actions.

Expand Down
2 changes: 1 addition & 1 deletion charts/private-action-runner/README.md.gotmpl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Datadog Private Action Runner

![Version: 0.15.4](https://img.shields.io/badge/Version-0.15.4-informational?style=flat-square) ![AppVersion: v0.1.10-beta](https://img.shields.io/badge/AppVersion-v0.1.6--beta-informational?style=flat-square)
![Version: 0.15.5](https://img.shields.io/badge/Version-0.15.4-informational?style=flat-square) ![AppVersion: v0.1.10-beta](https://img.shields.io/badge/AppVersion-v0.1.6--beta-informational?style=flat-square)

This Helm Chart deploys the Datadog Private Action runner inside a Kubernetes cluster. It allows you to use private actions from the Datadog Workflow and Datadog App Builder products. When deploying this chart, you can give permissions to the runner in order to be able to run Kubernetes actions.

Expand Down
16 changes: 16 additions & 0 deletions charts/private-action-runner/examples/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,19 @@ credentialFiles:
}
]
}
- fileName: "gitlab_creds.json"
data: |
{
"auth_type": "Token Auth",
"credentials": [
{
"tokenName": "baseURL",
"tokenValue": "GITLAB_BASE_URL"
},
{
"tokenName": "gitlabApiToken",
"tokenValue": "GITLAB_API_TOKEN"
}
]
}

0 comments on commit 6754d6b

Please sign in to comment.