Skip to content

Latest commit

 

History

History
124 lines (102 loc) · 4.98 KB

gcp_filestore_migration.md

File metadata and controls

124 lines (102 loc) · 4.98 KB

Replace file storage with Google's Filestore volume.

This example will change storage for Drupal public files. Repeat the same steps for other volumes, such as private files.

This will first add a new mount for the new Google filestore to /app/web/sites/default/files-new where the files from the existing object storage public-files mount /app/web/sites/default/files are copied from and then the new filestore is mounted to the existing /app/web/sites/default/files mount at the same time when the old public-files mount is disabled.

!! LIMITATIONS, PITFALLS

  1. Do not delete the old public-files section, nor change their names. Kubernetes tracks the volumes by these names.
  2. Do not change storage size after the first deployment. You will end up in an error state: Ignoring the PVC: didn't find a plugin capable of expanding the volume; waiting for an external controller to process this PVC.
  3. The provisioned storage limit is not enforced. The application can expand to use all the available storage regardless of the provisioned size. If you run out of free space on volume, contact cluster administrator for its expansion.
  4. The provisioned storage is not guaranteed. You may allocate more than the NFS share's total size. The share may also not have enough storage space left to actually accommodate the request.

Changing storage for an existing environment:

  1. Add a new location which uses the new storage. We will extend default values from https://github.com/wunderio/charts/blob/039f29d9d507813d40a182fa2320adfd6a3db06a/drupal/values.yaml#L355

    mounts:
      public-files-filestore:
        enabled: true
        storage: 10G
        mountPath: /app/web/sites/default/files-new
        storageClassName: nfs-shared
  2. Deploy

  3. Find and exec into the shell deployment to get root access

    kubectl --namespace=<namespace> get deployments | grep shell
    kubectl --namespace=<namespace> exec -it deployment/<shell deployment name> -- sh
  4. Copy public files from the old location to the new one

    4.1. Simple way, for small amounts of files:

    rsync --info=progress2 -az /app/web/sites/default/files/ /app/web/sites/default/files-new/

    4.2. Advanced way, for large amounts of files:

    cd /app/web/sites/default/files
    find . -maxdepth 2 -mindepth 2 -type d | xargs -P15 -I% rsync --relative --info=progress2 -az % /app/web/sites/default/files-new/ \
      && find . -maxdepth 2 -mindepth 2 -type f  | xargs -P15 -I% rsync --relative --info=progress2 -az % /app/web/sites/default/files-new/ \
      && find . -maxdepth 1 -mindepth 1 -type f  | xargs -P15 -I% rsync --relative --info=progress2 -az % /app/web/sites/default/files-new/
    
    # Verify file count matches in both directories
    find /app/web/sites/default/files/ | wc -l \
      && find /app/web/sites/default/files-new/ | wc -l
  5. Set ownership and permissions for the new location

    dir=/app/web/sites/default/files-new
    chown -R www-data:www-data "$dir"
    chmod 770 "$dir"
    find "$dir" -type d -print0 | xargs -0 --max-args=100 chmod 770
    find "$dir" -type f -print0 | xargs -0 --max-args=100 chmod 660
  6. Update the mount path for the new mount, disable the old one

    mounts:
      public-files-filestore:
        enabled: true
        storage: 10G
        mountPath: /app/web/sites/default/files
        storageClassName: nfs-shared
      public-files:
        enabled: false
        mountPath: /app/web/sites/default/files-old
  7. Add the original Drupal file paths as environment variables (ignore the private files path if the project doesn't have private file system enabled)

    php:
      env:
        PRIVATE_FILES_PATH: /app/private
        PUBLIC_FILES_PATH: /app/web/sites/default/files
  8. To run PHP as user www-data, add this line in your silta/php.Dockerfile right after the COPY line

    USER www-data

    Dockerfile example of a project

    FROM wunderio/silta-php-fpm:8.0-fpm-v1
    
    COPY --chown=www-data:www-data . /app
    
    USER www-data
  9. Deploy

  10. Check owners of the files directory, it should be www-data

    ls -alh /app/web/sites/default/files

    If some of the files are owned by root - rerun step 5, but for the files path (not files-new)

  11. Check that the public files path shows up correctly when running drush status. If it doesn't, make sure that it has not been overridden in settings.php file.

Changing storage for a new deployment, project:

  1. Redefine the default public and private files volumes.
mounts:
  public-files:
    enabled: true
    storage: 10G
    mountPath: /app/web/sites/default/files
    storageClassName: nfs-shared
  private-files:
    enabled: true
    storage: 1G
    mountPath: /app/private
    storageClassName: nfs-shared
  1. Deploy - this is your first deployment for the project or environment.