Skip to content
Snippets Groups Projects
Commit c3ec3ff9 authored by Alexander Block's avatar Alexander Block
Browse files

Allow to specify docker storage driver

parent 7897c34b
No related branches found
No related tags found
No related merge requests found
......@@ -157,6 +157,10 @@ docker_daemon_graph: "/var/lib/docker"
## to self hosted registries like so:
docker_options: "--insecure-registry={{ kube_service_addresses }} --graph={{ docker_daemon_graph }}"
## Uncomment this if you want to force overlay/overlay2 as docker storage driver
## Please note that overlay2 is only supported on newer kernels
#docker_storage_options: -s overlay2
# K8s image pull policy (imagePullPolicy)
k8s_image_pull_policy: IfNotPresent
......
......@@ -11,6 +11,9 @@ Wants=docker.socket
[Service]
Type=notify
{% if docker_storage_options is defined %}
Environment="DOCKER_STORAGE_OPTIONS={{docker_storage_options}}"
{% endif %}
Environment=GOTRACEBACK=crash
ExecReload=/bin/kill -s HUP $MAINPID
Delegate=yes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment