From d79e6c0b94847885cfc26c5f5d84d5996aa8d16a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Groothuis?= Date: Thu, 30 Oct 2025 23:24:01 +0100 Subject: [PATCH] chore: Initial commit --- content/DevOps/GitOps/index.md | 15 +++++++++++++++ content/DevOps/Kubernetes/index.md | 14 ++++++++++++++ content/DevOps/index.md | 17 +++++++++++++++++ content/Glossary/API.md | 1 + content/Glossary/Cluster (Kubernetes).md | 3 +++ content/Glossary/Kubernetes.md | 1 + content/Glossary/Node (Kubernetes).md | 1 + content/Glossary/Server.md | 1 + content/_templates/_Topic Template.md | 14 ++++++++++++++ content/index.md | 7 +++++++ 10 files changed, 74 insertions(+) create mode 100644 content/DevOps/GitOps/index.md create mode 100644 content/DevOps/Kubernetes/index.md create mode 100644 content/DevOps/index.md create mode 100644 content/Glossary/API.md create mode 100644 content/Glossary/Cluster (Kubernetes).md create mode 100644 content/Glossary/Kubernetes.md create mode 100644 content/Glossary/Node (Kubernetes).md create mode 100644 content/Glossary/Server.md create mode 100644 content/_templates/_Topic Template.md create mode 100644 content/index.md diff --git a/content/DevOps/GitOps/index.md b/content/DevOps/GitOps/index.md new file mode 100644 index 0000000..7195eb3 --- /dev/null +++ b/content/DevOps/GitOps/index.md @@ -0,0 +1,15 @@ +--- +title: GitOps +tags: + - Sub-Topic +--- +## Introduction +Introdution here + +--- +## Sub Topics +[[_Topic Template]] • [[_Topic Template]] + +--- +## Helpful Links +[Link 1](https://git.dgse.cloud/DGSE/kubernetes-platform) • [Link 2](https://k3s.io) diff --git a/content/DevOps/Kubernetes/index.md b/content/DevOps/Kubernetes/index.md new file mode 100644 index 0000000..e91cfe3 --- /dev/null +++ b/content/DevOps/Kubernetes/index.md @@ -0,0 +1,14 @@ +--- +title: Kubernetes +tags: +--- +## Introduction +Introdution here + +--- +## Sub Topics +[[_Topic Template]] • [[_Topic Template]] + +--- +## Helpful Links +[Link 1](https://git.dgse.cloud/DGSE/kubernetes-platform) • [Link 2](https://k3s.io) diff --git a/content/DevOps/index.md b/content/DevOps/index.md new file mode 100644 index 0000000..7bf4346 --- /dev/null +++ b/content/DevOps/index.md @@ -0,0 +1,17 @@ +--- +title: DevOps +tags: + - Topic +--- +## Introduction +All things regarding DevOps + +Some intro here + +--- +## Sub Topics +[[DevOps/GitOps/index|GitOps]] • [[DevOps/Kubernetes/index|Kubernetes]] + +--- +## Helpful Links +[GitOps Repository](https://git.dgse.cloud/DGSE/kubernetes-platform) • [K3s](https://k3s.io) diff --git a/content/Glossary/API.md b/content/Glossary/API.md new file mode 100644 index 0000000..d542cb0 --- /dev/null +++ b/content/Glossary/API.md @@ -0,0 +1 @@ +Short for `Application Program Interface`. A standard for communicating with different applications across the web. \ No newline at end of file diff --git a/content/Glossary/Cluster (Kubernetes).md b/content/Glossary/Cluster (Kubernetes).md new file mode 100644 index 0000000..50d6526 --- /dev/null +++ b/content/Glossary/Cluster (Kubernetes).md @@ -0,0 +1,3 @@ +A Cluster is a collection of one or multiple [[Node (Kubernetes)|Nodes]] that are managed by [[Kubernetes]] for [[Container]] orchestration. + +Clusters make use of a set of [[API|API's]] that control the different [[Node (Kubernetes)|Nodes]] and make sure that they are all in sync. \ No newline at end of file diff --git a/content/Glossary/Kubernetes.md b/content/Glossary/Kubernetes.md new file mode 100644 index 0000000..a71ecf4 --- /dev/null +++ b/content/Glossary/Kubernetes.md @@ -0,0 +1 @@ +A platform for [[Container|container]] orchestration. It manages the creation and virtualization of [[Container|containers]]. \ No newline at end of file diff --git a/content/Glossary/Node (Kubernetes).md b/content/Glossary/Node (Kubernetes).md new file mode 100644 index 0000000..835fd30 --- /dev/null +++ b/content/Glossary/Node (Kubernetes).md @@ -0,0 +1 @@ +A Node is a single server or VM that, when integrated in a [[Cluster (Kubernetes)]], enables the [[Cluster (Kubernetes)]] to make use of the resources of that given [[Server]] or VM. \ No newline at end of file diff --git a/content/Glossary/Server.md b/content/Glossary/Server.md new file mode 100644 index 0000000..6240169 --- /dev/null +++ b/content/Glossary/Server.md @@ -0,0 +1 @@ +A server is a physical machine where applications can be hosted on. \ No newline at end of file diff --git a/content/_templates/_Topic Template.md b/content/_templates/_Topic Template.md new file mode 100644 index 0000000..104cb3e --- /dev/null +++ b/content/_templates/_Topic Template.md @@ -0,0 +1,14 @@ +--- +title: TITLE +tags: +--- +## Introduction +Introdution here + +--- +## Sub Topics +[[_Topic Template]] • [[_Topic Template]] + +--- +## Helpful Links +[Link 1](https://git.dgse.cloud/DGSE/kubernetes-platform) • [Link 2](https://k3s.io) diff --git a/content/index.md b/content/index.md new file mode 100644 index 0000000..d62c297 --- /dev/null +++ b/content/index.md @@ -0,0 +1,7 @@ +--- +title: Digital Garden +--- +Hi there! Welcome to my digital garden. A place where all my notes and guides are collected. Focused on IT, Development and Dev/Ops. + +## Paths to take +- [[DevOps/index|DevOps]] \ No newline at end of file