├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .mvn ├── extensions.xml └── maven.config ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── ThirdPartyNotices.txt ├── checkstyle.xml ├── img ├── binding.png └── screenshot.png ├── pom.xml └── src ├── main ├── java │ ├── com │ │ └── microsoft │ │ │ └── jenkins │ │ │ └── kubernetes │ │ │ ├── KubernetesCDPlugin.java │ │ │ ├── KubernetesDeploy.java │ │ │ ├── KubernetesDeployContext.java │ │ │ ├── command │ │ │ └── DeploymentCommand.java │ │ │ ├── credentials │ │ │ ├── AncestorAware.java │ │ │ ├── ClientWrapperFactory.java │ │ │ ├── ConfigFileCredentials.java │ │ │ ├── KubeconfigCredentials.java │ │ │ ├── KubeconfigCredentialsBinding.java │ │ │ ├── KubeconfigFileCredentialsBinding.java │ │ │ ├── KubernetesCredentialsType.java │ │ │ ├── ResolvedDockerRegistryEndpoint.java │ │ │ ├── SSHCredentials.java │ │ │ └── TextCredentials.java │ │ │ ├── util │ │ │ ├── CommonUtils.java │ │ │ ├── Constants.java │ │ │ ├── DockerConfigBuilder.java │ │ │ └── KubernetesJsonUtils.java │ │ │ └── wrapper │ │ │ ├── KubernetesClientWrapper.java │ │ │ ├── ResourceManager.java │ │ │ ├── ResourceUpdaterMap.java │ │ │ ├── V1ResourceManager.java │ │ │ ├── V1ResourceUpdateMonitor.java │ │ │ ├── V1beta1ResourceManager.java │ │ │ ├── V1beta1ResourceUpdateMonitor.java │ │ │ ├── V1beta2ResourceManager.java │ │ │ ├── V1beta2ResourceUpdateMonitor.java │ │ │ ├── V2alpha1ResourceManager.java │ │ │ ├── V2alpha1ResourceUpdateMonitor.java │ │ │ ├── V2beta1ResourceManager.java │ │ │ ├── V2beta1ResourceUpdateMonitor.java │ │ │ ├── V2beta2ResourceManager.java │ │ │ └── V2beta2ResourceUpdateMonitor.java │ └── io │ │ └── kubesphere │ │ └── jenkins │ │ └── kubernetes │ │ └── generated │ │ └── KubernetesModelClasses.java ├── resources │ ├── com │ │ └── microsoft │ │ │ └── jenkins │ │ │ └── kubernetes │ │ │ ├── KubernetesDeploy │ │ │ ├── config.jelly │ │ │ └── config.properties │ │ │ ├── KubernetesDeployContext │ │ │ ├── config.jelly │ │ │ ├── config.properties │ │ │ ├── help-configs.html │ │ │ ├── help-credentialsType.html │ │ │ ├── help-deleteResource.html │ │ │ ├── help-enableConfigSubstitution.html │ │ │ ├── help-secretName.html │ │ │ └── help-secretNamespace.html │ │ │ ├── Messages.properties │ │ │ ├── credentials │ │ │ ├── ConfigFileCredentials │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ └── help-path.html │ │ │ ├── KubeconfigCredentials │ │ │ │ ├── DirectEntryKubeconfigSource │ │ │ │ │ ├── config.jelly │ │ │ │ │ └── help-content.html │ │ │ │ ├── FileOnKubernetesMasterKubeconfigSource │ │ │ │ │ ├── config.jelly │ │ │ │ │ ├── help-file.html │ │ │ │ │ ├── help-server.html │ │ │ │ │ └── help-sshCredentialId.html │ │ │ │ ├── FileOnMasterKubeconfigSource │ │ │ │ │ ├── config.jelly │ │ │ │ │ └── help-kubeconfigFile.html │ │ │ │ └── credentials.jelly │ │ │ ├── KubeconfigCredentialsBinding │ │ │ │ └── config-variables.jelly │ │ │ ├── KubeconfigFileCredentialsBinding │ │ │ │ └── config-variables.jelly │ │ │ ├── SSHCredentials │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-sshCredentialsId.html │ │ │ │ └── help-sshServer.html │ │ │ └── TextCredentials │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-certificateAuthorityData.html │ │ │ │ ├── help-clientCertificateData.html │ │ │ │ ├── help-clientKeyData.html │ │ │ │ └── help-serverUrl.html │ │ │ └── wrapper │ │ │ └── Messages.properties │ └── index.jelly ├── script │ └── KubernetesModelClassesGen.groovy └── webapp │ └── scripts │ └── KubenetesDeployContext.js └── test ├── java └── com │ └── microsoft │ └── jenkins │ └── kubernetes │ ├── KubernetesClientWrapperTest.java │ ├── KubernetesDeployContextTest.java │ ├── command │ └── DeploymentCommandTest.java │ ├── credentials │ ├── ConfigFileCredentialsTest.java │ ├── SSHCredentialsTest.java │ └── TextCredentialsTest.java │ └── util │ ├── CommonUtilsTest.java │ └── DockerConfigBuilderTest.java └── resources ├── com └── microsoft │ └── jenkins │ └── kubernetes │ ├── kubeconfig.yml │ └── util │ └── CommonUtilsTest.data └── mockito-extensions └── org.mockito.plugins.MockMaker /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/.mvn/maven.config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/README.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /img/binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/img/binding.png -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/KubernetesCDPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/KubernetesCDPlugin.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/KubernetesDeploy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/KubernetesDeploy.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/KubernetesDeployContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/KubernetesDeployContext.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/command/DeploymentCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/command/DeploymentCommand.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/credentials/AncestorAware.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/credentials/AncestorAware.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/credentials/ClientWrapperFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/credentials/ClientWrapperFactory.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/credentials/ConfigFileCredentials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/credentials/ConfigFileCredentials.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentialsBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentialsBinding.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/credentials/KubeconfigFileCredentialsBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/credentials/KubeconfigFileCredentialsBinding.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/credentials/KubernetesCredentialsType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/credentials/KubernetesCredentialsType.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/credentials/ResolvedDockerRegistryEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/credentials/ResolvedDockerRegistryEndpoint.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/credentials/SSHCredentials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/credentials/SSHCredentials.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/credentials/TextCredentials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/credentials/TextCredentials.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/util/CommonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/util/CommonUtils.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/util/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/util/Constants.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/util/DockerConfigBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/util/DockerConfigBuilder.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/util/KubernetesJsonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/util/KubernetesJsonUtils.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/KubernetesClientWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/KubernetesClientWrapper.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/ResourceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/ResourceManager.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/ResourceUpdaterMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/ResourceUpdaterMap.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V1ResourceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V1ResourceManager.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V1ResourceUpdateMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V1ResourceUpdateMonitor.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V1beta1ResourceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V1beta1ResourceManager.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V1beta1ResourceUpdateMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V1beta1ResourceUpdateMonitor.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V1beta2ResourceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V1beta2ResourceManager.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V1beta2ResourceUpdateMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V1beta2ResourceUpdateMonitor.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V2alpha1ResourceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V2alpha1ResourceManager.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V2alpha1ResourceUpdateMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V2alpha1ResourceUpdateMonitor.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V2beta1ResourceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V2beta1ResourceManager.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V2beta1ResourceUpdateMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V2beta1ResourceUpdateMonitor.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V2beta2ResourceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V2beta2ResourceManager.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V2beta2ResourceUpdateMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/com/microsoft/jenkins/kubernetes/wrapper/V2beta2ResourceUpdateMonitor.java -------------------------------------------------------------------------------- /src/main/java/io/kubesphere/jenkins/kubernetes/generated/KubernetesModelClasses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/java/io/kubesphere/jenkins/kubernetes/generated/KubernetesModelClasses.java -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeploy/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeploy/config.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeploy/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeploy/config.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/config.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/config.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/help-configs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/help-configs.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/help-credentialsType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/help-credentialsType.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/help-deleteResource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/help-deleteResource.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/help-enableConfigSubstitution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/help-enableConfigSubstitution.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/help-secretName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/help-secretName.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/help-secretNamespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/KubernetesDeployContext/help-secretNamespace.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/ConfigFileCredentials/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/ConfigFileCredentials/config.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/ConfigFileCredentials/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/ConfigFileCredentials/config.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/ConfigFileCredentials/help-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/ConfigFileCredentials/help-path.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/DirectEntryKubeconfigSource/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/DirectEntryKubeconfigSource/config.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/DirectEntryKubeconfigSource/help-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/DirectEntryKubeconfigSource/help-content.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/FileOnKubernetesMasterKubeconfigSource/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/FileOnKubernetesMasterKubeconfigSource/config.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/FileOnKubernetesMasterKubeconfigSource/help-file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/FileOnKubernetesMasterKubeconfigSource/help-file.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/FileOnKubernetesMasterKubeconfigSource/help-server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/FileOnKubernetesMasterKubeconfigSource/help-server.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/FileOnKubernetesMasterKubeconfigSource/help-sshCredentialId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/FileOnKubernetesMasterKubeconfigSource/help-sshCredentialId.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/FileOnMasterKubeconfigSource/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/FileOnMasterKubeconfigSource/config.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/FileOnMasterKubeconfigSource/help-kubeconfigFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/FileOnMasterKubeconfigSource/help-kubeconfigFile.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/credentials.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentials/credentials.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentialsBinding/config-variables.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigCredentialsBinding/config-variables.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigFileCredentialsBinding/config-variables.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/KubeconfigFileCredentialsBinding/config-variables.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/SSHCredentials/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/SSHCredentials/config.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/SSHCredentials/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/SSHCredentials/config.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/SSHCredentials/help-sshCredentialsId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/SSHCredentials/help-sshCredentialsId.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/SSHCredentials/help-sshServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/SSHCredentials/help-sshServer.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/TextCredentials/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/TextCredentials/config.jelly -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/TextCredentials/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/TextCredentials/config.properties -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/TextCredentials/help-certificateAuthorityData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/TextCredentials/help-certificateAuthorityData.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/TextCredentials/help-clientCertificateData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/TextCredentials/help-clientCertificateData.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/TextCredentials/help-clientKeyData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/TextCredentials/help-clientKeyData.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/credentials/TextCredentials/help-serverUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/credentials/TextCredentials/help-serverUrl.html -------------------------------------------------------------------------------- /src/main/resources/com/microsoft/jenkins/kubernetes/wrapper/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/com/microsoft/jenkins/kubernetes/wrapper/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/script/KubernetesModelClassesGen.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/script/KubernetesModelClassesGen.groovy -------------------------------------------------------------------------------- /src/main/webapp/scripts/KubenetesDeployContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/main/webapp/scripts/KubenetesDeployContext.js -------------------------------------------------------------------------------- /src/test/java/com/microsoft/jenkins/kubernetes/KubernetesClientWrapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/test/java/com/microsoft/jenkins/kubernetes/KubernetesClientWrapperTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoft/jenkins/kubernetes/KubernetesDeployContextTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/test/java/com/microsoft/jenkins/kubernetes/KubernetesDeployContextTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoft/jenkins/kubernetes/command/DeploymentCommandTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/test/java/com/microsoft/jenkins/kubernetes/command/DeploymentCommandTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoft/jenkins/kubernetes/credentials/ConfigFileCredentialsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/test/java/com/microsoft/jenkins/kubernetes/credentials/ConfigFileCredentialsTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoft/jenkins/kubernetes/credentials/SSHCredentialsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/test/java/com/microsoft/jenkins/kubernetes/credentials/SSHCredentialsTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoft/jenkins/kubernetes/credentials/TextCredentialsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/test/java/com/microsoft/jenkins/kubernetes/credentials/TextCredentialsTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoft/jenkins/kubernetes/util/CommonUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/test/java/com/microsoft/jenkins/kubernetes/util/CommonUtilsTest.java -------------------------------------------------------------------------------- /src/test/java/com/microsoft/jenkins/kubernetes/util/DockerConfigBuilderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/test/java/com/microsoft/jenkins/kubernetes/util/DockerConfigBuilderTest.java -------------------------------------------------------------------------------- /src/test/resources/com/microsoft/jenkins/kubernetes/kubeconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/kubernetes-cd-plugin/HEAD/src/test/resources/com/microsoft/jenkins/kubernetes/kubeconfig.yml -------------------------------------------------------------------------------- /src/test/resources/com/microsoft/jenkins/kubernetes/util/CommonUtilsTest.data: -------------------------------------------------------------------------------- 1 | ${name} -------------------------------------------------------------------------------- /src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker: -------------------------------------------------------------------------------- 1 | mock-maker-inline 2 | --------------------------------------------------------------------------------