summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/class
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2017-02-16 12:16:39 -0500
committerKenny Woodson <kwoodson@redhat.com>2017-02-20 16:13:40 -0500
commit8daf54c2da2e6004cebacd84b61d5be10f72b0a3 (patch)
tree5329bef88202befafc780a72529efd75199a9abb /roles/lib_openshift/src/class
parent0e6d708c0278a2363fdf4161b949b944d29ea9d3 (diff)
downloadopenshift-8daf54c2da2e6004cebacd84b61d5be10f72b0a3.tar.gz
openshift-8daf54c2da2e6004cebacd84b61d5be10f72b0a3.tar.bz2
openshift-8daf54c2da2e6004cebacd84b61d5be10f72b0a3.tar.xz
openshift-8daf54c2da2e6004cebacd84b61d5be10f72b0a3.zip
Fixing registry doc and suggestions.
Diffstat (limited to 'roles/lib_openshift/src/class')
-rw-r--r--roles/lib_openshift/src/class/oadm_registry.py16
1 files changed, 5 insertions, 11 deletions
diff --git a/roles/lib_openshift/src/class/oadm_registry.py b/roles/lib_openshift/src/class/oadm_registry.py
index b42410926..bcb098663 100644
--- a/roles/lib_openshift/src/class/oadm_registry.py
+++ b/roles/lib_openshift/src/class/oadm_registry.py
@@ -136,12 +136,6 @@ class Registry(OpenShiftCLI):
def prep_registry(self):
''' prepare a registry for instantiation '''
- # In <= 3.4 credentials are used
- # In >= 3.5 credentials are removed
- versions = self.version.get()
- if '3.5' in versions['oc']:
- self.config.config_options['credentials']['include'] = False
-
options = self.config.to_option_list()
cmd = ['registry', '-n', self.config.namespace]
@@ -319,8 +313,7 @@ class Registry(OpenShiftCLI):
rconfig = RegistryConfig(params['name'],
params['namespace'],
params['kubeconfig'],
- {'credentials': {'value': params['credentials'], 'include': True},
- 'default_cert': {'value': None, 'include': True},
+ {'default_cert': {'value': None, 'include': True},
'images': {'value': params['images'], 'include': True},
'latest_images': {'value': params['latest_images'], 'include': True},
'labels': {'value': params['labels'], 'include': True},
@@ -330,11 +323,12 @@ class Registry(OpenShiftCLI):
'service_account': {'value': params['service_account'], 'include': True},
'registry_type': {'value': params['registry_type'], 'include': False},
'mount_host': {'value': params['mount_host'], 'include': True},
- 'volume': {'value': params['mount_host'], 'include': True},
- 'template': {'value': params['template'], 'include': True},
+ 'volume': {'value': '/registry', 'include': True},
'env_vars': {'value': params['env_vars'], 'include': False},
'volume_mounts': {'value': params['volume_mounts'], 'include': False},
'edits': {'value': params['edits'], 'include': False},
+ 'enforce_quota': {'value': params['enforce_quota'], 'include': True},
+ 'daemonset': {'value': params['daemonset'], 'include': True},
})
@@ -366,7 +360,7 @@ class Registry(OpenShiftCLI):
if not ocregistry.exists():
if check_mode:
- return {'changed': True, 'msg': 'CHECK_MODE: Would have performed a delete.'}
+ return {'changed': True, 'msg': 'CHECK_MODE: Would have performed a create.'}
api_rval = ocregistry.create()