You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/additional-configs.md
+2
Original file line number
Diff line number
Diff line change
@@ -333,6 +333,8 @@ enables [beta features](#beta-features). When using v1 APIs, setting this field
333
333
allows only stable features, and setting it to "beta" allows only beta features.
334
334
Set this field to "alpha" to allow [alpha features](#alpha-features) to be used.
335
335
336
+
- `enable-kubernetes-sidecar`: Set this flag to `"true"` to enable native kubernetes sidecar support. This will allow Tekton sidecars to run as Kubernetes sidecars. Must be using Kubernetes v1.29 or greater.
Copy file name to clipboardexpand all lines: docs/tasks.md
+5
Original file line number
Diff line number
Diff line change
@@ -1113,6 +1113,11 @@ to run alongside the `Steps` in your `Task`. You can use `Sidecars` to provide a
1113
1113
`Sidecars`spin up before your `Task` executes and are deleted after the `Task` execution completes.
1114
1114
For further information, see [`Sidecars` in `TaskRuns`](taskruns.md#specifying-sidecars).
1115
1115
1116
+
**Note**: Starting in v0.62 you can enable native Kubernetes sidecar support using the `enable-kubernetes-sidecar` feature flag ([see instructions](./additional-configs.md#customizing-the-pipelines-controller-behavior)). If kubernetes does not wait for your sidecar application to be ready, use a `startupProbe` to help kubernetes identify when it is ready.
1117
+
1118
+
Refer to the detailed instructions listed in [additional config](additional-configs.md#enabling-larger-results-using-sidecar-logs)
1119
+
to learn how to enable this feature.
1120
+
1116
1121
In the example below, a `Step` uses a Docker-in-Docker `Sidecar` to build a Docker image:
Copy file name to clipboardexpand all lines: pkg/apis/pipeline/v1/swagger.json
+4
Original file line number
Diff line number
Diff line change
@@ -1325,6 +1325,10 @@
1325
1325
"description": "Periodic probe of Sidecar service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
1326
1326
"$ref": "#/definitions/v1.Probe"
1327
1327
},
1328
+
"restartPolicy": {
1329
+
"description": "RestartPolicy refers to kubernetes RestartPolicy. It can only be set for an initContainer and must have it's policy set to \"Always\". It is currently left optional to help support Kubernetes versions prior to 1.29 when this feature was introduced.",
1330
+
"type": "string"
1331
+
},
1328
1332
"script": {
1329
1333
"description": "Script is the contents of an executable file to execute.\n\nIf Script is not empty, the Step cannot have an Command or Args.",
Copy file name to clipboardexpand all lines: pkg/apis/pipeline/v1beta1/swagger.json
+4
Original file line number
Diff line number
Diff line change
@@ -1932,6 +1932,10 @@
1932
1932
"default": {},
1933
1933
"$ref": "#/definitions/v1.ResourceRequirements"
1934
1934
},
1935
+
"restartPolicy": {
1936
+
"description": "RestartPolicy refers to kubernetes RestartPolicy. It can only be set for an initContainer and must have it's policy set to \"Always\". It is currently left optional to help support Kubernetes versions prior to 1.29 when this feature was introduced.",
1937
+
"type": "string"
1938
+
},
1935
1939
"script": {
1936
1940
"description": "Script is the contents of an executable file to execute.\n\nIf Script is not empty, the Step cannot have an Command or Args.",
0 commit comments