feat: initial commit

This commit is contained in:
2019-12-17 20:32:14 +01:00
commit a538ee369f
14 changed files with 1209 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: auth0mock
spec:
replicas: 1
selector:
matchLabels:
app: auth0mock
template:
metadata:
labels:
app: auth0mock
spec:
containers:
- name: auth0mock
image: registry.gitlab.com/unboundsoftware/shiny/auth0mock:latest
imagePullPolicy: "IfNotPresent"
resources:
requests:
memory: 200Mi
limits:
memory: 300Mi
ports:
- containerPort: 3333
readinessProbe:
httpGet:
port: 3333
path: .well-known/jwks.json
---
apiVersion: v1
kind: Service
metadata:
name: auth0mock
labels:
app: auth0mock
spec:
ports:
- port: 3333
selector:
app: auth0mock
type: ClusterIP