Skip to content

Commit

Permalink
Fixing snippet generator for tagger
Browse files Browse the repository at this point in the history
  • Loading branch information
jupierce committed Nov 17, 2016
1 parent 7470055 commit 2ebc135
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
Expand Up @@ -13,7 +13,6 @@
import org.kohsuke.stapler.DataBoundConstructor;
import org.kohsuke.stapler.DataBoundSetter;

import javax.validation.constraints.NotNull;
import java.util.Collection;
import java.util.Map;

Expand Down

This file was deleted.

@@ -0,0 +1,36 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">

<st:include page="cluster.jelly" class="com.openshift.jenkins.plugins.pipeline.Common" />

<f:entry title="The name of the ImageStream for the current image tag" field="srcStream">
<f:textbox />
</f:entry>

<f:entry title="The name of the current image tag or actual image ID" field="srcTag">
<f:textbox />
</f:entry>

<f:entry title="The name of the ImageStream for the new image tag" field="destStream">
<f:textbox />
</f:entry>

<f:entry title="The name of the new image tag" field="destTag">
<f:textbox />
</f:entry>

<f:entry title="The name of the project for the new image tag" field="destinationNamespace">
<f:textbox />
</f:entry>

<f:entry title="The authorization token for the default service account of the project for the new tag" field="destinationAuthToken">
<f:password />
</f:entry>

<f:entry title="Update destination tag whenever the source tag changes" field="alias">
<f:booleanRadio default="false" />
</f:entry>

<st:include page="verbose.jelly" class="com.openshift.jenkins.plugins.pipeline.Common" />

</j:jelly>

0 comments on commit 2ebc135

Please sign in to comment.