gitextract_8eje1vuj/ ├── CODE_OF_CONDUCT.md ├── Interview_Questions.md ├── LICENSE ├── README.md ├── java-maven-sonar-argocd-helm-k8s/ │ ├── Argo CD/ │ │ └── argocd-basic.yaml │ ├── README.md │ ├── spring-boot-app/ │ │ ├── Dockerfile │ │ ├── JenkinsFile │ │ ├── README.md │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── java/ │ │ │ └── com/ │ │ │ └── abhishek/ │ │ │ └── StartApplication.java │ │ └── resources/ │ │ ├── application.properties │ │ ├── static/ │ │ │ ├── css/ │ │ │ │ └── main.css │ │ │ └── js/ │ │ │ └── main.js │ │ └── templates/ │ │ └── index.html │ └── spring-boot-app-manifests/ │ ├── deployment.yml │ └── service.yml ├── multi-stage-multi-agent/ │ ├── Jenkinsfile │ └── README.md ├── my-first-pipeline/ │ ├── Jenkinsfile │ └── README.md ├── python-jenkins-argocd-k8s/ │ ├── Dockerfile │ ├── Jenkinsfile │ ├── LICENSE │ ├── README.md │ ├── db.sqlite3 │ ├── deploy/ │ │ ├── deploy.yaml │ │ ├── pod.yaml │ │ └── service.yaml │ ├── docker-compose.yml │ ├── manage.py │ ├── staticfiles/ │ │ └── css/ │ │ └── style.css │ ├── todoApp/ │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ ├── views.py │ │ └── wsgi.py │ └── todos/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20191201_2357.py │ │ ├── 0003_auto_20191202_0000.py │ │ ├── 0004_auto_20191202_0004.py │ │ ├── 0005_auto_20191202_0011.py │ │ ├── 0006_remove_todo_deadline.py │ │ ├── 0007_auto_20191202_0323.py │ │ ├── 0008_auto_20191202_0809.py │ │ └── __init__.py │ ├── models.py │ ├── templates/ │ │ └── todos/ │ │ ├── base.html │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── shared-libraries/ │ └── README.md └── vars/ └── helloWorld.groovy