84 lines
1.8 KiB
YAML
84 lines
1.8 KiB
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: auth-proxy
|
|
namespace: inlets
|
|
annotations:
|
|
kube-1password: mr6spkkx7n3memkbute6ojaarm
|
|
kube-1password/vault: Kubernetes
|
|
type: Opaque
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: auth-proxy
|
|
namespace: inlets
|
|
labels:
|
|
app: auth-proxy
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: auth-proxy
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: auth-proxy
|
|
spec:
|
|
containers:
|
|
- args:
|
|
- --cookie-secure=false
|
|
- --provider=oidc
|
|
- --provider-display-name=Auth0
|
|
- --upstream=http://inlets.inlets.svc.cluster.local
|
|
- --http-address=$(HOST_IP):8080
|
|
- --email-domain=*
|
|
- --pass-basic-auth=false
|
|
- --pass-access-token=false
|
|
- --oidc-issuer-url=https://marcusnoble.eu.auth0.com/
|
|
- --cookie-secret=KDGD6rrK6cBmryyZ4wcJ9xAUNW9AQNFT
|
|
- --cookie-expire=336h0m0s
|
|
env:
|
|
- name: HOST_IP
|
|
valueFrom:
|
|
fieldRef:
|
|
apiVersion: v1
|
|
fieldPath: status.podIP
|
|
- name: OAUTH2_PROXY_CLIENT_ID
|
|
valueFrom:
|
|
secretKeyRef:
|
|
key: username
|
|
name: auth-proxy
|
|
- name: OAUTH2_PROXY_CLIENT_SECRET
|
|
valueFrom:
|
|
secretKeyRef:
|
|
key: password
|
|
name: auth-proxy
|
|
image: quay.io/oauth2-proxy/oauth2-proxy:v6.1.1
|
|
name: oauth-proxy
|
|
ports:
|
|
- containerPort: 8080
|
|
protocol: TCP
|
|
resources:
|
|
limits:
|
|
memory: 50Mi
|
|
requests:
|
|
memory: 50Mi
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: auth-proxy
|
|
namespace: inlets
|
|
labels:
|
|
app: auth-proxy
|
|
spec:
|
|
ports:
|
|
- name: http
|
|
port: 80
|
|
protocol: TCP
|
|
targetPort: 8080
|
|
selector:
|
|
app: auth-proxy
|
|
type: ClusterIP
|