File tree 4 files changed +11
-8
lines changed
4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -4569,6 +4569,9 @@ reasons that emerge from underlying resources are not included here</p>
4569
4569
</tr><tr><td><p>"TaskRunImagePullFailed"</p></td>
4570
4570
<td><p>TaskRunReasonImagePullFailed is the reason set when the step of a task fails due to image not being pulled</p>
4571
4571
</td>
4572
+ </tr><tr><td><p>"TaskRunResultLargerThanAllowedLimit"</p></td>
4573
+ <td><p>TaskRunReasonResultLargerThanAllowedLimit is the reason set when one of the results exceeds its maximum allowed limit of 1 KB</p>
4574
+ </td>
4572
4575
</tr><tr><td><p>"Running"</p></td>
4573
4576
<td><p>TaskRunReasonRunning is the reason set when the TaskRun is running</p>
4574
4577
</td>
@@ -6347,15 +6350,17 @@ string
6347
6350
<td>
6348
6351
<code>kms</code><br/>
6349
6352
<em>
6350
- <a href="#tekton.dev/v1alpha1.HashAlgorithm">
6351
- HashAlgorithm
6352
- </a>
6353
+ string
6353
6354
</em>
6354
6355
</td>
6355
6356
<td>
6356
6357
<em>(Optional)</em>
6357
6358
<p>KMS contains the KMS url of the public key
6358
- Supported formats differ based on the KMS system used.</p>
6359
+ Supported formats differ based on the KMS system used.
6360
+ One example of a KMS url could be:
6361
+ gcpkms://projects/[PROJECT]/locations/[LOCATION]>/keyRings/[KEYRING]/cryptoKeys/[KEY]/cryptoKeyVersions/[KEY_VERSION]
6362
+ For more examples please refer <a href="https://docs.sigstore.dev/cosign/kms_support">https://docs.sigstore.dev/cosign/kms_support</a>.
6363
+ Note that the KMS is not supported yet.</p>
6359
6364
</td>
6360
6365
</tr>
6361
6366
<tr>
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ const (
38
38
TaskRunSpanContextAnnotation = "tekton.dev/taskrunSpanContext"
39
39
)
40
40
41
- // initialize tracing by creating the root span and injecting the spanContext
41
+ // initialize tracing by creating the root span and injecting the
42
42
// spanContext is propogated through annotations in the CR
43
43
func initTracing (ctx context.Context , tracerProvider trace.TracerProvider , pr * v1beta1.PipelineRun ) context.Context {
44
44
logger := logging .FromContext (ctx )
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ const (
35
35
SpanContextAnnotation = "tekton.dev/taskrunSpanContext"
36
36
)
37
37
38
- // initialize tracing by creating the root span and injecting the spanContext
38
+ // initialize tracing by creating the root span and injecting the
39
39
// spanContext is propogated through annotations in the CR
40
40
func initTracing (ctx context.Context , tracerProvider trace.TracerProvider , tr * v1beta1.TaskRun ) context.Context {
41
41
logger := logging .FromContext (ctx )
Original file line number Diff line number Diff line change @@ -120,7 +120,5 @@ func TestInitTracing(t *testing.T) {
120
120
}
121
121
}
122
122
})
123
-
124
123
}
125
-
126
124
}
You can’t perform that action at this time.
0 commit comments