Compare commits
No commits in common. "435597f9f1e9a9f51df1842e9a86a51e84947e25" and "c4998279d578522ad6d543685513f2a409d1c994" have entirely different histories.
435597f9f1
...
c4998279d5
|
@ -10,4 +10,3 @@ hydra:
|
||||||
login_url: "%env(string:HYDRA_DISPATCHER_OIDC_LOGIN_URL)%"
|
login_url: "%env(string:HYDRA_DISPATCHER_OIDC_LOGIN_URL)%"
|
||||||
consent_url: "%env(string:HYDRA_DISPATCHER_OIDC_CONSENT_URL)%"
|
consent_url: "%env(string:HYDRA_DISPATCHER_OIDC_CONSENT_URL)%"
|
||||||
logout_url: "%env(string:HYDRA_DISPATCHER_OIDC_LOGOUT_URL)%"
|
logout_url: "%env(string:HYDRA_DISPATCHER_OIDC_LOGOUT_URL)%"
|
||||||
attributes_rewrite_configuration: []
|
|
||||||
|
|
|
@ -10,8 +10,6 @@ configMapGenerator:
|
||||||
literals:
|
literals:
|
||||||
- APP_ENV=prod
|
- APP_ENV=prod
|
||||||
- APP_DEBUG=false
|
- APP_DEBUG=false
|
||||||
- PHP_FPM_MEMORY_LIMIT=256m
|
|
||||||
- NGINX_APP_SERVER_LISTEN=80
|
|
||||||
- HYDRA_ADMIN_BASE_URL=http://hydra-dispatcher
|
- HYDRA_ADMIN_BASE_URL=http://hydra-dispatcher
|
||||||
- OIC_AUTHORIZE_ENDPOINT=https://oidc-idp/api/v1/authorize
|
- OIC_AUTHORIZE_ENDPOINT=https://oidc-idp/api/v1/authorize
|
||||||
- OIDC_TOKEN_ENDPOINT=https://oidc-idp/api/v1/token
|
- OIDC_TOKEN_ENDPOINT=https://oidc-idp/api/v1/token
|
||||||
|
@ -26,10 +24,10 @@ configMapGenerator:
|
||||||
- CLIENT_SECRET_FC=MyClientSecret
|
- CLIENT_SECRET_FC=MyClientSecret
|
||||||
- COOKIE_PATH=/
|
- COOKIE_PATH=/
|
||||||
- TRUSTED_PROXIES=127.0.0.1,REMOTE_ADDR
|
- TRUSTED_PROXIES=127.0.0.1,REMOTE_ADDR
|
||||||
# - name: hydra-dispatcher-apps
|
- name: hydra-dispatcher-apps
|
||||||
# behavior: merge
|
behavior: merge
|
||||||
# files:
|
files:
|
||||||
# - apps.yaml=./files/hydra/oidc.yaml
|
- ./files/hydra/oidc.yaml
|
||||||
|
|
||||||
patchesJson6902:
|
patchesJson6902:
|
||||||
- target:
|
- target:
|
||||||
|
|
|
@ -17,70 +17,13 @@ spec:
|
||||||
io.kompose.service: hydra-oidc
|
io.kompose.service: hydra-oidc
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: hydra-oidc-php-fpm
|
- name: hydra-oidc
|
||||||
image: reg.cadoles.com/cadoles/hydra-oidc-base:2023.11.17-develop.1657.761e035
|
image: reg.cadoles.com/cadoles/hydra-oidc-v1:v0.0.0-170-g485b138
|
||||||
imagePullPolicy: Always
|
|
||||||
args: ["/usr/sbin/php-fpm81", "-F", "-e"]
|
|
||||||
readinessProbe:
|
|
||||||
exec:
|
|
||||||
command:
|
|
||||||
- sh
|
|
||||||
- -c
|
|
||||||
- test -f /etc/php81/php-fpm.d/www.conf
|
|
||||||
livenessProbe:
|
|
||||||
exec:
|
|
||||||
command:
|
|
||||||
- php
|
|
||||||
- bin/console
|
|
||||||
- -V
|
|
||||||
initialDelaySeconds: 10
|
|
||||||
periodSeconds: 30
|
|
||||||
env:
|
|
||||||
- name: PHP_FPM_LISTEN
|
|
||||||
value: 127.0.0.1:9000
|
|
||||||
- name: PHP_MEMORY_LIMIT
|
|
||||||
value: 128m
|
|
||||||
- name: PHP_FPM_MEMORY_LIMIT
|
|
||||||
value: 128m
|
|
||||||
envFrom:
|
envFrom:
|
||||||
- configMapRef:
|
- configMapRef:
|
||||||
name: hydra-oidc-env
|
name: hydra-oidc-env
|
||||||
resources: {}
|
|
||||||
|
|
||||||
- image: reg.cadoles.com/cadoles/hydra-oidc-base:2023.11.17-develop.1657.761e035
|
|
||||||
imagePullPolicy: Always
|
|
||||||
name: hydra-oidc-nginx
|
|
||||||
args: ["/usr/sbin/nginx"]
|
|
||||||
readinessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /healthy
|
|
||||||
port: 80
|
|
||||||
initialDelaySeconds: 5
|
|
||||||
timeoutSeconds: 5
|
|
||||||
periodSeconds: 10
|
|
||||||
livenessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /healthy
|
|
||||||
port: 80
|
|
||||||
initialDelaySeconds: 15
|
|
||||||
timeoutSeconds: 5
|
|
||||||
periodSeconds: 15
|
|
||||||
envFrom:
|
|
||||||
- configMapRef:
|
|
||||||
name: hydra-oidc-env
|
|
||||||
env:
|
|
||||||
- name: NGINX_APP_UPSTREAM_BACKEND_SERVER
|
|
||||||
value: 127.0.0.1:9000
|
|
||||||
- name: NGINX_APP_ROOT
|
|
||||||
value: "/public/"
|
|
||||||
- name: NGINX_APP_PHP_INDEX
|
|
||||||
value: "/index.php"
|
|
||||||
- name: NGINX_ERROR_LOG_LEVEL
|
|
||||||
value: "warn"
|
|
||||||
- name: NGINX_APP_PHP_NON_FILE_PATTERN
|
|
||||||
value: "^/index\\.php(/|$)"
|
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 80
|
||||||
resources: {}
|
resources: {}
|
||||||
restartPolicy: Always
|
restartPolicy: Always
|
||||||
|
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
sql_login:
|
|
||||||
login_column_name: mail
|
|
||||||
password_column_name: password
|
|
||||||
salt_column_name: salt
|
|
||||||
table_name: user
|
|
||||||
data_to_fetch:
|
|
||||||
- mail
|
|
|
@ -1,23 +0,0 @@
|
||||||
apiVersion: kustomize.config.k8s.io/v1alpha1
|
|
||||||
kind: Component
|
|
||||||
|
|
||||||
resources:
|
|
||||||
- ./resources/hydra-sql-service.yaml
|
|
||||||
- ./resources/hydra-sql-deployment.yaml
|
|
||||||
|
|
||||||
configMapGenerator:
|
|
||||||
- name: hydra-sql-env
|
|
||||||
literals:
|
|
||||||
- ISSUER_URL="http://localhost:8000"
|
|
||||||
- BASE_URL='http://localhost:8080'
|
|
||||||
- HYDRA_ADMIN_BASE_URL='http://hydra:4445/admin'
|
|
||||||
- APP_LOCALES="fr,en"
|
|
||||||
- HASH_ALGO_LEGACY="sha256, bcrypt"
|
|
||||||
- SECURITY_PATTERN="password,salt,pepper"
|
|
||||||
- DSN_REMOTE_DATABASE="pgsql:host='postgres';port=5432;dbname=lasql"
|
|
||||||
- DB_USER="makeMeASecret"
|
|
||||||
- DB_PASSWORD="makeMeASecret"
|
|
||||||
- PEPPER="MakeMeABigSecret"
|
|
||||||
- name: sql-login-config
|
|
||||||
files:
|
|
||||||
- ./files/sql_login.yaml
|
|
|
@ -1,100 +0,0 @@
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
io.kompose.service: hydra-sql
|
|
||||||
name: hydra-sql
|
|
||||||
spec:
|
|
||||||
replicas: 1
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
io.kompose.service: hydra-sql
|
|
||||||
strategy:
|
|
||||||
type: Recreate
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
io.kompose.service: hydra-sql
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- name: hydra-sql-fpm
|
|
||||||
image: reg.cadoles.com/cadoles/hydra-sql-base:0.0.1
|
|
||||||
imagePullPolicy: Always
|
|
||||||
args: ["/usr/sbin/php-fpm81", "-F", "-e"]
|
|
||||||
readinessProbe:
|
|
||||||
exec:
|
|
||||||
command:
|
|
||||||
- sh
|
|
||||||
- -c
|
|
||||||
- test -f /etc/php81/php-fpm.d/www.conf
|
|
||||||
livenessProbe:
|
|
||||||
exec:
|
|
||||||
command:
|
|
||||||
- php
|
|
||||||
- bin/console
|
|
||||||
- -V
|
|
||||||
initialDelaySeconds: 10
|
|
||||||
periodSeconds: 30
|
|
||||||
resources: {}
|
|
||||||
envFrom:
|
|
||||||
- configMapRef:
|
|
||||||
name: hydra-sql-env
|
|
||||||
env:
|
|
||||||
- name: PHP_FPM_LISTEN
|
|
||||||
value: 127.0.0.1:9000
|
|
||||||
- name: PHP_MEMORY_LIMIT
|
|
||||||
value: 128m
|
|
||||||
- name: PHP_FPM_MEMORY_LIMIT
|
|
||||||
value: 128m
|
|
||||||
- name: PHP_FPM_LOG_LEVEL
|
|
||||||
value: warning
|
|
||||||
volumeMounts:
|
|
||||||
- name: sql-login-config
|
|
||||||
mountPath: "/app/config/sql_login_configuration/sql_login.yaml"
|
|
||||||
subPath: "sql_login.yaml"
|
|
||||||
|
|
||||||
- name: hydra-sql-nginx
|
|
||||||
image: reg.cadoles.com/cadoles/hydra-sql-base:0.0.1
|
|
||||||
imagePullPolicy: Always
|
|
||||||
args: ["/usr/sbin/nginx"]
|
|
||||||
readinessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /health
|
|
||||||
port: 8080
|
|
||||||
initialDelaySeconds: 5
|
|
||||||
timeoutSeconds: 5
|
|
||||||
periodSeconds: 10
|
|
||||||
livenessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /health
|
|
||||||
port: 8080
|
|
||||||
initialDelaySeconds: 15
|
|
||||||
timeoutSeconds: 5
|
|
||||||
periodSeconds: 15
|
|
||||||
envFrom:
|
|
||||||
- configMapRef:
|
|
||||||
name: hydra-sql-env
|
|
||||||
env:
|
|
||||||
- name: NGINX_APP_UPSTREAM_BACKEND_SERVER
|
|
||||||
value: 127.0.0.1:9000
|
|
||||||
- name: NGINX_APP_ROOT
|
|
||||||
value: "/public"
|
|
||||||
- name: NGINX_APP_PHP_INDEX
|
|
||||||
value: "/index.php"
|
|
||||||
- name: NGINX_ERROR_LOG_LEVEL
|
|
||||||
value: "warn"
|
|
||||||
- name: NGINX_APP_PHP_NON_FILE_PATTERN
|
|
||||||
value: "^/index\\.php(/|$)"
|
|
||||||
resources: {}
|
|
||||||
ports:
|
|
||||||
- containerPort: 8080
|
|
||||||
volumeMounts:
|
|
||||||
- name: sql-login-config
|
|
||||||
mountPath: "/app/config/sql_login_configuration/sql_login.yaml"
|
|
||||||
subPath: "sql_login.yaml"
|
|
||||||
volumes:
|
|
||||||
- name: sql-login-config
|
|
||||||
configMap:
|
|
||||||
name: sql-login-config
|
|
||||||
|
|
||||||
restartPolicy: Always
|
|
|
@ -1,14 +0,0 @@
|
||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
io.kompose.service: hydra-sql
|
|
||||||
name: hydra-sql
|
|
||||||
spec:
|
|
||||||
ports:
|
|
||||||
- name: hydra-sql
|
|
||||||
port: 8080
|
|
||||||
selector:
|
|
||||||
io.kompose.service: hydra-sql
|
|
||||||
status:
|
|
||||||
loadBalancer: {}
|
|
|
@ -9,4 +9,3 @@ components:
|
||||||
- ./components/hydra-cnpg-database
|
- ./components/hydra-cnpg-database
|
||||||
- ./components/hydra-oidc
|
- ./components/hydra-oidc
|
||||||
- ./components/hydra-saml
|
- ./components/hydra-saml
|
||||||
- ./components/hydra-sql
|
|
||||||
|
|
|
@ -10,8 +10,6 @@ configMapGenerator:
|
||||||
literals:
|
literals:
|
||||||
- APP_ENV=prod
|
- APP_ENV=prod
|
||||||
- APP_DEBUG=false
|
- APP_DEBUG=false
|
||||||
- PHP_FPM_MEMORY_LIMIT=256m
|
|
||||||
- NGINX_APP_SERVER_LISTEN=80
|
|
||||||
- HYDRA_BASE_URL=http://hydra:4444
|
- HYDRA_BASE_URL=http://hydra:4444
|
||||||
- HYDRA_ADMIN_BASE_URL=http://hydra:4445
|
- HYDRA_ADMIN_BASE_URL=http://hydra:4445
|
||||||
- HYDRA_REWRITE_ISSUER=yes
|
- HYDRA_REWRITE_ISSUER=yes
|
||||||
|
@ -23,4 +21,4 @@ configMapGenerator:
|
||||||
- APP_LOCALES=fr,en
|
- APP_LOCALES=fr,en
|
||||||
- name: hydra-dispatcher-apps
|
- name: hydra-dispatcher-apps
|
||||||
files:
|
files:
|
||||||
- apps.yaml=./files/hydra/default.yaml
|
- ./files/hydra/default.yaml
|
||||||
|
|
|
@ -17,75 +17,20 @@ spec:
|
||||||
io.kompose.service: hydra-dispatcher
|
io.kompose.service: hydra-dispatcher
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: hydra-dispatcher-php-fpm
|
- name: hydra-dispatcher
|
||||||
image: reg.cadoles.com/cadoles/hydra-dispatcher-base:2023.11.17-develop.1408.ad93359
|
image: reg.cadoles.com/cadoles/hydra-dispatcher-v1:v0.0.0-238-g7236416
|
||||||
args: ["/usr/sbin/php-fpm81", "-F", "-e"]
|
|
||||||
readinessProbe:
|
|
||||||
exec:
|
|
||||||
command:
|
|
||||||
- sh
|
|
||||||
- -c
|
|
||||||
- test -f /etc/php81/php-fpm.d/www.conf
|
|
||||||
livenessProbe:
|
|
||||||
exec:
|
|
||||||
command:
|
|
||||||
- php
|
|
||||||
- bin/console
|
|
||||||
- -V
|
|
||||||
initialDelaySeconds: 10
|
|
||||||
periodSeconds: 30
|
|
||||||
env:
|
|
||||||
- name: PHP_FPM_LISTEN
|
|
||||||
value: 127.0.0.1:9000
|
|
||||||
- name: PHP_MEMORY_LIMIT
|
|
||||||
value: 128m
|
|
||||||
- name: PHP_FPM_MEMORY_LIMIT
|
|
||||||
value: 128m
|
|
||||||
envFrom:
|
envFrom:
|
||||||
- configMapRef:
|
- configMapRef:
|
||||||
name: hydra-dispatcher-env
|
name: hydra-dispatcher-env
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /app/config/hydra
|
- mountPath: /var/www/config/hydra
|
||||||
name: hydra-dispatcher-apps
|
name: hydra-dispatcher-apps
|
||||||
resources: {}
|
|
||||||
|
|
||||||
- image: reg.cadoles.com/cadoles/hydra-dispatcher-base:2023.11.17-develop.1408.ad93359
|
|
||||||
imagePullPolicy: Always
|
|
||||||
name: hydra-dispatcher-nginx
|
|
||||||
args: ["/usr/sbin/nginx"]
|
|
||||||
readinessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /health
|
|
||||||
port: 80
|
|
||||||
initialDelaySeconds: 5
|
|
||||||
timeoutSeconds: 5
|
|
||||||
periodSeconds: 10
|
|
||||||
livenessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /health
|
|
||||||
port: 80
|
|
||||||
initialDelaySeconds: 15
|
|
||||||
timeoutSeconds: 5
|
|
||||||
periodSeconds: 15
|
|
||||||
envFrom:
|
|
||||||
- configMapRef:
|
|
||||||
name: hydra-dispatcher-env
|
|
||||||
env:
|
|
||||||
- name: NGINX_APP_UPSTREAM_BACKEND_SERVER
|
|
||||||
value: 127.0.0.1:9000
|
|
||||||
- name: NGINX_APP_ROOT
|
|
||||||
value: "/public/"
|
|
||||||
- name: NGINX_APP_PHP_INDEX
|
|
||||||
value: "/index.php"
|
|
||||||
- name: NGINX_ERROR_LOG_LEVEL
|
|
||||||
value: "warn"
|
|
||||||
- name: NGINX_APP_PHP_NON_FILE_PATTERN
|
|
||||||
value: "^/index\\.php(/|$)"
|
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 80
|
||||||
resources: {}
|
resources: {}
|
||||||
restartPolicy: Always
|
restartPolicy: Always
|
||||||
volumes:
|
volumes:
|
||||||
- name: hydra-dispatcher-apps
|
- name: hydra-dispatcher-apps
|
||||||
configMap:
|
configMap:
|
||||||
name: hydra-dispatcher-apps
|
name: hydra-dispatcher-apps
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue