Update master branch with latest devs from unstable branch #34
|
@ -0,0 +1,22 @@
|
||||||
|
[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}
|
|
@ -26,3 +26,6 @@ configMapGenerator:
|
||||||
- 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
|
||||||
|
|
|
@ -55,10 +55,17 @@ 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-caddy
|
||||||
image: reg.cadoles.com/cadoles/hydra-sql-base:2024.7.25-develop.1026.5bfd899
|
image: reg.cadoles.com/cadoles/hydra-sql-base:2024.7.25-develop.1026.5bfd899
|
||||||
|
@ -108,5 +115,8 @@ 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
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
[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}
|
|
@ -29,3 +29,6 @@ configMapGenerator:
|
||||||
- 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
|
|
@ -41,12 +41,19 @@ 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:
|
securityContext:
|
||||||
runAsNonRoot: true
|
runAsNonRoot: true
|
||||||
|
@ -105,3 +112,6 @@ spec:
|
||||||
- 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
|
Loading…
Reference in New Issue