Compare commits
4 Commits
v1.0.4-uns
...
v1.0.7-uns
Author | SHA1 | Date | |
---|---|---|---|
72a9932fc5 | |||
1060fdf4be | |||
45953d5531 | |||
29f539f7ab |
@ -2,15 +2,15 @@ apiVersion: kustomize.config.k8s.io/v1alpha1
|
|||||||
kind: Component
|
kind: Component
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
- ./resources/hydra-oidc-deployment.yaml
|
- ./resources/hydra-oidc-deployment.yaml
|
||||||
- ./resources/hydra-oidc-service.yaml
|
- ./resources/hydra-oidc-service.yaml
|
||||||
|
|
||||||
generatorOptions:
|
generatorOptions:
|
||||||
labels:
|
labels:
|
||||||
com.cadoles.forge.sso-kustom/session: redis
|
com.cadoles.forge.sso-kustom/session: redis
|
||||||
|
|
||||||
configMapGenerator:
|
configMapGenerator:
|
||||||
- name: hydra-oidc-env
|
- name: hydra-oidc-env
|
||||||
literals:
|
literals:
|
||||||
- APP_ENV=prod
|
- APP_ENV=prod
|
||||||
- APP_DEBUG=false
|
- APP_DEBUG=false
|
||||||
@ -31,14 +31,6 @@ configMapGenerator:
|
|||||||
- COOKIE_PATH=/
|
- COOKIE_PATH=/
|
||||||
- TRUSTED_PROXIES=127.0.0.1,REMOTE_ADDR
|
- TRUSTED_PROXIES=127.0.0.1,REMOTE_ADDR
|
||||||
- REDIS_DSN="redis://redis:6379"
|
- REDIS_DSN="redis://redis:6379"
|
||||||
# - name: hydra-dispatcher-apps
|
- HYDRA_DISPATCHER_OIDC_LOGIN_URL="http://hydra-oidc/login"
|
||||||
# behavior: merge
|
- HYDRA_DISPATCHER_OIDC_CONSENT_URL="http://hydra-oidc/consent"
|
||||||
# files:
|
- HYDRA_DISPATCHER_OIDC_LOGOUT_URL="http://hydra-oidc/logout"
|
||||||
# - apps.yaml=./files/hydra/oidc.yaml
|
|
||||||
|
|
||||||
patchesJson6902:
|
|
||||||
- target:
|
|
||||||
version: v1
|
|
||||||
kind: ConfigMap
|
|
||||||
name: hydra-oidc-env
|
|
||||||
path: patches/hydra-oidc-env.yaml
|
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
- op: replace
|
|
||||||
path: "/data/HYDRA_DISPATCHER_OIDC_LOGIN_URL"
|
|
||||||
value: http://hydra-oidc/login
|
|
||||||
- op: replace
|
|
||||||
path: "/data/HYDRA_DISPATCHER_OIDC_CONSENT_URL"
|
|
||||||
value: http://hydra-oidc/consent
|
|
||||||
- op: replace
|
|
||||||
path: "/data/HYDRA_DISPATCHER_OIDC_LOGOUT_URL"
|
|
||||||
value: http://hydra-oidc/logout
|
|
@ -54,14 +54,14 @@ spec:
|
|||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /healthy
|
path: /healthy
|
||||||
port: 80
|
port: 8080
|
||||||
initialDelaySeconds: 5
|
initialDelaySeconds: 5
|
||||||
timeoutSeconds: 5
|
timeoutSeconds: 5
|
||||||
periodSeconds: 10
|
periodSeconds: 10
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /healthy
|
path: /healthy
|
||||||
port: 80
|
port: 8080
|
||||||
initialDelaySeconds: 15
|
initialDelaySeconds: 15
|
||||||
timeoutSeconds: 5
|
timeoutSeconds: 5
|
||||||
periodSeconds: 15
|
periodSeconds: 15
|
||||||
|
@ -7,7 +7,7 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
ports:
|
ports:
|
||||||
- name: hydra-oidc
|
- name: hydra-oidc
|
||||||
port: 80
|
port: 8080
|
||||||
selector:
|
selector:
|
||||||
io.kompose.service: hydra-oidc
|
io.kompose.service: hydra-oidc
|
||||||
status:
|
status:
|
||||||
|
@ -1,23 +1,29 @@
|
|||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
|
|
||||||
|
images:
|
||||||
|
- name: reg.cadoles.com/proxy_cache/oryd/hydra
|
||||||
|
newTag: v2.1.2
|
||||||
|
- name: reg.cadoles.com/proxy_cache/oryd/hydra-maester
|
||||||
|
newTag: v0.0.32-amd64
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
- ./resources/hydra-deployment.yaml
|
- ./resources/hydra-deployment.yaml
|
||||||
- ./resources/hydra-service.yaml
|
- ./resources/hydra-service.yaml
|
||||||
- ./resources/hydra-role.yaml
|
- ./resources/hydra-role.yaml
|
||||||
- ./resources/hydra-rolebinding.yaml
|
- ./resources/hydra-rolebinding.yaml
|
||||||
- ./resources/hydra-serviceaccount.yaml
|
- ./resources/hydra-serviceaccount.yaml
|
||||||
- ./resources/hydra-migrate-job.yaml
|
- ./resources/hydra-migrate-job.yaml
|
||||||
- ./resources/hydra-maester
|
- ./resources/hydra-maester
|
||||||
- ./resources/hydra-janitor-cronjob.yaml
|
- ./resources/hydra-janitor-cronjob.yaml
|
||||||
|
|
||||||
secretGenerator:
|
secretGenerator:
|
||||||
- name: hydra-secret
|
- name: hydra-secret
|
||||||
literals:
|
literals:
|
||||||
- SECRETS_SYSTEM=ThisShouldBeAbsolutelyChanged
|
- SECRETS_SYSTEM=ThisShouldBeAbsolutelyChanged
|
||||||
|
|
||||||
configMapGenerator:
|
configMapGenerator:
|
||||||
- name: hydra-env
|
- name: hydra-env
|
||||||
literals:
|
literals:
|
||||||
- URLS_SELF_ISSUER=http://localhost:4444
|
- URLS_SELF_ISSUER=http://localhost:4444
|
||||||
- URLS_LOGIN=http://hydra-login-app/login
|
- URLS_LOGIN=http://hydra-login-app/login
|
||||||
|
Reference in New Issue
Block a user