Update image descriptions, add examples

This commit is contained in:
Jake McDermott
2021-05-12 16:10:42 -04:00
parent 7fbe01352f
commit 39ce0ade6d
3 changed files with 39 additions and 2 deletions
@@ -100,7 +100,22 @@ function ExecutionEnvironmentFormFields({
type="text"
validate={required(null)}
isRequired
tooltip={t`The registry location where the container is stored.`}
tooltip={
<span>
{t`The full image location, including the container registry, image name, and version tag.`}
<br />
<br />
{t`Examples:`}
<ul css="margin: 10px 0 10px 20px">
<li>
<code>quay.io/ansible/awx-ee:latest</code>
</li>
<li>
<code>repo/project/image-name:tag</code>
</li>
</ul>
</span>
}
/>
<FormGroup
fieldId="execution-environment-container-options"