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

Commit

Permalink
Fix vmclarity-ui-backend references (#538)
Browse files Browse the repository at this point in the history
VMClarity UI backend is built and published as vmclarity-ui-backend,
there are a few places refering to it as vmclarity-uibackend. This
commit fixes these references to use the dashed version.
  • Loading branch information
Sam Betts authored Aug 8, 2023
1 parent 6bc107c commit 38469e7
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion installation/azure/vmclarity.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ param orchestratorContainerImage string = 'ghcr.io/openclarity/vmclarity-orchest
param uiContainerImage string = 'ghcr.io/openclarity/vmclarity-ui:latest'

@description ('VMClarity UIBackend Container Image')
param uibackendContainerImage string = 'ghcr.io/openclarity/vmclarity-uibackend:latest'
param uibackendContainerImage string = 'ghcr.io/openclarity/vmclarity-ui-backend:latest'

@description ('VMClarity Scanner Container Image')
param scannerContainerImage string = 'ghcr.io/openclarity/vmclarity-cli:latest'
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.19.5.34762",
"templateHash": "11101766410951708815"
"templateHash": "2645412564224659674"
}
},
"parameters": {
Expand Down Expand Up @@ -76,7 +76,7 @@
},
"uibackendContainerImage": {
"type": "string",
"defaultValue": "ghcr.io/openclarity/vmclarity-uibackend:latest",
"defaultValue": "ghcr.io/openclarity/vmclarity-ui-backend:latest",
"metadata": {
"description": "VMClarity UIBackend Container Image"
}
Expand Down Expand Up @@ -556,7 +556,7 @@
"_generator": {
"name": "bicep",
"version": "0.19.5.34762",
"templateHash": "587257319525751437"
"templateHash": "14736449405121414571"
}
},
"parameters": {
Expand Down Expand Up @@ -646,7 +646,7 @@
},
"uibackendContainerImage": {
"type": "string",
"defaultValue": "ghcr.io/openclarity/vmclarity-uibackend:latest",
"defaultValue": "ghcr.io/openclarity/vmclarity-ui-backend:latest",
"metadata": {
"description": "VMClarity UIBackend 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 @@ -40,7 +40,7 @@ param orchestratorContainerImage string = 'ghcr.io/openclarity/vmclarity-orchest
param uiContainerImage string = 'ghcr.io/openclarity/vmclarity-ui:latest'

@description ('VMClarity UIBackend Container Image')
param uibackendContainerImage string = 'ghcr.io/openclarity/vmclarity-uibackend:latest'
param uibackendContainerImage string = 'ghcr.io/openclarity/vmclarity-ui-backend:latest'

@description ('VMClarity Scanner Container Image')
param scannerContainerImage string = 'ghcr.io/openclarity/vmclarity-cli:latest'
Expand Down
2 changes: 1 addition & 1 deletion installation/docker/dockercompose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ services:
condition: on-failure

uibackend:
image: ${UIBackendContainerImage:-ghcr.io/openclarity/vmclarity-uibackend:latest}
image: ${UIBackendContainerImage:-ghcr.io/openclarity/vmclarity-ui-backend:latest}
command:
- run
- --log-level
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 @@ -3,5 +3,5 @@
APIServerContainerImage=docker.io/tehsmash/vmclarity-apiserver:swaggerui
OrchestratorContainerImage=docker.io/tehsmash/vmclarity-orchestrator:swaggerui
UIContainerImage=docker.io/tehsmash/vmclarity-ui:swaggerui
UIBackendContainerImage=docker.io/tehsmash/vmclarity-uibackend:swaggerui
UIBackendContainerImage=docker.io/tehsmash/vmclarity-ui-backend:swaggerui
ScannerContainerImage=docker.io/tehsmash/vmclarity-cli:swaggerui
2 changes: 1 addition & 1 deletion installation/gcp/dm/components/vmclarity-server.py.schema
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ properties:
description: The container image to use for the ui
uibackendContainerImage:
type: string
default: ghcr.io/openclarity/vmclarity-uibackend:latest
default: ghcr.io/openclarity/vmclarity-ui-backend:latest
description: The container image to use for the uibackend
scannerContainerImage:
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 @@ -57,7 +57,7 @@ properties:
description: The container image to use for the ui
uibackendContainerImage:
type: string
default: ghcr.io/openclarity/vmclarity-uibackend:latest
default: ghcr.io/openclarity/vmclarity-ui-backend:latest
description: The container image to use for the uibackend
scannerContainerImage:
type: string
Expand Down

0 comments on commit 38469e7

Please sign in to comment.