Compare commits

..

26 Commits

Author SHA1 Message Date
Laurent Gourvenec 02a6cdd035 cosmetic(oidc-test): rename CM oidc-test to oidc-test-env 2023-12-11 11:19:25 +01:00
wpetit ad1c9d2bc3 feat: add oidc-test app component 2023-12-11 10:46:19 +01:00
wpetit ddbedf45ee fix(hydra-ldap): update werther secret name references 2023-12-11 10:46:19 +01:00
wpetit fec08c3d50 fix(hydra-ldap): update werther container port name 2023-12-11 10:46:19 +01:00
wpetit 2db406470a feat(hydra-ldap): rename resources from werther to hydra-ldap 2023-12-11 10:46:19 +01:00
Laurent Gourvenec 60af2f7a7f feat(werther): update image 2023-12-11 10:46:19 +01:00
Laurent Gourvenec d557eae1c2 feat(werther): adding a timeout for LDAP connection 2023-12-11 10:46:19 +01:00
Laurent Gourvenec d43645dcdd feat(component): adding werther 2023-12-11 10:46:19 +01:00
wpetit c24f40d45f Merge pull request 'Utilisations des images symfony-containers' (#2) from symfony-containers into develop
Reviewed-on: #2
2023-11-17 17:06:17 +01:00
wpetit 93895720d9 feat(hydra-dispatcher): update image tag 2023-11-17 17:03:40 +01:00
Matthieu Lamalle c0865d9bf6 update hydra-dispatcher probes and image ref 2023-11-08 09:44:08 +01:00
Matthieu Lamalle 87bbdcdd55 add probes 2023-11-08 09:44:08 +01:00
Matthieu Lamalle 61cc316e1c add hydra-sql deployment 2023-11-08 09:44:08 +01:00
Philippe Caseiro 24b69b0146 fix(saml): fixing port name longer than 15c 2023-11-08 09:44:08 +01:00
Philippe Caseiro 62b63c2e87 feat(hydra-sql): adding new hydra login app 2023-11-08 09:43:46 +01:00
Matthieu Lamalle 1cbfa69e70 set correct tag for hydra-oidc 2023-11-08 09:43:46 +01:00
Matthieu Lamalle 56b8240e59 add imagepullpolicy rule 2023-11-08 09:43:46 +01:00
Matthieu Lamalle 3a125101e1 remove loginapp default app configmap 2023-11-08 09:43:46 +01:00
Matthieu Lamalle 738fa46970 update config default apps filename 2023-11-08 09:43:32 +01:00
Matthieu Lamalle ff2bd411ab set default configuration 2023-11-08 09:43:09 +01:00
Matthieu Lamalle 1f24a92dc3 correciton config 2023-11-08 09:43:09 +01:00
Matthieu Lamalle 6920de878e set hydra-oidc side container 2023-11-08 09:42:47 +01:00
Matthieu Lamalle aab1770988 set hydra-dispatcher side container 2023-11-08 09:42:47 +01:00
Matthieu Lamalle 9e897057a3 set hydra-dispatcher side container 2023-11-08 09:42:47 +01:00
Matthieu Lamalle da756c5e07 set correct path for hydra-dispatcher conf 2023-11-08 09:42:47 +01:00
Matthieu Lamalle a21be87c46 Utilisation images symfony-containers 2023-11-08 09:42:47 +01:00
38 changed files with 254 additions and 490 deletions

View File

@ -29,7 +29,7 @@ vars:
fieldref: fieldref:
fieldpath: metadata.name fieldpath: metadata.name
patches: patchesJson6902:
- target: - target:
group: apps group: apps
version: v1 version: v1
@ -42,9 +42,3 @@ patches:
kind: Job kind: Job
name: hydra-migrate name: hydra-migrate
path: patches/hydra-migrate-job.yaml path: patches/hydra-migrate-job.yaml
- target:
group: batch
version: v1
kind: CronJob
name: hydra-janitor
path: patches/hydra-janitor-cronjob.yaml

View File

@ -1,21 +0,0 @@
- op: add
path: "/spec/jobTemplate/spec/template/spec/containers/0/env/-"
value:
name: HYDRA_DATABASE_USER
valueFrom:
secretKeyRef:
name: hydra-postgres-user
key: username
- op: add
path: "/spec/jobTemplate/spec/template/spec/containers/0/env/-"
value:
name: HYDRA_DATABASE_PASSWORD
valueFrom:
secretKeyRef:
name: hydra-postgres-user
key: password
- op: add
path: "/spec/jobTemplate/spec/template/spec/containers/0/env/-"
value:
name: DSN
value: "postgres://$(HYDRA_DATABASE_USER):$(HYDRA_DATABASE_PASSWORD)@$(HYDRA_DATABASE_SERVICE_NAME)-rw:5432/hydra?sslmode=disable"

View File

@ -2,6 +2,7 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
name: hydra-ldap name: hydra-ldap
namespace: default
labels: labels:
app.kubernetes.io/name: hydra-ldap app.kubernetes.io/name: hydra-ldap
app.kubernetes.io/version: "v1.2.2" app.kubernetes.io/version: "v1.2.2"

View File

@ -2,7 +2,7 @@ apiVersion: v1
kind: Service kind: Service
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-ldap io.kompose.service: hydra-ldap
name: hydra-ldap name: hydra-ldap
spec: spec:
type: ClusterIP type: ClusterIP

View File

@ -2,15 +2,11 @@ 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:
labels:
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
@ -30,7 +26,14 @@ 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
- 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-dispatcher-env
path: patches/hydra-dispatcher-env.yaml

View File

@ -0,0 +1,9 @@
- 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

View File

@ -2,23 +2,23 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-oidc io.kompose.service: hydra-oidc
name: hydra-oidc name: hydra-oidc
spec: spec:
replicas: 1 replicas: 1
selector: selector:
matchLabels: matchLabels:
app.kubernetes.io/name: hydra-oidc io.kompose.service: hydra-oidc
strategy: strategy:
type: Recreate type: Recreate
template: template:
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-oidc io.kompose.service: hydra-oidc
spec: spec:
containers: containers:
- name: hydra-oidc-php-fpm - name: hydra-oidc-php-fpm
image: reg.cadoles.com/cadoles/hydra-oidc-base:2024.4.2-develop.1349.c4711f6 image: reg.cadoles.com/cadoles/hydra-oidc-base:2023.11.17-develop.1657.761e035
imagePullPolicy: Always imagePullPolicy: Always
args: ["/usr/sbin/php-fpm81", "-F", "-e"] args: ["/usr/sbin/php-fpm81", "-F", "-e"]
readinessProbe: readinessProbe:
@ -46,57 +46,41 @@ spec:
- configMapRef: - configMapRef:
name: hydra-oidc-env name: hydra-oidc-env
resources: {} resources: {}
securityContext:
runAsNonRoot: true
runAsGroup: 1000
runAsUser: 1000
- name: hydra-oidc-caddy - image: reg.cadoles.com/cadoles/hydra-oidc-base:2023.11.17-develop.1657.761e035
image: reg.cadoles.com/cadoles/hydra-oidc-base:2024.4.2-develop.1349.c4711f6
imagePullPolicy: Always imagePullPolicy: Always
args: name: hydra-oidc-nginx
[ args: ["/usr/sbin/nginx"]
"/usr/sbin/caddy",
"run",
"--adapter",
"caddyfile",
"--config",
"/etc/caddy/Caddyfile",
]
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /healthy path: /healthy
port: 8080 port: 80
initialDelaySeconds: 5 initialDelaySeconds: 5
timeoutSeconds: 5 timeoutSeconds: 5
periodSeconds: 10 periodSeconds: 10
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /healthy path: /healthy
port: 8080 port: 80
initialDelaySeconds: 15 initialDelaySeconds: 15
timeoutSeconds: 5 timeoutSeconds: 5
periodSeconds: 15 periodSeconds: 15
ports:
- containerPort: 8080
name: http
envFrom: envFrom:
- configMapRef: - configMapRef:
name: hydra-oidc-env name: hydra-oidc-env
env: env:
- name: CADDY_APP_UPSTREAM_BACKEND_SERVER - name: NGINX_APP_UPSTREAM_BACKEND_SERVER
value: 127.0.0.1:9000 value: 127.0.0.1:9000
- name: CADDY_HTTPS_PORT - name: NGINX_APP_ROOT
value: "8443" value: "/public/"
- name: CADDY_HTTP_PORT - name: NGINX_APP_PHP_INDEX
value: "8080" value: "/index.php"
- name: CADDY_DATA_FS - name: NGINX_ERROR_LOG_LEVEL
value: "/tmp/caddy" value: "warn"
- name: CADDY_APP_ROOT_PUBLIC - name: NGINX_APP_PHP_NON_FILE_PATTERN
value: "/app/public/" value: "^/index\\.php(/|$)"
ports:
- containerPort: 8080
resources: {} resources: {}
securityContext:
runAsNonRoot: true
runAsGroup: 1000
runAsUser: 1000
restartPolicy: Always restartPolicy: Always

View File

@ -2,14 +2,13 @@ apiVersion: v1
kind: Service kind: Service
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-oidc io.kompose.service: hydra-oidc
name: hydra-oidc name: hydra-oidc
spec: spec:
ports: ports:
- name: http - name: hydra-oidc
port: 80 port: 80
targetPort: http
selector: selector:
app.kubernetes.io/name: hydra-oidc io.kompose.service: hydra-oidc
status: status:
loadBalancer: {} loadBalancer: {}

View File

@ -2,28 +2,28 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-saml-remote-user io.kompose.service: hydra-saml-remote-user
name: hydra-saml-remote-user name: hydra-saml-remote-user
spec: spec:
replicas: 1 replicas: 1
selector: selector:
matchLabels: matchLabels:
app.kubernetes.io/name: hydra-saml-remote-user io.kompose.service: hydra-saml-remote-user
strategy: strategy:
type: Recreate type: Recreate
template: template:
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-saml-remote-user io.kompose.service: hydra-saml-remote-user
spec: spec:
containers: containers:
- name: hydra-saml-remote-user - name: hydra-saml-remote-user
image: reg.cadoles.com/cadoles/hydra-remote-user-base:2023.12.11-develop.1523.5f14595 image: reg.cadoles.com/cadoles/hydra-remote-user-v1:v0.0.0-233-g64fcacc
envFrom: envFrom:
- configMapRef: - configMapRef:
name: hydra-saml-env name: hydra-saml-env
ports: ports:
- containerPort: 8080 - containerPort: 80
resources: {} resources: {}
restartPolicy: Always restartPolicy: Always
--- ---
@ -31,14 +31,13 @@ apiVersion: v1
kind: Service kind: Service
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-saml-remote-user io.kompose.service: hydra-saml-remote-user
name: hydra-saml-remote-user name: hydra-saml-remote-user
spec: spec:
ports: ports:
- name: http - name: http
port: 80 port: 80
targetPort: 8080
selector: selector:
app.kubernetes.io/name: hydra-saml-remote-user io.kompose.service: hydra-saml-remote-user
status: status:
loadBalancer: {} loadBalancer: {}

View File

@ -2,25 +2,25 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-saml-shibboleth-sp io.kompose.service: hydra-saml-shibboleth-sp
name: hydra-saml-shibboleth-sp name: hydra-saml-shibboleth-sp
spec: spec:
replicas: 1 replicas: 1
selector: selector:
matchLabels: matchLabels:
app.kubernetes.io/name: hydra-saml-shibboleth-sp io.kompose.service: hydra-saml-shibboleth-sp
strategy: strategy:
type: Recreate type: Recreate
template: template:
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-saml-shibboleth-sp io.kompose.service: hydra-saml-shibboleth-sp
spec: spec:
securityContext: securityContext:
fsGroup: 102 fsGroup: 102
containers: containers:
- name: hydra-saml-shibboleth-sp - name: hydra-saml-shibboleth-sp
image: reg.cadoles.com/cadoles/shibboleth-sp-v3:2023.12.12-develop.1039.49b85e1 image: reg.cadoles.com/cadoles/shibboleth-sp-v3:v0.0.0-233-g64fcacc
envFrom: envFrom:
- configMapRef: - configMapRef:
name: hydra-saml-env name: hydra-saml-env
@ -41,14 +41,14 @@ apiVersion: v1
kind: Service kind: Service
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-saml io.kompose.service: hydra-saml
name: hydra-saml name: hydra-saml
spec: spec:
ports: ports:
- name: http - name: http
port: 80 port: 80
selector: selector:
app.kubernetes.io/name: hydra-saml-shibboleth-sp io.kompose.service: hydra-saml-shibboleth-sp
status: status:
loadBalancer: {} loadBalancer: {}

View File

@ -1,22 +0,0 @@
[opcache]
; Determines if Zend OPCache is enabled
opcache.enable=1
; Determines if Zend OPCache is enabled for the CLI version of PHP
opcache.enable_cli=1
; The OPcache shared memory storage size.
opcache.memory_consumption=512
; The maximum number of keys (scripts) in the OPcache hash table.
; Only numbers between 200 and 1000000 are allowed.
opcache.max_accelerated_files=20000
; When disabled, you must reset the OPcache manually or restart the
; webserver for changes to the filesystem to take effect.
opcache.validate_timestamps=${OPCACHE_VALIDATE_TIMESTAMP}
; How often (in seconds) to check file timestamps for changes to the shared
; memory storage allocation. ("1" means validate once per second, but only
; once per request. "0" means always validate)
opcache.revalidate_freq=${OPCACHE_REVALIDATE_FREQ}

View File

@ -5,10 +5,6 @@ resources:
- ./resources/hydra-sql-service.yaml - ./resources/hydra-sql-service.yaml
- ./resources/hydra-sql-deployment.yaml - ./resources/hydra-sql-deployment.yaml
generatorOptions:
labels:
com.cadoles.forge.sso-kustom/session: redis
configMapGenerator: configMapGenerator:
- name: hydra-sql-env - name: hydra-sql-env
literals: literals:
@ -21,11 +17,7 @@ configMapGenerator:
- DSN_REMOTE_DATABASE="pgsql:host='postgres';port=5432;dbname=lasql" - DSN_REMOTE_DATABASE="pgsql:host='postgres';port=5432;dbname=lasql"
- DB_USER="makeMeASecret" - DB_USER="makeMeASecret"
- DB_PASSWORD="makeMeASecret" - DB_PASSWORD="makeMeASecret"
- REDIS_DSN="redis://redis:6379"
- PEPPER="MakeMeABigSecret" - PEPPER="MakeMeABigSecret"
- name: sql-login-config - name: sql-login-config
files: files:
- ./files/sql_login.yaml - ./files/sql_login.yaml
- name: hydra-sql-php-ini
files:
- ./files/03_base.ini

View File

@ -2,26 +2,23 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-sql io.kompose.service: hydra-sql
name: hydra-sql name: hydra-sql
spec: spec:
replicas: 1 replicas: 1
selector: selector:
matchLabels: matchLabels:
app.kubernetes.io/name: hydra-sql io.kompose.service: hydra-sql
strategy: strategy:
type: RollingUpdate type: Recreate
rollingUpdate:
maxSurge: 25%
maxUnavailable: 25%
template: template:
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-sql io.kompose.service: hydra-sql
spec: spec:
containers: containers:
- name: hydra-sql-fpm - name: hydra-sql-fpm
image: reg.cadoles.com/cadoles/hydra-sql-base:2024.9.24-develop.1300.fe4d683 image: reg.cadoles.com/cadoles/hydra-sql-base:0.0.1
imagePullPolicy: Always imagePullPolicy: Always
args: ["/usr/sbin/php-fpm81", "-F", "-e"] args: ["/usr/sbin/php-fpm81", "-F", "-e"]
readinessProbe: readinessProbe:
@ -39,10 +36,6 @@ spec:
initialDelaySeconds: 10 initialDelaySeconds: 10
periodSeconds: 30 periodSeconds: 30
resources: {} resources: {}
securityContext:
runAsNonRoot: true
runAsGroup: 1000
runAsUser: 1000
envFrom: envFrom:
- configMapRef: - configMapRef:
name: hydra-sql-env name: hydra-sql-env
@ -55,22 +48,15 @@ spec:
value: 128m value: 128m
- name: PHP_FPM_LOG_LEVEL - name: PHP_FPM_LOG_LEVEL
value: warning value: warning
- name: OPCACHE_VALIDATE_TIMESTAMP
value: "0"
- name: OPCACHE_REVALIDATE_FREQ
value: "0"
volumeMounts: volumeMounts:
- name: sql-login-config - name: sql-login-config
mountPath: "/app/config/sql_login_configuration/sql_login.yaml" mountPath: "/app/config/sql_login_configuration/sql_login.yaml"
subPath: "sql_login.yaml" subPath: "sql_login.yaml"
- name: hydra-sql-php-ini
mountPath: /etc/php81/conf.d/03_base.ini
subPath: 03_base.ini
- name: hydra-sql-caddy - name: hydra-sql-nginx
image: reg.cadoles.com/cadoles/hydra-sql-base:2024.9.24-develop.1300.fe4d683 image: reg.cadoles.com/cadoles/hydra-sql-base:0.0.1
imagePullPolicy: Always imagePullPolicy: Always
args: ["/usr/sbin/caddy", "run", "--adapter", "caddyfile", "--config", "/etc/caddy/Caddyfile"] args: ["/usr/sbin/nginx"]
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /health path: /health
@ -89,24 +75,19 @@ spec:
- configMapRef: - configMapRef:
name: hydra-sql-env name: hydra-sql-env
env: env:
- name: CADDY_APP_UPSTREAM_BACKEND_SERVER - name: NGINX_APP_UPSTREAM_BACKEND_SERVER
value: 127.0.0.1:9000 value: 127.0.0.1:9000
- name: CADDY_HTTPS_PORT - name: NGINX_APP_ROOT
value: "8443" value: "/public"
- name: CADDY_HTTP_PORT - name: NGINX_APP_PHP_INDEX
value: "8080" value: "/index.php"
- name: CADDY_DATA_FS - name: NGINX_ERROR_LOG_LEVEL
value: "/tmp/caddy" value: "warn"
- name: CADDY_APP_ROOT_PUBLIC - name: NGINX_APP_PHP_NON_FILE_PATTERN
value: "/app/public/" value: "^/index\\.php(/|$)"
resources: {} resources: {}
securityContext:
runAsNonRoot: true
runAsGroup: 1000
runAsUser: 1000
ports: ports:
- containerPort: 8080 - containerPort: 8080
name: http
volumeMounts: volumeMounts:
- name: sql-login-config - name: sql-login-config
mountPath: "/app/config/sql_login_configuration/sql_login.yaml" mountPath: "/app/config/sql_login_configuration/sql_login.yaml"
@ -115,8 +96,5 @@ spec:
- name: sql-login-config - name: sql-login-config
configMap: configMap:
name: sql-login-config name: sql-login-config
- name: hydra-sql-php-ini
configMap:
name: hydra-sql-php-ini
restartPolicy: Always restartPolicy: Always

View File

@ -2,14 +2,13 @@ apiVersion: v1
kind: Service kind: Service
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-sql io.kompose.service: hydra-sql
name: hydra-sql name: hydra-sql
spec: spec:
ports: ports:
- name: http - name: hydra-sql
port: 80 port: 8080
targetPort: http
selector: selector:
app.kubernetes.io/name: hydra-sql io.kompose.service: hydra-sql
status: status:
loadBalancer: {} loadBalancer: {}

View File

@ -1,22 +0,0 @@
# Composant `redis`
### Description
Les applications `hydra-dispatcher`, `hydra-sql` et `hydra-oidc` stockent dorénavant le cache et les sessions utilisateur sur un serveur Redis.
Le DSN du serveur est défini dans leur variable d'environnement respective `REDIS_DSN`.
Les applications peuvent utiliser le mode `sentinel` de redis
Il est donc nécessaire donc nécessaire de disposer d'un serveur Redis pour utiliser ces applications.
### Principe général de fonctionnement
Un `RedisFailOver` crée un cluster redis en mode sentinel avec 3 réplicats chacun.
### Personnalisation
Via des `patches` sur la ressource `ConfigMap` via un label selector `com.cadoles.forge.sso-kustom/session=redis` il est possible de modifier la valeur du `REDIS_DSN`.
|Clé|Description|Exemple|
|---|-----------|-------|
|`REDIS_DSN`| DSN du cluster Redis | `redis://rfs-sso-redis:26379?&redis_sentinel=mymaster`

View File

@ -1,11 +0,0 @@
apiVersion: kustomize.config.k8s.io/v1alpha1
kind: Component
resources:
- ./resources/redis-failover.yaml
patches:
- path: ./patches/hydra-apps.yaml
target:
kind: ConfigMap
labelSelector: "com.cadoles.forge.sso-kustom/session=redis"

View File

@ -1,3 +0,0 @@
- op: replace
path: "/data/REDIS_DSN"
value: "redis://rfs-sso-redis:26379?&redis_sentinel=mymaster"

View File

@ -1,21 +0,0 @@
apiVersion: databases.spotahome.com/v1
kind: RedisFailover
metadata:
name: sso-redis
spec:
sentinel:
replicas: 3
resources:
requests:
cpu: 100m
limits:
memory: 100Mi
redis:
replicas: 3
resources:
requests:
cpu: 100m
memory: 100Mi
limits:
cpu: 400m
memory: 500Mi

1
doc/README.md Normal file
View File

@ -0,0 +1 @@
# Documentation

View File

@ -15,7 +15,7 @@ L'exemple est actuellement déployé avec le composant `hydra-saml` uniquement.
2. Déployer les opérateurs nécessaires au déploiement 2. Déployer les opérateurs nécessaires au déploiement
``` ```
kubectl apply -k ./examples/k8s/kind/cluster --server-side kubectl kustomize --enable-helm ./examples/k8s/kind/cluster | kubectl apply -f -
``` ```
3. Déployer l'application 3. Déployer l'application

View File

@ -2,12 +2,19 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
resources: resources:
- ../../overlays/full - ../../overlays/base
- ./resources/ingress.yaml - ./resources/ingress.yaml
- ./resources/saml-idp.yaml - ./resources/saml-idp.yaml
- ./resources/self-signed-issuer.yaml - ./resources/self-signed-issuer.yaml
- ./resources/port-forwarder.yaml - ./resources/port-forwarder.yaml
components:
- ../../components/hydra-cnpg-database
- ../../components/oidc-test
#- ../../components/hydra-oidc
- ../../components/hydra-saml
patchesJson6902: patchesJson6902:
- target: - target:
version: v1 version: v1
@ -31,7 +38,7 @@ patchesJson6902:
path: patches/hydra-secret.yaml path: patches/hydra-secret.yaml
- target: - target:
version: v1 version: v1
kind: ConfigMap kind: Secret
name: oidc-test name: oidc-test
path: patches/oidc-test.yaml path: patches/oidc-test.yaml
- target: - target:

View File

@ -3,4 +3,4 @@
value: https://ssokustom/oauth2/callback value: https://ssokustom/oauth2/callback
- op: replace - op: replace
path: "/spec/postLogoutRedirectUris/0" path: "/spec/postLogoutRedirectUris/0"
value: https://ssokustom value: https://ssokustom/oauth2/callback

View File

@ -1,3 +1,6 @@
- op: replace
path: "/data/LOG_LEVEL"
value: 0
- op: replace - op: replace
path: "/data/OIDC_REDIRECT_URL" path: "/data/OIDC_REDIRECT_URL"
value: https://ssokustom/oauth2/callback value: https://ssokustom/oauth2/callback

View File

@ -2,19 +2,19 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
labels: labels:
app.kubernetes.io/name: port-forwarder io.kompose.service: port-forwarder
name: port-forwarder name: port-forwarder
spec: spec:
replicas: 1 replicas: 1
selector: selector:
matchLabels: matchLabels:
app.kubernetes.io/name: port-forwarder io.kompose.service: port-forwarder
strategy: strategy:
type: Recreate type: Recreate
template: template:
metadata: metadata:
labels: labels:
app.kubernetes.io/name: port-forwarder io.kompose.service: port-forwarder
spec: spec:
containers: containers:
- image: hpello/tcp-proxy:latest - image: hpello/tcp-proxy:latest
@ -42,7 +42,7 @@ apiVersion: v1
metadata: metadata:
name: ssokustom name: ssokustom
labels: labels:
app.kubernetes.io/name: port-forwarder io.kompose.service: port-forwarder
spec: spec:
ports: ports:
- name: https - name: https
@ -52,4 +52,4 @@ spec:
port: 80 port: 80
targetPort: 80 targetPort: 80
selector: selector:
app.kubernetes.io/name: port-forwarder io.kompose.service: port-forwarder

View File

@ -2,19 +2,19 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
labels: labels:
app.kubernetes.io/name: saml-idp io.kompose.service: saml-idp
name: saml-idp name: saml-idp
spec: spec:
replicas: 1 replicas: 1
selector: selector:
matchLabels: matchLabels:
app.kubernetes.io/name: saml-idp io.kompose.service: saml-idp
strategy: strategy:
type: Recreate type: Recreate
template: template:
metadata: metadata:
labels: labels:
app.kubernetes.io/name: saml-idp io.kompose.service: saml-idp
spec: spec:
containers: containers:
- image: kristophjunge/test-saml-idp:1.15 - image: kristophjunge/test-saml-idp:1.15
@ -35,7 +35,7 @@ apiVersion: v1
kind: Service kind: Service
metadata: metadata:
labels: labels:
app.kubernetes.io/name: saml-idp io.kompose.service: saml-idp
name: saml-idp name: saml-idp
spec: spec:
ports: ports:
@ -46,6 +46,6 @@ spec:
port: 8443 port: 8443
targetPort: 8443 targetPort: 8443
selector: selector:
app.kubernetes.io/name: saml-idp io.kompose.service: saml-idp
status: status:
loadBalancer: {} loadBalancer: {}

View File

@ -3,7 +3,6 @@ kind: Kustomization
resources: resources:
- https://github.com/jetstack/cert-manager/releases/download/v1.13.2/cert-manager.yaml - https://github.com/jetstack/cert-manager/releases/download/v1.13.2/cert-manager.yaml
- https://forge.cadoles.com/CadolesKube/c-kustom//base/cloudnative-pg-operator?ref=develop - https://forge.cadoles.com/CadolesKube/c-kustom//base/cloudnative-pg-operator?ref=develop
- https://forge.cadoles.com/CadolesKube/c-kustom//base/redis?ref=develop
- https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/kind/deploy.yaml - https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/kind/deploy.yaml
patchesJson6902: patchesJson6902:

View File

@ -1,5 +0,0 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ./overlays/base

View File

@ -14,5 +14,3 @@ components:
- ../../components/hydra-oidc - ../../components/hydra-oidc
- ../../components/hydra-saml - ../../components/hydra-saml
- ../../components/hydra-sql - ../../components/hydra-sql
- ../../components/oidc-test
- ../../components/redis

View File

@ -1,22 +0,0 @@
[opcache]
; Determines if Zend OPCache is enabled
opcache.enable=1
; Determines if Zend OPCache is enabled for the CLI version of PHP
opcache.enable_cli=1
; The OPcache shared memory storage size.
opcache.memory_consumption=512
; The maximum number of keys (scripts) in the OPcache hash table.
; Only numbers between 200 and 1000000 are allowed.
opcache.max_accelerated_files=20000
; When disabled, you must reset the OPcache manually or restart the
; webserver for changes to the filesystem to take effect.
opcache.validate_timestamps=${OPCACHE_VALIDATE_TIMESTAMP}
; How often (in seconds) to check file timestamps for changes to the shared
; memory storage allocation. ("1" means validate once per second, but only
; once per request. "0" means always validate)
opcache.revalidate_freq=${OPCACHE_REVALIDATE_FREQ}

View File

@ -5,10 +5,6 @@ resources:
- ./resources/hydra-dispatcher-deployment.yaml - ./resources/hydra-dispatcher-deployment.yaml
- ./resources/hydra-dispatcher-service.yaml - ./resources/hydra-dispatcher-service.yaml
generatorOptions:
labels:
com.cadoles.forge.sso-kustom/session: redis
configMapGenerator: configMapGenerator:
- name: hydra-dispatcher-env - name: hydra-dispatcher-env
literals: literals:
@ -25,10 +21,6 @@ configMapGenerator:
- COOKIE_PATH=/ - COOKIE_PATH=/
- DEFAULT_LOCALE=fr - DEFAULT_LOCALE=fr
- APP_LOCALES=fr,en - APP_LOCALES=fr,en
- REDIS_DSN="redis://redis:6379"
- name: hydra-dispatcher-apps - name: hydra-dispatcher-apps
files: files:
- apps.yaml=./files/hydra/default.yaml - apps.yaml=./files/hydra/default.yaml
- name: hydra-dispatcher-php-ini
files:
- ./files/03_base.ini

View File

@ -2,23 +2,23 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-dispatcher io.kompose.service: hydra-dispatcher
name: hydra-dispatcher name: hydra-dispatcher
spec: spec:
replicas: 1 replicas: 1
selector: selector:
matchLabels: matchLabels:
app.kubernetes.io/name: hydra-dispatcher io.kompose.service: hydra-dispatcher
strategy: strategy:
type: Recreate type: Recreate
template: template:
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-dispatcher io.kompose.service: hydra-dispatcher
spec: spec:
containers: containers:
- name: hydra-dispatcher-php-fpm - name: hydra-dispatcher-php-fpm
image: reg.cadoles.com/cadoles/hydra-dispatcher-base:2024.9.24-develop.1122.f88a5eb image: reg.cadoles.com/cadoles/hydra-dispatcher-base:2023.11.17-develop.1408.ad93359
args: ["/usr/sbin/php-fpm81", "-F", "-e"] args: ["/usr/sbin/php-fpm81", "-F", "-e"]
readinessProbe: readinessProbe:
exec: exec:
@ -41,47 +41,29 @@ spec:
value: 128m value: 128m
- name: PHP_FPM_MEMORY_LIMIT - name: PHP_FPM_MEMORY_LIMIT
value: 128m value: 128m
- name: OPCACHE_VALIDATE_TIMESTAMP
value: "0"
- name: OPCACHE_REVALIDATE_FREQ
value: "0"
envFrom: envFrom:
- configMapRef: - configMapRef:
name: hydra-dispatcher-env name: hydra-dispatcher-env
volumeMounts: volumeMounts:
- mountPath: /app/config/hydra - mountPath: /app/config/hydra
name: hydra-dispatcher-apps name: hydra-dispatcher-apps
- name: hydra-dispatcher-php-ini
mountPath: /etc/php81/conf.d/03_base.ini
subPath: 03_base.ini
resources: {} resources: {}
securityContext:
runAsNonRoot: true - image: reg.cadoles.com/cadoles/hydra-dispatcher-base:2023.11.17-develop.1408.ad93359
runAsGroup: 1000
runAsUser: 1000
- name: hydra-dispatcher-caddy
image: reg.cadoles.com/cadoles/hydra-dispatcher-base:2024.9.24-develop.1122.f88a5eb
imagePullPolicy: Always imagePullPolicy: Always
args: name: hydra-dispatcher-nginx
[ args: ["/usr/sbin/nginx"]
"/usr/sbin/caddy",
"run",
"--adapter",
"caddyfile",
"--config",
"/etc/caddy/Caddyfile",
]
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /health path: /health
port: 8080 port: 80
initialDelaySeconds: 5 initialDelaySeconds: 5
timeoutSeconds: 5 timeoutSeconds: 5
periodSeconds: 10 periodSeconds: 10
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /health path: /health
port: 8080 port: 80
initialDelaySeconds: 15 initialDelaySeconds: 15
timeoutSeconds: 5 timeoutSeconds: 5
periodSeconds: 15 periodSeconds: 15
@ -89,29 +71,21 @@ spec:
- configMapRef: - configMapRef:
name: hydra-dispatcher-env name: hydra-dispatcher-env
env: env:
- name: CADDY_APP_UPSTREAM_BACKEND_SERVER - name: NGINX_APP_UPSTREAM_BACKEND_SERVER
value: 127.0.0.1:9000 value: 127.0.0.1:9000
- name: CADDY_HTTPS_PORT - name: NGINX_APP_ROOT
value: "8443" value: "/public/"
- name: CADDY_HTTP_PORT - name: NGINX_APP_PHP_INDEX
value: "8080" value: "/index.php"
- name: CADDY_DATA_FS - name: NGINX_ERROR_LOG_LEVEL
value: "/tmp/caddy" value: "warn"
- name: CADDY_APP_ROOT_PUBLIC - name: NGINX_APP_PHP_NON_FILE_PATTERN
value: "/app/public/" value: "^/index\\.php(/|$)"
ports: ports:
- containerPort: 8080 - containerPort: 8080
name: http
resources: {} resources: {}
securityContext:
runAsNonRoot: true
runAsGroup: 1000
runAsUser: 1000
restartPolicy: Always restartPolicy: Always
volumes: volumes:
- name: hydra-dispatcher-apps - name: hydra-dispatcher-apps
configMap: configMap:
name: hydra-dispatcher-apps name: hydra-dispatcher-apps
- name: hydra-dispatcher-php-ini
configMap:
name: hydra-dispatcher-php-ini

View File

@ -2,14 +2,13 @@ apiVersion: v1
kind: Service kind: Service
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra-dispatcher io.kompose.service: hydra-dispatcher
name: hydra-dispatcher name: hydra-dispatcher
spec: spec:
ports: ports:
- name: http - name: http
port: 80 port: 80
targetPort: http
selector: selector:
app.kubernetes.io/name: hydra-dispatcher io.kompose.service: hydra-dispatcher
status: status:
loadBalancer: {} loadBalancer: {}

View File

@ -1,29 +1,22 @@
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
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

View File

@ -2,19 +2,19 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra io.kompose.service: hydra
name: hydra name: hydra
spec: spec:
replicas: 1 replicas: 1
selector: selector:
matchLabels: matchLabels:
app.kubernetes.io/name: hydra io.kompose.service: hydra
strategy: strategy:
type: Recreate type: Recreate
template: template:
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra io.kompose.service: hydra
spec: spec:
serviceAccountName: hydra-sa serviceAccountName: hydra-sa
initContainers: initContainers:

View File

@ -1,34 +0,0 @@
apiVersion: batch/v1
kind: CronJob
metadata:
name: hydra-janitor
labels:
app.kubernetes.io/name: hydra-janitor
spec:
concurrencyPolicy: Forbid
schedule: "0 */1 * * *"
jobTemplate:
spec:
template:
metadata:
labels:
app.kubernetes.io/name: hydra-janitor
spec:
restartPolicy: OnFailure
serviceAccountName: hydra-sa
containers:
- name: janitor
image: reg.cadoles.com/proxy_cache/oryd/hydra:v2.0.3
envFrom:
- configMapRef:
name: hydra-env
imagePullPolicy: IfNotPresent
command: ["hydra"]
env: []
args:
- janitor
- --read-from-env
- --grants
- --requests
- --tokens
resources: {}

View File

@ -2,11 +2,12 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
resources: resources:
- ./resources/hydra-maester-deployment.yaml - ./resources/hydra-maester-deployment.yaml
- ./resources/hydra-maester-rbac.yaml - ./resources/hydra-maester-rbac.yaml
- https://raw.githubusercontent.com/ory/k8s/v0.28.2/helm/charts/hydra-maester/crds/crd-oauth2clients.yaml
configMapGenerator: configMapGenerator:
- name: hydra-maester-env - name: hydra-maester-env
literals: literals:
- APP_ENV=prod - APP_ENV=prod
- APP_DEBUG=false - APP_DEBUG=false

View File

@ -2,7 +2,7 @@ apiVersion: v1
kind: Service kind: Service
metadata: metadata:
labels: labels:
app.kubernetes.io/name: hydra io.kompose.service: hydra
name: hydra name: hydra
spec: spec:
ports: ports:
@ -13,6 +13,6 @@ spec:
port: 4445 port: 4445
targetPort: hydra-admin targetPort: hydra-admin
selector: selector:
app.kubernetes.io/name: hydra io.kompose.service: hydra
status: status:
loadBalancer: {} loadBalancer: {}