Skip to content

Commit

Permalink
Merge branch 'master' into ac-eks-friendly-ports
Browse files Browse the repository at this point in the history
  • Loading branch information
airadier authored Aug 28, 2023
2 parents f452f1e + 9eeb8a3 commit 9cf5cfc
Show file tree
Hide file tree
Showing 17 changed files with 36 additions and 23 deletions.
3 changes: 3 additions & 0 deletions charts/admission-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Manual edits are supported only below '## Change Log' and should be used
exclusively to fix incorrect entries and not to add new ones.

## Change Log
# v0.13.3
### New Features
* **admission-controller** [60074372](https://github.com/sysdiglabs/charts/commit/60074372b0970726b1fe100853be7d7ffb01bdef): add watch job permission ([#1312](https://github.com/sysdiglabs/charts/issues/1312))
# v0.13.2
### New Features
* **admission-controller** [36e87076](https://github.com/sysdiglabs/charts/commit/36e87076af520a0b6becfdf8eeff15b46bed6803): Add watch permission for AC ([#1303](https://github.com/sysdiglabs/charts/issues/1303))
Expand Down
4 changes: 2 additions & 2 deletions charts/admission-controller/RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# What's Changed

### New Features
- **admission-controller** [36e87076](https://github.com/sysdiglabs/charts/commit/36e87076af520a0b6becfdf8eeff15b46bed6803): Add watch permission for AC ([#1303](https://github.com/sysdiglabs/charts/issues/1303))
#### Full diff: https://github.com/sysdiglabs/charts/compare/admission-controller-0.13.1...admission-controller-0.13.2
- **admission-controller** [60074372](https://github.com/sysdiglabs/charts/commit/60074372b0970726b1fe100853be7d7ffb01bdef): add watch job permission ([#1312](https://github.com/sysdiglabs/charts/issues/1312))
#### Full diff: https://github.com/sysdiglabs/charts/compare/admission-controller-0.13.2...admission-controller-0.13.3
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ rules:
- pods
{{- if .Values.webhook.acConfig }}
- configmaps
- secrets
{{- end }}
verbs:
- get
Expand Down
2 changes: 1 addition & 1 deletion charts/admission-controller/tests/configmap_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ tests:
path: rules[1]
content:
apiGroups: [""]
resources: ["pods", "configmaps"]
resources: ["pods", "configmaps", "secrets"]
verbs: ["get"]
template: templates/webhook/clusterrole.yaml
- it: Does not create the configmap if webhook.acConfig is not present
Expand Down
3 changes: 3 additions & 0 deletions charts/kspm-collector/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Manual edits are supported only below '## Change Log' and should be used
exclusively to fix incorrect entries and not to add new ones.

## Change Log
# v0.6.0
### Chores
* **kspm-collector,node-analyzer** [3985651e](https://github.com/sysdiglabs/charts/commit/3985651e0c6d52788fa0e36a740499458571b6b0): KSPM v1.29.0 ([#1311](https://github.com/sysdiglabs/charts/issues/1311))
# v0.5.0
### New Features
* **kspm-collector,node-analyzer** [b302524f](https://github.com/sysdiglabs/charts/commit/b302524f75098299644ef541d71876180f61ed01): release agents v1.27.0 with RKE2 suport ([#1274](https://github.com/sysdiglabs/charts/issues/1274))
Expand Down
4 changes: 2 additions & 2 deletions charts/kspm-collector/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: kspm-collector
description: Sysdig KSPM collector

version: 0.5.0
appVersion: 1.27.0
version: 0.6.0
appVersion: 1.29.0

keywords:
- monitoring
Expand Down
2 changes: 1 addition & 1 deletion charts/kspm-collector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The following table lists the configurable parameters of the Sysdig KSPM Collect
| `clusterName` | Sets a unique cluster name. This name will be used to identify events using the `kubernetes.cluster.name` tag. | ` ` |
| `image.registry` | Specifies the KSPM collector image registry. | `quay.io` |
| `image.repository` | Specifies the image repository to pull from. | `sysdig/kspm-collector` |
| `image.tag` | Specifies the image tag to pull from the image repository. | `1.27.0` |
| `image.tag` | Specifies the image tag to pull from the image repository. | `1.29.0` |
| `image.digest` | Specifies the image digest to pull from the image repository. | ` ` |
| `image.pullPolicy` | Specifies theImage pull policy. | `""` |
| `imagePullSecrets` | Specifies the Image pull secret. | `[]` |
Expand Down
6 changes: 3 additions & 3 deletions charts/kspm-collector/RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# What's Changed

### New Features
- **kspm-collector,node-analyzer** [b302524f](https://github.com/sysdiglabs/charts/commit/b302524f75098299644ef541d71876180f61ed01): release agents v1.27.0 with RKE2 suport ([#1274](https://github.com/sysdiglabs/charts/issues/1274))
#### Full diff: https://github.com/sysdiglabs/charts/compare/kspm-collector-0.4.0...kspm-collector-0.5.0
### Chores
- **kspm-collector,node-analyzer** [3985651e](https://github.com/sysdiglabs/charts/commit/3985651e0c6d52788fa0e36a740499458571b6b0): KSPM v1.29.0 ([#1311](https://github.com/sysdiglabs/charts/issues/1311))
#### Full diff: https://github.com/sysdiglabs/charts/compare/kspm-collector-0.5.0...kspm-collector-0.6.0
2 changes: 1 addition & 1 deletion charts/kspm-collector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ clusterName: ""

image:
repository: sysdig/kspm-collector
tag: 1.27.0
tag: 1.29.0
digest:
registry: quay.io
pullPolicy:
Expand Down
3 changes: 3 additions & 0 deletions charts/node-analyzer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Manual edits are supported only below '## Change Log' and should be used
exclusively to fix incorrect entries and not to add new ones.

## Change Log
# v1.14.6
### Chores
* **kspm-collector,node-analyzer** [3985651e](https://github.com/sysdiglabs/charts/commit/3985651e0c6d52788fa0e36a740499458571b6b0): KSPM v1.29.0 ([#1311](https://github.com/sysdiglabs/charts/issues/1311))
# v1.14.5
### Chores
* **sysdig, node-analyzer** [17d2e503](https://github.com/sysdiglabs/charts/commit/17d2e50326f587b154f43beb706627416ca6a4b6): bump sysdig/vuln-runtime-scanner to v1.5.4 ([#1305](https://github.com/sysdiglabs/charts/issues/1305))
Expand Down
2 changes: 1 addition & 1 deletion charts/node-analyzer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: node-analyzer
description: Sysdig Node Analyzer

# currently matching Sysdig's appVersion 1.14.34
version: 1.14.5
version: 1.14.6
appVersion: 12.6.0
keywords:
- monitoring
Expand Down
2 changes: 1 addition & 1 deletion charts/node-analyzer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ The following table lists the configurable parameters of the Sysdig Node Analyze
| `nodeAnalyzer.tolerations` | Specifies the tolerations for scheduling. | <pre>node-role.kubernetes.io/master:NoSchedule,<br>node-role.kubernetes.io/control-plane:NoSchedule</pre> |
| `nodeAnalyzer.kspmAnalyzer.debug` | Set to true to show KSPM node analyzer debug logging, which is useful for troubleshooting. | `false` |
| `nodeAnalyzer.kspmAnalyzer.image.repository` | Specifies the image repository to pull the KSPM node analyzer from. | `sysdig/kspm-analyzer` |
| `nodeAnalyzer.kspmAnalyzer.image.tag` | Specifies the image tag for the KSPM node analyzer image to be pulled. | `1.27.0` |
| `nodeAnalyzer.kspmAnalyzer.image.tag` | Specifies the image tag for the KSPM node analyzer image to be pulled. | `1.29.0` |
| `nodeAnalyzer.kspmAnalyzer.image.digest` | Specifies the image digest to pull. | ` ` |
| `nodeAnalyzer.kspmAnalyzer.image.pullPolicy` | Specifies the The image pull policy for the KSPM node analyzer. | `""` |
| `nodeAnalyzer.kspmAnalyzer.resources.requests.cpu` | Specifies the KSPM node analyzer CPU requests per node. | `150m` |
Expand Down
7 changes: 2 additions & 5 deletions charts/node-analyzer/RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# What's Changed

### Chores
- **sysdig, node-analyzer** [17d2e503](https://github.com/sysdiglabs/charts/commit/17d2e50326f587b154f43beb706627416ca6a4b6): bump sysdig/vuln-runtime-scanner to v1.5.4 ([#1305](https://github.com/sysdiglabs/charts/issues/1305))

* * Runtime Scanner bumped to 1.5.4
* Fixed a misbehavior of the image layer analyzer, which could lead to non-existing software artifacts being reported in the SBOM as a result of incorrect handling of opaque directories (ESC-3511).
#### Full diff: https://github.com/sysdiglabs/charts/compare/node-analyzer-1.14.4...node-analyzer-1.14.5
- **kspm-collector,node-analyzer** [3985651e](https://github.com/sysdiglabs/charts/commit/3985651e0c6d52788fa0e36a740499458571b6b0): KSPM v1.29.0 ([#1311](https://github.com/sysdiglabs/charts/issues/1311))
#### Full diff: https://github.com/sysdiglabs/charts/compare/node-analyzer-1.14.5...node-analyzer-1.14.6
2 changes: 1 addition & 1 deletion charts/node-analyzer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ nodeAnalyzer:
debug: false
image:
repository: sysdig/kspm-analyzer
tag: 1.27.0
tag: 1.29.0
digest:
pullPolicy:

Expand Down
6 changes: 6 additions & 0 deletions charts/sysdig-deploy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ Manual edits are supported only below '## Change Log' and should be used
exclusively to fix incorrect entries and not to add new ones.

## Change Log
# v1.19.3
### Chores
* **kspm-collector,node-analyzer** [3985651e](https://github.com/sysdiglabs/charts/commit/3985651e0c6d52788fa0e36a740499458571b6b0): KSPM v1.29.0 ([#1311](https://github.com/sysdiglabs/charts/issues/1311))
# v1.19.2
### Chores
* **sysdig-deploy** [3c59ea84](https://github.com/sysdiglabs/charts/commit/3c59ea8425c5926fc2780dda919399f0b1e8bc6b): Automatic version bump due to updated dependencies ([#1308](https://github.com/sysdiglabs/charts/issues/1308))
# v1.19.1
### Chores
* **sysdig-deploy** [6fb44c0f](https://github.com/sysdiglabs/charts/commit/6fb44c0fe2ae1fdde1723d3d94feb204d44a0f7b): Automatic version bump due to updated dependencies ([#1307](https://github.com/sysdiglabs/charts/issues/1307))
Expand Down
6 changes: 3 additions & 3 deletions charts/sysdig-deploy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: sysdig-deploy
description: A chart with various Sysdig components for Kubernetes
type: application
version: 1.19.1
version: 1.19.3
maintainers:
- name: AlbertoBarba
email: [email protected]
Expand Down Expand Up @@ -36,7 +36,7 @@ dependencies:
- name: node-analyzer
# repository: https://charts.sysdig.com
repository: file://../node-analyzer
version: ~1.14.5
version: ~1.14.6
alias: nodeAnalyzer
condition: nodeAnalyzer.enabled
- name: cluster-scanner
Expand All @@ -48,7 +48,7 @@ dependencies:
- name: kspm-collector
# repository: https://charts.sysdig.com
repository: file://../kspm-collector
version: ~0.5.0
version: ~0.6.0
alias: kspmCollector
condition: global.kspm.deploy
- name: rapid-response
Expand Down
4 changes: 2 additions & 2 deletions charts/sysdig-deploy/RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# What's Changed

### Chores
- **sysdig-deploy** [6fb44c0f](https://github.com/sysdiglabs/charts/commit/6fb44c0fe2ae1fdde1723d3d94feb204d44a0f7b): Automatic version bump due to updated dependencies ([#1307](https://github.com/sysdiglabs/charts/issues/1307))
#### Full diff: https://github.com/sysdiglabs/charts/compare/sysdig-deploy-1.19.0...sysdig-deploy-1.19.1
- **kspm-collector,node-analyzer** [3985651e](https://github.com/sysdiglabs/charts/commit/3985651e0c6d52788fa0e36a740499458571b6b0): KSPM v1.29.0 ([#1311](https://github.com/sysdiglabs/charts/issues/1311))
#### Full diff: https://github.com/sysdiglabs/charts/compare/sysdig-deploy-1.19.2...sysdig-deploy-1.19.3

0 comments on commit 9cf5cfc

Please sign in to comment.