Skip to content

Commit

Permalink
Update default images tags (#58)
Browse files Browse the repository at this point in the history
* Update degault `datadog/agent` image tag to `7.23.0`
* Update default `datadog/cluster-agent` image tag to `1.9.0`
  • Loading branch information
clamoriniere authored Oct 14, 2020
1 parent 56554ee commit 161c6ca
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions charts/datadog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Datadog changelog

## 2.4.25

* Update default `datadog/agent` image tag to `7.23.0`
* Update default `datadog/cluster-agent` image tag to `1.9.0`

## 2.4.24

* Fix the Cluster Agent's network policy (allow ingress from node Agents)
Expand Down
2 changes: 1 addition & 1 deletion charts/datadog/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: datadog
version: 2.4.24
version: 2.4.25
appVersion: "7"
description: Datadog Agent
keywords:
Expand Down
8 changes: 4 additions & 4 deletions charts/datadog/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Datadog

![Version: 2.4.24](https://img.shields.io/badge/Version-2.4.24-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)
![Version: 2.4.25](https://img.shields.io/badge/Version-2.4.25-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)

[Datadog](https://www.datadoghq.com/) is a hosted infrastructure monitoring platform. This chart adds the Datadog Agent to all nodes in your cluster via a DaemonSet. It also optionally depends on the [kube-state-metrics chart](https://github.com/kubernetes/charts/tree/master/stable/kube-state-metrics). For more information about monitoring Kubernetes with Datadog, please refer to the [Datadog documentation website](https://docs.datadoghq.com/agent/basic_agent_usage/kubernetes/).

Expand Down Expand Up @@ -335,7 +335,7 @@ helm install --name <RELEASE_NAME> \
| agents.image.pullPolicy | string | `"IfNotPresent"` | Datadog Agent image pull policy |
| agents.image.pullSecrets | list | `[]` | Datadog Agent repository pullSecret (ex: specify docker registry credentials) |
| agents.image.repository | string | `"datadog/agent"` | Datadog Agent image repository to use |
| agents.image.tag | string | `"7.22.0"` | Define the Agent version to use |
| agents.image.tag | string | `"7.23.0"` | Define the Agent version to use |
| agents.networkPolicy.create | bool | `false` | If true, create a NetworkPolicy for the agents |
| agents.nodeSelector | object | `{}` | Allow the DaemonSet to schedule on selected nodes |
| agents.podAnnotations | object | `{}` | Annotations to add to the DaemonSet's Pods |
Expand Down Expand Up @@ -372,7 +372,7 @@ helm install --name <RELEASE_NAME> \
| clusterAgent.image.pullPolicy | string | `"IfNotPresent"` | Cluster Agent image pullPolicy |
| clusterAgent.image.pullSecrets | list | `[]` | Cluster Agent repository pullSecret (ex: specify docker registry credentials) |
| clusterAgent.image.repository | string | `"datadog/cluster-agent"` | Cluster Agent image repository to use |
| clusterAgent.image.tag | string | `"1.8.0"` | Cluster Agent image tag to use |
| clusterAgent.image.tag | string | `"1.9.0"` | Cluster Agent image tag to use |
| clusterAgent.livenessProbe | object | Every 15s / 6 KO / 1 OK | Override default agent liveness probe settings |
| clusterAgent.metricsProvider.aggregator | string | `"avg"` | Define the aggregator the cluster agent will use to process the metrics. The options are (avg, min, max, sum) |
| clusterAgent.metricsProvider.createReaderRbac | bool | `true` | Create `external-metrics-reader` RBAC automatically (to allow HPA to read data from Cluster Agent) |
Expand Down Expand Up @@ -403,7 +403,7 @@ helm install --name <RELEASE_NAME> \
| clusterChecksRunner.image.pullPolicy | string | `"IfNotPresent"` | Datadog Agent image pull policy |
| clusterChecksRunner.image.pullSecrets | list | `[]` | Datadog Agent repository pullSecret (ex: specify docker registry credentials) |
| clusterChecksRunner.image.repository | string | `"datadog/agent"` | Datadog Agent image repository to use |
| clusterChecksRunner.image.tag | string | `"7.22.0"` | Define the Agent version to use |
| clusterChecksRunner.image.tag | string | `"7.23.0"` | Define the Agent version to use |
| clusterChecksRunner.livenessProbe | object | Every 15s / 6 KO / 1 OK | Override default agent liveness probe settings |
| clusterChecksRunner.networkPolicy.create | bool | `false` | If true, create a NetworkPolicy for the cluster checks runners |
| clusterChecksRunner.nodeSelector | object | `{}` | Allow the ClusterChecks Deployment to schedule on selected nodes |
Expand Down
6 changes: 3 additions & 3 deletions charts/datadog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ clusterAgent:
repository: datadog/cluster-agent

# clusterAgent.image.tag -- Cluster Agent image tag to use
tag: 1.8.0
tag: 1.9.0

# clusterAgent.image.pullPolicy -- Cluster Agent image pullPolicy
pullPolicy: IfNotPresent
Expand Down Expand Up @@ -526,7 +526,7 @@ agents:

# agents.image.tag -- Define the Agent version to use
## Use 7-jmx to enable jmx fetch collection
tag: 7.22.0
tag: 7.23.0

# agents.image.doNotCheckTag -- Skip the version<>chart compatibility check
## By default, the version passed in agents.image.tag is checked
Expand Down Expand Up @@ -840,7 +840,7 @@ clusterChecksRunner:

# clusterChecksRunner.image.tag -- Define the Agent version to use
## Use 7-jmx to enable jmx fetch collection
tag: 7.22.0
tag: 7.23.0

# clusterChecksRunner.image.pullPolicy -- Datadog Agent image pull policy
pullPolicy: IfNotPresent
Expand Down

0 comments on commit 161c6ca

Please sign in to comment.