DevOps Coach
DevOps Coach
  • Видео 159
  • Просмотров 1 798 502
How to create Pull Request templates in GitHub | Creating pull request template in GitHub
www.coachdevops.com/2024/06/how-to-create-pull-request-pr-templates.html
Creating pull request (PR) templates in GitHub can help streamline the process of submitting PRs by providing a predefined structure. This ensures that all necessary information is included, making the review process more efficient.
Step-by-Step Guide
Navigate to Your Repository:
Go to the GitHub repository where you want to create a PR template.
Create a .github Directory:
If it doesn't already exist, create a new directory named .github in the root of your repository. This is where GitHub looks for configuration files, including PR templates.
Create a PULL_REQUEST_TEMPLATE File:
Inside the .github directory, create a file...
Просмотров: 691

Видео

How to Automate Code Scan with SonarQube from Azure DevOps YAML Pipeline | SonarQube Azure DevOps
Просмотров 1,3 тыс.2 месяца назад
www.coachdevops.com/2024/05/how-to-integrate-sonarqube-with-azure.html Pre-requisites: Azure DevOps Account Make sure SonarQube is up and running Make sure Java Project is setup, click here for Sample Java Code Service connection to connect to GitHub from Azure DevOps using GiHub's PAT(token) Service connection to integrate with SonarQube from Azure DevOps Make sure you install SonarQube plug-i...
How to Create Ubuntu 24.0.4 EC2 in AWS Cloud | How to connect to EC2 Instance from local machine?
Просмотров 1693 месяца назад
www.coachdevops.com/2024/05/provision-ubuntu-2404-ec2-instance-how.html
Top 5 DevOps Interview Preparation Tips | How to crack DevOps Interviews and increase your chances
Просмотров 6443 месяца назад
www.coachdevops.com/2024/04/devops-interview-preparation-useful.html Are you failing in DevOps Interviews? Are you not be able to next round in the Interview process? Let's find out how to fix this: First of all you need to have clear story about following five key items: #1. Come up with a story to talk about your back ground and over all experience What are the Devops tools you have worked in...
DevOps Roadmap 2024 | How to become a skilled DevOps Engineer | Do you want to clear job interviews?
Просмотров 5433 месяца назад
www.coachdevops.com/2023/03/top-devops-skills-skills-required-to.html Top DevOps skills 1. Linux knowledge and scripting - basic troubleshooting, intermediate scripting, looking at the logs 2. Experience in Git, GitHub, Bitbucket or any version control systems such as SVN, TFVC 3. Experience in Continuous Integrations tools such as Jenkins, TeamCity, Circle CI 4. Experience in Infrastructure au...
How to Automate Azure WebApp setup using Ansible & Azure DevOps pipeline | Ansible Azure Automation
Просмотров 5103 месяца назад
www.coachdevops.com/2024/04/automate-azure-app-service-setup-using.html Pre-requisites: Azure account subscription, click here if you don't have one. Azure CLI needs to be installed. Service principal to create any resources in Azure cloud Microsoft organization Login to Azure az login Enter Microsoft credentials Create Azure Service Principal Run the following commands to create an Azure Servi...
How to Fix Jenkins slowness when Running in AWS EC2 | Jenkins Slowness Fix when using AWS free-tier
Просмотров 1,4 тыс.3 месяца назад
www.coachdevops.com/2024/04/fix-for-jenkins-slowness-when-running.html Let's say that you have configured Jenkins in AWS EC2 instance and you are using AWS free tier and you are NOT using Elastic IP, so when ever you start EC2 instance after stopping, you would have noticed Jenkins UI is taking a lot of time to come up. You try to access any page in Jenkins, it will be really slow. What is the ...
How to Deploy Java WebApp into Azure App Service using GitHub Actions CICD YAML Pipeline
Просмотров 5573 месяца назад
www.coachdevops.com/2024/04/github-actions-cicd-pipeline-to-deploy.html Pre-requisites: Make sure Java web app is setup in GitHub Azure subscription to create web app What are we going to do in this lab? 1. Create a Web App in Azure Cloud 2. Configure WebApp to Deploy using gitHub Actions 3. Create workflow yaml 4. Add steps/tasks in the yaml file 5. Run the workflow yaml 6. Check if Java Web A...
How to Build GitHub Actions CICD Pipeline to Create Docker Image & upload Docker Image into AWS ECR
Просмотров 4794 месяца назад
www.coachdevops.com/2024/04/amazon-ecr-integration-with-github_6.html Pre-requisites: Make sure a Project is setup in GitHub with Dockerfile Create access keys in AWS Create AWS ECR repo if you don't have one. What are we going to do in this lab? 1. Create a Repository in AWS ECR 2. Create AWS secret keys access keys 3. Create secrets in GitHub Actions 4. Create workflow yaml 5. Add steps/tasks...
Build CICD Pipeline to create Docker Image using GitHub Actions and Push Docker image into DockerHub
Просмотров 5614 месяца назад
www.coachdevops.com/2024/04/github-actions-pipeline-to-create.html Implementations steps: Create access token in DockerHub Add access token, docker hub user name as secrets in GitHub Actions Create GitHub Actions workflow yaml in your repo Add tasks for Maven build, docker image creation, tagging and docker push Run the workflow/build in GitHub hosted runner(e.g. Ubuntu) Verify docker image hav...
How to Setup Self-hosted Docker Build agent in Azure DevOps Pipelines | Azure DevOps Docker Agent
Просмотров 1,4 тыс.4 месяца назад
www.coachdevops.com/2024/03/how-to-setup-self-hosted-docker-build.html Pre-requisites: Microsoft account setup Azure account and subscription setup Create a VM(Ubuntu 20.0.4) in Azure Cloud Create Personal Access Token in Azure DevOps Dockerfile created for docker build agent, please refer this repo How to configure Self-hosted docker build agent? 1. Create an Agent pool 2. Create Linux virtual...
How to Create Quality Gate in SonarQube and Integrate with GitHub Actions CICD Pipeline
Просмотров 1,3 тыс.5 месяцев назад
www.coachdevops.com/2024/03/how-to-create-quality-gate-in-sonarqube.html What is Quality gate? In SonarQube a quality gate is a set of conditions that must be met in order for a project to be marked as passed. Pre-requisites: Make sure SonarQube is up and running Make sure Java Project is setup in GitHub SonarQube is already integrated with GitHub Actions SONAR_HOST_URL and SONAR_TOKEN configur...
How to Automate Slack Notifications from GitHub Actions | GitHub Actions Slack Integration
Просмотров 1,2 тыс.5 месяцев назад
www.coachdevops.com/2024/03/how-to-integrate-slack-with-github.html Pre-requisites: Slack workspace is configured and channel created Make sure your Project is setup in GitHub How to integrate Slack with GitHub Actions We will be using slack GitHub Action Slack integration action for posting messages to Slack channel from GitHub Actions. We will be following below steps: 1. Create a new App in ...
How to configure self-hosted runner in GitHub Actions | Self-hosted build agent in GitHub Actions
Просмотров 3,7 тыс.5 месяцев назад
www.coachdevops.com/2024/02/how-to-configure-self-hosted-github.html Advantages of self-hosted runners: full control over the environment and tools Any size machine or configuration Secure access and networking Pre-requisites: Project configured in GitHub workflow yaml already checked-in GitHub. If you don't have one, click here to create one. Create a virtual machine with at least 2 GB RAM. we...
How to Integrate SonarQube with GitHub Actions | Automate Code Scan using SonarQube in GitHub Action
Просмотров 6 тыс.6 месяцев назад
www.coachdevops.com/2024/02/how-to-integrate-sonarqube-with-github.html Pre-requisites: Make sure SonarQube is up and running Make sure Java Project is setup in GitHub How to integrate SonarQube with GitHub Actions: We will be following below steps: Create Token in SonarQube to authenticate with GitHub Actions Add Sonar Token, SonarQube URL as Secrets in GitHub Actions Create GitHub Actions CIC...
GitHub Actions Tutorials | How to Create CICD pipeline using GitHub Actions for a Java Web App
Просмотров 5846 месяцев назад
GitHub Actions Tutorials | How to Create CICD pipeline using GitHub Actions for a Java Web App
How to Install Tomcat on Ubuntu 22.04 | Setup Tomcat in Linux Server in AWS cloud
Просмотров 1,1 тыс.6 месяцев назад
How to Install Tomcat on Ubuntu 22.04 | Setup Tomcat in Linux Server in AWS cloud
Ansible Roles Tutorial | How to Automate EC2 Instance, S3 bucket creation in AWS using Ansible Role
Просмотров 6436 месяцев назад
Ansible Roles Tutorial | How to Automate EC2 Instance, S3 bucket creation in AWS using Ansible Role
Ansible Automation | How to create EC2 instance using Ansible Playbook in AWS | Ansible Tutorials
Просмотров 1,5 тыс.6 месяцев назад
Ansible Automation | How to create EC2 instance using Ansible Playbook in AWS | Ansible Tutorials
Enable Classic Pipeline in Azure DevOps | How to Enable classic editor create pipeline without YAML
Просмотров 1 тыс.6 месяцев назад
Enable Classic Pipeline in Azure DevOps | How to Enable classic editor create pipeline without YAML
How to Setup Jenkins on Ubuntu Instance in AWS Cloud | Configure Jenkins using 17 on Linux Instance
Просмотров 1,3 тыс.6 месяцев назад
How to Setup Jenkins on Ubuntu Instance in AWS Cloud | Configure Jenkins using 17 on Linux Instance
How to trigger a Jenkins Job from another Jenkins Job | Trigger Jenkins Job from Jenkins Pipeline
Просмотров 1,4 тыс.7 месяцев назад
How to trigger a Jenkins Job from another Jenkins Job | Trigger Jenkins Job from Jenkins Pipeline
How to integrate Artifactory & Azure DevOps | Integrate Artifactory & Azure DevOps to Upload Binary
Просмотров 2,4 тыс.9 месяцев назад
How to integrate Artifactory & Azure DevOps | Integrate Artifactory & Azure DevOps to Upload Binary
How to Recover JFrog Artifactory Admin Password | How to reset JFrog Artifactory Admin Password
Просмотров 62410 месяцев назад
How to Recover JFrog Artifactory Admin Password | How to reset JFrog Artifactory Admin Password
How to install Artifactory | Artifactory server setup on AWS | Install Artifactory on Linux Instance
Просмотров 2,2 тыс.10 месяцев назад
How to install Artifactory | Artifactory server setup on AWS | Install Artifactory on Linux Instance
How to Automate Infra setup in Azure Cloud using Terraform & Azure DevOps Pipeline | Terraform IAC
Просмотров 12 тыс.11 месяцев назад
How to Automate Infra setup in Azure Cloud using Terraform & Azure DevOps Pipeline | Terraform IAC
How to Connect to Azure VM securely from your local m/c | Connect Azure VM using SSH keys from Local
Просмотров 2,4 тыс.11 месяцев назад
How to Connect to Azure VM securely from your local m/c | Connect Azure VM using SSH keys from Local
How to Automate Infra setup in Azure Cloud using Ansible & AzureDevOps Pipeline | Ansible Automation
Просмотров 4,7 тыс.11 месяцев назад
How to Automate Infra setup in Azure Cloud using Ansible & AzureDevOps Pipeline | Ansible Automation
Ansible Automation in Azure | How to setup Ansible on Red Hat Linux VM & Integrate with Azure Cloud
Просмотров 1,3 тыс.11 месяцев назад
Ansible Automation in Azure | How to setup Ansible on Red Hat Linux VM & Integrate with Azure Cloud
How to create Red Hat Linux VM in Azure Cloud | Provision Red Hat Enterprise Linux VM in Azure Cloud
Просмотров 58611 месяцев назад
How to create Red Hat Linux VM in Azure Cloud | Provision Red Hat Enterprise Linux VM in Azure Cloud

