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: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -276,11 +276,13 @@ Either way it provides access to the following fields:
276
276
***nodeSelector** The node selector of the pod.
277
277
***nodeUsageMode** Either `NORMAL` or `EXCLUSIVE`, this controls whether Jenkins only schedules jobs with label expressions matching or use the node as much as possible.
278
278
***volumes** Volumes that are defined for the pod and are mounted by **ALL** containers.
279
+
*`configMapVolume` : a read only volume that is mounted from a ConfigMap.
279
280
*`dynamicPVC()` : a persistent volume claim managed dynamically. It is deleted at the same time as the pod.
280
281
*`emptyDirVolume` (default): an empty dir allocated on the host machine
281
282
*`hostPathVolume()` : a host path volume
282
283
*`nfsVolume()` : a nfs volume
283
284
*`persistentVolumeClaim()` : an existing persistent volume claim by name.
285
+
*`secretVolume` : a read only volume that is mounted from a Kubernetes secret.
284
286
***envVars** Environment variables that are applied to **ALL** containers.
285
287
***envVar** An environment variable whose value is defined inline.
286
288
***secretEnvVar** An environment variable whose value is derived from a Kubernetes secret.
@@ -296,11 +298,13 @@ Either way it provides access to the following fields:
296
298
***runAsGroup** The group ID to run all containers in the pod as.
297
299
***hostNetwork** Use the hosts network.
298
300
***workspaceVolume** The type of volume to use for the workspace.
301
+
*`configMapWorkspaceVolume` : a read only volume that is mounted from a ConfigMap.
299
302
*`dynamicPVC()` : a persistent volume claim managed dynamically. It is deleted at the same time as the pod.
300
303
*`emptyDirWorkspaceVolume` (default): an empty dir allocated on the host machine
301
304
*`hostPathWorkspaceVolume()` : a host path volume
302
305
*`nfsWorkspaceVolume()` : a nfs volume
303
306
*`persistentVolumeClaimWorkspaceVolume()` : an existing persistent volume claim by name.
307
+
*`secretWorkspaceVolume` : a read only volume that is mounted from a Kubernetes secret.
0 commit comments