Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

[stable/sysdig] Enable new_k8s flag by default #13618

Merged
merged 1 commit into from
May 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions stable/sysdig/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
This file documents all notable changes to Sysdig Helm Chart. The release
numbering uses [semantic versioning](http://semver.org).

## v1.4.5

### Minor Changes

* Enable `new_k8s` flag by default. This allows kube state metrics to be
automatically detected, monitored, and displayed in Sysdig Monitor.

## v1.4.4

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion stable/sysdig/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: sysdig
version: 1.4.4
version: 1.4.5
appVersion: 0.89.5
description: Sysdig Monitor and Secure agent
keywords:
Expand Down
2 changes: 1 addition & 1 deletion stable/sysdig/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The following table lists the configurable parameters of the Sysdig chart and th
| `ebpf.enabled` | Enable eBPF support for Sysdig instead of `sysdig-probe` kernel module | `false` |
| `ebpf.settings.mountEtcVolume` | Needed to detect which kernel version are running in Google COS | `true` |
| `sysdig.accessKey` | Your Sysdig Monitor Access Key | `Nil` You must provide your own key |
| `sysdig.settings` | Settings for agent's configuration file | `{}` |
| `sysdig.settings` | Settings for agent's configuration file | `{ new_k8s: true }` |
| `secure.enabled` | Enable Sysdig Secure | `false` |
| `customAppChecks` | The custom app checks deployed with your agent | `{}` |
| `tolerations` | The tolerations for scheduling | `node-role.kubernetes.io/master:NoSchedule` |
Expand Down
4 changes: 2 additions & 2 deletions stable/sysdig/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ sysdig:
# Required: You need your Sysdig Monitor access key before running agents.
accessKey: ""

settings: {}
settings:
new_k8s: true
### Agent tags
# tags: linux:ubuntu,dept:dev,local:nyc
#### Sysdig Software related config ####
Expand All @@ -70,7 +71,6 @@ sysdig:
# collector certificate validation
# ssl_verify_certificate: true
#######################################
# new_k8s: true
# k8s_cluster_name: production

secure:
Expand Down