You deployed a new version of your Firebase Hosting site but noticed a critical bug. You want to rollback to the previous version quickly.
What happens when you run firebase hosting:rollback?
Think about how Firebase Hosting manages versions and traffic switching.
Firebase Hosting rollback instantly switches the live site to the previous deployed version without downtime by updating the serving configuration.
You want to rollback your Firebase Hosting deployment to the version deployed 3 deployments ago.
Which command correctly rolls back to that specific version?
Check the official Firebase CLI rollback command syntax.
The version number is specified as a positional argument: firebase hosting:rollback 3. Other flags are invalid.
After rolling back a Firebase Hosting deployment, what happens to the cached content on the CDN edge servers?
Consider how Firebase Hosting manages content freshness after deployment changes.
Firebase Hosting automatically invalidates CDN caches on rollback to ensure users get the correct content immediately.
You rolled back your Firebase Hosting deployment to a previous version. What happens to the Firebase Security Rules associated with the hosting content?
Think about how Firebase separates hosting content from security rules deployment.
Firebase Security Rules are managed separately and do not rollback automatically with hosting content.
You want to implement a rollback strategy for Firebase Hosting that guarantees zero downtime and quick recovery from faulty deployments.
Which approach best achieves this?
Consider the features Firebase Hosting provides for deployment management.
Firebase Hosting's rollback command instantly switches traffic to a previous version with no downtime, making it the best practice for quick recovery.