Skip to content

Commit

Permalink
Merge pull request #66 from jenkinsci/remove_symlink
Browse files Browse the repository at this point in the history
remove symlinks
  • Loading branch information
maxlaverse committed Jul 26, 2020
2 parents fcde883 + cbd9a6b commit 82113d9
Show file tree
Hide file tree
Showing 11 changed files with 56 additions and 2 deletions.

This file was deleted.

@@ -0,0 +1,28 @@
<?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" xmlns:c="/lib/credentials">

<f:entry field="credentialsId" title="${%Credentials}">
<c:select/>
</f:entry>

<f:entry field="serverUrl" title="${%Kubernetes server endpoint}">
<f:textbox/>
</f:entry>

<f:entry field="clusterName" title="${%Cluster name}">
<f:textbox/>
</f:entry>

<f:entry field="contextName" title="${%Context name}">
<f:textbox/>
</f:entry>

<f:entry field="namespace" title="${%Namespace}">
<f:textbox/>
</f:entry>

<f:entry title="${%Certificate of certificate authority (CA)}" field="caCertificate">
<f:textarea/>
</f:entry>

</j:jelly>
@@ -0,0 +1,4 @@
<div>
The certificate of the certificate authority (CA). It's used to validate the API server certificate.
<p>Leaving this field empty will skip the certificate verification.</p>
</div>
@@ -0,0 +1,3 @@
<div>
Cluster name to use or to switch to.
</div>
@@ -0,0 +1,3 @@
<div>
Context name to use or to switch to.
</div>
@@ -0,0 +1,3 @@
<div>
Credentials to use for authentication or raw KubeConfig file.
</div>
@@ -0,0 +1,3 @@
<div>
Default namespace.
</div>
@@ -0,0 +1,3 @@
<div>
URL of the Kubernetes API endpoint.
</div>
@@ -0,0 +1,3 @@
<div>
Configure Kubernetes client (kubectl) so it can be used in the build to run Kubernetes commands
</div>

This file was deleted.

@@ -0,0 +1,6 @@
<?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" xmlns:c="/lib/credentials">
<f:entry title="${%Credentials to use}" field="kubectlCredentials">
<f:repeatableProperty field="kubectlCredentials" minimum="1" />
</f:entry>
</j:jelly>

0 comments on commit 82113d9

Please sign in to comment.