Added kubernetes and .obsidian
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,2 +1,2 @@
|
||||
.DS_Store
|
||||
.obsidian
|
||||
.obsidian/workspace.json
|
||||
3
.obsidian/app.json
vendored
Normal file
3
.obsidian/app.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"readableLineLength": false
|
||||
}
|
||||
6
.obsidian/appearance.json
vendored
Normal file
6
.obsidian/appearance.json
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"cssTheme": "",
|
||||
"enabledCssSnippets": [
|
||||
"hide-tittle"
|
||||
]
|
||||
}
|
||||
33
.obsidian/core-plugins.json
vendored
Normal file
33
.obsidian/core-plugins.json
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"file-explorer": true,
|
||||
"global-search": true,
|
||||
"switcher": true,
|
||||
"graph": true,
|
||||
"backlink": true,
|
||||
"canvas": true,
|
||||
"outgoing-link": true,
|
||||
"tag-pane": true,
|
||||
"footnotes": false,
|
||||
"properties": true,
|
||||
"page-preview": true,
|
||||
"daily-notes": true,
|
||||
"templates": true,
|
||||
"note-composer": true,
|
||||
"command-palette": true,
|
||||
"slash-command": false,
|
||||
"editor-status": true,
|
||||
"bookmarks": true,
|
||||
"markdown-importer": false,
|
||||
"zk-prefixer": false,
|
||||
"random-note": false,
|
||||
"outline": true,
|
||||
"word-count": true,
|
||||
"slides": false,
|
||||
"audio-recorder": false,
|
||||
"workspaces": false,
|
||||
"file-recovery": true,
|
||||
"publish": false,
|
||||
"sync": true,
|
||||
"bases": true,
|
||||
"webviewer": false
|
||||
}
|
||||
22
.obsidian/graph.json
vendored
Normal file
22
.obsidian/graph.json
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"collapse-filter": true,
|
||||
"search": "",
|
||||
"showTags": false,
|
||||
"showAttachments": false,
|
||||
"hideUnresolved": false,
|
||||
"showOrphans": true,
|
||||
"collapse-color-groups": true,
|
||||
"colorGroups": [],
|
||||
"collapse-display": true,
|
||||
"showArrow": false,
|
||||
"textFadeMultiplier": 0,
|
||||
"nodeSizeMultiplier": 1,
|
||||
"lineSizeMultiplier": 1,
|
||||
"collapse-forces": true,
|
||||
"centerStrength": 0.518713248970312,
|
||||
"repelStrength": 10,
|
||||
"linkStrength": 1,
|
||||
"linkDistance": 250,
|
||||
"scale": 2.704243964018608,
|
||||
"close": false
|
||||
}
|
||||
3
.obsidian/snippets/hide-tittle.css
vendored
Normal file
3
.obsidian/snippets/hide-tittle.css
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.inline-title {
|
||||
display: none !important;
|
||||
}
|
||||
8
.obsidian/themes/Minimal/manifest.json
vendored
Normal file
8
.obsidian/themes/Minimal/manifest.json
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Minimal",
|
||||
"version": "8.1.2",
|
||||
"minAppVersion": "1.9.0",
|
||||
"author": "@kepano",
|
||||
"authorUrl": "https://twitter.com/kepano",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/kepano"
|
||||
}
|
||||
2251
.obsidian/themes/Minimal/theme.css
vendored
Normal file
2251
.obsidian/themes/Minimal/theme.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -26,7 +26,7 @@ If you are viewing on GitHub, you can view this repo on my self-hosted instance
|
||||
## 🚀 Services, Applications & Deployments
|
||||
### Infrastructure
|
||||
- [**Proxmox VE**](docs/infrastructure/proxmox-ve.md) - Type 1 hypervisor
|
||||
- **Kubernetes** - Container orchestration
|
||||
- [**Kubernetes**](docs/infrastructure/kubernetes.md) - Container orchestration
|
||||
- **Docker** - Containerisation
|
||||
|
||||
### Networking
|
||||
|
||||
16
docs/infrastructure/kubernetes.md
Normal file
16
docs/infrastructure/kubernetes.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# Kubernetes
|
||||
"[Kubernetes](https://kubernetes.io/docs/concepts/overview/), also known as K8s, is an open source system for automating deployment, scaling, and management of containerized applications." - [kubernetes.io](https://kubernetes.io/)
|
||||
## Nodes
|
||||
### Control Planes
|
||||
|
||||
| Name | IP | CPU | RAM (GB) | |
|
||||
| --------- | ----------- | --- | -------- | --- |
|
||||
| k3s-cp-01 | 10.20.40.11 | | 8 | |
|
||||
| k3s-cp-02 | 10.20.40.12 | | 8 | |
|
||||
| k3s-cp-03 | 10.20.40.13 | | 8 | |
|
||||
### Workers
|
||||
| Name | IP | CPU | RAM (GB) | |
|
||||
| ------------- | ----------- | --- | -------- | --- |
|
||||
| k3s-worker-01 | 10.20.40.21 | | 48 | |
|
||||
| k3s-worker-02 | 10.20.40.22 | | 16 | |
|
||||
| k3s-worker-03 | 10.20.40.23 | | 16 | |
|
||||
Reference in New Issue
Block a user