This commit is contained in:
Beppe
2025-03-21 11:44:08 +01:00
parent 85202f0e44
commit a0218379c8
2 changed files with 15 additions and 0 deletions

3
readme.md Normal file
View File

@@ -0,0 +1,3 @@
# Snippets
a collection of my snippets

12
yaml.snippets Normal file
View File

@@ -0,0 +1,12 @@
snippet tpl_pod "pod template" b
apiVersion: v1
kind: Pod
metadata:
name: _name
labels:
- _key: _value
spec:
containers:
- name: _name
image: _image
endsnippet