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
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -298,6 +298,13 @@ Either way it provides access to the following fields:
298
298
***nodeSelector** The node selector of the pod.
299
299
***nodeUsageMode** Either `NORMAL` or `EXCLUSIVE`, this controls whether Jenkins only schedules jobs with label expressions matching or use the node as much as possible.
300
300
***volumes** Volumes that are defined for the pod and are mounted by **ALL** containers.
301
+
*`configMapVolume` : a read only volume that is mounted from a ConfigMap.
302
+
*`dynamicPVC()` : a persistent volume claim managed dynamically. It is deleted at the same time as the pod.
303
+
*`emptyDirVolume` (default): an empty dir allocated on the host machine
304
+
*`hostPathVolume()` : a host path volume
305
+
*`nfsVolume()` : a nfs volume
306
+
*`persistentVolumeClaim()` : an existing persistent volume claim by name.
307
+
*`secretVolume` : a read only volume that is mounted from a Kubernetes secret.
301
308
***envVars** Environment variables that are applied to **ALL** containers.
302
309
***envVar** An environment variable whose value is defined inline.
303
310
***secretEnvVar** An environment variable whose value is derived from a Kubernetes secret.
@@ -313,8 +320,8 @@ Either way it provides access to the following fields:
313
320
***runAsGroup** The group ID to run all containers in the pod as.
314
321
***hostNetwork** Use the hosts network.
315
322
***workspaceVolume** The type of volume to use for the workspace.
316
-
*`emptyDirWorkspaceVolume` (default): an empty dir allocated on the host machine
317
323
*`dynamicPVC()` : a persistent volume claim managed dynamically. It is deleted at the same time as the pod.
324
+
*`emptyDirWorkspaceVolume` (default): an empty dir allocated on the host machine
318
325
*`hostPathWorkspaceVolume()` : a host path volume
319
326
*`nfsWorkspaceVolume()` : a nfs volume
320
327
*`persistentVolumeClaimWorkspaceVolume()` : an existing persistent volume claim by name.
0 commit comments