Rename com.meesho/org.meesho namespace to com.homelab/org.homelab
Renames src/com/meesho -> src/com/homelab, resources/com/meesho -> resources/com/homelab, resources/org/meesho -> resources/org/homelab (via git mv, preserving history), and sweeps every remaining occurrence of "meesho" (any casing) out of package declarations, imports, libraryResource() paths, and comments across the whole repo. Also drops the per-user allowlist in vars/eksCICD.groovy, which hardcoded real former-colleagues' emails and doesn't apply to a single-person homelab — that branch is now permanently skipped rather than deleted outright, to avoid hand-editing the escape-sequence-heavy echo blocks it guards (eksCICD.groovy itself is unused legacy code, not called by homelabPipeline.groovy). Does not touch the ~114 files that were already missing from the working tree but still tracked in the prior commit — that's unrelated pre-existing state, left as-is.
This commit is contained in:
+6
-6
@@ -1,5 +1,5 @@
|
||||
import com.meesho.stages.buildDocker
|
||||
import com.meesho.stages.notify
|
||||
import com.homelab.stages.buildDocker
|
||||
import com.homelab.stages.notify
|
||||
|
||||
|
||||
def Codecall(Map stepParams) {
|
||||
@@ -41,7 +41,7 @@ def mvnBuild() {
|
||||
|
||||
def Podcall(Map stepParams) {
|
||||
podTemplate(
|
||||
yaml: libraryResource('org/meesho/pod.yaml')) {
|
||||
yaml: libraryResource('org/homelab/pod.yaml')) {
|
||||
node(POD_LABEL) {
|
||||
Codecall(file: "$stepParams.file")
|
||||
}
|
||||
@@ -180,7 +180,7 @@ def dockerBuild(Map config) {
|
||||
// sh "ls -al"
|
||||
// echo "chmod after creating dockerfile"
|
||||
// sh "cd server ; ls"
|
||||
// // sh "cp /root/.m2/repository/com/meesho/payment/gateway/server/2.9.1/server-2.9.1.jar ."
|
||||
// // sh "cp /root/.m2/repository/com/homelab/payment/gateway/server/2.9.1/server-2.9.1.jar ."
|
||||
// def dockerfile = buildDocker.getDockerfile(config.dockerBuildVersion, config.repo_name, version, artifactId, doBuild)
|
||||
// echo "ls after creating dockerfile"
|
||||
// sh "ls "
|
||||
@@ -188,8 +188,8 @@ def dockerBuild(Map config) {
|
||||
// def tag = config.version
|
||||
|
||||
// sh "gcloud auth configure-docker asia-southeast1-docker.pkg.dev --quiet"
|
||||
// sh "docker build -t asia-southeast1-docker.pkg.dev/supply-poc-351106/meesho-devops/external-payment-gateway:${tag} ${dockerfile}"
|
||||
// sh "docker push asia-southeast1-docker.pkg.dev/supply-poc-351106/meesho-devops/external-payment-gateway:${tag}"
|
||||
// sh "docker build -t asia-southeast1-docker.pkg.dev/supply-poc-351106/homelab-devops/external-payment-gateway:${tag} ${dockerfile}"
|
||||
// sh "docker push asia-southeast1-docker.pkg.dev/supply-poc-351106/homelab-devops/external-payment-gateway:${tag}"
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user