Skip to content

Commit

Permalink
Merge pull request #246 from Engineering-Research-and-Development/hot…
Browse files Browse the repository at this point in the history
…fix/cosign_new_version

Hotfix/cosign new version
  • Loading branch information
IgorBalog-Eng authored Nov 16, 2023
2 parents abf950b + f5ac127 commit ee47ec2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.14.6] - 2023-11-16

### Changed

- cosign version upgrade with alpine image; must include --insecure-ignore-tlog flag

## [1.14.5] - 2023-10-30

### Changed
Expand Down
4 changes: 2 additions & 2 deletions ci/docker/docker-compose-uc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ services:
expose:
- "8180"
volumes:
- ./uc-dataapp_resources_provider:/etc
- ./uc-dataapp_resources_provider:/config
- uc_provider_data:/data
- ./ecc_cert:/cert

Expand Down Expand Up @@ -150,7 +150,7 @@ services:
expose:
- "8280"
volumes:
- ./uc-dataapp_resources_consumer:/etc
- ./uc-dataapp_resources_consumer:/config
- uc_consumer_data:/data
- ./ecc_cert:/cert

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void checkIfVerionsIsCertified() {
String rootImageName = "rdlabengpa/ids_execution_core_container:v";
List<String> startCmdList = getStartCmdList();
List<String> cmdList = new ArrayList<String>(startCmdList);
cmdList.add("echo | cosign verify --key " + targetDirectory.resolve("trueconn.pub") + " " + rootImageName
cmdList.add("echo | cosign verify --insecure-ignore-tlog --key " + targetDirectory.resolve("trueconn.pub") + " " + rootImageName
+ buildProperties.getVersion());

String getCosignVerification = processExecutor.executeProcess(cmdList);
Expand Down

0 comments on commit ee47ec2

Please sign in to comment.