Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

fix(deps): bump freshclam-mirror to v0.3.1 #1352

Merged
merged 1 commit into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions installation/aws/VmClarity.cfn
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ Resources:
TrivyServerContainerImage: !If [TrivyServerContainerImageOverridden, !Ref TrivyServerContainerImageOverride, "docker.io/aquasec/trivy:0.41.0"]
GrypeServerContainerImage: !If [GrypeServerContainerImageOverridden, !Ref GrypeServerContainerImageOverride, "ghcr.io/openclarity/grype-server:v0.7.2"]
YaraRuleServerContainerImage: !If [YaraRuleServerContainerImageOverridden, !Ref YaraRuleServerContainerImageOverride, "ghcr.io/openclarity/yara-rule-server:v0.3.0"]
FreshclamMirrorContainerImage: !If [FreshclamMirrorContainerImageOverridden, !Ref FreshclamMirrorContainerImageOverride, "ghcr.io/openclarity/freshclam-mirror:v0.3.0"]
FreshclamMirrorContainerImage: !If [FreshclamMirrorContainerImageOverridden, !Ref FreshclamMirrorContainerImageOverride, "ghcr.io/openclarity/freshclam-mirror:v0.3.1"]
PostgresqlContainerImage: !If [PostgresqlContainerImageOverridden, !Ref PostgresqlContainerImageOverride, "bitnami/postgresql:12.14.0-debian-11-r28"]

"/etc/vmclarity/uibackend.env":
Expand Down Expand Up @@ -1115,7 +1115,7 @@ Parameters:
FreshclamMirrorContainerImageOverride:
Description: >
Name of the container image used for the freshclam mirror server.
"ghcr.io/openclarity/freshclam-mirror:v0.3.0" will be used if not overridden.
"ghcr.io/openclarity/freshclam-mirror:v0.3.1" will be used if not overridden.
Type: String
Default: ''
TrivyServerContainerImageOverride:
Expand Down
4 changes: 2 additions & 2 deletions installation/azure/vmclarity-UI.json
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@
"type": "Microsoft.Common.TextBox",
"label": "Freshclam Mirror Container Image",
"subLabel": "",
"defaultValue": "ghcr.io/openclarity/freshclam-mirror:v0.3.0",
"defaultValue": "ghcr.io/openclarity/freshclam-mirror:v0.3.1",
"toolTip": "Freshclam Mirror Container Image",
"constraints": {
"required": false,
Expand All @@ -316,7 +316,7 @@
"type": "Microsoft.Common.TextBox",
"label": "Yara Rule Server Container Image",
"subLabel": "",
"defaultValue": "ghcr.io/openclarity/yara-rule-server:v0.3.0",
"defaultValue": "ghcr.io/openclarity/yara-rule-server:v0.3.1",
"toolTip": "Yara Rule Server Container Image",
"constraints": {
"required": false,
Expand Down
2 changes: 1 addition & 1 deletion installation/azure/vmclarity.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ param grypeServerContainerImage string = 'ghcr.io/openclarity/grype-server:v0.7.
param exploitDBContainerImage string = 'ghcr.io/openclarity/exploit-db-server:v0.2.4'

@description ('Freshclam Mirror Container Image')
param freshclamMirrorContainerImage string = 'ghcr.io/openclarity/freshclam-mirror:v0.3.0'
param freshclamMirrorContainerImage string = 'ghcr.io/openclarity/freshclam-mirror:v0.3.1'

@description('Postgres Container Image')
param postgresContainerImage string = 'docker.io/bitnami/postgresql:12.14.0-debian-11-r28'
Expand Down
8 changes: 4 additions & 4 deletions installation/azure/vmclarity.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.25.53.49325",
"templateHash": "15765059140427146956"
"templateHash": "9430758127017233390"
}
},
"parameters": {
Expand Down Expand Up @@ -111,7 +111,7 @@
},
"freshclamMirrorContainerImage": {
"type": "string",
"defaultValue": "ghcr.io/openclarity/freshclam-mirror:v0.3.0",
"defaultValue": "ghcr.io/openclarity/freshclam-mirror:v0.3.1",
"metadata": {
"description": "Freshclam Mirror Container Image"
}
Expand Down Expand Up @@ -556,7 +556,7 @@
"_generator": {
"name": "bicep",
"version": "0.25.53.49325",
"templateHash": "4572725164467035150"
"templateHash": "8671480218452674455"
}
},
"parameters": {
Expand Down Expand Up @@ -681,7 +681,7 @@
},
"freshclamMirrorContainerImage": {
"type": "string",
"defaultValue": "ghcr.io/openclarity/freshclam-mirror:v0.3.0",
"defaultValue": "ghcr.io/openclarity/freshclam-mirror:v0.3.1",
"metadata": {
"description": "Freshclam Mirror Container Image"
}
Expand Down
2 changes: 1 addition & 1 deletion installation/azure/vmclarityDeployModule.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ param grypeServerContainerImage string = 'ghcr.io/openclarity/grype-server:v0.7.
param exploitDBContainerImage string = 'ghcr.io/openclarity/exploit-db-server:v0.2.4'

@description ('Freshclam Mirror Container Image')
param freshclamMirrorContainerImage string = 'ghcr.io/openclarity/freshclam-mirror:v0.3.0'
param freshclamMirrorContainerImage string = 'ghcr.io/openclarity/freshclam-mirror:v0.3.1'

@description ('Yara Rule Server Container Image')
param yaraRuleServerContainerImage string = 'ghcr.io/openclarity/yara-rule-server:v0.3.0'
Expand Down
2 changes: 1 addition & 1 deletion installation/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ services:
retries: 60

freshclam-mirror:
image: ${VMCLARITY_FRESHCLAM_MIRROR_CONTAINER_IMAGE:-ghcr.io/openclarity/freshclam-mirror:v0.3.0}
image: ${VMCLARITY_FRESHCLAM_MIRROR_CONTAINER_IMAGE:-ghcr.io/openclarity/freshclam-mirror:v0.3.1}
ports:
- "1000:80"
deploy:
Expand Down
2 changes: 1 addition & 1 deletion installation/docker/image_override.env
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ VMCLARITY_SCANNER_CONTAINER_IMAGE=ghcr.io/openclarity/vmclarity-cli:latest
VMCLARITY_EXPLOITSDB_SERVER_CONTAINER_IMAGE=ghcr.io/openclarity/exploit-db-server:v0.2.4
VMCLARITY_TRIVY_SERVER_CONTAINER_IMAGE=docker.io/aquasec/trivy:0.41.0
VMCLARITY_GRYPE_SERVER_CONTAINER_IMAGE=ghcr.io/openclarity/grype-server:v0.7.2
VMCLARITY_FRESHCLAM_MIRROR_CONTAINER_IMAGE=ghcr.io/openclarity/freshclam-mirror:v0.3.0
VMCLARITY_FRESHCLAM_MIRROR_CONTAINER_IMAGE=ghcr.io/openclarity/freshclam-mirror:v0.3.1
VMCLARITY_YARA_RULE_SERVER_CONTAINER_IMAGE=ghcr.io/openclarity/yara-rule-server:v0.3.0
VMCLARITY_POSTGRESQL_CONTAINER_IMAGE=docker.io/bitnami/postgresql:16.2.0-debian-11-r17
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ properties:
description: The container image to use for the grype server
freshclamMirrorContainerImage:
type: string
default: ghcr.io/openclarity/freshclam-mirror:v0.3.0
default: ghcr.io/openclarity/freshclam-mirror:v0.3.1
description: The container image to use for the fresh clam mirror server
yaraRuleServerContainerImage:
type: string
Expand Down
2 changes: 1 addition & 1 deletion installation/gcp/dm/vmclarity.py.schema
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ properties:
description: The container image to use for the grype server
freshclamMirrorContainerImage:
type: string
default: ghcr.io/openclarity/freshclam-mirror:v0.3.0
default: ghcr.io/openclarity/freshclam-mirror:v0.3.1
description: The container image to use for the fresh clam mirror server
postgresqlContainerImage:
type: string
Expand Down
2 changes: 1 addition & 1 deletion installation/kubernetes/helm/vmclarity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ secrets.
| freshclamMirror.image.pullPolicy | string | `"IfNotPresent"` | Freshclam Mirror image pull policy |
| freshclamMirror.image.registry | string | `"ghcr.io"` | Freshclam Mirror container registry |
| freshclamMirror.image.repository | string | `"openclarity/freshclam-mirror"` | Freshclam Mirror container repository |
| freshclamMirror.image.tag | string | `"v0.3.0"` | Freshclam Mirror container tag |
| freshclamMirror.image.tag | string | `"v0.3.1"` | Freshclam Mirror container tag |
| freshclamMirror.podSecurityContext.enabled | bool | `false` | Pod security context enabled |
| freshclamMirror.podSecurityContext.fsGroup | int | `1001` | Pod security context fsGroup |
| freshclamMirror.replicas | int | `1` | Number of replicas for the freshclam mirror service |
Expand Down
2 changes: 1 addition & 1 deletion installation/kubernetes/helm/vmclarity/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ freshclamMirror:
# -- Freshclam Mirror container repository
repository: openclarity/freshclam-mirror
# -- Freshclam Mirror container tag
tag: v0.3.0
tag: v0.3.1
# -- Freshclam Mirror image digest. If set will override the tag.
digest: ""
# -- Freshclam Mirror image pull policy
Expand Down
Loading