diff --git a/installation/aws/VmClarity.cfn b/installation/aws/VmClarity.cfn index 7cfe16ebe..ea42473b4 100644 --- a/installation/aws/VmClarity.cfn +++ b/installation/aws/VmClarity.cfn @@ -444,7 +444,7 @@ Resources: UIBackendContainerImage: !If [ UIBackendContainerImageOverridden, !Ref UIBackendContainerImageOverride, "ghcr.io/openclarity/vmclarity-ui-backend:latest" ] ExploitDBServerContainerImage: !If [ExploitDBServerContainerImageOverridden, !Ref ExploitDBServerContainerImageOverride, "ghcr.io/openclarity/exploit-db-server:v0.2.4"] TrivyServerContainerImage: !If [TrivyServerContainerImageOverridden, !Ref TrivyServerContainerImageOverride, "docker.io/aquasec/trivy:0.41.0"] - GrypeServerContainerImage: !If [GrypeServerContainerImageOverridden, !Ref GrypeServerContainerImageOverride, "ghcr.io/openclarity/grype-server:v0.7.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.1.0"] FreshclamMirrorContainerImage: !If [FreshclamMirrorContainerImageOverridden, !Ref FreshclamMirrorContainerImageOverride, "ghcr.io/openclarity/freshclam-mirror:v0.3.0"] PostgresqlContainerImage: !If [PostgresqlContainerImageOverridden, !Ref PostgresqlContainerImageOverride, "bitnami/postgresql:12.14.0-debian-11-r28"] @@ -1127,7 +1127,7 @@ Parameters: GrypeServerContainerImageOverride: Description: > Name of the container image used for the grype server. - "ghcr.io/openclarity/grype-server:v0.7.0" will be used if not overridden. + "ghcr.io/openclarity/grype-server:v0.7.2" will be used if not overridden. Type: String Default: '' YaraRuleServerContainerImageOverride: diff --git a/installation/azure/vmclarity-UI.json b/installation/azure/vmclarity-UI.json index 2d91beeab..360fd3eed 100644 --- a/installation/azure/vmclarity-UI.json +++ b/installation/azure/vmclarity-UI.json @@ -268,7 +268,7 @@ "type": "Microsoft.Common.TextBox", "label": "Grype Server Container Image", "subLabel": "", - "defaultValue": "ghcr.io/openclarity/grype-server:v0.7.0", + "defaultValue": "ghcr.io/openclarity/grype-server:v0.7.2", "toolTip": "Grype Server Container Image", "constraints": { "required": false, diff --git a/installation/azure/vmclarity.bicep b/installation/azure/vmclarity.bicep index a4ee577c3..2857b8500 100644 --- a/installation/azure/vmclarity.bicep +++ b/installation/azure/vmclarity.bicep @@ -42,7 +42,7 @@ param scannerContainerImage string = 'ghcr.io/openclarity/vmclarity-cli:latest' param trivyServerContainerImage string = 'docker.io/aquasec/trivy:0.41.0' @description ('Grype Server Container Image') -param grypeServerContainerImage string = 'ghcr.io/openclarity/grype-server:v0.7.0' +param grypeServerContainerImage string = 'ghcr.io/openclarity/grype-server:v0.7.2' @description ('Exploit DB Container Image') param exploitDBContainerImage string = 'ghcr.io/openclarity/exploit-db-server:v0.2.4' diff --git a/installation/azure/vmclarity.json b/installation/azure/vmclarity.json index 9695820aa..6451b0ce8 100644 --- a/installation/azure/vmclarity.json +++ b/installation/azure/vmclarity.json @@ -5,7 +5,7 @@ "_generator": { "name": "bicep", "version": "0.23.1.45101", - "templateHash": "10553847190183975394" + "templateHash": "5867443734163333116" } }, "parameters": { @@ -97,7 +97,7 @@ }, "grypeServerContainerImage": { "type": "string", - "defaultValue": "ghcr.io/openclarity/grype-server:v0.7.0", + "defaultValue": "ghcr.io/openclarity/grype-server:v0.7.2", "metadata": { "description": "Grype Server Container Image" } @@ -556,7 +556,7 @@ "_generator": { "name": "bicep", "version": "0.23.1.45101", - "templateHash": "15881482231126828353" + "templateHash": "12615136419961132894" } }, "parameters": { @@ -667,7 +667,7 @@ }, "grypeServerContainerImage": { "type": "string", - "defaultValue": "ghcr.io/openclarity/grype-server:v0.7.0", + "defaultValue": "ghcr.io/openclarity/grype-server:v0.7.2", "metadata": { "description": "Grype Server Container Image" } diff --git a/installation/azure/vmclarityDeployModule.bicep b/installation/azure/vmclarityDeployModule.bicep index 4b7974856..109b7864b 100644 --- a/installation/azure/vmclarityDeployModule.bicep +++ b/installation/azure/vmclarityDeployModule.bicep @@ -49,7 +49,7 @@ param scannerContainerImage string = 'ghcr.io/openclarity/vmclarity-cli:latest' param trivyServerContainerImage string = 'docker.io/aquasec/trivy:0.41.0' @description ('Grype Server Container Image') -param grypeServerContainerImage string = 'ghcr.io/openclarity/grype-server:v0.7.0' +param grypeServerContainerImage string = 'ghcr.io/openclarity/grype-server:v0.7.2' @description ('Exploit DB Container Image') param exploitDBContainerImage string = 'ghcr.io/openclarity/exploit-db-server:v0.2.4' diff --git a/installation/docker/docker-compose.yml b/installation/docker/docker-compose.yml index a8c27846e..68c22a463 100644 --- a/installation/docker/docker-compose.yml +++ b/installation/docker/docker-compose.yml @@ -120,7 +120,7 @@ services: retries: 60 grype-server: - image: ${VMCLARITY_GRYPE_SERVER_CONTAINER_IMAGE:-ghcr.io/openclarity/grype-server:v0.7.0} + image: ${VMCLARITY_GRYPE_SERVER_CONTAINER_IMAGE:-ghcr.io/openclarity/grype-server:v0.7.2} command: - run - --log-level diff --git a/installation/docker/image_override.env b/installation/docker/image_override.env index 25c7c5c80..039a34611 100644 --- a/installation/docker/image_override.env +++ b/installation/docker/image_override.env @@ -7,7 +7,7 @@ VMCLARITY_UIBACKEND_CONTAINER_IMAGE=ghcr.io/openclarity/vmclarity-ui-backend:lat 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.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_YARA_RULE_SERVER_CONTAINER_IMAGE=ghcr.io/openclarity/yara-rule-server:v0.1.0 VMCLARITY_POSTGRESQL_CONTAINER_IMAGE=docker.io/bitnami/postgresql:12.14.0-debian-11-r28 diff --git a/installation/gcp/dm/components/vmclarity-server.py.schema b/installation/gcp/dm/components/vmclarity-server.py.schema index 977ee4ec4..fa473225d 100644 --- a/installation/gcp/dm/components/vmclarity-server.py.schema +++ b/installation/gcp/dm/components/vmclarity-server.py.schema @@ -81,7 +81,7 @@ properties: description: The container image to use for the trivy server grypeServerContainerImage: type: string - default: ghcr.io/openclarity/grype-server:v0.7.0 + default: ghcr.io/openclarity/grype-server:v0.7.2 description: The container image to use for the grype server freshclamMirrorContainerImage: type: string diff --git a/installation/gcp/dm/vmclarity.py.schema b/installation/gcp/dm/vmclarity.py.schema index 0e49efa25..a3bfd5b17 100644 --- a/installation/gcp/dm/vmclarity.py.schema +++ b/installation/gcp/dm/vmclarity.py.schema @@ -73,7 +73,7 @@ properties: description: The container image to use for the trivy server grypeServerContainerImage: type: string - default: ghcr.io/openclarity/grype-server:v0.7.0 + default: ghcr.io/openclarity/grype-server:v0.7.2 description: The container image to use for the grype server freshclamMirrorContainerImage: type: string