Skip to content

Commit 1293a16

Browse files
committed
fix: updating the documentation links
konflux-ci/docs#258 flattened the directory structure for some of the documentation pages. This broke some of the pages being linked to. Signed-off-by: arewm <[email protected]>
1 parent 0e4715d commit 1293a16

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

pipelines/fbc-builder/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# "fbc-builder pipeline"
2-
This pipeline is ideal for building and verifying [file-based catalogs](https://konflux-ci.dev/docs/advanced-how-tos/building-olm.adoc#building-the-file-based-catalog).
2+
This pipeline is ideal for building and verifying [file-based catalogs](https://konflux-ci.dev/docs/end-to-end/building-olm/#building-the-file-based-catalog).
33

44
_Uses `buildah` to create a container image. Its build-time tests are limited to verifying the included catalog and do not scan the image.
55
This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-fbc-builder?tab=tags)_

pipelines/fbc-builder/fbc-builder.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
name: fbc-builder
1010
spec:
1111
description: |
12-
This pipeline is ideal for building and verifying [file-based catalogs](https://konflux-ci.dev/docs/advanced-how-tos/building-olm.adoc#building-the-file-based-catalog).
12+
This pipeline is ideal for building and verifying [file-based catalogs](https://konflux-ci.dev/docs/end-to-end/building-olm/#building-the-file-based-catalog).
1313
1414
_Uses `buildah` to create a container image. Its build-time tests are limited to verifying the included catalog and do not scan the image.
1515
This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-fbc-builder?tab=tags)_

pipelines/fbc-builder/patch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- op: add
33
path: /spec/description
44
value: |
5-
This pipeline is ideal for building and verifying [file-based catalogs](https://konflux-ci.dev/docs/advanced-how-tos/building-olm.adoc#building-the-file-based-catalog).
5+
This pipeline is ideal for building and verifying [file-based catalogs](https://konflux-ci.dev/docs/end-to-end/building-olm/#building-the-file-based-catalog).
66
77
_Uses `buildah` to create a container image. Its build-time tests are limited to verifying the included catalog and do not scan the image.
88
This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-fbc-builder?tab=tags)_

task/sast-snyk-check-oci-ta/0.3/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Scans source code for security vulnerabilities, including common issues such as SQL injection, cross-site scripting (XSS), and code injection attacks using Snyk Code, a Static Application Security Testing (SAST) tool.
44

5-
Follow the steps given [here](https://konflux-ci.dev/docs/how-tos/testing/build/snyk/) to obtain a snyk-token and to enable the snyk task in a Pipeline.
5+
Follow the steps given [here](https://konflux-ci.dev/docs/testing/build/snyk/) to obtain a snyk-token and to enable the snyk task in a Pipeline.
66

77
The snyk binary used in this Task comes from a container image defined in https://github.com/konflux-ci/konflux-test
88

task/sast-snyk-check-oci-ta/0.3/sast-snyk-check-oci-ta.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
description: |-
1313
Scans source code for security vulnerabilities, including common issues such as SQL injection, cross-site scripting (XSS), and code injection attacks using Snyk Code, a Static Application Security Testing (SAST) tool.
1414
15-
Follow the steps given [here](https://konflux-ci.dev/docs/how-tos/testing/build/snyk/) to obtain a snyk-token and to enable the snyk task in a Pipeline.
15+
Follow the steps given [here](https://konflux-ci.dev/docs/testing/build/snyk/) to obtain a snyk-token and to enable the snyk task in a Pipeline.
1616
1717
The snyk binary used in this Task comes from a container image defined in https://github.com/konflux-ci/konflux-test
1818
@@ -171,7 +171,7 @@ spec:
171171
else
172172
# According to shellcheck documentation, the following error can be ignored as it is ignored through indirection: https://www.shellcheck.net/wiki/SC2034
173173
# shellcheck disable=SC2034
174-
to_enable_snyk='[here](https://konflux-ci.dev/docs/how-tos/testing/build/snyk/)'
174+
to_enable_snyk='[here](https://konflux-ci.dev/docs/testing/build/snyk/)'
175175
note="Task $(context.task.name) skipped: If you wish to use the Snyk code SAST task, please create a secret name snyk-secret with the key 'snyk_token' containing the Snyk token by following the steps given ${to_enable_snyk}"
176176
TEST_OUTPUT=$(make_result_json -r SKIPPED -t "$note")
177177
echo "${TEST_OUTPUT}" | tee "$(results.TEST_OUTPUT.path)"

task/sast-snyk-check/0.3/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Snyk's SAST tool uses a combination of static analysis and machine learning tech
2222

2323
## How to obtain a snyk-token and enable snyk task on the pipeline:
2424

25-
Follow the steps given [here](https://konflux-ci.dev/docs/how-tos/testing/build/snyk/)
25+
Follow the steps given [here](https://konflux-ci.dev/docs/testing/build/snyk/)
2626

2727
## Results:
2828

task/sast-snyk-check/0.3/sast-snyk-check.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
description: |-
1212
Scans source code for security vulnerabilities, including common issues such as SQL injection, cross-site scripting (XSS), and code injection attacks using Snyk Code, a Static Application Security Testing (SAST) tool.
1313
14-
Follow the steps given [here](https://konflux-ci.dev/docs/how-tos/testing/build/snyk/) to obtain a snyk-token and to enable the snyk task in a Pipeline.
14+
Follow the steps given [here](https://konflux-ci.dev/docs/testing/build/snyk/) to obtain a snyk-token and to enable the snyk task in a Pipeline.
1515
1616
The snyk binary used in this Task comes from a container image defined in https://github.com/konflux-ci/konflux-test
1717
@@ -142,7 +142,7 @@ spec:
142142
else
143143
# According to shellcheck documentation, the following error can be ignored as it is ignored through indirection: https://www.shellcheck.net/wiki/SC2034
144144
# shellcheck disable=SC2034
145-
to_enable_snyk='[here](https://konflux-ci.dev/docs/how-tos/testing/build/snyk/)'
145+
to_enable_snyk='[here](https://konflux-ci.dev/docs/testing/build/snyk/)'
146146
note="Task $(context.task.name) skipped: If you wish to use the Snyk code SAST task, please create a secret name snyk-secret with the key 'snyk_token' containing the Snyk token by following the steps given ${to_enable_snyk}"
147147
TEST_OUTPUT=$(make_result_json -r SKIPPED -t "$note")
148148
echo "${TEST_OUTPUT}" | tee "$(results.TEST_OUTPUT.path)"

0 commit comments

Comments
 (0)