Skip to main content

Container File Level Recovery? No Way! Yes Yea! Kasten 8.5 will make your day!

  • March 4, 2026
  • 4 comments
  • 84 views

Geoff Burke
Forum|alt.badge.img+22

FLR You are a Star!

 

The release of Kasten 8.5 brought with it some fantastic new features. After a small hiatus from posting due to galactic circumstances beyond my control :), I am now back in the game!

Today we will go over Kasten 8.5 container file level recovery, yes you heard it right, recovering files from inside of a container.

For this demo I have my go to Kubernetes distribution k3s with an nginx pod and 1gb pvc attached to the latter.

Pod​​​

This pvc is mounted at /usr/share/nginx/html inside of the pod.

mountpath

Let's exec into the pod and take a look at what is there:

k exec -n nginx task-pv-pod -it -- sh
cd /usr/share/nginx/html

I have text file at that location with the original name Geoff.txt (that helps not get confused)

Let's add a few more files for fun:

Files inside of the container​​​​

Now time for backup. If I want to be safe from ransomware then where should I send my exported snapshots? Yes to immutable storage!

Immutable!

Time to run the backup:

Run Once

Its Kasten so the backup was successful!

Another Success!

 

THE FUN BEGINS!

 

At this point in time FLR is done through the CLI. I for one love to show off in front of my bosses when doing this as cli stuff makes them think I am a real wizard! No mouse clicking, only keyboard ticking! 

 

First we need to get a list of our restore points:
 

Don't tell anyone but I am quite lazy and don't like to type, so the first thing that I always do when dealing with a new Kubernetes resource is to look for a short name if it has one, so for example instead of typing out deployment you can run this command to find the short name:

kubectl api-resources | grep restorepoint
Short Name

 

Unfortunately restorepoints does not have one yet:

kubectl api-resources | grep restorepoint
No short name

Let's find out what exported restorepoints we have and use the last one to recover some files:

k get restorepoints -n nginx -l k10.kasten.io/exportProfile
restorepoints

We will use the latest restore point. We need to create a file recovery session yaml. Tip: create one and save the yaml file, that way the next time that you need to recover you can simply make changes in the file and reuse.

The key element in the file is to choose which restore point to leverage. You also need to add your public ssh key since the recovery will be performed via sftp:

frs.yaml

Now we create the Filerecoverysession which will mount the exported pvc:

k apply -f frs.yaml
frs apply

We need to wait until the status is Ready:

Ready to Go!

To connect successfully I need to get some information about the filerecoverysession:

frs!
k get frs -n nginx -oyaml
Port and Service Name

I want to recover these files to my laptop in WSL so I will port forward this service on address 0.0.0.0 so that I can connect:

k port-forward svc/frs-gt9xl -n kasten-io 2222:2222 --address 0.0.0.0

Note the service name that we got from the frs:

frs service name

Let's see if this works! Back on my Windows laptop in a windows subsystem for linux bash terminal:

sftp -i ~/.ssh/id_ed25519 -P 2222 -o StrictHostKeyChecking=no root@k3s01

Woo wee!

I am in!

Time to find our files:

 

Files mounted on the exported pvc

Recover now!

get my files!
Here they are

My files are back!

All good

 

File Level recovery has arrived for containers in Kasten!

 

But Geoff what about files from Kubevirt virtual machines? Tune in next time for more Kasten Kleverness for that answer!

4 comments

Chris.Childerhose
Forum|alt.badge.img+21

Nice to see them add this to the new Kasten.  I need to stop dragging my feet and get Kasten going in a lab to learn it, as we will be looking to back up VCFA workloads in VKS soon. 😩

 
 
 

leaha
Forum|alt.badge.img+3
  • Veeam Vanguard
  • March 4, 2026

Damn this is an amazing feature, looking forward to getting Kasten with VCF up and running later this year <3


kciolek
Forum|alt.badge.img+5
  • Influencer
  • March 4, 2026

I haven’t setup or tested Kasten but it’s on my list to get done!


eprieto
Forum|alt.badge.img+9
  • Veeam Legend
  • May 4, 2026

Amazing Post !! 🤓