Skip to content

Commit 67246a1

Browse files
authored
Merge pull request #1122 from Dan-Heath/BEE-12428
2 parents 0fd6466 + 973a517 commit 67246a1

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,13 @@ Either way it provides access to the following fields:
298298
* **nodeSelector** The node selector of the pod.
299299
* **nodeUsageMode** Either `NORMAL` or `EXCLUSIVE`, this controls whether Jenkins only schedules jobs with label expressions matching or use the node as much as possible.
300300
* **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.
301308
* **envVars** Environment variables that are applied to **ALL** containers.
302309
* **envVar** An environment variable whose value is defined inline.
303310
* **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:
313320
* **runAsGroup** The group ID to run all containers in the pod as.
314321
* **hostNetwork** Use the hosts network.
315322
* **workspaceVolume** The type of volume to use for the workspace.
316-
* `emptyDirWorkspaceVolume` (default): an empty dir allocated on the host machine
317323
* `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
318325
* `hostPathWorkspaceVolume()` : a host path volume
319326
* `nfsWorkspaceVolume()` : a nfs volume
320327
* `persistentVolumeClaimWorkspaceVolume()` : an existing persistent volume claim by name.

0 commit comments

Comments
 (0)