diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-11-08 07:31:58 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-11-08 07:31:58 +0100 |
| commit | c17f96129b7afadbe9424e3712c8c50ee2f3a797 (patch) | |
| tree | 83ddab47438b06ead740aed4a913eed31d70cc20 /srcs/wordpress/wordpress.yaml | |
| parent | 69460305ca9a4408397d61e3bd9bfb55a1fb6827 (diff) | |
| download | ft_services-c17f96129b7afadbe9424e3712c8c50ee2f3a797.tar.gz ft_services-c17f96129b7afadbe9424e3712c8c50ee2f3a797.tar.bz2 ft_services-c17f96129b7afadbe9424e3712c8c50ee2f3a797.zip | |
Fixing wordpress, phpmyadmin and nginx not restarting, Fixing dashboard not launching
Diffstat (limited to 'srcs/wordpress/wordpress.yaml')
| -rw-r--r-- | srcs/wordpress/wordpress.yaml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/srcs/wordpress/wordpress.yaml b/srcs/wordpress/wordpress.yaml index 5cd9323..17e260c 100644 --- a/srcs/wordpress/wordpress.yaml +++ b/srcs/wordpress/wordpress.yaml @@ -21,6 +21,14 @@ spec: - image: wordpress-service imagePullPolicy: Never name: cacharle-wordpress-container + livenessProbe: + exec: + command: + - /bin/sh + - -c + - ps aux | grep -v grep | grep php-fpm + initialDelaySeconds: 5 + periodSeconds: 5 --- |
