Skip to content

Commit

Permalink
Merge branch 'main' into guillermo.julian/enable-gpu-monitoring
Browse files Browse the repository at this point in the history
  • Loading branch information
gjulianm committed Feb 18, 2025
2 parents 44c00df + c7c5991 commit 71b57c3
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 16 deletions.
8 changes: 8 additions & 0 deletions charts/datadog/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

* Add support for GPU monitoring

## 3.90.5

* Update `fips.image.tag` to `1.1.7` updating openSSL version to 3.0.16

## 3.90.4

* Fix RBAC rendering and map merge when `datadog.kubernetesResourcesAnnotationsAsTags` and/or `datadog.kubernetesResourcesLabelsAsTags` are used.

## 3.90.3

* Defaults `registry` to `gcr.io/datadoghq` when setting `datadog.site: us3.datadoghq.com` and deploying on GKE Autopilot (`providers.gke.autopilot: true`).
Expand Down
2 changes: 1 addition & 1 deletion charts/datadog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ helm install <RELEASE_NAME> \
| fips.image.name | string | `"fips-proxy"` | |
| fips.image.pullPolicy | string | `"IfNotPresent"` | Datadog the FIPS sidecar image pull policy |
| fips.image.repository | string | `nil` | Override default registry + image.name for the FIPS sidecar container. |
| fips.image.tag | string | `"1.1.6"` | Define the FIPS sidecar container version to use. |
| fips.image.tag | string | `"1.1.7"` | Define the FIPS sidecar container version to use. |
| fips.local_address | string | `"127.0.0.1"` | Set local IP address |
| fips.port | int | `9803` | Specifies which port is used by the containers to communicate to the FIPS sidecar. |
| fips.portRange | int | `15` | Specifies the number of ports used, defaults to 13 https://github.com/DataDog/datadog-agent/blob/7.44.x/pkg/config/config.go#L1564-L1577 |
Expand Down
13 changes: 6 additions & 7 deletions charts/datadog/templates/cluster-agent-rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -515,14 +515,13 @@ metadata:
namespace: {{ .Release.Namespace }}

{{- $groupedResources := dict }}
{{- $mergedResources := merge (default dict .Values.datadog.kubernetesResourcesAnnotationsAsTags) (default dict .Values.datadog.kubernetesResourcesLabelsAsTags)}}
{{- $mergedResources := mergeOverwrite dict (default dict .Values.datadog.kubernetesResourcesAnnotationsAsTags) (default dict .Values.datadog.kubernetesResourcesLabelsAsTags)}}
{{- range $resource, $labels := $mergedResources }}
{{- $parts := split "." $resource }}
{{- $parts := splitList "." $resource }}
{{- $apiGroup := "" }}
{{- $resourceName := $resource }}
{{- if eq (len $parts) 2 }}
{{- $apiGroup = index $parts "_1" }}
{{- $resourceName = index $parts "_0" }}
{{- $resourceName := mustFirst $parts }}
{{- if gt (len $parts) 1 }}
{{- $apiGroup = join "." (mustRest $parts) }}
{{- end }}
{{- $existing := index $groupedResources $apiGroup | default (list) }}
{{- $groupedResources = set $groupedResources $apiGroup (append $existing $resourceName) }}
Expand Down Expand Up @@ -559,4 +558,4 @@ subjects:
- kind: ServiceAccount
name: {{ template "datadog.fullname" . }}-cluster-agent
namespace: {{ .Release.Namespace }}
{{- end -}}
{{- end -}}
2 changes: 1 addition & 1 deletion charts/datadog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1520,7 +1520,7 @@ fips:
name: fips-proxy

# fips.image.tag -- Define the FIPS sidecar container version to use.
tag: 1.1.6
tag: 1.1.7

# fips.image.pullPolicy -- Datadog the FIPS sidecar image pull policy
pullPolicy: IfNotPresent
Expand Down
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.6

* Update private action image version to `v0.1.11-beta`

## 0.15.5

* Add gitlab credentials file example
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.5
version: 0.15.6
appVersion: "1.22.0"
keywords:
- app builder
Expand Down
4 changes: 2 additions & 2 deletions 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.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)
![Version: 0.15.6](https://img.shields.io/badge/Version-0.15.6-informational?style=flat-square) ![AppVersion: v0.1.11-beta](https://img.shields.io/badge/AppVersion-v0.1.11--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 Expand Up @@ -42,7 +42,7 @@ helm repo update

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| common.image | object | `{"repository":"gcr.io/datadoghq/private-action-runner","tag":"v0.1.10-beta"}` | Current Datadog Private Action Runner image |
| common.image | object | `{"repository":"gcr.io/datadoghq/private-action-runner","tag":"v0.1.11-beta"}` | Current Datadog Private Action Runner image |
| credentialFiles | list | `[]` | List of credential files to be used by the Datadog Private Action Runner |
| runners[0].config | object | `{"actionsAllowlist":[],"ddBaseURL":"https://app.datadoghq.com","modes":["workflowAutomation","appBuilder"],"port":9016,"privateKey":"CHANGE_ME_PRIVATE_KEY_FROM_CONFIG","urn":"CHANGE_ME_URN_FROM_CONFIG"}` | Configuration for the Datadog Private Action Runner |
| runners[0].config.actionsAllowlist | list | `[]` | List of actions that the Datadog Private Action Runner is allowed to execute |
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.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)
![Version: 0.15.6](https://img.shields.io/badge/Version-0.15.6-informational?style=flat-square) ![AppVersion: v0.1.11-beta](https://img.shields.io/badge/AppVersion-v0.1.11--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/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ common:
# -- Current Datadog Private Action Runner image
image:
repository: gcr.io/datadoghq/private-action-runner
tag: v0.1.10-beta
tag: v0.1.11-beta

runners:
# runners[0].name -- Name of the Datadog Private Action Runner
Expand Down
2 changes: 1 addition & 1 deletion test/private-action-runner/__snapshot__/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ spec:
value: nodeless
containers:
- name: runner
image: "gcr.io/datadoghq/private-action-runner:v0.1.10-beta"
image: "gcr.io/datadoghq/private-action-runner:v0.1.11-beta"
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ spec:
value: nodeless
containers:
- name: runner
image: "gcr.io/datadoghq/private-action-runner:v0.1.10-beta"
image: "gcr.io/datadoghq/private-action-runner:v0.1.11-beta"
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down

0 comments on commit 71b57c3

Please sign in to comment.