Initial VPS operations handbook

This commit is contained in:
windyboy
2026-08-03 12:26:42 +08:00
commit b73125e5bc
97 changed files with 3641 additions and 0 deletions
@@ -0,0 +1,26 @@
apiVersion: v1
kind: Namespace
metadata:
name: {{ matrix_namespace }}
---
apiVersion: v1
kind: ResourceQuota
metadata:
name: matrix-system-quota
namespace: {{ matrix_namespace }}
spec:
hard:
{{ matrix_resource_quota | to_nice_yaml(indent=4) | indent(4, true) }}
---
apiVersion: v1
kind: LimitRange
metadata:
name: matrix-system-defaults
namespace: {{ matrix_namespace }}
spec:
limits:
- type: Container
defaultRequest:
{{ matrix_limit_range.defaultRequest | to_nice_yaml(indent=8) | indent(8, true) }}
default:
{{ matrix_limit_range.default | to_nice_yaml(indent=8) | indent(8, true) }}