You are looking at the documentation of a prior release. To read the documentation of the latest release, please visit here.

Google Cloud Storage (GCS)

KubeStash supports Google Cloud Storage(GCS) as a backend. This tutorial will show you how to use this backend.

In order to use Google Cloud Storage as backend, you have to create a Secret and a BackupStorage object pointing to the desired GCS bucket.

If the bucket already exists, the Google Cloud service account you provide to KubeStash only needs Storage Object Creator role permission. However, if the bucket does not exist, KubeStash will create the bucket during the first backup. In this case, the Google Cloud service account key used for KubeStash must have Storage Object Admin role permission. To avoid giving this elevated level of permission to KubeStash, create the bucket manually (either from GCP console or gcloud cli) ahead of time.

Create Storage Secret

To configure storage secret for this backend, following secret keys are needed:

KeyTypeDescription
GOOGLE_PROJECT_IDRequiredGoogle Cloud project ID.
GOOGLE_SERVICE_ACCOUNT_JSON_KEYRequiredGoogle Cloud service account json key.

Create storage secret as below,

$ echo -n '<your-project-id>' > GOOGLE_PROJECT_ID
$ mv downloaded-sa-json.key GOOGLE_SERVICE_ACCOUNT_JSON_KEY
$ kubectl create secret generic -n demo gcs-secret \
    --from-file=./GOOGLE_PROJECT_ID \
    --from-file=./GOOGLE_SERVICE_ACCOUNT_JSON_KEY
secret/gcs-secret created

Create BackupStorage

Now, you have to create a BackupStorage cr. You have to specify the name of the storage secret that we have created earlier in the spec.storage.gcs.SecretName field.

Following parameters are available for gcs backend.

ParameterTypeDescription
gcs.bucketRequiredName of Bucket. If the bucket does not exist yet, it will be created in the default location (US). It is not possible at the moment for KubeStash to create a new bucket in a different location, so you need to create it using Google cloud console.
gcs.secretNameRequiredSpecify the name of the Secret that contains the access credential for this storage.
gcs.prefixOptionalPath prefix inside the bucket where backed up data will be stored.
gcs.maxConnectionsOptionalMaximum number of parallel connections to use for uploading backup data. By default, KubeStash will use maximum 5 parallel connections.

Below, the YAML of a sample BackupStorage crd that uses a GCS bucket as a backend.

apiVersion: storage.kubestash.com/v1alpha1
kind: BackupStorage
metadata:
  name: gcs-storage
  namespace: demo
spec:
  storage:
    provider: gcs
    gcs:
      bucket: kubestash-demo
      prefix: demo
      secretName: gcs-secret
  usagePolicy:
    allowedNamespaces:
      from: All
  default: true # Use this BackupStorage as the default
  deletionPolicy: WipeOut # One of: WipeOut, Delete

Create the BackupStorage we have shown above using the following command,

$ kubectl apply -f https://github.com/kubestash/docs/raw/v2024.6.4/docs/guides/backends/gcs/examples/gcs.yaml
backupstorage.storage.kubestash.com/gcs-storaqge created

Now, we are ready to use this backend to backup our desired data using KubeStash.

Next Steps

  • Learn how to use KubeStash to backup workloads data from here.
  • Learn how to use KubeStash to backup stand-alone PVC from here.