Skip to content

Commit a646091

Browse files
authored
Merge pull request #110 from cookcodeblog/main
✏️ Fix - project path typo LGTM
2 parents ff05e28 + 99e2317 commit a646091

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/3-revenge-of-the-automated-testing/5b-tekton.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Let's run through a scenario where we break/fix the build with **kube-linter**.
167167
8. We can check the **kube-linter** command again and check these changes in:
168168

169169
```bash
170-
cd /project/pet-battle-api
170+
cd /projects/pet-battle-api
171171
git add .
172172
git commit -m "🐊 ADD - kube-linter owner labels 🐊"
173173
git push

docs/3-revenge-of-the-automated-testing/8b-tekton.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,19 +92,19 @@
9292
9393
![cosign-image-signing](images/cosign-image-signing.png)
9494
95-
5. Let's verify the signed image with the public key. Make sure you use the right `APP VERSION` for the image. (`1.3.1` in this case)
95+
5. Let's verify the signed image with the public key. Make sure you use the right `APP VERSION` for the image. (`1.2.0` in this case)
9696
9797
```bash
9898
cd /projects/pet-battle-api
9999
oc registry login $(oc registry info) --insecure=true
100-
cosign verify --key k8s://<TEAM_NAME>-ci-cd/<TEAM_NAME>-cosign default-route-openshift-image-registry.<CLUSTER_DOMAIN>/<TEAM_NAME>-test/pet-battle-api:1.3.1
100+
cosign verify --key k8s://<TEAM_NAME>-ci-cd/<TEAM_NAME>-cosign default-route-openshift-image-registry.<CLUSTER_DOMAIN>/<TEAM_NAME>-test/pet-battle-api:1.2.0
101101
```
102102
103103
The output should be like:
104104
105105
<div class="highlight" style="background: #f7f7f7">
106106
<pre><code class="language-bash">
107-
Verification for default-route-openshift-image-registry.<CLUSTER_DOMAIN>/<TEAM_NAME>-test/pet-battle-api:1.3.1 --
107+
Verification for default-route-openshift-image-registry.<CLUSTER_DOMAIN>/<TEAM_NAME>-test/pet-battle-api:1.2.0 --
108108
The following checks were performed on each of these signatures:
109109
- The cosign claims were validated
110110
- The signatures were verified against the specified public key

0 commit comments

Comments
 (0)