GitHub Actions - Self-hosted runners - Installation & Calling

Поделиться
HTML-код
  • Опубликовано: 28 май 2024
  • When using GitHub Actions, you have the option to use GitHub hosted runners, or to run your own runners, called self-hosted runners. In this video, you will learn about self-hosted runners, how to install them, and how to use them in your GitHub Action workflows.
    Find Me:
    Website: mickeygousset.com​
    GitHub: github.com/mickeygousset​
    Twitter: / mickey_gousset​
    Twitch: / mickeygousset
  • НаукаНаука

Комментарии • 93

  • @karthikeyanb7518
    @karthikeyanb7518 11 месяцев назад +5

    fantastically explained.

  • @merlingt1
    @merlingt1 Год назад +38

    My left ear loved this video.

  • @swapnilverma3936
    @swapnilverma3936 Год назад +2

    Loved it.. Beautifully explained.Good job!

  • @BlueyMcPhluey
    @BlueyMcPhluey 8 месяцев назад +1

    The instructions on GitHub are quite straight-forward but I found this video useful to get a sense for how they would work before I commit to them

    • @rodfalanga3770
      @rodfalanga3770 7 месяцев назад

      I've tried to find instructions on how to run and self-hosted runners on GitHub, that covers what's here. I've not been able to. For example, it wasn't until I watched this video that I learned that self-hosted runners can work on repositories, organizations, and enterprises. I had thought it only worked against a repo. Can you please supply a link to that documentation on GitHub?

  • @rmikeable
    @rmikeable Год назад

    Great video on Self-hosted runners, got me going in no-time

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

    Sir, thanks for the crystal clear explanation.

  • @rodfalanga3770
    @rodfalanga3770 3 месяца назад

    FYI
    If you're installing the GitHub self-hosted runner on a Windows machine, and you want to create it as a Windows service, then you must run the CLI as Administrator. I didn't do that, because I didn't know, until I got to the question where it asks if I wanted to run the GitHub self-hosted runner as a service. At that point, it bombed. Thanks, GitHub, for leaving out important details like that.

    • @MickeyGousset
      @MickeyGousset  3 месяца назад +1

      Hey @rodfalanga3770, that is my bad for not mentioning that in my video. The official documentation does have that listed: docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository

  • @TheMightyWolve
    @TheMightyWolve 8 месяцев назад

    thank you so much for this ! really helped ease my workflow!

  • @uaena182
    @uaena182 7 месяцев назад

    Appreciate ths.. i learned.
    Subscribed!
    Thanks Mickey Mousset! 😻

  • @bl_int
    @bl_int Год назад

    thanks for sharing, is runner can install for 2 repository/project on 1 host? frontend repo and backed repo

  • @strazhnyk84
    @strazhnyk84 Год назад +3

    hello, thanks for the video, could you create the same insctruction but for installing and use runner in docker, please?

  • @mehdicherifi6289
    @mehdicherifi6289 2 года назад +1

    Very interesting. Please If I want to run python script for my local machine from GitHub action will hosted runner be useful in this situation? Thank you

  • @nicolenlama
    @nicolenlama 6 месяцев назад

    Thank you for this overview!

  • @hereps
    @hereps 4 месяца назад

    Simple and efficient, thanks 👍

  • @rodfalanga3770
    @rodfalanga3770 7 месяцев назад

    Mickey, this is an excellent video. It answers an important question I've been wondering about GitHub self-hosted runners.
    But I've got a question about ports. A few years ago, I tried doing the same thing using Azure Pipeline, with what they call self-hosted agents. The thing that we never got to work was opening the ports necessary for the Azure Pipeline self-hosted agent to communicate back to Azure DevOps. There must be a comparable situation here with GitHub self-hosted runners. Is there a list of ports that the security team must open for the self-hosted running to communicate back to GitHub?

    • @MickeyGousset
      @MickeyGousset  7 месяцев назад +1

      You need port 443 opened as the agent does long polling to GitHub.
      There are also some urls that the agent needs to be able to hit. Those are in the docs somewhere. But 443 and maybe 80 are all you need

    • @rodfalanga3770
      @rodfalanga3770 7 месяцев назад

      @@MickeyGousset thank you

  • @febdx3485
    @febdx3485 7 месяцев назад

    thank Mickey , it's a great course !

  • @yousifmobark6981
    @yousifmobark6981 Год назад

    if my deployment via docker-compose and i need to restart the docker-compose located in /opt/ how can that be made ?

  • @nikolais9297
    @nikolais9297 Год назад

    Hey! Is there any way to check what labels were applied to a particular runner instance?

    • @MickeyGousset
      @MickeyGousset  Год назад

      You can see it in the Web Browser by going to settings | Actions | Runners and looking at the runner information. You can also pull it using the APIs

  • @manas9815
    @manas9815 Год назад +3

    Hi Mickey Gousset, Its a good session and thanks for that. I think you have configured it in the HOME directory, which will be accessible to you only. How to install it at some common place in a common Linux machine/VM so that all who have access to that machine/VM can access the runner? GitHub runner does not allow SUDO due to security reasons.

    • @nicolenlama
      @nicolenlama 6 месяцев назад

      I know you asked this forever ago, but our team uses AWS codebuild for this and a shared GH repo. It doesn't offer the flexibility of accessing a common VM, but it meets security requirements.

  • @cce_mh
    @cce_mh Год назад +1

    How do I refresh the token when it expires?

  • @vamshikrishna-th2ly
    @vamshikrishna-th2ly 2 года назад

    I have couple of questions related to self hosted runners.
    1. I have configured self hosted runner and i always wanted to be active so that my other team members can use it. But when my laptop is not turned on, other people who are running the pipeline, it is going to queue. Any idea on how to overcome that?
    2. Lets say I create 3 individual self hosted runners in 3 of my team mates machines. I need github pipeline to pick the one which is online not the one which is offline. Is it possible and how do we do that.?

    • @MickeyGousset
      @MickeyGousset  2 года назад +1

      1. You need to install that runner on a machine that is always going to be one and available
      2. All three machines will have a label, say "self-hosted". When you build the workflow file, you use that label in the runs-on command. Then Actions will find a free machine with that label and use it.

    • @vamshikrishna-th2ly
      @vamshikrishna-th2ly 2 года назад

      @@MickeyGousset Thanks for the reply brother. I have given runs-on: self-hosted in ci.yml file and have 3 selfhosted runners. Sometimes it is picking the one which is active and sometimes it is picking the one which is offline and waiting in the queue. Not sure how to overcome that

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

    I have a disability where I can only hear from my right year. I could not hear anything except for some music at random points in the video. Is that intended?

  • @ashwinowada
    @ashwinowada 11 месяцев назад

    Great information

  • @matthewgrainger8285
    @matthewgrainger8285 6 месяцев назад

    My left ear really enjoyed this.

  • @web-sprint
    @web-sprint 5 месяцев назад

    I need to runner connected on automatic not manually.Kindly provide best solution

  • @dimitridev9126
    @dimitridev9126 Год назад

    My left ear loved your video !

    • @MickeyGousset
      @MickeyGousset  Год назад

      Ha! Yes, I have a couple of videos that I really screwed the audio up on. Sorry about that. I’ve gotten better in my newer videos.

  • @mariocortes2670
    @mariocortes2670 7 месяцев назад

    Great video.

  • @krzysiek5806
    @krzysiek5806 3 месяца назад

    Can you please explain how to refresh token? TBH - I would like to be the runner available ALL the time. So whenever there is a push to my master branch, I want to trigger an action and deploy new version. Now I cant do it - token gets expired after only 1h.
    I have an idea to write a script in a VM to call github API for the token, restart the runner with the new token, do it each hour. But does it really needs to be so overhelming? Thinking about moving off to jenkins

    • @MickeyGousset
      @MickeyGousset  3 месяца назад

      Are you trying to create your own ephemeral self-hosted runner solution? The GitHub official solution for that is github.com/actions/actions-runner-controller.
      However, if you are trying to create your own, then you need to make an API call to get a short lived registration token: docs.github.com/en/rest/actions/self-hosted-runners?apiVersion=2022-11-28#create-a-registration-token-for-a-repository
      You can always just have a VM that is always available that you are running say in AWS or Azure. In that case, all you do is install the runner software. The token doesn't expire on you, meaning that the runner will keep working.
      I might need more details on what you are trying to do. If you want to email me at mickeygousset@github.com I'll see if I can answer them.

  • @2-Minutesforyou
    @2-Minutesforyou 8 месяцев назад

    Please help to set parallel job processing for the self-hosted runner.

    • @MickeyGousset
      @MickeyGousset  8 месяцев назад +1

      To be able to run multiple jobs you will need to install multiple agents. You can do that on the VM by installing them to different folders. But make sure the vm has enough resources

  • @JayShankarpure
    @JayShankarpure 2 года назад

    Hi Mickey , Jay here
    I have created a Public repo which is already live & wanted to hide my API credentials on that Repo . Is their any way to do it cause its already live right now ??
    I just want to hide that line of code where it has mentioned my Private API key

  • @salmansrabon9799
    @salmansrabon9799 Год назад

    Getting this error always. How could I solve it?
    Error: The process 'C:\Windows\System32\actions-runner-2\_diag\_actions\actions\setup-node\v3\externals\7zr.exe' failed with exit code 2

  • @SaschaStriegel
    @SaschaStriegel 5 месяцев назад

    my left ear enjoyed this video

  • @saisrujanpasupuleti8460
    @saisrujanpasupuleti8460 Год назад

    even though runners are available at organization , getting the message "Waiting for a runner to pick up this job..." . Runners are available and they are active/idle . FYI, used correct labels.

    • @MickeyGousset
      @MickeyGousset  Год назад

      Has your repository been granted access to the runners?

  • @snehashekar4152
    @snehashekar4152 Год назад

    In my github repository page under settings i cannot see the actions tab on to my left side

    • @MickeyGousset
      @MickeyGousset  Год назад

      If you are working under your company’s enterprise account, then they may not have turned on actions for you.

  • @mfarhantariq-ro6bf
    @mfarhantariq-ro6bf Месяц назад

    is this self-hosted runner need ssh open connection?

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

      No self hosted runners use https to connect to GitHub

  • @sureshbe405
    @sureshbe405 Год назад

    Thanks a ton 🙏🙏🙏

  • @tatajsr13
    @tatajsr13 9 месяцев назад

    Hi, After all these steps, I am not able to access os.environ value which in worker log shows as access denied because it's checking environment value in /proc/id/environ on which linux user doesn't have permission to. Also after setting value in .bashrc file using export, it's reading value from /proc only and not .bashrc file and now I am stuck to execute the action and pipeline is waiting in infinite loop and had to cancel no choice to continue. Please let me know what I can do next here?

    • @MickeyGousset
      @MickeyGousset  9 месяцев назад

      I’m not sure off the top of my head. Do you have a repo you could add me to (mickeygousset) where I could take a look, or a public repo that is forkable?

    • @tatajsr13
      @tatajsr13 9 месяцев назад

      @@MickeyGousset test:
      # needs: start-runner
      # needs:
      # - build
      runs-on: [self-hosted, Linux, X64]
      continue-on-error: true
      defaults:
      run:
      working-directory: .
      steps:
      - name: Checkout
      uses: actions/checkout@v3
      with:
      fetch-depth: 0
      - name: Install python dependencies
      shell: bash
      run: |
      source /home/githubuser/actions-runner/_work/bin/activate
      pip3 install --upgrade pip
      pip3 install -r requirements.txt
      pip3 install -r requirements.dev.txt
      - name: Set Environment Variable
      run: |
      echo "UNIT_TESTING_DB=${{ secrets.UNIT_TESTING_DB }}" >> $GITHUB_ENV
      - name: Run pytest & coverage
      continue-on-error: false
      run: |
      echo "export UNIT_TESTING_DB=${{ secrets.UNIT_TESTING_DB }}" >> ~/.bashrc
      source ~/.bashrc
      pip3 install pytest-cov
      pytest tests --cov=app --cov=services --cov-report xml

    • @tatajsr13
      @tatajsr13 9 месяцев назад

      Error Log
      [2023-08-04 01:56:08Z WARN JobExtension] Ignore exception during read process environment variables: Access to the path '/proc/15980/environ' is denied.
      [2023-08-04 01:56:08Z INFO JobExtension] Inspecting process environment variables. PID: 16193 (pytest)
      pyest call which tries db connection but before that it fetched config string from os.environ which fails
      because this user do not have permission to /proc/id/environ
      but why ec2 or github is creating proc folder in root and not in user level folder

    • @tatajsr13
      @tatajsr13 9 месяцев назад

      UNIT_TESTING_DB: str = os.getenv(
      "UNIT_TESTING_DB",
      "postgresql+psycopg2://user:pass@localhost:5432/my_db",
      )
      Both Worker and Runner is stuck in infinite loop at this point

  • @PatcharaMeesawad
    @PatcharaMeesawad Год назад

    Hi Mickey, I follow step install self-host runner at Enterprise, Yes installable. But i can not run workflow call my self-host and show error "Waiting for a runner to pick up this job..." show it like that
    I create uner enterprise and allow organization all to use

    • @MickeyGousset
      @MickeyGousset  Год назад

      Two things to check:
      Make sure at the org level you have set it to allow your repo access. You should see the runner listed in your repo under settings | Actions at the repository level if it has access
      Also make sure your run-as statement matches a label on your runner

    • @PatcharaMeesawad
      @PatcharaMeesawad Год назад

      @@MickeyGousset I set allow my repo access, check all permission. But still can't use
      Before i add self-host under organization, it works and move self-host to enterprises and no longer works

    • @MickeyGousset
      @MickeyGousset  Год назад

      @@PatcharaMeesawad interesting that it works at the org level but not the enterprise. I’ll have to think on that

    • @PatcharaMeesawad
      @PatcharaMeesawad Год назад

      @@MickeyGousset thank you mickey

    • @PatcharaMeesawad
      @PatcharaMeesawad Год назад

      Hi Mickey, I can setup multiple self-hosted runners on a single host ?

  • @web-sprint
    @web-sprint 5 месяцев назад

    I want to automatically connect the runner rather than going to the server manually.

  • @Eriddoch
    @Eriddoch Год назад

    I only hear the spoken audio out of my left earphone while watching this video, yet the music comes out of both. You might consider tweaking your mic setup if you haven't done so so that the voice recording comes out as stereo sound

    • @MickeyGousset
      @MickeyGousset  Год назад +1

      Yep I screwed this audio up. I've fixed in my more current video. Thank you for letting me know!

  • @user-jf1cj5ws3z
    @user-jf1cj5ws3z 3 месяца назад +1

    Oh hold on, I need to put my headset on my forehead, give me a sec. xD

  • @sirrobert4820
    @sirrobert4820 Год назад

    Brilliant 🙂

  • @Devlogowy
    @Devlogowy 6 месяцев назад

    Whether self hosted virtual machine consume my 2000 minutes limit?

    • @MickeyGousset
      @MickeyGousset  6 месяцев назад +1

      Self hosted runners do not consume minutes. You can have as many self hosted runners as you want.

    • @Devlogowy
      @Devlogowy 6 месяцев назад

      @@MickeyGousset GitHub secret keys can be the same? or I need additional configure?

    • @MickeyGousset
      @MickeyGousset  6 месяцев назад +1

      @@Devlogowy GitHub secrets work the same whether you use hosted or self hoted runners

    • @Devlogowy
      @Devlogowy 6 месяцев назад

      @@MickeyGousset Thanks for answers :) Time to code

    • @Devlogowy
      @Devlogowy 6 месяцев назад

      Actually when I run task during Xcode process terminal asks me about Mac password. Can I configure something like sudo perm access without type password every run?

  • @MickeyGousset
    @MickeyGousset  5 месяцев назад

    You will need to script that or look at something like actions runner controller

  • @pindab0ter
    @pindab0ter 11 месяцев назад

    My left ear really enjoyed this. My right ear kinda felt left out.

    • @MickeyGousset
      @MickeyGousset  11 месяцев назад +1

      Ha!
      I’m about to create all brand new self hosted runner content. You will be happy to know I’ve fixed the audio issues 😎

    • @pindab0ter
      @pindab0ter 11 месяцев назад

      @@MickeyGousset Looking forward to it!

  • @susmitham7453
    @susmitham7453 Год назад

    How to bring self-hosted offline runners online?

    • @MickeyGousset
      @MickeyGousset  Год назад +1

      First check and make sure the agent in the runner is actually up and running. If it is then try restarting it.

  • @vrohan07
    @vrohan07 5 месяцев назад

    thank you so fuckin much man!

  • @Luther_Luffeigh
    @Luther_Luffeigh Год назад +2

    Only left ear audio 😢

    • @MickeyGousset
      @MickeyGousset  Год назад +1

      Yeah I messed that up. Sorry about that.

    • @Luther_Luffeigh
      @Luther_Luffeigh Год назад

      @@MickeyGousset no worries, thanks for the great walkthrough in this video 🙌🏽

  • @user-wg6kv1pr3d
    @user-wg6kv1pr3d 2 года назад

    Спасибою Хорошая подача материала. Если улучшиться звук. будет здорово

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

    amazing video... but so painful to watch while wearing headphones

  • @bulletkip
    @bulletkip 5 месяцев назад