IBM / drupal-nginx-php-kubernetes

Demonstration of a set of NGINX and PHP-FPM containers running Drupal deployed to Kubernetes on the IBM Container Service.
Apache License 2.0
51 stars 35 forks source link

Update NGINX configuration for Drupal #45

Closed krook closed 6 years ago

krook commented 7 years ago

This link has good info: https://www.nginx.com/resources/wiki/start/topics/recipes/drupal

Other resources:

Steps required would be:

You might also have to do these steps if the above ones don't work.

jzaccone commented 7 years ago

kubectl rolling-update is the "old" way to do rolling updates via replicasets (before deployments came around). This command works:

kubectl set image deployment/simple-nginx simple-nginx=jzaccone/simple-nginx:latest
krook commented 6 years ago

@odrodrig demonstrated this as part of the build pipeline. @jzaccone also is working on Ingress in another issue.