Github Actions are amazing, and In the next couple of posts, I will be demonstrating how you could use Github Actions to automate your workflows.
DevOps
A collection of 16 posts
Setup your First CI/CD Pipeline with Drone-Ci and Gitea on Kubernetes | Post 2
In our first post, I demonstrated how to setup Drone-CI, Gitea and Postgres on Kubernetes. In this post we will setup our first Git repository on Gitea, add our SSH key, push our application code to git and setup our…
Using Concourse CI to Deploy to Docker Swarm
See how easy it is to setup a ci/cd pipeline to deploy your applications to docker swarm using concourse-ci
Self Hosted Git and CICD Platform with Gitea and Drone on Docker
Both gitea and drone is built on golang runs on multiple platforms including a raspberry pi and its super lightweight. Oh yes, and its awesome! In this tutorial we will see how we can implement our own git service and…
Concourse Pipeline to Build a Docker Image Automatically on Git Commit
In this tutorial we will build a ci pipeline using concourse to build and push a image to dockerhub automatically, whenever a new git commit is made to the master branch. Our Project SetupOur Directory Tree: $ find . ./Dockerfile ./ci ./ci/…
Using Resources with Concourse Tutorial
In Concourse, Resources refer to external resource types such as s3, github etc. So for example, we can run a pipeline which pulls data from github, such as cloning a repository, so in other words the data that was cloned…
Concourse Tasks and Inputs Tutorial
In this tutorial I will show you how to execute task scripts and using task inputs to have the ability to pass data to concourse for processing. ( function() { if (window.CHITIKA === undefined) { window.CHITIKA = { 'units' : [] }; }; var unit = {"calltype":"async[2]…
Setup a Basic Hello World Pipeline on Concourse
We will setup a basic pipeline that pulls down content from github, then executes a task that prints hello world. Content on GithubThe config can be found on my Github Branch but I will display each file in this post.…