summaryrefslogtreecommitdiffstats
path: root/filter_plugins
diff options
context:
space:
mode:
authorAndrew Butcher <abutcher@redhat.com>2016-08-24 15:41:23 -0400
committerAndrew Butcher <abutcher@redhat.com>2016-08-24 15:41:23 -0400
commit05047e0e607598641eafac8eb8d9bbfa69bb7b2c (patch)
treed7aaf091bdcf95abc4115546dddd8e953e27c856 /filter_plugins
parentfcaeaf0ebb4f858500717f5f85aa3e27218e3e0f (diff)
downloadopenshift-05047e0e607598641eafac8eb8d9bbfa69bb7b2c.tar.gz
openshift-05047e0e607598641eafac8eb8d9bbfa69bb7b2c.tar.bz2
openshift-05047e0e607598641eafac8eb8d9bbfa69bb7b2c.tar.xz
openshift-05047e0e607598641eafac8eb8d9bbfa69bb7b2c.zip
enable service-serving-cert-signer by default
Diffstat (limited to 'filter_plugins')
-rw-r--r--filter_plugins/openshift_master.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/filter_plugins/openshift_master.py b/filter_plugins/openshift_master.py
index d196d6c1f..ee6a62ba5 100644
--- a/filter_plugins/openshift_master.py
+++ b/filter_plugins/openshift_master.py
@@ -550,6 +550,9 @@ class FilterModule(object):
certs += ['openshift-master.crt',
'openshift-master.key',
'openshift-master.kubeconfig']
+ if bool(hostvars['openshift']['common']['version_gte_3_3_or_1_3']):
+ certs += ['service-signer.crt',
+ 'service-signer.key']
return certs
@staticmethod