Skip to content

Commit 3a6f1ef

Browse files
authored
April update (#5)
* Add samples/grafana/dashboards/mongodb-otel.json * Update VS Code * Update Docker and Node.js install * Add Wiz news * Updates * Reworked glossary * Add Google Docs shortcut * Add info * Update * Add SITF * Updates * Updates * Add git update on windows * Update NPM packages * Update pipelines * Fix security issues in npm package lock * Fix invalid links * Add docusaurus faster * Fix invalid mdx
1 parent 8f410a0 commit 3a6f1ef

46 files changed

Lines changed: 2257 additions & 706 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,17 @@ on:
99
- main
1010
workflow_dispatch: {}
1111

12+
permissions:
13+
contents: read
14+
1215
concurrency:
1316
group: "${{ github.ref }}-ci"
1417
cancel-in-progress: true
1518

1619
jobs:
1720
markup-lint:
1821
name: Markup
19-
uses: devpro/github-workflow-parts/.github/workflows/reusable-markup-lint.yml@c90ba46a93ca90123f57744b47e49c1a73962cea
22+
uses: devpro/github-workflow-parts/.github/workflows/reusable-markup-lint.yml@fcf685247a8fa35a4330f3bbc9c328f13fec7e73
2023

2124
code-quality:
2225
name: Code / Quality

.github/workflows/deploy.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ on:
66
- main
77
workflow_dispatch: {}
88

9+
permissions:
10+
contents: read
11+
12+
concurrency:
13+
group: "${{ github.ref }}-deploy"
14+
cancel-in-progress: false
15+
916
jobs:
1017
build:
1118
name: Build website

CONTRIBUTING.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,39 @@ Check Markdown files:
6464
```bash
6565
docker run --rm -v "$(pwd)":/workdir davidanson/markdownlint-cli2 "**/*.md"
6666
```
67+
68+
## Admonitions
69+
70+
See [docusaurus.io/docs/markdown-features](https://docusaurus.io/docs/markdown-features/admonitions).
71+
72+
```md
73+
:::note
74+
75+
Some **content** with _Markdown_ `syntax`. Check [this `api`](#).
76+
77+
:::
78+
79+
:::tip
80+
81+
Some **content** with _Markdown_ `syntax`. Check [this `api`](#).
82+
83+
:::
84+
85+
:::info
86+
87+
Some **content** with _Markdown_ `syntax`. Check [this `api`](#).
88+
89+
:::
90+
91+
:::warning
92+
93+
Some **content** with _Markdown_ `syntax`. Check [this `api`](#).
94+
95+
:::
96+
97+
:::danger
98+
99+
Some **content** with _Markdown_ `syntax`. Check [this `api`](#).
100+
101+
:::
102+
```
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Container orchestration
1+
# Container orchestration
22

33
## Solutions
44

55
- [HashiCorp Nomad](https://www.nomadproject.io/)
66
- [Kubernetes](https://github.com/devpro/learn-kubernetes)
77
- [Red Hat OpenShift](../../../organizations/companies/redhat/openshift.md)
88

9-
<!-- Previously: Apache Mesos, Docker Swarm -->
9+
[//]: <> (Previously: Apache Mesos, Docker Swarm)

docs/fundamentals/infrastructure/operating-systems/linux-commands.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Linux terminal
1+
# Linux terminal
22

33
## Additional packages
44

55
Name | Details
66
---------|---------------------------------------------------------------------------------------------------------------------------------
77
**wget** | GNU Wget is a free software package for retrieving files using HTTP, HTTPS, FTP and FTPS the most widely-used Internet protocols
88

9-
<!-- TODO: difference between cat/less/more -->
9+
[//]: <> (difference between cat/less/more)
1010

1111
## Shortcuts
1212

Lines changed: 38 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,61 @@
11
# Glossary
22

3+
## Business
4+
5+
Acronym | Meaning
6+
--------|----------------------------
7+
ARR | Annual Recurring Revenue
8+
GTM | Go-To-Market
9+
ISV | Independent Software Vendor
10+
MSP | Managed Service Provider
11+
NRR | Net Revenue Retention
12+
OKR | Objectives and Key Results
13+
SA | Solutions Architect
14+
TAM | Technical Account Manager
15+
316
## IT
417

518
Acronym | Meaning
6-
--------|--------------------------------------------------------------
19+
--------|----------------------------------------------------------------------------------
720
BGP | Border Gateway Protocol
21+
BYON | Bring Your Own Network
22+
CD | Continuous Delivery
23+
CI | Continuous Integration
24+
CSP | Cloud Service Provider
25+
DAST | Dynamic Application Security Testing
26+
DFA | Data flow analysis (a method used to understand how data moves through a program)
827
DKIM | Domain Keys Identified Mail
928
DMARC | Domain-based Message Authentication Reporting and Conformance
29+
HCI | Hyperconverged Infrastructure
1030
FOSS | Free and open source software
31+
PSA | Professional Services Automation
32+
RPS | Request Per Second
33+
SAST | Static Application Security Testing
34+
SBOM | Software Bill Of Materials
35+
SCA | Software Composition Analysis
36+
SCM | Source Code Management
37+
SDLC | Software Development Lifecycle
1138
SRE | Site Reliability Engineering
1239
SPF | Sender Policy Framework
13-
14-
## Programming
15-
16-
Acronym | Meaning | Details
17-
--------|--------------------|-------------------------------------------------------------
18-
DFA | Data flow analysis | A method used to understand how data moves through a program
40+
SSoT | Single Source of Truth
41+
SOP | Standard Operating Procedure
42+
VCS | Version Control System
43+
VPC | Virtual Private Cloud
1944

2045
## Security
2146

2247
Acronym | Meaning
23-
--------|---------------------------
48+
--------|---------------------------------------------
49+
ASPM | Application Security Posture Management
50+
CDR | Cloud Detection & Response
2451
CIEM | Cloud Infrastructure Entitlement Management
2552
CNAPP | Cloud Native Application Protection Platform
2653
CSPM | Cloud Security Posture Management
54+
CTF | Capture The Flag
2755
CWP | Cloud Workload Protection
56+
CWPP | Cloud Workload Protection Platform
2857
DSPM | Data Security Posture Management
2958
KSPM | Kubernetes Security Posture Management
3059
NHI | Non-Human Identity
60+
SBOM | Software Bill of Materials
3161
SOC | Security Operations Center

docs/guides/workstations/windows/windows.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@ For previous versions: [Windows 10](archive/windows-10.md).
4646
4747
1. [Visual Studio Code](../../../organizations/companies/microsoft/vscode.md)
4848
2. Git
49+
50+
Update git
51+
52+
```cmd
53+
git update-git-for-windows
54+
```
55+
4956
3. Notepad++
5057
4. [MongoDB Compass](../../../organizations/companies/mongodb/compass.md)
5158
5. [Rider](../../../organizations/companies/jetbrains/rider.md) or [Visual Studio 2026](../../../organizations/companies/microsoft/vs2026.md)

docs/organizations/communities/go/go-file-organization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# File organization in a Go project
1+
# File organization in a Go project
22

33
🌐 [golang-standards/project-layout](https://github.com/golang-standards/project-layout)
44

5-
<!-- https://github.com/Avksenchik/golang-project-template -->
5+
See also [Avksenchik/golang-project-template](https://github.com/Avksenchik/golang-project-template)
66

77
## General view
88

docs/organizations/companies/amazon/aws/glossary.md renamed to docs/organizations/companies/amazon/aws/aws-glossary.md

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# AWS glossary
1+
# AWS glossary
22

33
🌐 [docs](https://docs.aws.amazon.com/glossary/latest/reference/glos-chap.html)
44

@@ -10,27 +10,30 @@ ACE | APN Customer Engagements
1010
APN | AWS Partner Network
1111
GSI | Global System Integrator
1212
GSP | Global Startup Program
13-
GTM | Go-To-Market
14-
ISV | Independent Software Vendor
15-
MSP | Managed Service Provider
1613
PDM | Partner Development Manager
1714
PSA | Partner Solutions Architect
1815
RME | Reliability Maintenance Engineering
19-
SA | Solutions Architect
2016
SBI | Situation, Behavior, Impact
21-
TAM | Technical Account Manager
2217

2318
## Practices
2419

25-
Name | Meaning | Links
26-
-----|---------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------
27-
CAF | Cloud Adoption Framework | [aws.amazon.com](https://aws.amazon.com/cloud-adoption-framework/)
28-
EBA | Experience-Based Acceleration | [aws.amazon.com/blogs](https://aws.amazon.com/blogs/mt/level-up-your-cloud-transformation-with-experience-based-acceleration-eba/)
29-
MAP | Migration Acceleration Program | [aws.amazon.com](https://aws.amazon.com/migration-acceleration-program/)
30-
MRA | Migration Readiness Assessment | -
31-
MRP | Migration Readiness & Planning | -
32-
ORR | Operational Readiness Reviews | [docs.aws.amazon.com/wellarchitected](https://docs.aws.amazon.com/wellarchitected/latest/operational-readiness-reviews/wa-operational-readiness-reviews.html)
33-
SRA | Security Reference Architecture | [docs.aws.amazon.com/prescriptive-guidance](https://docs.aws.amazon.com/prescriptive-guidance/latest/security-reference-architecture/welcome.html)
20+
Name | Meaning
21+
-----|--------------------------------
22+
CAF | Cloud Adoption Framework
23+
EBA | Experience-Based Acceleration
24+
MAP | Migration Acceleration Program
25+
MRA | Migration Readiness Assessment
26+
MRP | Migration Readiness & Planning
27+
ORR | Operational Readiness Reviews
28+
SRA | Security Reference Architecture
29+
30+
Links:
31+
32+
- [AWS Cloud Adoption Framework (AWS CAF)](https://aws.amazon.com/cloud-adoption-framework/)
33+
- [Level up your Cloud Transformation with Experience-Based Acceleration (EBA)](https://aws.amazon.com/blogs/mt/level-up-your-cloud-transformation-with-experience-based-acceleration-eba/)
34+
- [AWS Migration Acceleration Program](https://aws.amazon.com/migration-acceleration-program/)
35+
- [Operational Readiness Reviews (ORR)](https://docs.aws.amazon.com/wellarchitected/latest/operational-readiness-reviews/wa-operational-readiness-reviews.html)
36+
- [AWS Security Reference Architecture (AWS SRA) – core architecture](https://docs.aws.amazon.com/prescriptive-guidance/latest/security-reference-architecture/welcome.html)
3437

3538
## Technologies
3639

docs/organizations/companies/amazon/aws/aws.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# AWS
1+
# AWS
22

33
> Amazon Web Services is the world’s most comprehensive and broadly adopted cloud, enabling customers to build anything they can imagine
44
@@ -8,7 +8,7 @@
88

99
* [Architecture](architecture.md)
1010
* [Events](events.md)
11-
* [Glossary](glossary.md)
11+
* [Glossary](aws-glossary.md)
1212
* Localization: [EN](local-en.md), [FR](local-fr.md)
1313
* [Partners](partners.md)
1414
* [Products](products.md)

0 commit comments

Comments
 (0)