Skip to content

Commit eaddd1b

Browse files
authored
comments in values, fix readme (#384)
1 parent 31b5a3f commit eaddd1b

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

charts/logzio-trivy/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,16 @@ However, you can modify the Chart by using the `--set` flag in your `helm instal
5050
| `nameOverride` | Overrides the Chart name for resources. | `""` |
5151
| `fullnameOverride` | Overrides the full name of the resources. | `""` |
5252
| `schedule` | Time for daily scanning for security reports and send them to Logz.io, in format "HH:MM" | `"07:00"` |
53-
| `restartPolicy` | Container restart policy | `OnFailure` |
5453
| `image` | Container image | `logzio/trivy-to-logzio` |
5554
| `imageTag` | Container image tag | `0.2.1` |
5655
| `env_id` | The name for your environment's identifier, to easily identify the telemetry data for each environment | `""` |
5756
| `terminationGracePeriodSeconds` | Termination period (in seconds) to wait before killing Fluentd pod process on pod shutdown. | `30` |
58-
| `serviceAccount.create` | Specifies whether to create a service account for the cron job | `true` |
57+
| `serviceAccount.create` | Specifies whether to create a service account for the Deployment | `true` |
5958
| `serviceAccount.name` | Name of the service account. | `""` |
6059
| `secrets.enabled` | Specifies wheter to create a secret for the deployment | `true` |
6160
| `secrets.name` | Secret name | `"logzio-logs-secret-trivy"` |
6261
| `secrets.logzioShippingToken` | Your logz.io log shipping token | `""` |
63-
| `secrets.logzioListener` | Your logz.io listener host | `""` (defaults to us region) |
62+
| `secrets.logzioListener` | Your logz.io listener host, for example - `listener.logz.io` | `""` (defaults to us region) |
6463
| `scriptLogLevel` | Log level of the script that sends security risk to Logz.io. Can be one of: `DEBUG`, `INFO`, `WARNING`, `ERROR`, `CRITICAL`. | `INFO` |
6564

6665
### Handling image pull rate limit

charts/logzio-trivy/values.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,49 @@
1+
# Override values for the Trivy Operator sub-chart
12
trivy-operator:
23
trivy:
4+
# Whether to show only fixed vulnerabilities in vulnerabilities reported by Trivy.
35
ignoreUnfixed: false
46
operator:
7+
# The flag to enable configuration audit scanner
58
configAuditScannerEnabled: false
9+
# The flag to enable rbac assessment scanner
610
rbacAssessmentScannerEnabled: false
11+
# The flag to enable infra assessment scanner
712
infraAssessmentScannerEnabled: false
13+
# The flag to enable cluster compliance scanner
814
clusterComplianceEnabled: false
915

16+
# Overrides the Chart name for resources
1017
nameOverride: ""
18+
# Overrides the full name of the resources
1119
fullnameOverride: ""
20+
21+
# Time for daily scanning for security reports and send them to Logz.io, in format "HH:MM"
1222
schedule: "07:00"
23+
24+
# Container image
1325
image: logzio/trivy-to-logzio
26+
# Container image tag
1427
imageTag: 0.2.1
28+
# The name for your environment's identifier (cluster name), to easily identify the telemetry data for each environment
1529
env_id: ""
30+
# Termination period (in seconds) to wait before killing Fluentd pod process on pod shutdown
1631
terminationGracePeriodSeconds: 30
1732
serviceAccount:
33+
# Specifies whether to create a service account for the Deployment
1834
create: true
35+
# Name of the service account
1936
name: ""
37+
2038
secrets:
39+
# Specifies wheter to create a secret for the Deployment
2140
enabled: true
41+
# Secret name
2242
name: "logzio-logs-secret-trivy"
43+
# Your logz.io log shipping token
2344
logzioShippingToken: ""
45+
# Your logz.io listener host, for example - listener.logz.io
2446
logzioListener: ""
47+
48+
# Log level of the script that sends security risk to Logz.io. Can be one of: DEBUG, INFO, WARNING, ERROR, CRITICAL.
2549
scriptLogLevel: INFO

0 commit comments

Comments
 (0)