Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-joseph committed Nov 13, 2024
1 parent aeb7e57 commit d057238
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,31 @@ In Kubernetes, a Deployment is a resource object that provides declarative updat
- **Ingress OR Ingress Controller:**
- A pod with a set of routing rules to distribute traffic to other services.

## Deployment

```mermaid
graph TD
subgraph LocalMachine
A[Make chnage to code]
B[Commit chnage to a git branch</br> any besides main/master]
C[Push branch to github]
A-->B
B-->C
end
subgraph Guthub
P[Github receives updated branch]
Q[You manually create a pull request to merge branch to master/main]
R[Github automatically runs tests for project]
S[After test pass, you merge the PR into master branch]
T[Because master branch has changed, github builds and deploys]
P-->Q
Q-->R
R-->S
S-->T
end
C-->P
```

## Git Guidelines

- Base branch is *main*
Expand Down

0 comments on commit d057238

Please sign in to comment.