├── Ansible ├── Ansible_installation │ ├── Installation_Ansible_on_Amazon-Linux.md │ ├── Installation_Ansible_on_Debian.md │ ├── Installation_Ansible_on_Redhat_CentOS_Fedora.md │ └── Installation_Ansible_on_Ubuntu.md ├── Ansible_loop-n-with_item.yaml ├── README.md ├── img │ └── Ansible_logo.png ├── inventory_sample.yaml └── playbooks │ ├── playbook_sample.yaml │ ├── playbook_sample_modules.yaml │ └── playbook_sample_variables.yaml ├── Devops-projects ├── README.md ├── simple-devops-project-1 │ ├── README.md │ └── img │ │ └── devops-1.png ├── simple-devops-project-2 │ ├── README.md │ └── img │ │ └── devops-2.png ├── simple-devops-project-3 │ ├── README.md │ └── img │ │ └── devops-3.png ├── simple-devops-project-4 │ ├── README.md │ └── img │ │ └── devops-4.png └── simple-devops-project-5 │ ├── README.md │ ├── ansible-server │ ├── Dockerfile │ ├── create-simple-devops-image.yml │ ├── hosts │ ├── kubernetes-mkn400-deployment.yml │ └── kubernetes-mkn400-service.yml │ ├── img │ └── devops-project-5.png │ └── kubernetes-nodes │ ├── mkn400-deploy.yml │ └── mkn400-service.yml ├── Docker ├── Docker-commands.md ├── README.md ├── img │ ├── Docker_logo.png │ └── wp-installpage.png ├── installation │ ├── install_docker_on_Amazon_linux.md │ ├── install_docker_on_centos_fedora.md │ └── install_docker_on_ubuntu.md └── wordpress │ ├── README.md │ ├── sample-cli-2.txt │ ├── sample-cli.txt │ ├── upload-limit │ ├── README.md │ ├── docker-compose.yml │ └── uploads.ini │ └── wordpress.yml ├── Git ├── README.md ├── git-cheat-sheet-education.pdf ├── img │ └── Git-logo.png └── installation │ ├── install_git_on_linux.md │ ├── install_git_on_mac.md │ └── install_git_on_windows.md ├── Jenkins ├── Jenkins_installation.md ├── README.md ├── img │ ├── Jenkins_logo_with_title.png │ ├── jenkins-01.png │ ├── jenkins-indexpage.png │ ├── jenkins-plugins.png │ ├── jenkins-setup-finish.png │ └── jenkins_jdk_path.png ├── jenkins_declarative_pipeline_update.txt └── plugins │ ├── container-to-deploy_plugin_integration.md │ └── publish-over-ssh_plugin_integration.md ├── Kubernetes ├── README.md ├── commands │ └── basic-commands.md ├── img │ ├── Kubernetes_logo.png │ └── voting-app_600px.png ├── installation │ ├── README.md │ ├── install_kubernetes_cluster_on_aws_use_kops.md │ └── install_kubernetes_on_linux_useing_minikube.md ├── voting-app-v2 │ ├── README.md │ ├── postgres-deploy.yaml │ ├── postgres-service.yaml │ ├── redis-deploy.yaml │ ├── redis-service.yaml │ ├── result-deploy.yaml │ ├── result-service.yaml │ ├── voting-deploy.yaml │ ├── voting-service.yaml │ └── worker-deploy.yaml └── voting-app │ ├── README.md │ ├── postgres-pod.yaml │ ├── postgres-service.yaml │ ├── redis-app-pod.yaml │ ├── redis-service.yaml │ ├── result-app-pod.yaml │ ├── result-service.yaml │ ├── voting-app-pod.yaml │ ├── voting-service.yaml │ └── worker-app-pod.yaml ├── Maven ├── Maven_installation.md ├── README.md └── img │ ├── Apache_Maven_logo.png │ └── maven-env-path-set.png ├── Nexus ├── README.md ├── img │ ├── NexusRepo_logo.png │ ├── nexus_plugin_for_jenkins.png │ ├── nexus_repo_plugin_jenkins_artifact.png │ ├── nexus_repo_plugin_jenkins_build.png │ ├── nexus_repo_plugin_jenkins_build2.png │ ├── nexus_repo_plugin_jenkins_git.png │ └── nexus_repo_war-snapshot.png ├── nexus_installation.md └── nexus_repository_integration_with_jenkins.md ├── README.md ├── SonarQube ├── README.md ├── img │ ├── sonarqube-logo.png │ └── sonarqube_first_start.png ├── integrate_sonarqube_on_jenkins.md └── sonarqube_installation.md ├── Tomcat ├── README.md ├── img │ ├── Apache_Tomcat_logo.png │ ├── tomcat8-day.png │ └── tomcat8.png └── tomcat8_installation.md └── img └── devops-toolchain.png /Ansible/Ansible_installation/Installation_Ansible_on_Amazon-Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Ansible/Ansible_installation/Installation_Ansible_on_Amazon-Linux.md -------------------------------------------------------------------------------- /Ansible/Ansible_installation/Installation_Ansible_on_Debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Ansible/Ansible_installation/Installation_Ansible_on_Debian.md -------------------------------------------------------------------------------- /Ansible/Ansible_installation/Installation_Ansible_on_Redhat_CentOS_Fedora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Ansible/Ansible_installation/Installation_Ansible_on_Redhat_CentOS_Fedora.md -------------------------------------------------------------------------------- /Ansible/Ansible_installation/Installation_Ansible_on_Ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Ansible/Ansible_installation/Installation_Ansible_on_Ubuntu.md -------------------------------------------------------------------------------- /Ansible/Ansible_loop-n-with_item.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Ansible/Ansible_loop-n-with_item.yaml -------------------------------------------------------------------------------- /Ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Ansible/README.md -------------------------------------------------------------------------------- /Ansible/img/Ansible_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Ansible/img/Ansible_logo.png -------------------------------------------------------------------------------- /Ansible/inventory_sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Ansible/inventory_sample.yaml -------------------------------------------------------------------------------- /Ansible/playbooks/playbook_sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Ansible/playbooks/playbook_sample.yaml -------------------------------------------------------------------------------- /Ansible/playbooks/playbook_sample_modules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Ansible/playbooks/playbook_sample_modules.yaml -------------------------------------------------------------------------------- /Ansible/playbooks/playbook_sample_variables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Ansible/playbooks/playbook_sample_variables.yaml -------------------------------------------------------------------------------- /Devops-projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/README.md -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-1/README.md -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-1/img/devops-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-1/img/devops-1.png -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-2/README.md -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-2/img/devops-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-2/img/devops-2.png -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-3/README.md -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-3/img/devops-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-3/img/devops-3.png -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-4/README.md -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-4/img/devops-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-4/img/devops-4.png -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-5/README.md -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-5/ansible-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-5/ansible-server/Dockerfile -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-5/ansible-server/create-simple-devops-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-5/ansible-server/create-simple-devops-image.yml -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-5/ansible-server/hosts: -------------------------------------------------------------------------------- 1 | [ansible-server] 2 | localhost 3 | 4 | [kubernetes] 5 | -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-5/ansible-server/kubernetes-mkn400-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-5/ansible-server/kubernetes-mkn400-deployment.yml -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-5/ansible-server/kubernetes-mkn400-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-5/ansible-server/kubernetes-mkn400-service.yml -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-5/img/devops-project-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-5/img/devops-project-5.png -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-5/kubernetes-nodes/mkn400-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-5/kubernetes-nodes/mkn400-deploy.yml -------------------------------------------------------------------------------- /Devops-projects/simple-devops-project-5/kubernetes-nodes/mkn400-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Devops-projects/simple-devops-project-5/kubernetes-nodes/mkn400-service.yml -------------------------------------------------------------------------------- /Docker/Docker-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/Docker-commands.md -------------------------------------------------------------------------------- /Docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/README.md -------------------------------------------------------------------------------- /Docker/img/Docker_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/img/Docker_logo.png -------------------------------------------------------------------------------- /Docker/img/wp-installpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/img/wp-installpage.png -------------------------------------------------------------------------------- /Docker/installation/install_docker_on_Amazon_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/installation/install_docker_on_Amazon_linux.md -------------------------------------------------------------------------------- /Docker/installation/install_docker_on_centos_fedora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/installation/install_docker_on_centos_fedora.md -------------------------------------------------------------------------------- /Docker/installation/install_docker_on_ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/installation/install_docker_on_ubuntu.md -------------------------------------------------------------------------------- /Docker/wordpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/wordpress/README.md -------------------------------------------------------------------------------- /Docker/wordpress/sample-cli-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/wordpress/sample-cli-2.txt -------------------------------------------------------------------------------- /Docker/wordpress/sample-cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/wordpress/sample-cli.txt -------------------------------------------------------------------------------- /Docker/wordpress/upload-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/wordpress/upload-limit/README.md -------------------------------------------------------------------------------- /Docker/wordpress/upload-limit/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/wordpress/upload-limit/docker-compose.yml -------------------------------------------------------------------------------- /Docker/wordpress/upload-limit/uploads.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/wordpress/upload-limit/uploads.ini -------------------------------------------------------------------------------- /Docker/wordpress/wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Docker/wordpress/wordpress.yml -------------------------------------------------------------------------------- /Git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Git/README.md -------------------------------------------------------------------------------- /Git/git-cheat-sheet-education.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Git/git-cheat-sheet-education.pdf -------------------------------------------------------------------------------- /Git/img/Git-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Git/img/Git-logo.png -------------------------------------------------------------------------------- /Git/installation/install_git_on_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Git/installation/install_git_on_linux.md -------------------------------------------------------------------------------- /Git/installation/install_git_on_mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Git/installation/install_git_on_mac.md -------------------------------------------------------------------------------- /Git/installation/install_git_on_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Git/installation/install_git_on_windows.md -------------------------------------------------------------------------------- /Jenkins/Jenkins_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Jenkins/Jenkins_installation.md -------------------------------------------------------------------------------- /Jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Jenkins/README.md -------------------------------------------------------------------------------- /Jenkins/img/Jenkins_logo_with_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Jenkins/img/Jenkins_logo_with_title.png -------------------------------------------------------------------------------- /Jenkins/img/jenkins-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Jenkins/img/jenkins-01.png -------------------------------------------------------------------------------- /Jenkins/img/jenkins-indexpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Jenkins/img/jenkins-indexpage.png -------------------------------------------------------------------------------- /Jenkins/img/jenkins-plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Jenkins/img/jenkins-plugins.png -------------------------------------------------------------------------------- /Jenkins/img/jenkins-setup-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Jenkins/img/jenkins-setup-finish.png -------------------------------------------------------------------------------- /Jenkins/img/jenkins_jdk_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Jenkins/img/jenkins_jdk_path.png -------------------------------------------------------------------------------- /Jenkins/jenkins_declarative_pipeline_update.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Jenkins/jenkins_declarative_pipeline_update.txt -------------------------------------------------------------------------------- /Jenkins/plugins/container-to-deploy_plugin_integration.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Jenkins/plugins/publish-over-ssh_plugin_integration.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/README.md -------------------------------------------------------------------------------- /Kubernetes/commands/basic-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/commands/basic-commands.md -------------------------------------------------------------------------------- /Kubernetes/img/Kubernetes_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/img/Kubernetes_logo.png -------------------------------------------------------------------------------- /Kubernetes/img/voting-app_600px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/img/voting-app_600px.png -------------------------------------------------------------------------------- /Kubernetes/installation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/installation/README.md -------------------------------------------------------------------------------- /Kubernetes/installation/install_kubernetes_cluster_on_aws_use_kops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/installation/install_kubernetes_cluster_on_aws_use_kops.md -------------------------------------------------------------------------------- /Kubernetes/installation/install_kubernetes_on_linux_useing_minikube.md: -------------------------------------------------------------------------------- 1 | # Install Kubernetes on Linux usgin `minikube' 2 | -------------------------------------------------------------------------------- /Kubernetes/voting-app-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app-v2/README.md -------------------------------------------------------------------------------- /Kubernetes/voting-app-v2/postgres-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app-v2/postgres-deploy.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app-v2/postgres-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app-v2/postgres-service.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app-v2/redis-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app-v2/redis-deploy.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app-v2/redis-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app-v2/redis-service.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app-v2/result-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app-v2/result-deploy.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app-v2/result-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app-v2/result-service.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app-v2/voting-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app-v2/voting-deploy.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app-v2/voting-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app-v2/voting-service.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app-v2/worker-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app-v2/worker-deploy.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app/README.md -------------------------------------------------------------------------------- /Kubernetes/voting-app/postgres-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app/postgres-pod.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app/postgres-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app/postgres-service.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app/redis-app-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app/redis-app-pod.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app/redis-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app/redis-service.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app/result-app-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app/result-app-pod.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app/result-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app/result-service.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app/voting-app-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app/voting-app-pod.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app/voting-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app/voting-service.yaml -------------------------------------------------------------------------------- /Kubernetes/voting-app/worker-app-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Kubernetes/voting-app/worker-app-pod.yaml -------------------------------------------------------------------------------- /Maven/Maven_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Maven/Maven_installation.md -------------------------------------------------------------------------------- /Maven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Maven/README.md -------------------------------------------------------------------------------- /Maven/img/Apache_Maven_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Maven/img/Apache_Maven_logo.png -------------------------------------------------------------------------------- /Maven/img/maven-env-path-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Maven/img/maven-env-path-set.png -------------------------------------------------------------------------------- /Nexus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Nexus/README.md -------------------------------------------------------------------------------- /Nexus/img/NexusRepo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Nexus/img/NexusRepo_logo.png -------------------------------------------------------------------------------- /Nexus/img/nexus_plugin_for_jenkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Nexus/img/nexus_plugin_for_jenkins.png -------------------------------------------------------------------------------- /Nexus/img/nexus_repo_plugin_jenkins_artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Nexus/img/nexus_repo_plugin_jenkins_artifact.png -------------------------------------------------------------------------------- /Nexus/img/nexus_repo_plugin_jenkins_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Nexus/img/nexus_repo_plugin_jenkins_build.png -------------------------------------------------------------------------------- /Nexus/img/nexus_repo_plugin_jenkins_build2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Nexus/img/nexus_repo_plugin_jenkins_build2.png -------------------------------------------------------------------------------- /Nexus/img/nexus_repo_plugin_jenkins_git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Nexus/img/nexus_repo_plugin_jenkins_git.png -------------------------------------------------------------------------------- /Nexus/img/nexus_repo_war-snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Nexus/img/nexus_repo_war-snapshot.png -------------------------------------------------------------------------------- /Nexus/nexus_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Nexus/nexus_installation.md -------------------------------------------------------------------------------- /Nexus/nexus_repository_integration_with_jenkins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Nexus/nexus_repository_integration_with_jenkins.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/README.md -------------------------------------------------------------------------------- /SonarQube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/SonarQube/README.md -------------------------------------------------------------------------------- /SonarQube/img/sonarqube-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/SonarQube/img/sonarqube-logo.png -------------------------------------------------------------------------------- /SonarQube/img/sonarqube_first_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/SonarQube/img/sonarqube_first_start.png -------------------------------------------------------------------------------- /SonarQube/integrate_sonarqube_on_jenkins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/SonarQube/integrate_sonarqube_on_jenkins.md -------------------------------------------------------------------------------- /SonarQube/sonarqube_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/SonarQube/sonarqube_installation.md -------------------------------------------------------------------------------- /Tomcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Tomcat/README.md -------------------------------------------------------------------------------- /Tomcat/img/Apache_Tomcat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Tomcat/img/Apache_Tomcat_logo.png -------------------------------------------------------------------------------- /Tomcat/img/tomcat8-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Tomcat/img/tomcat8-day.png -------------------------------------------------------------------------------- /Tomcat/img/tomcat8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Tomcat/img/tomcat8.png -------------------------------------------------------------------------------- /Tomcat/tomcat8_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/Tomcat/tomcat8_installation.md -------------------------------------------------------------------------------- /img/devops-toolchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maheshkn400/DevOps/HEAD/img/devops-toolchain.png --------------------------------------------------------------------------------