feat: add hydra-oidc component

This commit is contained in:
2023-02-01 14:02:39 +01:00
parent 51535d76bf
commit 2a479a1f86
6 changed files with 89 additions and 1 deletions

View File

@ -0,0 +1,29 @@
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
io.kompose.service: hydra-oidc
name: hydra-oidc
spec:
replicas: 1
selector:
matchLabels:
io.kompose.service: hydra-oidc
strategy:
type: Recreate
template:
metadata:
labels:
io.kompose.service: hydra-oidc
spec:
containers:
- name: hydra-oidc
image: reg.cadoles.com/cadoles/hydra-oidc-v1:v0.0.0-159-gd91e77b
envFrom:
- configMapRef:
name: hydra-oidc-env
ports:
- containerPort: 80
resources: {}
restartPolicy: Always