summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/library/oc_secret.py
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2017-10-04 13:25:21 -0700
committerGitHub <noreply@github.com>2017-10-04 13:25:21 -0700
commit9929c67a7011027b1e9fc467d7ca0992a0329ab0 (patch)
treeeab98ff0c970fd23698fb41dd0d6b7c9e945ad32 /roles/lib_openshift/library/oc_secret.py
parentb11783ab2a9fcb88067d631468e3750fcddc67b3 (diff)
parent7d8d21b7a5170fa3b187d7afe6d010a2e888fe74 (diff)
downloadopenshift-9929c67a7011027b1e9fc467d7ca0992a0329ab0.tar.gz
openshift-9929c67a7011027b1e9fc467d7ca0992a0329ab0.tar.bz2
openshift-9929c67a7011027b1e9fc467d7ca0992a0329ab0.tar.xz
openshift-9929c67a7011027b1e9fc467d7ca0992a0329ab0.zip
Merge pull request #5314 from fabianvf/asb-config-update
Automatic merge from submit-queue. Update broker configuration to track current broker Broker configuration has been drifting from this installer, updated configuration and deployment methods a bit to make it work with the new upstream broker. Note: This will not work well when deploying openshift-enterprise, to deploy openshift-enterprise you will need to use an older checkout of openshift-ansible, or specify the upstream broker + catalog and use a registry other than the RHCC. This is because the configuration for the current upstream broker is incompatible with the downstream broker.
Diffstat (limited to 'roles/lib_openshift/library/oc_secret.py')
-rw-r--r--roles/lib_openshift/library/oc_secret.py16
1 files changed, 13 insertions, 3 deletions
diff --git a/roles/lib_openshift/library/oc_secret.py b/roles/lib_openshift/library/oc_secret.py
index 19c7fde78..0614f359d 100644
--- a/roles/lib_openshift/library/oc_secret.py
+++ b/roles/lib_openshift/library/oc_secret.py
@@ -90,6 +90,12 @@ options:
required: false
default: default
aliases: []
+ annotations:
+ description:
+ - Annotations to apply to the object
+ required: false
+ default: None
+ aliases: []
files:
description:
- A list of files provided for secrets
@@ -1464,13 +1470,15 @@ class SecretConfig(object):
namespace,
kubeconfig,
secrets=None,
- stype=None):
+ stype=None,
+ annotations=None):
''' constructor for handling secret options '''
self.kubeconfig = kubeconfig
self.name = sname
self.type = stype
self.namespace = namespace
self.secrets = secrets
+ self.annotations = annotations
self.data = {}
self.create_dict()
@@ -1487,6 +1495,8 @@ class SecretConfig(object):
if self.secrets:
for key, value in self.secrets.items():
self.data['data'][key] = value
+ if self.annotations:
+ self.data['metadata']['annotations'] = self.annotations
# pylint: disable=too-many-instance-attributes
class Secret(Yedit):
@@ -1698,8 +1708,7 @@ class OCSecret(OpenShiftCLI):
elif params['contents']:
files = Utils.create_tmp_files_from_contents(params['contents'])
else:
- return {'failed': True,
- 'msg': 'Either specify files or contents.'}
+ files = [{'name': 'null', 'path': os.devnull}]
########
# Create
@@ -1783,6 +1792,7 @@ def main():
debug=dict(default=False, type='bool'),
namespace=dict(default='default', type='str'),
name=dict(default=None, type='str'),
+ annotations=dict(default=None, type='dict'),
type=dict(default=None, type='str'),
files=dict(default=None, type='list'),
delete_after=dict(default=False, type='bool'),