Skip to content

Commit

Permalink
Fix grype-server container reference in the cloudformation (#286)
Browse files Browse the repository at this point in the history
## Description

This was a regression introduced when the cloud formation was
refactored, this ensures we have the correct reference.

## Type of Change

[X] Bug Fix  
[ ] New Feature  
[ ] Breaking Change  
[ ] Refactor  
[ ] Documentation  
[ ] Other (please describe)  

## Checklist

- [X] I have read the [contributing guidelines](/CONTRIBUTING.md)
- [X] Existing issues have been referenced (where applicable)
- [X] I have verified this change is not present in other open pull
requests
- [X] Functionality is documented
- [X] All code style checks pass
- [X] New code contribution is covered by automated tests
- [X] All new and existing tests pass
  • Loading branch information
Sam Betts committed Apr 27, 2023
1 parent 21d7b0e commit 61df162
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installation/aws/VmClarity.cfn
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ Resources:

[Install]
WantedBy=multi-user.target
- GrypeServerContainerImage: !If [GrypeServerContainerImageOverridden, !Ref GrypeServerContainerImageOverride, "gcr.io/eticloud/k8sec/grype-server:v0.2.0"]
- GrypeServerContainerImage: !If [GrypeServerContainerImageOverridden, !Ref GrypeServerContainerImageOverride, "ghcr.io/openclarity/grype-server:v0.2.0"]
mode: "000644"
"/lib/systemd/system/vmclarity_freshclam_mirror.service":
content:
Expand Down Expand Up @@ -838,7 +838,7 @@ Parameters:
GrypeServerContainerImageOverride:
Description: >
Name of the container image used for the grype server.
"gcr.io/eticloud/k8sec/grype-server:v0.2.0" will be used if not overridden.
"ghcr.io/openclarity/grype-server:v0.2.0" will be used if not overridden.
Type: String
Default: ''
AssetScanDeletePolicy:
Expand Down

0 comments on commit 61df162

Please sign in to comment.