-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2.3.5: container runtime auto-detection, RP 0.0.489, IA 0.4.2 (#60)
helm release 2.3.5: - container runtime auto-detection - runtime-daemon 0.0.489: containerd support, reduced agent privileges, deny rules ("kill") - imagescan 0.4.2: improved support for OCI images, certificate pinning - (internal) monitoring & logs shipment enhancements
- Loading branch information
1 parent
fe80edf
commit 685e0f4
Showing
20 changed files
with
202 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 9 additions & 17 deletions
26
checkpoint/cloudguard/templates/admission/enforcer/configmap-fluentbit.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,21 @@ | ||
{{- $config := fromYaml (include "admission.enforcer.config" .) -}} | ||
{{ if $config.featureConfig.enabled }} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ template "agent.resource.name" $config }}-fluentbit | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
{{ include "common.labels.with.chart" $config | indent 4 }} | ||
data: | ||
fluent-bit.conf: | | ||
[SERVICE] | ||
Flush 5 | ||
Daemon Off | ||
Log_Level info | ||
{{ $params := dict "metricPath" "/metric" "agentVersion" $config.agentConfig.tag "metricTailPath" "/metric-tail/*/*" }} | ||
{{ template "telemetry.configmap" dict "config" $config }} | ||
|
||
[INPUT] | ||
Name tail | ||
Path admission/alerts/alerts.log | ||
Tag ac-alert | ||
storage.type filesystem | ||
Mem_Buf_Limit 1mb | ||
|
||
[OUTPUT] | ||
Match ac-alert | ||
Uri ${CP_KUBERNETES_ADMISSION_CONTROLLER_ALERTS_URI} | ||
Match ac-alert | ||
Uri ${CP_KUBERNETES_ADMISSION_CONTROLLER_ALERTS_URI} | ||
storage.total_limit_size 100M | ||
Retry_Limit False | ||
{{ include "fluentbit-http-output-param.conf" $config | indent 8 }} | ||
|
||
{{ $params := dict "metricPath" "/metric" "agentVersion" $config.agentConfig.tag "metricTailPath" "/metric-tail/*/*" }} | ||
{{ include "fluentbit-metric.conf" $params | indent 4 }} | ||
|
||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 3 additions & 16 deletions
19
checkpoint/cloudguard/templates/admission/policy/configmap-metrics.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,5 @@ | ||
{{- $config := fromYaml (include "admission.policy.config" .) -}} | ||
{{ if $config.featureConfig.enabled }} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ template "agent.resource.name" $config }}-metrics | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
{{ include "common.labels.with.chart" $config | indent 4 }} | ||
data: | ||
fluent-bit.conf: | | ||
[SERVICE] | ||
Flush 5 | ||
Daemon Off | ||
Log_Level info | ||
{{ $params := dict "metricPath" "/metric" "agentVersion" $config.agentConfig.tag "metricTailPath" "/metric-tail/*/*" }} | ||
{{ include "fluentbit-metric.conf" $params | indent 4 }} | ||
{{- end -}} | ||
{{ template "telemetry.configmap" dict "config" $config }} | ||
{{- end -}} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.