Skip to content
Snippets Groups Projects
Commit 57a0d64e authored by Tim Hobbs's avatar Tim Hobbs
Browse files

Names must meet the DNS name requirements (no upper case)

parent 93872b32
No related branches found
No related tags found
No related merge requests found
...@@ -169,16 +169,16 @@ concurrent = 4 ...@@ -169,16 +169,16 @@ concurrent = 4
executor = "kubernetes" executor = "kubernetes"
[runners.kubernetes] [runners.kubernetes]
[[runners.kubernetes.volumes.host_path]] [[runners.kubernetes.volumes.host_path]]
name = "HostPath" name = "hostpath-1"
mount_path = "/path/to/mount/point" mount_path = "/path/to/mount/point"
read_only = true read_only = true
host_path = "/path/on/host" host_path = "/path/on/host"
[[runners.kubernetes.volumes.host_path]] [[runners.kubernetes.volumes.host_path]]
name = "HostPath" name = "hostpath-2"
mount_path = "/path/to/mount/point_2" mount_path = "/path/to/mount/point_2"
read_only = true read_only = true
[[runners.kubernetes.volumes.pvc]] [[runners.kubernetes.volumes.pvc]]
name = "PersistentVolumeClaim" name = "pvc-1"
mount_path = "/path/to/mount/point1" mount_path = "/path/to/mount/point1"
[[runners.kubernetes.volumes.config_map]] [[runners.kubernetes.volumes.config_map]]
name = "config-map-1" name = "config-map-1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment