diff options
| -rw-r--r-- | interface-definitions/container.xml.in | 15 | 
1 files changed, 14 insertions, 1 deletions
| diff --git a/interface-definitions/container.xml.in b/interface-definitions/container.xml.in index f0db8a6f2..d48ebf966 100644 --- a/interface-definitions/container.xml.in +++ b/interface-definitions/container.xml.in @@ -128,7 +128,17 @@            </leafNode>            <leafNode name="image">              <properties> -              <help>Image name in the hub-registry</help> +              <help>Container image to use</help> +              <completionHelp> +                <script>sudo podman image list --format "{{.Repository}}:{{.Tag}}"</script> +              </completionHelp> +              <valueHelp> +                <format>txt</format> +                <description>Image name in the hub-registry</description> +              </valueHelp> +              <constraint> +                <regex>[[:ascii:]]{1,255}</regex> +              </constraint>              </properties>            </leafNode>            <leafNode name="command"> @@ -165,6 +175,9 @@                      <format>txt</format>                      <description>Set label option value</description>                    </valueHelp> +                  <constraint> +                    <regex>[[:ascii:]]{1,255}</regex> +                  </constraint>                  </properties>                </leafNode>              </children> | 
