can I get any hint reagrding this challange?
been struglling for two days
Fix issue with LAMP Environment in Kubernetes
You need to check for the Service ports.
Then check the Pod logs; you might see issues with the ENV names used in the httpd-php container and the one defined in the Deployment.
Hey @Santosh_KodeKloud , thank you for your reponse.
When I fix the deployment’s env - the pod restarts, and the index.php file is deleted.
any hints on how to tackle this?
You don’t need to recreate the Pod or the Deployment. Once the ENVs in the container are updated, restart the php-fpm service:
service php-fpm restart
thanks! finally made it