@@ -35,12 +35,8 @@ title: "CI/CD: Faster, Easier Development"
3535 - No manual intervention required
3636- _ Goal_ : Reduce time between writing code and its use in production
3737
38- <!-- vale RedHat.TermsWarnings = NO -->
39-
4038## DevOps {data-menu-title="DevOps (i)"}
4139
42- <!-- vale RedHat.TermsWarnings = YES -->
43-
4440::: {layout-ncol=2}
4541
4642My talk on a general overview of DevOps
@@ -71,11 +67,7 @@ colorDark="#ffffff" colorLight="#000000" height=550 width=550 >}}
7167 - Monitoring and Logging
7268 - Incident Response
7369
74- <!-- vale RedHat.TermsWarnings = NO -->
75-
76- ## Key Differences {data-menu-title="DevOps (i)"}
77-
78- <!-- vale RedHat.TermsWarnings = YES -->
70+ ## Key Differences {data-menu-title="Key Differences (i)"}
7971
8072- _ Scope_ :
8173 - _ CI/CD_ : Focused on automating specific parts of the development pipeline
@@ -84,7 +76,7 @@ colorDark="#ffffff" colorLight="#000000" height=550 width=550 >}}
8476 - _ CI/CD_ : Primarily technical practices
8577 - _ DevOps_ : Emphasises cultural change and cross-functional collaboration
8678
87- ## Key Differences {data-menu-title="DevOps (ii)"}
79+ ## Key Differences {data-menu-title="Key Differences (ii)"}
8880
8981- _ Goals_ :
9082 - _ CI/CD_ : Faster, more reliable software releases
@@ -99,12 +91,8 @@ DevOps requires a broader cultural and operational shift.
9991
10092# GitHub Actions
10193
102- <!-- vale RedHat.TermsWarnings = NO -->
103-
10494## What Are GitHub Actions? {data-menu-title="What Are GitHub Actions? (i)"}
10595
106- <!-- vale RedHat.TermsWarnings = YES -->
107-
10896GitHub Actions is a continuous integration and continuous delivery (CI/CD)
10997platform that allows one to automate your build, test, and deployment pipeline.
11098You can create workflows that build and test every pull request to your
@@ -144,12 +132,8 @@ jobs:
144132 run: echo Hello, world!
145133```
146134
147- <!-- vale RedHat.TermsWarnings = NO -->
148-
149135## Example Uses {data-menu-title="Example Uses (i)"}
150136
151- <!-- vale RedHat.TermsWarnings = YES -->
152-
153137- _ Continuous Integration_ : Automatically build and test your code every time
154138 you push to your repository or open a pull request.
155139- _ Continuous Deployment_ : Automatically deploy your application to staging or
@@ -180,12 +164,8 @@ jobs:
180164- Minimise workflow run time by using build matrices and caching
181165- Use status badges in your README to show your workflow status
182166
183- <!-- vale RedHat.TermsWarnings = NO -->
184-
185167## Avoiding Duplication {data-menu-title="Avoiding Duplication (i)"}
186168
187- <!-- vale RedHat.TermsWarnings = YES -->
188-
189169{{< include /quarto-making-talks/_ slides/tables.qmd >}}
190170
191171## Avoiding Duplication {data-menu-title="Avoiding Duplication (ii)"}
0 commit comments