Browse Source

Add ca-bundle.crt to list of certs to synchronize.

Andrew Butcher 8 years ago
parent
commit
00a0b457da
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/openshift_master_facts/filter_plugins/openshift_master.py

+ 1 - 1
roles/openshift_master_facts/filter_plugins/openshift_master.py

@@ -527,7 +527,7 @@ class FilterModule(object):
                  'master.kubelet-client.crt',
                  'master.kubelet-client.key']
         if bool(include_ca):
-            certs += ['ca.crt', 'ca.key']
+            certs += ['ca.crt', 'ca.key', 'ca-bundle.crt']
         if bool(include_keys):
             certs += ['serviceaccounts.private.key',
                       'serviceaccounts.public.key']