Skip to content

Commit

Permalink
docs(registry-scanner): update filter values (#1116)
Browse files Browse the repository at this point in the history
  • Loading branch information
hayk99 authored May 22, 2023
1 parent dc63f58 commit 53b92bb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion charts/registry-scanner/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Sysdig Registry Scanner
type: application
home: https://sysdiglabs.github.io/registry-scanner/
icon: https://478h5m1yrfsa3bbe262u7muv-wpengine.netdna-ssl.com/wp-content/uploads/2019/02/Shovel_600px.png
version: 1.0.10
version: 1.0.11
appVersion: 0.2.37
maintainers:
- name: airadier
Expand Down
10 changes: 5 additions & 5 deletions charts/registry-scanner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Deploy the registry scanner specify each parameter using the `--set key=value[,k

```bash
$ helm upgrade --install registry-scanner \
--version=1.0.10 \
--version=1.0.11 \
--set config.secureBaseURL=<SYSDIG_SECURE_URL> \
--set config.secureAPIToken=<SYSDIG_SECURE_API_TOKEN> \
--set config.registryURL=<REGISTRY_URL> \
Expand All @@ -64,7 +64,7 @@ $ helm upgrade --install registry-scanner \
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,

```bash
$ helm install registry-scanner -f values.yaml --version=1.0.10 sysdig/registry-scanner
$ helm install registry-scanner -f values.yaml --version=1.0.11 sysdig/registry-scanner
```


Expand Down Expand Up @@ -121,8 +121,8 @@ The following table lists the configurable parameters of the Sysdig Registry Sca
| config.filter.include | List of regular expressions.<br/>Images matching any of these expressions are *always* included when scanning. | <code>[]</code> |
| config.filter.exclude | List of regular expressions.<br/>Images matching any of these expressions are excluded when scanning. | <code>[]</code> |
| config.filter.maxAgeDays | Based on its creation date, excludes images older than specified number of days.<br/>Maximum 365 | <code>90</code> |
| config.filter.maxTagsPerRepository | Based on its creation date, newer ones take precedence, maximum number of tags to scan per repository.<br/>Maximum 10 | <code>5</code> |
| config.filter.maxRepositoriesPerRegistry | Number of repositories to scan per registry.<br/>Maximum Value 1000 | <code>500</code> |
| config.filter.maxTagsPerRepository | Based on its creation date, newer ones take precedence, maximum number of tags to scan per repository.<br/>Maximum 50 | <code>5</code> |
| config.filter.maxRepositoriesPerRegistry | Number of repositories to scan per registry.<br/>Maximum Value 10000 | <code>500</code> |
| config.scan.inlineScanImage | Override the default image for the inline scanner job. | <code>""</code> |
| config.scan.securityContext | Security context for Inline Scanner container. | <code>{}</code> |
| config.scan.orchestrator.ttlSecondsAfterFinished | ttl for orchestrator job. unset with empty value | <code>3600</code> |
Expand Down Expand Up @@ -174,7 +174,7 @@ Use the following command to deploy in an on-prem:

```bash
$ helm upgrade --install registry-scanner \
--version=1.0.10 \
--version=1.0.11 \
--set config.secureBaseURL=<SYSDIG_SECURE_URL> \
--set config.secureAPIToken=<SYSDIG_SECURE_API_TOKEN> \
--set config.secureSkipTLS=true \
Expand Down
4 changes: 2 additions & 2 deletions charts/registry-scanner/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ config:
exclude: []
# Based on its creation date, excludes images older than specified number of days.<br/>Maximum 365
maxAgeDays: 90
# Based on its creation date, newer ones take precedence, maximum number of tags to scan per repository.<br/>Maximum 10
# Based on its creation date, newer ones take precedence, maximum number of tags to scan per repository.<br/>Maximum 50
maxTagsPerRepository: 5
# Number of repositories to scan per registry.<br/>Maximum Value 1000
# Number of repositories to scan per registry.<br/>Maximum Value 10000
maxRepositoriesPerRegistry: 500
scan:
# Override the default image for the inline scanner job.
Expand Down

0 comments on commit 53b92bb

Please sign in to comment.