1166 - 'Quay Enterprise' to 'Red Hat Quay'

This commit is contained in:
Tom McKay 2019-02-25 18:27:11 -05:00
parent b5a5ce7c43
commit 674e471973
24 changed files with 71 additions and 71 deletions

View file

@ -22,7 +22,7 @@ class HtmlOutput:
#output += '<h1 class="root_title">{}</h1>\n'.format(root_item['title'])
#output += '<h1 class="root_title">{}</h1>\n'.format(root_item['title'])
output += "Schema for Quay Enterprise"
output += "Schema for Red Hat Quay"
output += '<ul class="level0">\n'
last_level = 0

View file

@ -4,7 +4,7 @@
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
Schema for Quay Enterprise<ul class="level0">
Schema for Red Hat Quay<ul class="level0">
<li class="schema item">
<div class="name">AUTHENTICATION_TYPE</div>
<div class="type">[string]</div>
@ -970,7 +970,7 @@ Schema for Quay Enterprise<ul class="level0">
<div class="required"></div>
<div class="docs">
<div class="title"></div>
<div class="description">If specified, the long-form title for the registry. Defaults to `Quay Enterprise`.</div>
<div class="description">If specified, the long-form title for the registry. Defaults to `Red Hat Quay`.</div>
<div class="x-example">Example: <code>Corp Container Service</code></div>
</div>
</li>
@ -980,7 +980,7 @@ Schema for Quay Enterprise<ul class="level0">
<div class="required"></div>
<div class="docs">
<div class="title"></div>
<div class="description">If specified, the short-form title for the registry. Defaults to `Quay Enterprise`.</div>
<div class="description">If specified, the short-form title for the registry. Defaults to `Red Hat Quay`.</div>
<div class="x-example">Example: <code>CCS</code></div>
</div>
</li>

View file

@ -111,7 +111,7 @@ class KubernetesConfigProvider(BaseFileProvider):
if '/' in relative_file_path:
raise Exception('Expected path from get_volume_path, but found slashes')
# Check first that the namespace for Quay Enterprise exists. If it does not, report that
# Check first that the namespace for Red Hat Quay exists. If it does not, report that
# as an error, as it seems to be a common issue.
namespace_url = 'namespaces/%s' % (QE_NAMESPACE)
response = self._execute_k8s_api('GET', namespace_url)

View file

@ -132,12 +132,12 @@ CONFIG_SCHEMA = {
# User-visible configuration.
'REGISTRY_TITLE': {
'type': 'string',
'description': 'If specified, the long-form title for the registry. Defaults to `Quay Enterprise`.',
'description': 'If specified, the long-form title for the registry. Defaults to `Red Hat Quay`.',
'x-example': 'Corp Container Service',
},
'REGISTRY_TITLE_SHORT': {
'type': 'string',
'description': 'If specified, the short-form title for the registry. Defaults to `Quay Enterprise`.',
'description': 'If specified, the short-form title for the registry. Defaults to `Red Hat Quay`.',
'x-example': 'CCS',
},
'CONTACT_INFO': {