This commit is contained in:
2025-06-07 11:02:50 +02:00
parent a0218379c8
commit f07589ce4a
2 changed files with 156 additions and 0 deletions

View File

@@ -10,3 +10,22 @@ spec:
- name: _name
image: _image
endsnippet
snippet tpl_ing "ingress template" b
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: _name
spec:
rules:
- host: "_hostname"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: _service
port:
number: _port
endsnippet