Skip to content

Instantly share code, notes, and snippets.

@devtech0101
devtech0101 / git-feature-workflow.md
Created February 23, 2022 03:16 — forked from blackfalcon/git-feature-workflow.md
Git basics - a general workflow

Git-workflow vs feature branching

When working with Git, there are two prevailing workflows are Git workflow and feature branches. IMHO, being more of a subscriber to continuous integration, I feel that the feature branch workflow is better suited, and the focus of this article.

If you are new to Git and Git-workflows, I suggest reading the atlassian.com Git Workflow article in addition to this as there is more detail there than presented here.

I admit, using Bash in the command line with the standard configuration leaves a bit to be desired when it comes to awareness of state. A tool that I suggest using follows these instructions on setting up GIT Bash autocompletion. This tool will assist you to better visualize the state of a branc

+-----------------+---------------------------------+
| Runtime | Path |
+-----------------+---------------------------------+
| Docker | /var/run/docker.sock |
|-----------------+---------------------------------+
| CRI-O | /var/run/crio/crio.sock |
|-----------------+---------------------------------+
| Containerd | /run/containerd/containerd.sock |
+-----------------+---------------------------------+
+-----------------+-----------------------------+------------------+
| Server Type | Hostname | Specs |
+-----------------+-----------------------------+------------------+
| Master | kube-master-01 | 2GB Ram, 2 vcpus |
|-----------------+-----------------------------+------------------+
| Worker-01 | kube-worker-01 | 1GB Ram, 1 vcpus |
|-----------------+-----------------------------+------------------+
| Worker-02 | kube-worker-02 | 1GB Ram, 1 vcpus |
+-----------------+-----------------------------+------------------+
@devtech0101
devtech0101 / Cluster Servers
Created December 24, 2020 03:27
Kubernetes Cluster
+-----------------+-----------------------------+------------------+
| Server Type | Hostname | Specs |
+-----------------+-----------------------------+------------------+
| Master | k8s-master-01 | 2GB Ram, 2vcpus |
|-----------------+-----------------------------+------------------+
| Worker-01 | k8s-worker-01 | 2GB Ram, 2vcpus |
|-----------------+-----------------------------+------------------+
| Worker-02 | k8s-worker-01 | 2GB Ram, 2vcpus |
+-----------------+-----------------------------+------------------+