added files

This commit is contained in:
Your Name
2026-08-26 02:02:24 +05:30
parent 58ee8a276a
commit 3419cfba0c
200 changed files with 22132 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import com.meesho.stages.helmGenerator
import com.meesho.stages.validateBuTeam
def call(Map params) {
podTemplate(yaml: libraryResource("org/meesho/${env.INFRA_ENV}-pod.yaml")) {
node(POD_LABEL) {
container('devops-tools') {
timestamps {
ansiColor('xterm') {
env.GITHUB_CRED = 'svc-devops-meesho'
// Initialize objects
def validateObj = new validateBuTeam()
def hemlGenObj = new helmGenerator()
// validate parameters
validateObj.run(params.bu, params.team, params.module)
// Create helm file
hemlGenObj.run(params)
}
}
}
}
}
}