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
+30
View File
@@ -0,0 +1,30 @@
pipeline {
agent none
environment {
K8S_LABEL = 'cloud-function-cicd-agent'
GITHUB_CRED = 'cicd-github-app'
}
podTemplate(yaml: libraryResource('org/meesho/pod-cloud-function.yaml')) {
node(POD_LABEL) {
container('devops-tools') {
cloudFunctionCICDFlow()
}
}
}
}
def cloudFunctionCICDFlow() {
stages {
stage {
steps {
script {
sh 'ls -al'
echo 'Hello World'
}
}
}
}
}