Browse Source

Add serviceAccountConfig.masterCA during 3.1 upgrade

- uses the value of oauthConfig.masterCA if present, otherwise sets it to
  ca.crt
Jason DeTiberus 9 years ago
parent
commit
bc9a52fcc1

+ 4 - 0
playbooks/common/openshift-cluster/upgrades/library/openshift_upgrade_config.py

@@ -78,6 +78,10 @@ def upgrade_master_3_0_to_3_1(ansible_module, config_base, backup):
         config['kubernetesMasterConfig'].pop('apiLevels')
         changes.append('master-config.yaml: removed kubernetesMasterConfig.apiLevels')
 
+    # Add masterCA to serviceAccountConfig
+    if 'serviceAccountConfig' in config and 'masterCA' not in config['serviceAccountConfig']:
+        config['serviceAccountConfig']['masterCA'] = config['oauthConfig'].get('masterCA', 'ca.crt')
+
     # Add proxyClientInfo to master-config
     if 'proxyClientInfo' not in config['kubernetesMasterConfig']:
         config['kubernetesMasterConfig']['proxyClientInfo'] = {