Skip to content

Commit 450e54b

Browse files
committed
changed: misc tidy ups
1 parent c60df3d commit 450e54b

File tree

8 files changed

+12
-13
lines changed

8 files changed

+12
-13
lines changed

docs/content/module-04/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,15 +156,15 @@ description: "Review goals in planning, then apply the Twelve-Factor App methodo
156156
- [What is observability? - Grafana](https://grafana.com/docs/grafana-cloud/introduction/what-is-observability/)
157157
- [Logs vs Metrics vs Traces - Engineering Fundamentals Playbook](https://microsoft.github.io/code-with-engineering-playbook/observability/log-vs-metric-vs-trace/)
158158
- [The Three Pillars of Observability - Sematext](https://sematext.com/glossary/three-pillars-of-observability/)
159-
- [The Site Reliability Workbook -Chapter 4 - Monitoring](https://sre.google/workbook/monitoring/)
159+
- [The Site Reliability Workbook -Chapter 4 - Monitoring](https://sre.google/workbook/monitoring/)
160160

161161
## 4.7 Continuous Delivery - Introduction and Solutions in the Market
162162

163163
<img class="img-right" align="right" width="25%" src="/img/topics/continuous-delivery.png"></img>
164164

165165
### What you need to know {#47-what-you-need-to-know}
166166

167-
- In simple words, `Continuous Delivery` is a practice where code changes are automatically prepared for release to multiple environments, especially production. This involves deploying all code changes to a testing environment and then to a production-like environment after passing automated tests, ensuring the software is always in a deployable state.
167+
- In simple words, `Continuous Delivery` is a practice where code changes are automatically prepared for release to multiple environments, especially production. This involves deploying all code changes to a testing environment and then to a production-like environment after passing automated tests, ensuring the software is always in a deployable state.
168168
- Following CD practices allows teams to deliver new features and bug fixes more safely and quickly to users, reducing the risk of deployment errors.
169169
- It's important to know that `CD` could refer to two different things: `Continuous Delivery` and `Continuous Deployment`. They are usually used interchangeably, but in reality, they are two different stages.
170170
- In many cases, the same [Continuous Integration solutions](../module-03#36-continuous-integration---introduction-and-solutions-in-the-market) could be used for continuous delivery/deployment; however, there are specialized solutions that work best for CD.

docs/content/module-06/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Finally, remember that retro is not only about bad things. It's also time to cel
4141
- First of all, avoid `premature optimization`! Optimizing code too early usually leads to unnecessary complex solutions and wastes a lot of time without a good return. At first, focus only on critical use cases, then optimize based on actual performance issues as you go.
4242
- If you know from the beginning that you need a high-performance solution, start with a programming language or a framework known for that. You will save a lot of effort if you select the correct tool early on. Also, follow the selected language's best practices for performance optimization.
4343
- A simple method for code performance optimization is `caching`. Use it whenever possible on all levels, like database caching, in-memory caching Valkey or Memcached as a caching layer, and even DNS caching, which could save you a lot of necessary calls (external caching could also be helpful, like using Content Delivery Network "CDN" to cache static content).
44-
- Following the same caching concept, try to minimize external API calls. The fastest request is the one that was never made!
44+
- Following the same caching concept, try to minimize external API calls. The fastest request is the one that was never made!
4545
- Avoid dull operations like calling a function repeatedly that could be called once outside the loop. As a rule of thumb, any code that doesn't change between iterations should be outside the loop.
4646
- Finally, if you need to dive deeper and optimize your code (again, if necessary), profiling tools are your best friend.
4747

@@ -144,14 +144,14 @@ Multi-environment setup is not a trivial topic, but like anything else, doing it
144144

145145
- Before diving into Continuous Deployment, we need to have a look at Continuous Delivery end-to-end release automation, which is the process of producing products ready for deployment.
146146
- In fact, there are many types of release, but they could be narrowed down to two types: `Versioned release` and `Rolling release`.
147-
- In a versioned release, you release an artefact with a specific version, like `1.0.0`. [Semantic Versioning](https://semver.org/) is one of the most popular versioning styles, but it's not the only one. Users should deliberately upgrade to the new version if they need the latest updates. This type is common in application code, especially if you have external consumers.
147+
- In a versioned release, you release an artefact with a specific version, like `1.0.0`. [Semantic Versioning](https://semver.org/) is one of the most popular versioning styles, but it's not the only one. Users should deliberately upgrade to the new version if they need the latest updates. This type is common in application code, especially if you have external consumers.
148148
- In rolling releases, you release an artifact with a marker like a Git hash or even a branch name, which works just as a reference or a pointer. The users will always get the latest updates at any point in time. This type is common in Infrastructure as Code, especially for internal use.
149149
- It's hard to say one is better than the other; each has pros and cons and recommended use cases.
150150
- In both styles, there are a couple of things you need to remember:
151151
- Release quality is the same as the CI pipeline quality. Follow [CI best practices](../module-04/#44-continuous-integration---ci-best-practices) and add all standard quality gates.
152152
- Everything should be done in version control. No magic should happen outside the Git repository.
153153
- Ensure that the artifact is in at least one environment for consumers before it goes out.
154-
- Learn about Rollback and Rollforward strategies to deal
154+
- Learn about Rollback and Rollforward strategies to deal with failed releases.
155155
- Generate changelog or release notes based on the Git commits. [Conventional Commits](https://www.conventionalcommits.org/en/) is famous for applications, and [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) is common for IaC. There are many tools to automate that step regardless of the Git commit convention you use (e.g., [git-cliff](https://github.com/orhun/git-cliff)).
156156
- Automate the release chores and version bumps using tools like [release-please](https://github.com/googleapis/release-please) and [release-it](https://github.com/release-it/release-it).
157157
- For security, sign the artifacts using [Sigstore/Cosign](https://github.com/sigstore/cosign) using the effortless `keyless signing`.

docs/content/module-07/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This project should follow the same MVP approach and work in phases and always r
3434
- Create a high-level project roadmap.
3535
- Identify the tech stack that will be used in the project.
3636
- Define a reasonable timeline for the project.
37-
- Make a simple risk assessment to spot the obstacles you know or don't know about.
37+
- Make a simple risk assessment to spot the obstacles you know or don't know about.
3838

3939
## 7.3 Implementation
4040

docs/content/next-steps/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: "You finished the roadmap, what should you do now?"
55

66
[🗂 Back to the Roadmap Index](../../getting-started#roadmap-index)
77

8-
Now that you've finished the roadmap, what's next? There is good news and bad news! The good news is that finishing this roadmap should increase your chances in the market. The bad news is that the tech industry is always evolving super fast, and the DevOps domain evolves even faster! So there are no options but to keep going and always stay in shape!
8+
Now that you've finished the roadmap, what's next? There is good news and bad news! The good news is that finishing this roadmap should increase your chances in the market. The bad news is that the tech industry is always evolving super fast, and the DevOps domain evolves even faster! So there are no options but to keep going and always stay in shape!
99

1010
It's time to face the real world and prepare for the next steps. We will cover some topics to help you step up and keep developing yourself.
1111

@@ -50,8 +50,8 @@ It's time to face the real world and prepare for the next steps. We will cover s
5050
- The chart alone is not enough; always combine it with a one-page document that adds some context about your skills.
5151
- Use the chart as a high-level for your next steps and career development.
5252
- Update your skill chart at least once every year or, even better, every 6 months.
53-
- You can do this yourself, but it's highly recommended that you do it with someone close to you.
54-
- Ask for feedback whenever possible.
53+
- You can do this yourself, but it's highly recommended that you do it with someone close to you.
54+
- Ask for feedback whenever possible.
5555
- Always remember that ... you must be honest with yourself; otherwise, the whole process will be worthless!
5656

5757
## DevOps Certificates

docs/faq/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Why not 100%? As the roadmap takes a pragmatic approach, the last 20% varies a l
9797

9898
This roadmap is designed for a wide range of audiences, but each requires different efforts and risks. The risk here is archiving the final goal, finishing the roadmap, and being a qualified DevOps Engineer.
9999

100-
Low risk means it's more likely the learner will reach the goal, and high risk means it's less likely the learner will reach the goal (the time here is a significant factor in this formula. As the time increases, there are more chances that the learner will divert from the goal).
100+
Low risk means it's more likely the learner will reach the goal, and high risk means it's less likely the learner will reach the goal (the time here is a significant factor in this formula. As the time increases, there are more chances that the learner will divert from the goal).
101101

102102
Audience groups:
103103

docs/getting-started/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ How to process:
3131

3232
In this mode, you already have some experience with DevOps (usually between 1-2 years of work experience). Still, you want to further your skills with a real hands-on industry-grad project to learn DevOps pragmatically. This mode is also available to everyone in this repo.
3333

34-
The project follows the `Learning by Doing` method (aka `Problem-based Learning`), which is done in iterative phases. In this method, you learn as you go and cover the whole DevOps cycle.
34+
The project follows the `Learning by Doing` method (aka `Problem-based Learning`), which is done in iterative phases. In this method, you learn as you go and cover the whole DevOps cycle.
3535

3636
How to process:
3737

docs/growth/_category_.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ collapsed: false
66
link:
77
type: generated-index
88
description: You are now a DevOps Engineer, what are other advanced or promising career paths?
9-

docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const config: Config = {
7878
],
7979

8080
themeConfig: {
81-
image: 'img/dynamic-devops-roadmap-pillars.png',
81+
image: 'img/dynamic-devops-roadmap-flow-regular-bg.png',
8282
navbar: {
8383
title: 'Dynamic DevOps Roadmap',
8484
logo: {

0 commit comments

Comments
 (0)