diff options
author | Scott Dodson <sdodson@redhat.com> | 2018-01-23 13:18:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-23 13:18:32 -0500 |
commit | 1c9c43e886500f53e23b2ab58b67b4a271e140ac (patch) | |
tree | 7223e8dd9befbb29d2915d1f50c7c970f31cccf4 /roles/openshift_node/defaults | |
parent | 1dc60bb8a49afaf2e6efcf9a3740f1f112671872 (diff) | |
parent | e18a06d2a14c5933243773f0aca7a891177f3e40 (diff) | |
download | openshift-1c9c43e886500f53e23b2ab58b67b4a271e140ac.tar.gz openshift-1c9c43e886500f53e23b2ab58b67b4a271e140ac.tar.bz2 openshift-1c9c43e886500f53e23b2ab58b67b4a271e140ac.tar.xz openshift-1c9c43e886500f53e23b2ab58b67b4a271e140ac.zip |
Merge pull request #6783 from mgugino-upstream-stage/node-syscon-add-mounts
Add ability to mount volumes into system container nodes
Diffstat (limited to 'roles/openshift_node/defaults')
-rw-r--r-- | roles/openshift_node/defaults/main.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roles/openshift_node/defaults/main.yml b/roles/openshift_node/defaults/main.yml index 0b10413c5..5864d3c03 100644 --- a/roles/openshift_node/defaults/main.yml +++ b/roles/openshift_node/defaults/main.yml @@ -77,6 +77,18 @@ r_openshift_node_use_firewalld: "{{ os_firewall_use_firewalld | default(False) } l_is_node_system_container: "{{ (openshift_use_node_system_container | default(openshift_use_system_containers | default(false)) | bool) }}" +openshift_node_syscon_auth_mounts_l: +- type: bind + source: "{{ oreg_auth_credentials_path }}" + destination: "/root/.docker" + options: + - ro + +# If we need to add new mounts in the future, or the user wants to mount data. +# This should be in the same format as auth_mounts_l above. +openshift_node_syscon_add_mounts_l: [] + + openshift_deployment_type: "{{ openshift_deployment_type | default('origin') }}" openshift_node_image_dict: |