I use Google Cloud Storage as CDN to deliver my static files on on webpages faster. After uploading a new file I set the public cache to one year:
gsutil setmeta -h "Cache-Control:public, max-age=31536000" -r gs://my-bucket
If I update a file Google delivers still the old version. How am I able to clear the cache to get the new file? I access the files through https://my-bucket.storage.googleapis.com
Thanks