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.
69 lines
1.4 KiB
YAML
69 lines
1.4 KiB
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
labels:
|
|
bu: "infra"
|
|
team: "devops"
|
|
service: "jenkins-prd"
|
|
env: "prd"
|
|
priority: "p0"
|
|
type: "jenkins"
|
|
component: "jenkins-agent"
|
|
spec:
|
|
serviceAccountName: jenkins-prd-agent
|
|
containers:
|
|
- name: devops-tools
|
|
image: asia-southeast1-docker.pkg.dev/homelab-devops-admin-0622/admin/devops/build-tools:lunar-v2.0.21
|
|
imagePullPolicy: Always
|
|
resources:
|
|
requests:
|
|
memory: "6G"
|
|
cpu: "2"
|
|
limits:
|
|
memory: "1000G"
|
|
cpu: "100"
|
|
volumeMounts:
|
|
- mountPath: "/root"
|
|
name: "cache"
|
|
readOnly: false
|
|
env:
|
|
- name: TZ
|
|
value: Asia/Kolkata
|
|
- name: DOCKER_HOST
|
|
value: dind-prd-svc
|
|
command:
|
|
- cat
|
|
tty: true
|
|
|
|
- name: dind
|
|
image: asia-southeast1-docker.pkg.dev/homelab-devops-admin-0622/admin/devops/docker:28-dind
|
|
securityContext:
|
|
privileged: true
|
|
env:
|
|
- name: DOCKER_TLS_CERTDIR
|
|
value: ""
|
|
resources:
|
|
requests:
|
|
cpu: "1"
|
|
memory: "2Gi"
|
|
limits:
|
|
cpu: "1"
|
|
memory: "2Gi"
|
|
volumeMounts:
|
|
- name: dind-storage
|
|
mountPath: /var/lib/docker
|
|
nodeSelector:
|
|
dedicated: jenkins
|
|
tolerations:
|
|
- key: "dedicated"
|
|
operator: "Equal"
|
|
value: "jenkins"
|
|
effect: "NoSchedule"
|
|
volumes:
|
|
- name: cache
|
|
persistentVolumeClaim:
|
|
claimName: pvc-jenkins-agents-cache-prd-new
|
|
- name: dind-storage
|
|
emptyDir: {}
|
|
|