first commit

master
ermisw 2023-09-28 16:47:57 +02:00
commit a35a76d4d0
1 changed files with 18 additions and 0 deletions

18
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,18 @@
pipeline {
agent any
environment {
KUBECONFIG = credentials('kubernetes-config')
}
stages {
stage('Checkout') {
steps {
git 'https://gitea.nttdata-xlabs.com/wiegee/TestJenkins.git'
}
}
// stage('Deploy Helm chart') {
// steps {
// sh "helm install ingress-nginx ./deploy/charts/ingress-nginx --namespace ingress-nginx --set controller.publishService.enabled=true --set controller.service.loadBalancerIP=${env.LB_IP}"
// }
// }
}
}