kube/whoami/application.yml

92 lines
1.8 KiB
YAML
Raw Normal View History

2022-08-16 09:40:54 +00:00
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: whoami
spec:
replicas: 1
revisionHistoryLimit: 0
selector:
matchLabels:
app: whoami
template:
metadata:
labels:
app: whoami
spec:
2024-08-24 21:21:24 +00:00
securityContext:
runAsUser: 65534
runAsGroup: 65534
2022-08-16 09:40:54 +00:00
containers:
2024-08-24 21:17:34 +00:00
- name: whoami
image: traefik/whoami
2024-08-24 21:25:49 +00:00
env:
- name: WHOAMI_PORT_NUMBER
value: "8080"
2024-08-24 21:17:34 +00:00
resources:
limits:
cpu: 10m
2024-08-24 21:22:54 +00:00
memory: 15Mi
2024-08-24 21:17:34 +00:00
requests:
cpu: 1m
memory: 2Mi
2024-08-24 21:21:24 +00:00
securityContext:
readOnlyRootFilesystem: true
2024-08-24 21:17:34 +00:00
ports:
2024-08-24 21:25:49 +00:00
- containerPort: 8080
2024-08-24 21:21:24 +00:00
protocol: TCP
2022-08-16 09:40:54 +00:00
---
apiVersion: v1
kind: Service
metadata:
name: whoami
labels:
app: whoami
spec:
type: ClusterIP
selector:
app: whoami
ports:
- name: whoami-http
port: 80
2024-08-24 21:25:49 +00:00
targetPort: 8080
2022-08-16 09:40:54 +00:00
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: whoami
annotations:
external-dns.alpha.kubernetes.io/target: traefik.k-space.ee
kubernetes.io/ingress.class: traefik
traefik.ingress.kubernetes.io/router.entrypoints: websecure
traefik.ingress.kubernetes.io/router.tls: "true"
2024-08-03 01:02:06 +00:00
traefik.ingress.kubernetes.io/router.middlewares: whoami-whoami@kubernetescrd
2022-08-16 09:40:54 +00:00
spec:
rules:
- host: "whoami.k-space.ee"
http:
paths:
- pathType: Prefix
path: /
backend:
service:
name: whoami
port:
number: 80
2024-08-03 01:02:06 +00:00
tls:
- hosts:
- "*.k-space.ee"
2023-06-29 11:48:52 +00:00
---
2024-08-03 01:02:06 +00:00
apiVersion: codemowers.cloud/v1beta1
kind: OIDCMiddlewareClient
2023-06-29 11:48:52 +00:00
metadata:
name: whoami
spec:
displayName: Who-Am-I
uri: 'https://whoami.k-space.ee'
headerMapping:
email: Remote-Email
groups: Remote-Groups
name: Remote-Name
user: Remote-Username