Skip to content

Commit

Permalink
comments in values, fix readme (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
mirii1994 authored Feb 1, 2024
1 parent 31b5a3f commit eaddd1b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
5 changes: 2 additions & 3 deletions charts/logzio-trivy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,16 @@ However, you can modify the Chart by using the `--set` flag in your `helm instal
| `nameOverride` | Overrides the Chart name for resources. | `""` |
| `fullnameOverride` | Overrides the full name of the resources. | `""` |
| `schedule` | Time for daily scanning for security reports and send them to Logz.io, in format "HH:MM" | `"07:00"` |
| `restartPolicy` | Container restart policy | `OnFailure` |
| `image` | Container image | `logzio/trivy-to-logzio` |
| `imageTag` | Container image tag | `0.2.1` |
| `env_id` | The name for your environment's identifier, to easily identify the telemetry data for each environment | `""` |
| `terminationGracePeriodSeconds` | Termination period (in seconds) to wait before killing Fluentd pod process on pod shutdown. | `30` |
| `serviceAccount.create` | Specifies whether to create a service account for the cron job | `true` |
| `serviceAccount.create` | Specifies whether to create a service account for the Deployment | `true` |
| `serviceAccount.name` | Name of the service account. | `""` |
| `secrets.enabled` | Specifies wheter to create a secret for the deployment | `true` |
| `secrets.name` | Secret name | `"logzio-logs-secret-trivy"` |
| `secrets.logzioShippingToken` | Your logz.io log shipping token | `""` |
| `secrets.logzioListener` | Your logz.io listener host | `""` (defaults to us region) |
| `secrets.logzioListener` | Your logz.io listener host, for example - `listener.logz.io` | `""` (defaults to us region) |
| `scriptLogLevel` | Log level of the script that sends security risk to Logz.io. Can be one of: `DEBUG`, `INFO`, `WARNING`, `ERROR`, `CRITICAL`. | `INFO` |

### Handling image pull rate limit
Expand Down
24 changes: 24 additions & 0 deletions charts/logzio-trivy/values.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,49 @@
# Override values for the Trivy Operator sub-chart
trivy-operator:
trivy:
# Whether to show only fixed vulnerabilities in vulnerabilities reported by Trivy.
ignoreUnfixed: false
operator:
# The flag to enable configuration audit scanner
configAuditScannerEnabled: false
# The flag to enable rbac assessment scanner
rbacAssessmentScannerEnabled: false
# The flag to enable infra assessment scanner
infraAssessmentScannerEnabled: false
# The flag to enable cluster compliance scanner
clusterComplianceEnabled: false

# Overrides the Chart name for resources
nameOverride: ""
# Overrides the full name of the resources
fullnameOverride: ""

# Time for daily scanning for security reports and send them to Logz.io, in format "HH:MM"
schedule: "07:00"

# Container image
image: logzio/trivy-to-logzio
# Container image tag
imageTag: 0.2.1
# The name for your environment's identifier (cluster name), to easily identify the telemetry data for each environment
env_id: ""
# Termination period (in seconds) to wait before killing Fluentd pod process on pod shutdown
terminationGracePeriodSeconds: 30
serviceAccount:
# Specifies whether to create a service account for the Deployment
create: true
# Name of the service account
name: ""

secrets:
# Specifies wheter to create a secret for the Deployment
enabled: true
# Secret name
name: "logzio-logs-secret-trivy"
# Your logz.io log shipping token
logzioShippingToken: ""
# Your logz.io listener host, for example - listener.logz.io
logzioListener: ""

# Log level of the script that sends security risk to Logz.io. Can be one of: DEBUG, INFO, WARNING, ERROR, CRITICAL.
scriptLogLevel: INFO

0 comments on commit eaddd1b

Please sign in to comment.