'GKE Backup - no options in region dropdown menu
Solution 1:[1]
The webpage doesn't seem to work at this time. The CLI command created the backup.
gcloud alpha container backup-restore backup-plans create backup1 \
--project=redacted-ai-beta \
--location=us-east1 \
--cluster=projects/<proj>/locations/us-east1/clusters/<cluster-name> \
--all-namespaces \
--include-secrets \
--include-volume-data \
--cron-schedule='0 0 1 * *' \
--backup-retain-days=90
Solution 2:[2]
Locations are synonymous with Google Cloud regions in the context of the Backup for GKE service, and are confined to the regions that Backup for GKE supports. Using the Google Cloud CLI below, you can see which regions are available for your backup plans, backups, and restores:
gcloud alpha container backup-restore locations list \
--project=PROJECT_ID
Replace PROJECT_ID with the ID of your Google Cloud project.
Visit the official Google documentation for more information.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Teebu |
| Solution 2 | Alex G |

