-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Incorporate GRR updates * Incorporate GRR updates * Incorporate GRR updates * Incorporate GRR updates * Adds executable signing changes for minikube * Adds executable signing changes for minikube * Updates prometheus labels on deployments * Fix README typo * Fix README typo * Fix README typo * Bumps the GRR Chart to version 1.0.1 * Update README.md with readme-generator-for-helm Signed-off-by: daschwanden <[email protected]> * Adjust prometheus label to match PodMontioring selectors --------- Signed-off-by: daschwanden <[email protected]> Co-authored-by: daschwanden <[email protected]>
- Loading branch information
1 parent
177b3bf
commit 21d7d39
Showing
25 changed files
with
224 additions
and
152 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
Replace with your executable signing certificate in case needed. |
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 @@ | ||
Replace with your executable signing key in case needed. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
PrivateKeys.executable_signing_private_key: "%(/config/executable-signing.key|file)" | ||
Client.executable_signing_public_key: "%(/config/executable-signing.pub|file)" | ||
# Configuration for repacking client templates: | ||
Client.fleetspeak_enabled: true | ||
ClientBuilder.fleetspeak_bundled: true | ||
ClientBuilder.template_dir: /client_templates | ||
ClientBuilder.executables_dir: /client_installers | ||
|
||
Target:Linux: | ||
ClientBuilder.fleetspeak_client_config: /config/config.textproto | ||
Target:Windows: | ||
ClientBuilder.fleetspeak_client_config: /config/config.textproto | ||
Target:Darwin: | ||
ClientBuilder.fleetspeak_client_config: /config/config.textproto |
11 changes: 2 additions & 9 deletions
11
charts/grr/containers/grr-daemon/config/textservices/grr.service
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,16 +1,9 @@ | ||
name: "GRR" | ||
factory: "Daemon" | ||
required_labels { | ||
service_name: "client" | ||
label: "linux" | ||
} | ||
config { | ||
[type.googleapis.com/fleetspeak.daemonservice.Config] { | ||
argv: "/usr/sbin/grrd" | ||
argv: "--config=/config/grr.client.yaml" | ||
|
||
monitor_heartbeats: true | ||
heartbeat_unresponsive_grace_period_seconds: 600 # 10 minutes. | ||
heartbeat_unresponsive_kill_period_seconds: 120 # 2 minutes. | ||
argv: "--config" | ||
argv: "/config/grr.client.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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: sec-grr-executable-signing-cert | ||
{{- if .Values.grr.namespace }} | ||
namespace: {{ .Values.grr.namespace }} | ||
{{- end }} | ||
labels: | ||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" | ||
release: "{{ .Release.Name }}" | ||
heritage: "{{ .Release.Service }}" | ||
type: Opaque | ||
data: | ||
{{- if .Values.grr.generateExecutableSigningCert }} | ||
{{- $cert := genSelfSignedCert "grr-response.com" nil nil 3650 }} | ||
executable-signing.crt: {{ b64enc $cert.Cert }} | ||
executable-signing.key: {{ b64enc $cert.Key }} | ||
{{- else }} | ||
executable-signing.crt: {{ .Files.Get "certs/executable-signing.crt" | b64enc }} | ||
executable-signing.key: {{ .Files.Get "certs/executable-signing.key" | b64enc }} | ||
{{- end }} |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.