Комментарии

  • @rajasenareddy1438
    @rajasenareddy1438 День назад

    how to mount SonarQube volumes.

  • @NagasatyaSivabalaji
    @NagasatyaSivabalaji 2 дня назад

    you just simply told what happend, but where exactly you configured the webhook. The content i need itself is not there in this vedio.

  • @MrTobiasRieper
    @MrTobiasRieper 3 дня назад

    Thanks a lot, dude. Saved me a lot of time

  • @sumanthr4588
    @sumanthr4588 8 дней назад

    Can you please create self hosted Docker windows build agent

  • @catalyst_851
    @catalyst_851 8 дней назад

    What do you think about the architecture of deploying and using Jenkins as a pod using helm on eks?

  • @jonesalapat6199
    @jonesalapat6199 9 дней назад

    this helped a lot

  • @maheshkumarnaik754
    @maheshkumarnaik754 10 дней назад

    how to automate the release pipeline using ansible?

  • @maheshkumarnaik754
    @maheshkumarnaik754 10 дней назад

    thanks sir, very nice

  • @Hidden1226
    @Hidden1226 10 дней назад

    Thank you issue is solved

  • @punkdrivessily
    @punkdrivessily 10 дней назад

    Thanks a ton

  • @tvjmohan
    @tvjmohan 11 дней назад

    it took 2 years to find perfect example Thank you sir.

  • @abhimanyuhowshe7873
    @abhimanyuhowshe7873 12 дней назад

    Sir why my build in node is always offline. Also agents are also not launching

  • @MegaMytest
    @MegaMytest 13 дней назад

    I vow u a treat excellent video

  • @ravichandra8073
    @ravichandra8073 14 дней назад

    Could you plz tell regarding jvm configuration for jenkins.

  • @musicandshorts30
    @musicandshorts30 17 дней назад

    very short and nice explain, great work appreaciate it.

  • @shristisingh3072
    @shristisingh3072 18 дней назад

    Best explanation ever

  • @user-dm1zf7uk3b
    @user-dm1zf7uk3b 18 дней назад

    Thanks, II am new learner of Jenkins a face this issue many time 🙏

  • @oseikwamejones9019
    @oseikwamejones9019 20 дней назад

    This is educative. You did a whole Devops project in less than 30 mins. You are a star.

  • @Punjabi_life
    @Punjabi_life 21 день назад

    Thank you, I loved the presentation

  • @Punjabi_life
    @Punjabi_life 22 дня назад

    Thank you, time and effort you put in for screenshot on the website is awesome, loved it

  • @aymanelhor3908
    @aymanelhor3908 22 дня назад

    But when a dev is creating a PR, he needs to know his bugs and issues only from Github, the dev doesn't need to access the sonarqube instance!! How can this be done Sir? Thank you!

  • @masteradvisor594
    @masteradvisor594 23 дня назад

    you cant build docker images on the slave

    • @DevOpsCoach
      @DevOpsCoach 22 дня назад

      Why not? You need to install docker on slave machine

    • @masteradvisor594
      @masteradvisor594 22 дня назад

      @@DevOpsCoach don't you think it's not the right approach to use docker inside docker ? Also for that we have dind but as slaves are dynamic I need to make sure atleast one dind is running and even for slaves to access docker they need to have volume attach and i can't see that configuration on Jenkins. If you know please help me out. I right now created a permanent agent through docker compose for temporary

  • @rahulkumarpatnaik6023
    @rahulkumarpatnaik6023 24 дня назад

    Superb video

    • @DevOpsCoach
      @DevOpsCoach 24 дня назад

      Thank you so much, glad you liked it

  • @Lindemberg_0085
    @Lindemberg_0085 29 дней назад

    Muito bom ! Ajudou bastante a ter uma base de como criar

    • @DevOpsCoach
      @DevOpsCoach 29 дней назад

      uau, que bom saber.. obrigado por assistir meu canal de Portugal.

  • @atexnik
    @atexnik Месяц назад

    1:14 EXPOSE doesn't tell the app which port to listen, it is a pure documentational instruction, and is used with -P option for docker run.

  • @mannanbhuiyan6520
    @mannanbhuiyan6520 Месяц назад

    What a champ you are!

  • @rajarajanrajagopalan
    @rajarajanrajagopalan Месяц назад

    Could anyone share the link for alerting manager documentation in this EKS prometheus and grafana

  • @barath045
    @barath045 Месяц назад

    what to do if we want to upgrade prometheus and grafana? .

  • @zebaakhtar8323
    @zebaakhtar8323 Месяц назад

    Really appreciate for this, it helped me to understand easily

  • @ramachandranamuduri9798
    @ramachandranamuduri9798 Месяц назад

    Thanks, Very helpful

  • @nike0822
    @nike0822 Месяц назад

    Hi Ananth, You're doing a really great job by creating these videos, thank you!! ❤

    • @DevOpsCoach
      @DevOpsCoach Месяц назад

      Thank you so much for your kind words 🙏

  • @SnapMeOutOfit
    @SnapMeOutOfit Месяц назад

    this does not work

  • @samiwaxiri58
    @samiwaxiri58 Месяц назад

    Hello sir, i have been configured the same way and it was worked. but after one week the github action runner is showing me offline. then i recofigured again and today check it is again offline. why it has been offline. i need your help please because i am frustrated now

    • @DevOpsCoach
      @DevOpsCoach Месяц назад

      did you stop the ec2 instance?

    • @samiwaxiri58
      @samiwaxiri58 Месяц назад

      @@DevOpsCoach no sir, someone suggest me that you need add ssh to github then you will never face the offline issue. Could you please guide me how to add ssh to github? by the way thenk you for replying, appreciated sir

  • @user-fd1wt6iq5j
    @user-fd1wt6iq5j Месяц назад

    Is it possible to create subscription by using terraform

    • @DevOpsCoach
      @DevOpsCoach Месяц назад

      yes you can.. registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/subscription

  • @rashoff
    @rashoff Месяц назад

    Big thanks

  • @rohitgupta-fo1xi
    @rohitgupta-fo1xi Месяц назад

    thank you so much, very nice

  • @manavkumar1071
    @manavkumar1071 Месяц назад

    I am trying your code but during creation of pipeline it is showng error in build. Any idea how to mitigate that?

    • @DevOpsCoach
      @DevOpsCoach Месяц назад

      what error? can you post the error message here?

  • @SrinivasBijigiri
    @SrinivasBijigiri Месяц назад

    just like a god of troubleshooting

  • @himanshumahajan596
    @himanshumahajan596 Месяц назад

    I have eks cluster with public private combination , pods data is not coming nor total cpu / memory is updating on graphs

  • @PaulSmith-bx2fq
    @PaulSmith-bx2fq Месяц назад

    Helpful

  • @BananaCountryOfficial
    @BananaCountryOfficial Месяц назад

    Please, could you make a video to explain how to setup artifactory in front of an Nginx reverse proxy?

  • @shreyasdevarkar8289
    @shreyasdevarkar8289 Месяц назад

    Hello, for me im still getting the error No Handler was ready to Authenticate.... Im trying to start another ec2 and My inventory file consists of my target ec2 instance and [localhost] My ec2 is Amazon Linux2023 (IMDv2 enabled) But works fine if i set (IMDv2 optional) Need to find a way to make it work even with IMDv2

  • @suryatejachatrathi5009
    @suryatejachatrathi5009 Месяц назад

    Hey I've followed the exact steps as shown in this video and at the end it was confugued succesfully, it's showing online in Azure DevOps but after sometime when i logout of the VM then it's going offline, yes i've configured this in service mode and also when i login to vm and run ./runsvc.sh & this cmd, it's workinng finre, i wan this to be online 24/7, how to do this ?

  • @538sureshs7
    @538sureshs7 Месяц назад

    Thanks

    • @DevOpsCoach
      @DevOpsCoach Месяц назад

      You are welcome 🙏

    • @538sureshs7
      @538sureshs7 Месяц назад

      @@DevOpsCoach I have one doubt can I ask you

    • @DevOpsCoach
      @DevOpsCoach Месяц назад

      @@538sureshs7yes go ahead

  • @user-rq7km6kp7o
    @user-rq7km6kp7o 2 месяца назад

    Great video. Thank you. Let me add something. If you already have a set of downloaded images from the official repository, and you want to place them on your Nexus, you need to change the tag, like this: docker build -t m1:v1 . docker tag m1:v1 localhost:8090/mytest:V1 docker push localhost:8090/mytest

    • @DevOpsCoach
      @DevOpsCoach 2 месяца назад

      Localhost needs to be replaced with dns name of nexus server

  • @Daveooooooooooo0
    @Daveooooooooooo0 2 месяца назад

    Thanks

  • @PrabhsimrandeepSingh-jf7us
    @PrabhsimrandeepSingh-jf7us 2 месяца назад

    This is very helpful but i want to setup with auto build Jenkins can you help please

    • @DevOpsCoach
      @DevOpsCoach 2 месяца назад

      you can configure webhooks to trigger auto builds in Jenkins.. what are you trying to setup in Jenkins?

  • @user-pv8lq3sw5k
    @user-pv8lq3sw5k 2 месяца назад

    hatsup sir your way of explaining so good. Please make lot of videos for us.❤❤❤

    • @DevOpsCoach
      @DevOpsCoach 2 месяца назад

      thank you, please keep watching

  • @pranjalmate5672
    @pranjalmate5672 2 месяца назад

    I tried to deploy the given code its not running what should i change

    • @DevOpsCoach
      @DevOpsCoach 2 месяца назад

      what is the error you are getting?

  • @anand-nb4bb
    @anand-nb4bb 2 месяца назад

    Hi Bro, Can you please make a video explaining the structure/syntax of Ansible & Terraform step by step in layman terms how to write a playbook for Ansible & how to write main.tf for Terraform I am new to both & don't have experience in coding or programming & its confusing how the indentation are used like Spacings, Hyphens, Commas, Curly brackets, Variables, loops etc. are used. Please its a request if possible Thanks & regards