-
Notifications
You must be signed in to change notification settings - Fork 25
/
4-darker.yaml
83 lines (83 loc) · 1.99 KB
/
4-darker.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# HTTPS auth with OIDC
kind: Deployment
apiVersion: apps/v1
metadata:
name: darker
labels:
app: cats
type: darker
spec:
replicas: 1
selector:
matchLabels:
app: cats
type: darker
template:
metadata:
labels:
app: cats
type: darker
spec:
containers:
- name: cats
image: unfor19/docker-cats:latest
imagePullPolicy: IfNotPresent
resources:
requests:
cpu: 25m
memory: 64Mi
limits:
cpu: 50m
memory: 128Mi
env:
- name: APP_NAME
value: dark
- name: FROM_AUTHOR
value: darker
- name: CLIENT_ID
valueFrom:
secretKeyRef:
name: google-credentials
key: google_client_id
ports:
- containerPort: 8080
---
apiVersion: v1
kind: Service
metadata:
name: darker
spec:
ports:
- name: http
targetPort: 8080
port: 80
selector:
app: cats
type: darker
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: darker
annotations:
cert-manager.io/cluster-issuer: tls-ca-issuer # https://cert-manager.io/docs/usage/ingress/
nginx.ingress.kubernetes.io/auth-url: https://oidc.kubemaster.me/oauth2/auth
nginx.ingress.kubernetes.io/auth-signin: https://oidc.kubemaster.me/oauth2/start?rd=https://$host$escaped_request_uri
nginx.ingress.kubernetes.io/auth-response-headers: "Authorization, X-Auth-Request-User, X-Auth-Request-Email, X-Auth-Request-Preferred-Username, X-Auth-Request-Access-Token"
spec:
tls:
- hosts:
- darker.kubemaster.me
secretName: darker-tls-secret
ingressClassName: nginx
rules:
- host: darker.kubemaster.me
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: darker
port:
number: 80