Skip to content

Commit a2fc4c1

Browse files
author
edge-katanomi-app2[bot]
committed
📚 Sync docs from alaudadevops/tektoncd-operator on 26ad4b3a4fc1166b077d072e8a8775aece73b1a9
Source: docs(crds): update crds information (#439) Author: edge-katanomi-app2[bot] Ref: refs/heads/main Commit: 26ad4b3a4fc1166b077d072e8a8775aece73b1a9 This commit automatically syncs documentation changes from the source-docs repository. 🔗 View source commit: https://github.com/alaudadevops/tektoncd-operator/commit/26ad4b3a4fc1166b077d072e8a8775aece73b1a9 🤖 Synced on 2025-09-03 06:06:46 UTC
1 parent 55f0b7e commit a2fc4c1

File tree

45 files changed

+96606
-140199
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+96606
-140199
lines changed

‎.github/SYNC_INFO.md‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Documentation Sync Information
22

3-
- **Last synced**: 2025-08-11 09:24:02 UTC
3+
- **Last synced**: 2025-09-03 06:06:46 UTC
44
- **Source repository**: alaudadevops/tektoncd-operator
5-
- **Source commit**: [9e1a9dc8a45ad0123347d5d61cf8a8b8890a49e3](https://github.com/alaudadevops/tektoncd-operator/commit/9e1a9dc8a45ad0123347d5d61cf8a8b8890a49e3)
6-
- **Triggered by**: tik-seven
7-
- **Workflow run**: [#33](https://github.com/alaudadevops/tektoncd-operator/actions/runs/16876030255)
5+
- **Source commit**: [26ad4b3a4fc1166b077d072e8a8775aece73b1a9](https://github.com/alaudadevops/tektoncd-operator/commit/26ad4b3a4fc1166b077d072e8a8775aece73b1a9)
6+
- **Triggered by**: edge-katanomi-app2[bot]
7+
- **Workflow run**: [#43](https://github.com/alaudadevops/tektoncd-operator/actions/runs/17423042800)
88

99
## Files synced:
1010
- docs/
Lines changed: 358 additions & 358 deletions
Large diffs are not rendered by default.

‎docs/en/apis/advanced_apis/results/intro.md‎

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ CEL expressions typically correspond one-to-one with JSON/protobuf fields. In Te
448448

449449
#### Using Operators
450450

451-
Now that we can access fields, you can create filters using operators. Here’s a list of operators that can be used in CEL expressions:
451+
Now that we can access fields, you can create filters using operators. Here's a list of operators that can be used in CEL expressions:
452452

453453
| Operator | Description | Example |
454454
| ----------------------- | -------------------------- | -------------------------------------------- |
@@ -463,7 +463,7 @@ Now that we can access fields, you can create filters using operators. Here’s
463463

464464
#### Using Functions
465465

466-
Many functions can be used in CEL expressions. Here’s a list of functions that can be used in CEL expressions. The strings in function parameters represent the expected type of the arguments:
466+
Many functions can be used in CEL expressions. Here's a list of functions that can be used in CEL expressions. The strings in function parameters represent the expected type of the arguments:
467467

468468
| Function | Description | Example |
469469
| ----------------------------------------------------| ----------------------------| -------------------------------------------- |
@@ -482,7 +482,7 @@ You can also nest function calls and mix operators to create complex filtering e
482482

483483
### Using CEL Filtering Expressions with gRPC
484484

485-
You can pass a filter to gRPC requests by specifying `filter=<cel-expression>`. Be sure to use the correct quoting in your queries or escape if necessary. Here’s an example:
485+
You can pass a filter to gRPC requests by specifying `filter=<cel-expression>`. Be sure to use the correct quoting in your queries or escape if necessary. Here's an example:
486486

487487
```bash
488488
grpc_cli call --channel_creds_type=ssl \
@@ -494,7 +494,7 @@ grpc_cli call --channel_creds_type=ssl \
494494

495495
### Using CEL Filtering Expressions with REST
496496

497-
You can pass a filter to REST requests by specifying `filter=<cel-expression>` in your query. Here’s an example:
497+
You can pass a filter to REST requests by specifying `filter=<cel-expression>` in your query. Here's an example:
498498

499499
```bash
500500
curl --insecure \
@@ -505,7 +505,7 @@ curl --insecure \
505505

506506
### Using CEL Filtering Expressions with `tkn-results`
507507

508-
If you have installed `tkn-results` CLI independently or as a plugin to `tkn`, you can filter Results using the `--filter=<cel-expression>` flag. Here’s an example:
508+
If you have installed `tkn-results` CLI independently or as a plugin to `tkn`, you can filter Results using the `--filter=<cel-expression>` flag. Here's an example:
509509

510510
```bash
511511
tkn results records list default/results/- --filter="data.metadata.annotations.contains('bar')"
@@ -544,6 +544,8 @@ To request a list of objects in a specific order, include the `order_by` query p
544544

545545
Fields supported in `order_by`:
546546

547+
<!-- lint ignore table-size -->
548+
547549
| Field Name |
548550
| ---------------- |
549551
| `create_time` |

‎docs/en/chains/concepts/understanding_tekton_chains.mdx‎

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,8 @@ There are several ways to specify input and output artifacts:
178178
- Used to track source code repository details
179179
- Helps in provenance generation for source code
180180
181+
{/* lint ignore code-block-split-list */}
182+
181183
```yaml
182184
results:
183185
- name: CHAINS-GIT_URL
@@ -186,7 +188,7 @@ results:
186188
type: string
187189
```
188190
189-
:::details{title="Example TaskRun"}
191+
:::details \{title="Example TaskRun"}
190192
```yaml
191193
apiVersion: tekton.dev/v1
192194
kind: TaskRun
@@ -228,6 +230,8 @@ spec:
228230
- Used to specify input artifacts that influenced the build process
229231
- Helps track dependencies and source materials
230232

233+
{/* lint ignore code-block-split-list */}
234+
231235
```yaml
232236
results:
233237
- name: first-ARTIFACT_INPUTS
@@ -237,7 +241,7 @@ results:
237241
digest: {}
238242
```
239243

240-
:::details{title="Example TaskRun"}
244+
:::details \{title="Example TaskRun"}
241245
```yaml
242246
apiVersion: tekton.dev/v1
243247
kind: TaskRun
@@ -280,7 +284,7 @@ results:
280284
type: string
281285
```
282286

283-
:::details{title="Example TaskRun"}
287+
:::details \{title="Example TaskRun"}
284288
```yaml
285289
apiVersion: tekton.dev/v1
286290
kind: TaskRun
@@ -310,13 +314,15 @@ spec:
310314
- Can specify multiple images, separated by commas or newlines
311315
- Each image must include the complete digest
312316

317+
{/* lint ignore code-block-split-list */}
318+
313319
```yaml
314320
results:
315321
- name: IMAGES
316322
type: string
317323
```
318324

319-
:::details{title="Example TaskRun"}
325+
:::details \{title="Example TaskRun"}
320326
```yaml
321327
apiVersion: tekton.dev/v1
322328
kind: TaskRun
@@ -342,6 +348,8 @@ spec:
342348
- Similar to IMAGE_URL/IMAGE_DIGEST but with different naming convention
343349
- Used for specifying artifact location and its digest
344350

351+
{/* lint ignore code-block-split-list */}
352+
345353
```yaml
346354
results:
347355
- name: first-ARTIFACT_URI
@@ -355,6 +363,8 @@ results:
355363
- Uses object type results
356364
- Must include uri and digest fields
357365

366+
{/* lint ignore code-block-split-list */}
367+
358368
```yaml
359369
results:
360370
- name: first-ARTIFACT_OUTPUTS
@@ -364,7 +374,7 @@ results:
364374
digest: {}
365375
```
366376

367-
:::details{title="Example TaskRun"}
377+
:::details \{title="Example TaskRun"}
368378
```yaml
369379
apiVersion: tekton.dev/v1
370380
kind: TaskRun

0 commit comments

Comments
 (0)