-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Victor Login <batazor@evrone.com>
- Loading branch information
Showing
4 changed files
with
74 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
apiVersion: v2 # The chart API version (required) | ||
appVersion: "1.0.0" # The version of the app that this contains (optional) | ||
name: falcosecurity # The name of the chart (required) | ||
version: 0.1.0 # A SemVer 2 version (required) | ||
kubeVersion: ">= 1.22.0 || >= v1.22.0-0" # A SemVer range of compatible Kubernetes versions (optional) | ||
keywords: # A list of keywords about this project (optional) | ||
- falco | ||
- security | ||
maintainers: | ||
- email: batazor111@gmail.com | ||
name: batazor | ||
url: batazor.ru | ||
engine: gotpl | ||
type: application # It is the type of chart (optional) | ||
deprecated: false # Whether this chart is deprecated (optional, boolean) | ||
dependencies: | ||
- name: falco | ||
version: 3.1.2 | ||
repository: https://falcosecurity.github.io/charts | ||
condition: falcosecurity.enabled | ||
tags: | ||
- security |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CHART NAME: {{ .Chart.Name }} | ||
CHART VERSION: {{ .Chart.Version }} | ||
APP VERSION: {{ .Chart.AppVersion }} | ||
|
||
** Please be patient while the chart is being deployed ** |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Common default values for falcosecurity. | ||
# This is a YAML-formatted file. | ||
# Declare variables to be passed into your templates. | ||
|
||
falcosecurity: | ||
enabled: true | ||
|
||
driver: | ||
kind: modern-bpf |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Application | ||
metadata: | ||
name: falco | ||
namespace: argocd | ||
finalizers: | ||
- resources-finalizer.argocd.argoproj.io | ||
spec: | ||
project: shortlink | ||
destination: | ||
name: '' | ||
namespace: falco | ||
server: 'https://kubernetes.default.svc' | ||
source: | ||
path: ops/Helm/addons/falco | ||
repoURL: 'https://github.com/shortlink-org/shortlink' | ||
targetRevision: HEAD | ||
helm: | ||
releaseName: falco | ||
syncPolicy: | ||
automated: | ||
prune: true | ||
allowEmpty: true | ||
selfHeal: false | ||
syncOptions: | ||
- CreateNamespace=true | ||
- ServerSideApply=true | ||
retry: | ||
limit: 2 | ||
backoff: | ||
duration: 10s | ||
maxDuration: 3m0s | ||
factor: 2 | ||
ignoreDifferences: | ||
- group: falco.io | ||
kind: ClusterPolicy | ||
jqPathExpressions: | ||
- .spec.rules[] | select(.name|test("autogen-.")) |