Skip to content

Commit

Permalink
github_actions_ci: Update public key
Browse files Browse the repository at this point in the history
  • Loading branch information
draios-jenkins committed May 27, 2024
1 parent 0ed976c commit 7088443
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions charts/harbor-scanner-sysdig-secure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To install the chart:
```console
helm repo add sysdig https://charts.sysdig.com
helm repo update
helm install sharbor-scanner-sysdig-secure --namespace sharbor-scanner-sysdig-secure --create-namespace -f values.yaml sysdig/harbor-scanner-sysdig-secure
helm install harbor-scanner-sysdig-secure --namespace harbor-scanner-sysdig-secure --create-namespace -f values.yaml sysdig/harbor-scanner-sysdig-secure
```

## Verify the integrity and origin
Expand Down Expand Up @@ -68,6 +68,7 @@ Sysdig Secure chart and their default values:
| `customEntryPoint` | Overrides the container entrypoint. | `[]` |
| `replicaCount` | Specifies the number of replicas for the Scanner Adapter. | `1` |
| `image.repository` | Specifies the image repository to pull the image from. | `sysdiglabs/harbor-scanner-sysdig-secure` |
| `image.tag` | Specifies the image tag to pull. | `{{ Chart.AppVersion }}` |
| `image.pullPolicy` | Specifies the image pull policy. | `IfNotPresent` |
| `imagePullSecrets` | Specifies the image pull secrets. | `[]` |
| `nameOverride` | Specifies the chart name override. | ` ` |
Expand All @@ -91,5 +92,6 @@ Sysdig Secure chart and their default values:
| `proxy.httpProxy` | Specifies the URL of the proxy for HTTP connections. Leave empty if not using proxy. It sets the `http_proxy` environment variable. | ` ` |
| `proxy.httpsProxy` | Specifies the URL of the proxy for HTTPS connections. Leave empty if not using proxy. It sets the `https_proxy` environment variable. | ` ` |
| `proxy.noProxy` | Specifies the comma-separated list of domain extensions proxy should not be used for. Includes the internal IP of the kube API server. | ` ` |
| `inlineScanning.enabled` | Enables the Inline Scanning feature. | `true` |
| `cliScanning.enabled` | Enables the CLI Scanning feature. | `true` |
| `cliScanning.image` | Specifies the pullstring for the CLI Scanner Image. | `alpine:latest` |
| `asyncMode.enabled` | Enables the Async-Mode feature. | `false` |
6 changes: 4 additions & 2 deletions charts/harbor-scanner-sysdig-secure/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ replicaCount: 1

image:
repository: sysdiglabs/harbor-scanner-sysdig-secure
# tag: latest
pullPolicy: IfNotPresent

imagePullSecrets: []
Expand Down Expand Up @@ -86,8 +87,9 @@ proxy:
# and you probably need to add your registry if it is inside the cluster
noProxy:

inlineScanning:
cliScanning:
enabled: true
image: alpine:latest

asyncMode:
enabled: "false"
enabled: true

0 comments on commit 7088443

Please sign in to comment.