This guide outlines the process to set up and execute Operating System updates using either GitHub Actions or GitLab CI/CD.
.github is useful if you are planning to run a pipeline on GitHub and implement the GitOps approach.
Remove the .example part from the name of the files in .github/workflow for the GitHub Actions pipeline to work.
You can delete .github if you are not planning to use the GitHub pipeline.
- Ensure you have the required secrets (
SSH_USER,EC2_HOST, andSSH_PRIVATE_KEY) set up in your repository's Secrets settings. - Ensure the EC2 instance's security group allows incoming SSH connections from the GitHub Actions runner IP addresses.
- Make sure the SSH user has the necessary permissions on the EC2 instance, including
sudopermissions if required.
-
Navigate to the GitHub Repository: Go to your repository where the workflow is set up.
-
Go to the 'Actions' Tab: Located at the top of your repository.
-
Select the 'Application Update' Workflow: You should see this on the left sidebar. Click on it.
-
Run Workflow: Towards the right side, you'll see a "Run workflow" dropdown. Click on it.
-
Provide Input (Optional):
- You can provide a reason for the run in the "Reason for run" input box. This is optional.
-
Click 'Run workflow' Button: After clicking, the workflow will start, and you can observe its progress.
-
Check the Results: Once the workflow completes, you can click on the specific job to view the logs and see if the OS update was successful on your EC2 instance.
.gitlab-ci.yml is useful if you are planning to run a pipeline on GitLab and implement the GitOps approach.
Remove the .example part from the name of the files in the root or designated CI/CD directory to make the GitLab CI/CD pipeline operational.
You can delete .gitlab-ci.yml if you are not planning to use the GitLab pipeline.
- Ensure you have the required CI/CD variables (
SSH_USER,EC2_HOST, andSSH_PRIVATE_KEY) set up in your GitLab project's settings. - Ensure the EC2 instance's security group allows incoming SSH connections from the GitLab runner IP addresses.
- Make sure the SSH user has
sudopermissions on the EC2 instance to run update commands.
-
Navigate to the GitLab Project: Go to your project where the
.gitlab-ci.ymlfile is set up. -
Go to the 'CI/CD' Section: Located in the left sidebar of your project.
-
Select the 'Pipelines' Tab: Here, you'll see a list of pipelines that have been run or are scheduled to run.
-
Run Pipeline: At the top-right corner, you'll find the "Run Pipeline" button. Click on it.
-
Choose the 'main' Branch: As the
os_updatejob is set to run only on themainbranch. -
Click 'Run Pipeline' Button: Once you've selected the branch, click the "Run Pipeline" button. This will initiate the OS update job, and you can monitor its progress.
-
Check the Results: After completion, you can click on the specific job within the pipeline to view the logs and verify if the OS update was successful on your EC2 instance.
Maintained by Vladimir Mikhalev · Docker Captain · IBM Champion · AWS Community Builder