-
-
Save matthewpalmer/741dc7a4c418318f85f2fa8da7de2ea1 to your computer and use it in GitHub Desktop.
# Create a pod containing the PHP-FPM application (my-php-app) | |
# and nginx, each mounting the `shared-files` volume to their | |
# respective /var/www/html directories. | |
kind: Pod | |
apiVersion: v1 | |
metadata: | |
name: phpfpm-nginx-example | |
spec: | |
volumes: | |
# Create the shared files volume to be used in both pods | |
- name: shared-files | |
emptyDir: {} | |
# Add the ConfigMap we declared above as a volume for the pod | |
- name: nginx-config-volume | |
configMap: | |
name: nginx-config | |
containers: | |
# Our PHP-FPM application | |
- image: my-php-app:1.0.0 | |
name: app | |
volumeMounts: | |
- name: shared-files | |
mountPath: /var/www/html | |
# Important! After this container has started, the PHP files | |
# in our Docker image aren't in the shared volume. We need to | |
# get them into the shared volume. If we tried to write directly | |
# to this volume from our Docker image the files wouldn't appear | |
# in the nginx container. | |
# | |
# So, after the container has started, copy the PHP files from this | |
# container's local filesystem (/app -- added via the Docker image) | |
# to the shared volume, which is mounted at /var/www/html. | |
lifecycle: | |
postStart: | |
exec: | |
command: ["/bin/sh", "-c", "cp -r /app/. /var/www/html"] | |
# Our nginx container, which uses the configuration declared above, | |
# along with the files shared with the PHP-FPM app. | |
- image: nginx:1.7.9 | |
name: nginx | |
volumeMounts: | |
- name: shared-files | |
mountPath: /var/www/html | |
- name: nginx-config-volume | |
mountPath: /etc/nginx/nginx.conf | |
subPath: nginx.conf |
If you have large amounts of files, the simplest solution (although not very dockery) is to put both nginx and php-fpm on the same container and use something like supervisor. People don't like it, but the solution proposed here is a no-go when folders are large. Besides it being wasteful too.
For Drupal S3 module is now in Beta mode, and I have tested it out on our lower environments. It works fine. There is no need to copy all the files each time a container is created. Are you running composer install before creating the image or after the pod is created?
@JulienBreux - how many files do you have in /var/www/html ? In our custom Drupal code, we are reaching upwards of 50K files, which takes somewhere around 10min to copy. It makes Kubernetes a no go unfortunately.
One index.php
! Because our statics assets are on another public URL.
Since I keep seeing this same exact emptyDir
technique (which gets initialized via initContainers
/ postStart
) everywhere, let me share an idea that I’m bouncing around in my head that I may experiment with later:
- Single
Dockerfile
with multistage build - Stage 1: Have a stage based on
nginx
, e.g.FROM nginx:1.2.3 AS nginx
(or in my case Apache, because: legacy) - Stage 2: Have a stage based on
php
, e.g.FROM php:7-fpm AS php
- In each stage copy files needed into each image via
COPY
- During your build, just use
--target=stage
to build just that stage and also tag it separately (e.g.docker build . --target=nginx -t gcr.io/org/image:nginx
)
Now you have two separate images, both already coming pre-bundled with their respective dependencies. Then you can run both totally separate pods/deployments (or as a sidecars if you really want). Plus, context is preserved and your single Dockerfile
very clearly defines in plain readable terms that it generates two separate build artifacts using stages/targets.
The issue is that we have a combination of a few problems, basically all centered around depending on the same set of files:
- A web server of some sort that depends on (and serves) static files (e.g.
nginx
orapache
) - PHP scripts which often coexist adjacent to these static files which must also run in a separate process (
php-fpm
)
The approach I’m seeing others taking to this (because it is intuitive) is to bundle all of our project-specific assets together in one place (e.g. into the php-fpm
image) and then try to copy them over at the point of delivery (e.g. in the Kubernetes pod). What I’m suggesting instead is to flip that to the build stage instead, since it’s already deterministic… i.e. we already know what’s going go be mounted/copied into each image head of time. Why repeat this work every single time your pod has to go live when it’s not necessary? Just ship it with each container. 🤔
p.s. I like this (running nginx
and php-fpm
independently instead of using some process to bundle both into the same image) because it allows Kubernetes to do it’s job and manage and scale the processes independently, as it was built. Plus I assume it’s better tested.
Thank you for this 🙏
Apparently, there are several approaches given the currently-available methods for mounting. I plan to move forward with the initContainers
method. In my case, the startup time for copying files is ~20
seconds (and will not grow much), which is bearable.
I wanted to share my approach for others to see and critique:
I am solely mounting a shared directory between the initContainer
and the nginx
container. My php
container already has the files, so no need to copy. I have an .env
file secret mounted with environment values. Choosing to not mount the emptyDir
volume in my php
container maintains more separation - my .env
secrets will only exist in the one container, limiting spread.
spec:
containers:
- name: php
image: my/app:latest
...
lifecycle:
postStart:
exec:
command:
- "/bin/sh"
- "-c"
- "cp /path/to/secrets/.env /var/www/html"
volumeMounts:
- name: app-env
mountPath: /path/to/secrets
readOnly: true
- name: nginx
image: nginx:alpine
...
volumeMounts:
- name: web-root
mountPath: /var/www/html
readOnly: true
...
initContainers:
- name: setup-web-root
command:
- "/bin/sh"
- "-c"
- "cp -r /var/www/html/. /app"
image: my/app:latest
imagePullPolicy: Always
volumeMounts:
- name: web-root
mountPath: /app
volumes:
- name: web-root
emptyDir: {}
- name: app-env
secret:
secretName: app-env-secret
items:
- key: .env
path: .env
@lstellway methods work perfectly. But I wanted to know is there any issue running both nginx and php-fpm together?
@rsidhaarth This doc at least provides a reasonable argument against running them both together: https://cloud.google.com/architecture/best-practices-for-building-containers#package_a_single_app_per_container
I still feel like a good middle ground here might be to have a single Dockerfile
(or multiple Dockerfile
’s) based on the same core app image containing all your app files which then is used as a COPY --from
source for your separate php-fpm
and nginx
daemon images. But, I know the practicality of that may depend heavily on your use case (e.g. build times). Personally I like shifting that to build time, since granted the images will be larger and the build time may increase (e.g. new nginx
image for each deploy) but then the result is more granular and easily reproducible and less prone to ephemeral failures at runtime or lower startup cost (since files are already there). But that’s just my 2c since it’s hypothetical for me (right now I still roll php-apache
which integrates PHP already in an Apache server container via mod_php
, lol 😅)
@patricknelson thanks for your reply
I have already done that in the docker swarm setup. I got both nginx and php-fpm in a single image and deployed them there. If that is the best way, I will do the same for k8s.
Also, for persistent storage, what method is recommended?
Longhorn, NFS, GFS etc
I am trying to use K8s for Magento 2 setup.
Also, for persistent storage, what method is recommended?
I guess whatever the default is from your provider. Are you talking about shared storage? If so, I've used NFS in Google Cloud which is Filestore for shared persistent volumes (minimum is 1TB basic HDD @ $204/mo for a single instance). Or I guess you could roll our own GlusterFS or NFS server. Otherwise, just go with whatever the default is.
https://kubernetes.io/docs/concepts/storage/persistent-volumes/
Yes, I am speaking about shared storage that supports ReadWriteMany, and my provider needs to provide one. So I have to build my one storage. For Magento 2, the recommended is GFS, and I am exploring Longhorn now.
BTW, I just tried to deploy both nginx and php-fpm as a single images and now my deployment file is straightforward, and execution is also faster.
- there is no need of initcontainer
- there is no need for copy commands as the image has all the files
- deployment is faster as it just going to pull one image and deploys one container
Next up to test/validate your cluster, do some pre-prod testing. Scale it up and do some load testing! Pound it with a bunch of traffic (e.g. Gatling). Then, maybe delete a line of code on one of the containers, see how easy it is for you to see/diagnose errors when only some of your requests are failing. When your new persistent storage is setup, put a 3mb .jpg
on one of the containers in the shared volume and see if it’s available on all the others and/or how long it takes to sync.
… good luck!
For the record, I have since moved towards bundling PHP + the web server in the same image.
I believe I followed TrafeX/docker-php-nginx as an example.
For the record, I have since moved towards bundling PHP + the web server in the same image.
I believe I followed TrafeX/docker-php-nginx as an example.
Thanks for sharing this. I will make use of it :)
Same, that looks like a mature and well implemented image @lstellway.
One of those times I really wish Github Gists had reactions. That way we could just react with 👍 or whatever instead of spamming the thread. 😁
The easy solution to this is not to copy stuff. Build an nginx container with your static resources in it; use a cloud storage solution to store dynamically uploaded content. see: https://carnage.github.io/2019/10/opencfp-on-gke for a full example