├── .gitignore ├── README.md ├── charts └── s1-agent │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── agent │ │ └── daemonset.yaml │ ├── cluster │ │ ├── cluster-role-bindings.yaml │ │ └── cluster-role.yaml │ ├── common │ │ ├── ca.certificate.yaml │ │ ├── configmaps.yaml │ │ ├── secrets.yaml │ │ └── serviceaccount.yaml │ ├── helper │ │ ├── service.yaml │ │ └── statefulset.yaml │ ├── hooks │ │ ├── argocd-post-delete-hook.yaml │ │ ├── pre-delete-hook.yaml │ │ ├── role-bindings.yaml │ │ ├── role.yaml │ │ └── webhookconfiguration.yaml │ ├── platforms │ │ └── openshift │ │ │ ├── openshift.yaml │ │ │ └── role-bindings.yaml │ └── tests │ │ └── test-connection.yaml │ └── values.yaml ├── cloudformation └── s1-agent.yaml ├── gke_autopilot └── allowlistsynchronizer.yaml ├── profiles └── s1_demo_apparmor_profile └── terraform ├── s1-agent.tf └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/s1-agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/Chart.yaml -------------------------------------------------------------------------------- /charts/s1-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/README.md -------------------------------------------------------------------------------- /charts/s1-agent/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/s1-agent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/s1-agent/templates/agent/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/agent/daemonset.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/cluster/cluster-role-bindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/cluster/cluster-role-bindings.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/cluster/cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/cluster/cluster-role.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/common/ca.certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/common/ca.certificate.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/common/configmaps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/common/configmaps.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/common/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/common/secrets.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/common/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/common/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/helper/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/helper/service.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/helper/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/helper/statefulset.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/hooks/argocd-post-delete-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/hooks/argocd-post-delete-hook.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/hooks/pre-delete-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/hooks/pre-delete-hook.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/hooks/role-bindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/hooks/role-bindings.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/hooks/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/hooks/role.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/hooks/webhookconfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/hooks/webhookconfiguration.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/platforms/openshift/openshift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/platforms/openshift/openshift.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/platforms/openshift/role-bindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/platforms/openshift/role-bindings.yaml -------------------------------------------------------------------------------- /charts/s1-agent/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /charts/s1-agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/charts/s1-agent/values.yaml -------------------------------------------------------------------------------- /cloudformation/s1-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/cloudformation/s1-agent.yaml -------------------------------------------------------------------------------- /gke_autopilot/allowlistsynchronizer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/gke_autopilot/allowlistsynchronizer.yaml -------------------------------------------------------------------------------- /profiles/s1_demo_apparmor_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/profiles/s1_demo_apparmor_profile -------------------------------------------------------------------------------- /terraform/s1-agent.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/terraform/s1-agent.tf -------------------------------------------------------------------------------- /terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentinel-One/helm-charts/HEAD/terraform/variables.tf --------------------------------------------------------------------------------