apps
adguard
files
finance
homeassistant
immich
media
monitoring
nextcloud
ntfy
recipes
rss
syncthing
todos
whoami
base
deployment.yaml
ingress.yaml
kustomization.yaml
overlays
infrastructure
kluster-deployments
.gitignore
.gitmodules
README.md
renovate.json
54 lines
833 B
YAML
54 lines
833 B
YAML
kind: Namespace
|
|
apiVersion: v1
|
|
metadata:
|
|
name: whoami
|
|
|
|
---
|
|
kind: Deployment
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: whoami
|
|
namespace: whoami
|
|
labels:
|
|
app: traefiklabs
|
|
name: whoami
|
|
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: traefiklabs
|
|
task: whoami
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: traefiklabs
|
|
task: whoami
|
|
spec:
|
|
containers:
|
|
- name: whoami
|
|
image: traefik/whoami
|
|
ports:
|
|
- containerPort: 80
|
|
resources:
|
|
requests:
|
|
cpu: "5m"
|
|
memory: "5Mi"
|
|
limits:
|
|
cpu: "10m"
|
|
memory: "10Mi"
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: whoami
|
|
namespace: whoami
|
|
|
|
spec:
|
|
ports:
|
|
- name: http
|
|
port: 80
|
|
selector:
|
|
app: traefiklabs
|
|
task: whoami
|