Backup and Restore OVHcloud Managed Kubernetes Cluster, Namespace and Applications using TrilioVault for Kubernetes

Introduction

In this tutorial, you will learn how to deploy TrilioVault for Kubernetes (or TVK) to your OVHcloud Managed Kubernetes Cluster, create backups, and recover from a backup if something goes wrong.
You can back up your entire cluster by including mutliple namespaces, or optionally choose a single namespace, label based backups, Helm Releases based backups or Operator based backups.

Advantages of using Trilio:

  • Take full (or incremental) backups of your all namespaces, selective applications and restore in case of data loss.
  • Migrate from one cluster to another.
  • Helm release backups are supported.
  • Backup of Operator based application deployment is also supported.
  • Run pre and post hooks for backup and restore operations.
  • Web management console, that allows you to inspect your backup/restore operations state in detail (and many other features).
  • Define retention policies for your backups.
  • Application lifecycle (meaning, TVK itself) can be managed via a dedicated TrilioVault Operator.
  • Velero integration (Trilio supports monitoring Velero backups, restores, and backup/snapshot locations via its web management console).

How TrilioVault for Kubernetes works

TVK follows a cloud native architecture, meaning that it has several components that together form the Control Plane and Data Plane layers. Everything is managed via CRDs, thus making it fully Kubernetes native. What is nice about Trilio is the clear separation of concerns, and how effective it handles backup and restore operations.

Each TrilioVault application consists of a bunch of "Controllers" and the associated CRDs. Every time a CRD is created or updated, the responsible controller is notified and performs cluster reconciliation. Then, the controller in charge spawns Kubernetes jobs that perform the real operation (like backup, restore, etc) in parallel.

Control Plane consists of:

  • Target Controller: defines the storage backend (S3*, NFS, etc) via specific CRDs.
  • BackupPlan Controller: defines the components to backup, automated backups schedule, retention strategy, etc via specific CRDs.
  • Restore Controller: defines restore operations via specific CRDs.

Data Plane consists of:

  • Datamover Pods, responsible with transferring data between persistent volumes and backup media (or Target). TrilioVault works with Persistent Volumes (PVs) using the CSI interface. For each PV that needs to be backed up, an ephemeral Datamover Pod is created. After each operation finishes, the associated pod is destroyed.
  • Metamover Pods, responsible with transferring Kubernetes API objects data to backup media (or Target). Metamover pods are ephemeral, just like the Datamover ones.

Understanding TrilioVault Application Scope

TrilioVault for Kubernetes works based on scope, meaning you can have a Namespaced or a Cluster type of installation.

A Namespaced installation allows you to backup and restore at the namespace level only. In other words, the backup is meant to protect a set of applications that are bound to a namespace that you own. This is how a "BackupPlan" and the corresponding Backup CRD works. You cannot mutate those CRDs in other namespaces, they must be created in the same namespace where the application to be backed up is located.

On the other hand, a Cluster type installation is not scoped or bound to any namespace or a set of applications. You define cluster type backups via the Cluster prefixed CRDs, like: ClusterBackupPlan, ClusterBackup, etc. Cluster type backups are a little bit more flexible, in the sense that you are not tied to a specific namespace or set of applications to backup and restore. You can perform backup/restore operations for multiple namespaces and applications at once, including PVs as well (you can also backup etcd databased content).

In order to make sure that TVK application scope and rules are followed correctly, TrilioVault is using an Admission Controller. It intercepts and validates each CRD that you want to push for TVK, before it is actually created. In case TVK application scope is not followed, the admission controller will reject CRD creation in the cluster.

Another important thing to consider and remember is that a TVK License is application scope specific. In other words, you need to generate one type of license for either a Namespaced or a Cluster type installation.

Namespaced vs Cluster TVK application scope - when to use one or the other?

It all depends on the use case. For example, a Namespaced scope is a more appropriate option when you don't have access to the whole Kubernetes cluster, only to specific namespaces and applications.

In most of the cases you want to protect only the applications tied to a specific namespace that you own.

On the other hand, a cluster scoped installation type works at the global level, meaning it can trigger backup/restore operations for any namespace or resource from a Kubernetes cluster (including PVs and the etcd database).

To summarize:

  • If you are a cluster administrator, then you will most probably want to perform cluster level operations via corresponding CRDs, like: ClusterBackupPlan, ClusterBackup, ClusterRestore, etc.
  • If you are a regular user, then you will usually perform namespaced only operations (application centric) via corresponding CRDs, like: BackupPlan, Backup, Restore, etc.

The application interface is very similar or uniform when comparing the two types: Cluster vs non-Cluster prefixed CRDs. So, if you're familiar with one type, it's pretty straightforward to use the counterpart.

For more information, please refer to the TVK CRDs official documentation.

Backup and Restore Workflow

Whenever you want to backup an application, you start by creating a BackupPlan (or ClusterBackupPlan) CRD, followed by a Backup (or ClusterBackup) object. Trilio Backup Controller is notified about the change and performs backup object inspection and validation (i.e. whether it is cluster backup, namespace backup, etc.). Then, it spawns worker pods (Metamover, Datamover) responsible with moving the actual data (Kubernetes metadata, PVs data) to the backend storage (or Target), such as OVHcloud Object Storage.

Similarly whenever you create a Restore object, the "Restore Controller" is notified to restore from a Backup object. Then, Trilio Restore Controller spawns worker nodes (Metamover, Datamover), responsible with moving backup data out of the OVHcloud Object Storage (Kubernetes metadata, PVs data). Finally, the restore process is initiated from the particular backup object.

Trilio is ideal for the disaster recoveryuse case, as well as for "snapshotting" your application state, prior to performing system operations on your cluster, like upgrades. For more details on this topic, please visit the Trilio Features and Trilio Use Case official page.

After finishing this tutorial, you should be able to:

  • Configure OVHcloud Object Storage backend for Trilio to use.
  • Backup and restore your applications
  • Backup and restore your entire OVHcloud Managed Kubernetes Cluster.
  • Create scheduled backups for your applications.
  • Create retention policies for your backups.

Table of Contents

Requirements

To complete this tutorial, you need the following:

  1. An OVHcloud Object Storage Container/Bucket and a Object Storage User which will have permission to access the Object Storage Container.
  2. A Git client, to clone the OVHcloud Docs repository.
  3. Helm, for managing TrilioVault Operator releases and upgrades.
  4. Kubectl, for Kubernetes interaction.
  5. krew, for installation of preflight checks plugin.
WARNING

In order for TrilioVault to work correctly and to backup your PVCs, the OVHcloud Managed Kubernetes Cluster needs to be configured to support the Container Storage Interface (or CSI, for short) and volumesnapshot CustomResourceDefinitions should be deployed.

kubectl get crd | grep volumesnapshot

The output should look similar to below:

volumesnapshotclasses.snapshot.storage.k8s.io    2022-01-20T07:58:05Z
volumesnapshotcontents.snapshot.storage.k8s.io   2022-01-20T07:58:05Z
volumesnapshots.snapshot.storage.k8s.io          2022-01-20T07:58:06Z

Also make sure that the CRD support both v1beta1 and v1 API version. You can run below command to check the API version:

kubectl get crd volumesnapshots.snapshot.storage.k8s.io -o yaml

At the end of the CRD yaml, you should obtain an output similar to below, showing storedVersions as v1beta1 and v1:

...
- lastTransitionTime: "2022-01-20T07:58:06Z"
    message: approved in https://github.com/kubernetes-csi/external-snapshotter/pull/419
    reason: ApprovedAnnotation
    status: "True"
    type: KubernetesAPIApprovalPolicyConformant
  storedVersions:
  - v1beta1
  - v1

User can then install the Hostpath CSI driver and create a storageclass, volumesnapshotclass. You can check the existing storage class using below command:

kubectl get storageclass

The output should look similar to (notice the provisioner is hostpath.csi.k8s.io if you have installed hostpath CSI driver):

NAME                        PROVISIONER                RECLAIMPOLICY   VOLUMEBINDINGMODE   ALLOWVOLUMEEXPANSION   AGE
csi-cinder-classic          cinder.csi.openstack.org   Delete          Immediate           true                   3d
csi-cinder-high-speed       cinder.csi.openstack.org   Delete          Immediate           true                   3d
csi-cinder-high-speed-gen2  cinder.csi.openstack.org   Delete          Immediate           true                   3d
csi-hostpath-sc (default)   hostpath.csi.k8s.io        Retain          Immediate           false                  2d

Users should run a preflight check to make sure all the prerequisites for the TVK are fulfilled to proceed safely with installation. Follow the TVK Preflight Checks page to install and run preflight through krew plugin.

Instructions

Step 1 - Installing TrilioVault for Kubernetes

In this step, you will learn how to deploy TrilioVault for Kubernetes for OVHcloud Managed Kubernetes Cluster, and manage TVK installations via Helm. Backups data will be stored in the OVHcloud Object Storage bucket created earlier in the Requirements section.

TrilioVault for Kubernetes consists of TVK Operator and TVM application.

The TrilioVault Operator (installable via Helm) which also installs the TrilioVaultManager CRD and creates a tvm custom resource. TVK Operator handles the installation, post-configuration steps, and future upgrades of the Trilio application components.

Installing TrilioVault Operator and Manager Using Helm

WARNING

This tutorial is using the Cluster installation type for the TVK application (applicationScope Helm value is set to "Cluster"). All examples from this tutorial rely on this type of installation to function properly.

Please follow the steps below, to install TrilioVault via Helm:

First, clone the OVHcloud Docs Git repository and change directory to your local copy:

git clone https://github.com/ovh/docs.git
cd docs/pages/public_cloud/containers_orchestration/managed_kubernetes/backup-and-restore-cluster-namespace-and-applications-with-trilio/

Next, add the TrilioVault Helm repository, and list the available charts:

helm repo add triliovault-operator http://charts.k8strilio.net/trilio-stable/k8s-triliovault-operator
helm repo update
helm search repo triliovault-operator

The output looks similar to the following:

NAME                                            CHART VERSION   APP VERSION     DESCRIPTION
triliovault-operator/k8s-triliovault-operator   2.9.3           2.9.3           K8s-TrilioVault-Operator is an operator designe...

The chart of interest is triliovault-operator/k8s-triliovault-operator, which will install TrilioVault for Kubernetes Operator on the cluster. You can run helm install command to install the Operator which will also install the Triliovault Manager CRD. Install TrilioVault for Kubernetes Operator using Helm:

TVK allows user to alter the values to be used by TVK Operator installation using --set option. Check the detailed instructions in the One-click Installation page.

helm install triliovault-operator triliovault-operator/k8s-triliovault-operator --namespace tvk --create-namespace

Now, please check your TVK deployment:

helm ls -n tvk

The output looks similar to the following (STATUS column should display "deployed"):

NAME                    NAMESPACE       REVISION        UPDATED                                 STATUS          CHART                           APP VERSION
triliovault-manager-tvk tvk             1               2022-06-21 07:15:03.681891176 +0000 UTC deployed        k8s-triliovault-2.9.3           2.9.3
triliovault-operator    tvk             1               2022-06-21 07:13:18.731129339 +0000 UTC deployed        k8s-triliovault-operator-2.9.3  2.9.3

Next, verify that TrilioVault-Operator and Triliovault-Manager application is up and running:

kubectl get deployments -n tvk

The output looks similar to the following (deployment pods must be in the Ready state):

NAME                                            READY   UP-TO-DATE   AVAILABLE   AGE
k8s-triliovault-admission-webhook               1/1     1            1           45d
k8s-triliovault-control-plane                   1/1     1            1           45d
k8s-triliovault-exporter                        1/1     1            1           45d
k8s-triliovault-ingress-nginx-controller        1/1     1            1           13d
k8s-triliovault-web                             1/1     1            1           45d
k8s-triliovault-web-backend                     1/1     1            1           45d
triliovault-operator-k8s-triliovault-operator   1/1     1            1           45d

Now, please check your triliovaultmanagers CRDs, tvm CR as well:

kubectl get crd | grep trilio

The output looks similar to the following:

backupplans.triliovault.trilio.io                     2022-06-21T07:39:38Z
backups.triliovault.trilio.io                         2022-06-21T07:39:38Z
clusterbackupplans.triliovault.trilio.io              2022-06-21T07:39:39Z
clusterbackups.triliovault.trilio.io                  2022-06-21T07:39:39Z
clusterrestores.triliovault.trilio.io                 2022-06-21T07:39:39Z
hooks.triliovault.trilio.io                           2022-06-21T07:39:39Z
licenses.triliovault.trilio.io                        2022-06-21T07:39:39Z
policies.triliovault.trilio.io                        2022-06-21T07:39:40Z
restores.triliovault.trilio.io                        2022-06-21T07:39:40Z
targets.triliovault.trilio.io                         2022-06-21T07:39:40Z
triliovaultmanagers.triliovault.trilio.io             2022-06-21T07:38:30Z

You can also check if the TVM Custom Resource is created.

kubectl get triliovaultmanagers -n tvk 

The output looks similar to the following:

NAME                  TRILIOVAULT-VERSION   SCOPE     STATUS     RESTORE-NAMESPACES
triliovault-manager   2.9.3                 Cluster   Deployed

If the output looks like above, you installed TVK successfully. Next, you will learn how to check license type and validity, as well as how to renew.

TrilioVault Application Licensing

By default, when installing TVK via Helm, there is no Free Trial license generated. This tutorial will help you install the 'Cluster' scoped license which is of type 'Basic' for cluster capacity of 500 CPUs and has expiration time of 5 years.
You can always go to the Trilio website and generate a new license for your cluster that suits your needs.

Installing TVK Application Licensing

Please run below command to see what license is available for your cluster (it is managed via the License CRD):

curl -LO https://raw.githubusercontent.com/ovh/docs/develop/pages/public_cloud/containers_orchestration/managed_kubernetes/backup-and-restore-cluster-namespace-and-applications-with-trilio/manifests/tvk_install_license.yaml
kubectl apply -f tvk_install_license.yaml -n tvk

Run the below command to verify if the license is successfully created for OVHcloud users:

kubectl get license -n tvk

The output looks similar to (notice the STATUS which should be "Active", as well as the license type in the EDITION column and EXPIRATION TIME):

NAMESPACE   NAME             STATUS   MESSAGE                                   CURRENT NODE COUNT   GRACE PERIOD END TIME   EDITION   CAPACITY   EXPIRATION TIME        MAX NODES
tvk         trilio-license   Active   Cluster License Activated successfully.   3                                            Basic     500        2027-06-21T00:00:00Z   3

The license is managed via a special CRD, namely the License object. You can inspect it by running below command:

kubectl describe license test-license-1 -n tvk 

The output looks similar to (notice the Message and Capacity fields, as well as the Edition):

Name:         test-license-1
Namespace:    tvk
Labels:       <none>
Annotations:  generation: 1
              triliovault.trilio.io/creator: kubernetes-admin
              triliovault.trilio.io/instance-id: 46188ee1-8ce1-4c45-96fa-c262f2214ced
              triliovault.trilio.io/updater:
                [{"username":"system:serviceaccount:tvk:k8s-triliovault","lastUpdatedTimestamp":"2022-06-21T10:06:59.796280418Z"}]
API Version:  triliovault.trilio.io/v1
Kind:         License
Metadata:
  Creation Timestamp:  2022-06-21T10:56:14Z
...
  Current Node Count:  3
  Max Nodes:           3
  Message:             Cluster License Activated successfully.
  Properties:
    Active:                        true
    Capacity:                      500
    Company:                       OVHCloud License For Users
    Creation Timestamp:            2022-06-21T00:00:00Z
    Edition:                       Basic
    Expiration Timestamp:          2027-06-21T00:00:00Z
    Kube UID:                      46188ee1-8ce1-4c45-96fa-c262f2214ced
    License ID:                    TVAULT-4ddf3f72-d2ab-11ec-9a22-4b4849af53ee
    Maintenance Expiry Timestamp:  2027-06-21T00:00:00Z
    Number Of Users:               -1
    Purchase Timestamp:            2022-06-21T00:00:00Z
    Scope:                         Cluster
...

The above output will also tell you when the license is going to expire in the Expiration Timestamp field, and the Scope (Cluster based in this case). You can opt for a cluster wide license type, or for a namespace based license. More details can be found on the Trilio Licensing documentation page.

Renewing TVK Application License

To renew the license, you will have to request a new one from the Trilio website, by navigating to the licensing page. After completing the form, you should receive the License YAML manifest, which can be applied to your cluster using kubectl. Below commands assume that TVK is installed in the default tvk namespace (please replace the <> placeholders accordingly, where required):

kubectl apply -f <YOUR_LICENSE_FILE_NAME>.yaml -n tvk

Then, you can check the new license status as you already learned via:

# List available TVK licenses first from the `tvk` namespace
kubectl get license -n tvk

# Get information about a specific license from the `tvk` namespace
kubectl describe license <YOUR_LICENSE_NAME_HERE> -n tvk 

In the next step, you will learn how to define the storage backend for TrilioVault to store backups, called a target.

Step 2 - Creating a TrilioVault Target to Store Backups

TrilioVault needs to know first where to store your backups. TrilioVault refers to the storage backend by using the target term, and it's managed via a special CRD named Target. The following target types are supported: S3 and NFS. For OVHcloud and the purpose of the tutorial, it makes sense to rely on the S3 storage type because it's cheap and scalable. To benefit from an enhanced level of protection you can create multiple target types (for both S3 and NFS), so that your data is kept safe in multiple places, thus achieving backup redundancy.

OVHcloud provides two types of S3 compatible Object Storage solutions:

  • To create Target for the OVHcloud Object Storage using S3 Swift API, use this link.
  • To create Target for the S3 compatible Object Storage, use this link

Create an Object Storage user in the tab next to Object Storage Container. Now, from Users and Roles, assign the Administrator priviledges to the S3 user.

Next, create an Access Key and Secret Key to access the Object Storage Container using the Getting Started with the Swift S3 API tutorial.

INFO

If you have created a container with High Performance then follow the Getting started with S3 compatible Object Storage documentation.

Save the Access key and Secret key used in AWS CLI ~/.aws/credentails file. It is required to create a target secret later. Take a note of the Object Storage endpoint URL s3.endpoint_url, and the region name region provided in the AWS CLI ~/.aws/config file. It is required to create a Target later.

To access Object Storage, each target needs to know bucket credentials. A Kubernetes Secret must be created as well:

apiVersion: v1
kind: Secret
metadata:
  name: trilio-ovh-s3-target-secret
  namespace: tvk
type: Opaque
stringData:
  accessKey: <YOUR_OVH_OBJECT_STORAGE_BUCKET_ACCESS_KEY_ID_HERE>	# value must be base64 encoded
  secretKey: <YOUR_OVH_OBJECT_STORAGE_BUCKET_SECRET_KEY_HERE>    	# value must be base64 encoded

Notice that the secret name is trilio-ovh-s3-target-secret.
It's referenced by the spec.objectStoreCredentials.credentialSecret field of the Target CRD explained below. The secret can be in the same namespace where TrilioVault was installed (defaults to tvk), or in another namespace of your choice. Just make sure that you reference the namespace correctly. On the other hand, please make sure to protect the namespace where you store TrilioVault secrets via RBAC, for security reasons.

Typical Target definition looks like below:

apiVersion: triliovault.trilio.io/v1
kind: Target
metadata:
  name: trilio-ovh-s3-target
  namespace: tvk
spec:
  type: ObjectStore
  vendor: Other								# e.g. `AWS` for AWS S3 Storage and `Other` for OVHcloud Object Storage
  enableBrowsing: true
  objectStoreCredentials:
    bucketName: <YOUR_OVH_OBJECT_STORAGE_BUCKET_NAME_HERE>
    region: <YOUR_OVH_OBJECT_STORAGE_BUCKET_REGION_HERE>    # e.g.: `bhs` region for OVHcloud Object Storage or `us-est-1` etc for AWS S3
    url: "https://s3.<REGION_NAME_HERE>.cloud.ovh.net"  	# e.g.: `https://s3.bhs.cloud.ovh.net` for Object Storage Container in `bhs` region
    credentialSecret:
      name: trilio-ovh-s3-target-secret
      namespace: tvk
  thresholdCapacity: 10Gi

Explanation for the above configuration:

  • spec.type: Type of target for backup storage (Object Storage is an object store).
  • spec.vendor: Third party storage vendor hosting the target (for OVHcloud Object Storage you need to use "Other" instead of "AWS").
  • spec.enableBrowsing: Enable browsing for the target to browse through the backups stored on it.
  • spec.objectStoreCredentials: Defines required credentials (via credentialSecret) to access the Object Storage, as well as other parameters such as bucket region and name.
  • spec.thresholdCapacity: Maximum threshold capacity to store backup data.

Steps to create a Target for TrilioVault:

  1. First, change directory where the ovh/docs Git repository was cloned on your local machine:
cd docs/pages/public_cloud/containers_orchestration/managed_kubernetes/backup-and-restore-cluster-namespace-and-applications-with-trilio/
  1. Next, create the Kubernetes secret containing your target Object Storage bucket credentials (please replace the <> placeholders accordingly):
kubectl create secret generic trilio-ovh-s3-target-secret \
  --namespace=tvk \
  --from-literal=accessKey="<YOUR_OVH_OBJECT_STORAGE_BUCKET_ACCESS_KEY_HERE>" \
  --from-literal=secretKey="<YOUR_OVH_OBJECT_STORAGE_BUCKET_SECRET_KEY_HERE>"
  1. Then, open and inspect the Target manifest file provided in the docs repository, using an editor of your choice (preferably with YAML lint support). You can use VS Code for example:
cat manifests/triliovault-ovh-s3-target.yaml
  1. Now, please replace the <> placeholders accordingly to your OVHcloud Object Storage Trilio bucket, like: bucketName, region, url and credentialSecret.
  2. Finally, save the manifest file and create the Target object using kubectl:
kubectl apply -f manifests/triliovault-ovh-s3-target.yaml

What happens next is, TrilioVault will spawn a worker job named trilio-ovh-s3-target-validator responsible with validating your Object Storage bucket (like availability, permissions, etc.). If the job finishes successfully, the bucket is considered to be healthy or available and the trilio-ovh-s3-target-validator job resource is deleted afterwards. If something bad happens, the Object Storage target validator job is left up and running so that you can inspect the logs and find the possible issue.

Now, please go ahead and check if the Target resource created earlier is healthy:

kubectl get target trilio-ovh-s3-target -n tvk

The output looks similar to (notice the STATUS column value - should be "Available", meaning it's in a healthy state):

NAME                   TYPE          THRESHOLD CAPACITY   VENDOR   STATUS      BROWSING ENABLED
trilio-ovh-s3-target   ObjectStore   10Gi                 Other    Available   Enabled

If the output looks like above, then you configured the Object Storage target object successfully.

Hint: In case the target object fails to become healthy, you can inspect the logs from the trilio-ovh-s3-target-validator Pod to find the issue:

First, you need to find the target validator

kubectl get pods -n tvk | grep trilio-ovh-s3-target-validator

The output looks similar to:

trilio-ovh-s3-target-validator-tio99a-6lz4q	1/1     Running     0          104s

Now, fetch logs data

kubectl logs pod/trilio-ovh-s3-target-validator-tio99a-6lz4q -n tvk

The output looks similar to (notice the exception as an example):

...
INFO:root:2022-06-21 09:06:50.595166: waiting for mount operation to complete.
INFO:root:2022-06-21 09:06:52.595772: waiting for mount operation to complete.
ERROR:root:2022-06-21 09:06:54.598541: timeout exceeded, not able to mount within time.
ERROR:root:/triliodata is not a mountpoint. We can't proceed further.
Traceback (most recent call last):
  File "/opt/tvk/datastore-attacher/mount_utility/mount_by_target_crd/mount_datastores.py", line 56, in main
    utilities.mount_datastore(metadata, datastore.get(constants.DATASTORE_TYPE), base_path)
  File "/opt/tvk/datastore-attacher/mount_utility/utilities.py", line 377, in mount_datastore
    mount_s3_datastore(metadata_list, base_path)
  File "/opt/tvk/datastore-attacher/mount_utility/utilities.py", line 306, in mount_s3_datastore
    wait_until_mount(base_path)
  File "/opt/tvk/datastore-attacher/mount_utility/utilities.py", line 328, in wait_until_mount
    base_path))
Exception: /triliodata is not a mountpoint. We can't proceed further.
...

Next, you will discover the TVK web console which is a really nice and useful addition to help you manage backup and restore operations very easily, among many others.

Step 3 - Getting to Know the TVK Web Management Console

While you can manage backup and restore operations from the CLI entirely via kubectl and CRDs, TVK provides a Web Management Console to accomplish the same operations via the GUI. The management console simplifies common tasks via point and click operations, provides better visualization and inspection of TVK cluster objects, as well as to create disaster recovery plans (or DRPs).

The Helm based installation covered in Step 1 - Installing TrilioVault for Kubernetes already took care of installing the required components for the web management console.

Getting Access to the TVK Web Management Console

To be able to access the console and explore the features it offers, you can either user LoadBalancer, NodePort or need to port forward the ingress-nginx-controller service for TVK.

First, you need to identify the ingress-nginx-controller service from the tvk namespace:

kubectl get svc -n tvk

The output looks similar to (search for the k8s-triliovault-ingress-nginx-controller line, and notice that it listens on port 80 in the PORT(S) column):

NAME                                                            TYPE        CLUSTER-IP     EXTERNAL-IP   PORT(S)                      AGE
k8s-triliovault-admission-webhook                               ClusterIP   10.3.241.124   <none>        443/TCP                      45d
k8s-triliovault-ingress-nginx-controller                        NodePort    10.3.183.125   <none>        80:31879/TCP,443:31921/TCP   13d
k8s-triliovault-ingress-nginx-controller-admission              ClusterIP   10.3.20.89     <none>        443/TCP                      13d
k8s-triliovault-web                                             ClusterIP   10.3.56.86     <none>        80/TCP                       45d
k8s-triliovault-web-backend                                     ClusterIP   10.3.236.30    <none>        80/TCP                       45d
triliovault-operator-k8s-triliovault-operator-webhook-service   ClusterIP   10.3.8.249     <none>        443/TCP                      45d

If you are using LoadBalancer for the ingress-nginx-controller then the output would look like:

NAME                                                            TYPE        	CLUSTER-IP     EXTERNAL-IP   	PORT(S)                      AGE
k8s-triliovault-admission-webhook                               ClusterIP   	10.3.241.124   <none>        	443/TCP                      45d
k8s-triliovault-ingress-nginx-controller                        LoadBalancer    10.3.183.125   51.222.45.171	80:31879/TCP,443:31921/TCP   13d
k8s-triliovault-ingress-nginx-controller-admission              ClusterIP   	10.3.20.89     <none>        	443/TCP                      13d
k8s-triliovault-web                                             ClusterIP   	10.3.56.86     <none>        	80/TCP                       45d
k8s-triliovault-web-backend                                     ClusterIP   	10.3.236.30    <none>        	80/TCP                       45d
triliovault-operator-k8s-triliovault-operator-webhook-service   ClusterIP   	10.3.8.249     <none>        	443/TCP                      45d

TVK is using an Nginx Ingress Controller to route traffic to the management web console services. Routing is host based, and the host name is ovh-k8s-tvk.demo.trilio.io as defined in the Helm values file from the ovh/docs:

# The host name to use when accessing the web console via the TVK ingress controller service
ingressConfig:
  host: "ovh-k8s-tvk.demo.trilio.io"

Having the above information at hand, please go ahead and edit the /etc/hosts file, and add this entry:

127.0.0.1 ovh-k8s-tvk.demo.trilio.io

Next, create the port forward for the TVK ingress controller service:

kubectl port-forward svc/k8s-triliovault-ingress-nginx-controller 8080:80 -n tvk

Finally download the kubeconfig file for your OVHcloud Managed Kubernetes Cluster present under Service tab as Kubeconfig file. This step is required so that the web console can authenticate you using kubeconfig file:

After following the above steps, you can access the console in your web browser by navigating to: http://ovh-k8s-tvk.demo.trilio.io. When asked for the kubeconfig file, please select the one that you created in the last command from above.

INFO

Please keep the generated kubeconfig file safe because it contains sensitive data.

Exploring the TVK Web Console User Interface

The home page looks similar to:

TVK Home Cluster Dashboard

Go ahead and explore each section from the left:

  • Cluster Management: This shows the list of primary cluster and other clusters having TVK instances, added to the primary OVHcloud cluster using Multi-Cluster Management feature.
  • Backup & Recovery: This is the main dashboard which gives you a general overview for the whole cluster, like: Discovered namespaces, Applications, Backupplans list, Targets, Hooks, Policies etc.
    • Namespaces: TVK Cluster Namespaces
    • Applications: TVK Auto-discovered Applications
    • Backupplans: TVK Backupplans
    • Targets: TVK Target List
    • Scheduling Policy: TVK Default Scheduling Policy
    • Retention Policy: TVK Default Retention Policy
    • Monitoring: This has two options, TrilioVault Monitoring and Velero Monitoring if user has Velero configured on their OVHcloud cluster.
      • TrilioVault Monitoring: It shows the backup and restore summary of the kubernetes cluster. TVK TrilioVault Monitoring Backups and Restores
      • Velero Monitoring: TVK Velero Monitoring
  • Disaster Recovery: Allows you to manage and perform disaster recovery operations. TVK Disaster Recovery

You can also see the Object Storage Target created earlier, by navigating to Backup & Recovery > Targets > Select the TVK Namespace from the dropdown on the top (in case of ovh/docs the TVK Namespace is tvk):

TVK Target List

Going further, you can browse the target and list the available backups by clicking on the Actions button from the right, and then select Launch Browser option from the pop-up menu (for this to work the target must have the enableBrowsing flag set to true):

TVK Target Browser

For more information and available features, please consult the TVK Web Management Console User Interface official documentation.

Next, you will learn how to perform backup and restore operations for specific use cases, like:

  • Specific namespace(s) backup and restore.
  • Whole cluster backup and restore.

Step 4 - Helm Release Backup and Restore Example

In this step, you will learn how to create a one-time backup for an entire helm release from your OVHcloud Managed Kubernetes Cluster and restore it afterwards, making sure that all the resources related to the helm release are re-created. The namespace in question is demo-backup-ns. TVK has a neat feature that allows you to perform backups at a higher level than just Helm releases, meaning: complete namespaces, Label based application, and Operator based application. You will learn how to accomplish such a task, in the steps to follow.

Next, you will perform the following tasks:

  • Create the demo-backup-ns namespace and create a mysql-qa helm release for the MySQL Database
  • Perform a namespace backup, via BackupPlan and Backup CRDs.
  • Delete the mysql-qa Helm release.
  • Restore the mysql-qa Helm release, via Restore CRD.
  • Check the mysql-qa Helm release resources restoration.

Creating mysql-qa helm release

helm repo add stable https://charts.helm.sh/stable
helm repo update
helm install mysql-qa --set mysqlRootPassword=triliopass stable/mysql -n demo-backup-ns

To verify if the helm release is deployed correctly, run below command:

helm ls -n demo-backup-ns

The output looks similar to below:

NAME            NAMESPACE       REVISION        UPDATED                                 STATUS          CHART           APP VERSION
mysql-qa        demo-backup-ns  1               2022-06-21 08:23:01.849247691 +0000 UTC deployed        mysql-1.6.9     5.7.30

Next, verify that mysql-qa deployment is up and running:

kubectl get deployments -n demo-backup-ns

The output looks similar to below:

NAME       READY   UP-TO-DATE   AVAILABLE   AGE
mysql-qa   1/1     1            1           2m5s

This shows that the mysql-qa helm release is ready to be backedup.

Creating mysql-qa Helm Release Backup

To perform backups for a single application at the namespace level (or Helm release), a BackupPlan followed by a Backup CRD is required. A BackupPlan allows you to:

  • Specify a target where backups should be stored.
  • Define a set of resources to backup (e.g.: namespace or Helm releases).
  • Encryption, if you want to encrypt your backups on the target (this is a very nice feature for securing your backups data).
  • Define schedules for full or incremental type backups.
  • Define retention policies for your backups.
INFO

The TrilioVault for Kubernetes has created a few sample scheduling and retention policies for users. Users can create the new policies or utilize the sample policies. TVK Default Scheduling Policy TVK Default Retention Policy

In other words a BackupPlan is a definition of "what", "where", "to" and "how" of the backup process, but it doesn't perform the actual backup. The Backup CRD is responsible with triggering the actual backup process, as dictated by the BackupPlan spec.

Typical BackupPlan CRD looks like below:

apiVersion: triliovault.trilio.io/v1
kind: BackupPlan
metadata:
  name: mysql-qa-helm-release-backup-plan
  namespace: demo-backup-ns
spec:
  backupConfig:
    target:
      name: trilio-ovh-s3-target
      namespace: tvk
  backupPlanComponents:
    helmReleases:
      - mysql-qa

Explanation for the above configuration:

  • spec.backupConfig.target.name: Tells TVK what target name to use for storing backups.
  • spec.backupConfig.target.namespace: Tells TVK in which namespace the target was created.
  • spec.backupComponents: Defines a list of resources to back up (can be namespaces or Helm releases).

Typical Backup CRD looks like below:

apiVersion: triliovault.trilio.io/v1
kind: Backup
metadata:
  name: mysql-qa-helm-release-full-backup
  namespace: demo-backup-ns
spec:
  type: Full
  backupPlan:
    name: mysql-qa-helm-release-backup-plan
    namespace: demo-backup-ns

Explanation for the above configuration:

  • spec.type: Specifies backup type (e.g. Full or Incremental).
  • spec.backupPlan: Specifies the BackupPlan which this Backup should use.

Steps to initiate the mysql-qa Helm release one time backup:

  1. First, make sure that the mysql-qa is deployed in your cluster by following these steps.
  2. Next, change directory where the docs Git repository was cloned on your local machine:
cd docs/pages/public_cloud/containers_orchestration/managed_kubernetes/backup-and-restore-cluster-namespace-and-applications-with-trilio/
  1. Then, open and inspect the mysql-qa helm release BackupPlan and Backup manifest files provided in the pages/public_cloud/containers_orchestration/managed_kubernetes/backup-and-restore-cluster-namespace-and-applications-with-trilio/guide.en-us.md repository, using an editor of your choice (preferably with YAML lint support). You can use VS Code for example:
cat manifests/mysql-qa-helm-release-backup-plan.yaml
cat manifests/mysql-qa-helm-release-backup.yaml
  1. Create the BackupPlan resource, using kubectl:
kubectl apply -f manifests/mysql-qa-helm-release-backup-plan.yaml -n demo-backup-ns

Now, inspect the BackupPlan status (targeting the mysql-qa Helm release), using kubectl:

kubectl get backupplan mysql-qa-helm-release-backup-plan -n demo-backup-ns

The output looks similar to (notice the STATUS column value which should be set to "Available"):

NAME                                  TARGET			...   STATUS
mysql-qa-helm-release-backup-plan   trilio-ovh-s3-target	...   Available
  1. Finally, create a Backup resource, using kubectl:
kubectl apply -f manifests/mysql-qa-helm-release-backup.yaml -n demo-backup-ns

Now, inspect the Backup status (targeting the mysql-qa Helm release), using kubectl:

kubect get backup mysql-qa-helm-release-full-backup -n demo-backup-ns

Next, check the Backup object status, using kubectl:

kubectl get backup mysql-qa-helm-release-full-backup -n demo-backup-ns

The output looks similar to (notice the STATUS column value which should be set to "InProgress", as well as the BACKUP TYPE set to "Full"):

NAME                                BACKUPPLAN                          BACKUP TYPE   STATUS       ...
mysql-qa-helm-release-full-backup   mysql-qa-helm-release-backup-plan   Full          InProgress   ...                                  

After all the mysql-qa Helm release components finish uploading to the Object Storage target, you should get below results:

kubectl get backup mysql-qa-helm-release-full-backup -n demo-backup-ns

The output looks similar to (notice that the STATUS changed to "Available", and PERCENTAGE is "100")

NAME                                BACKUPPLAN                          BACKUP TYPE   STATUS      ...   PERCENTAGE
mysql-qa-helm-release-full-backup   mysql-qa-helm-release-backup-plan   Full          Available   ...   100

If the output looks like above, you successfully backed up the mysql-qa Helm release. You can go ahead and see how TrilioVault stores Kubernetes metadata by listing the TrilioVault S3 Bucket contents.

Finally, you can check that the backup is available in the web console as well, by navigating to Backup & Recovery -> Backup Plans and select demo-ns-backup Namespace from the Top dropdown (notice that it's in the "Available" state, and that the mysql-qa Helm release was backed up in the "Component Details" sub-view)

Deleting mysql-qa Helm Release and Resources

Now, go ahead and simulate a disaster, by intentionally deleting the mysql-qa Helm release:

helm delete mysql-qa -n demo-backup-ns

Next, check that the namespace resources were deleted (listing should be empty):

kubectl get all -n demo-backup-ns

Restoring mysql-qa Helm Release Backup

Important notes:

  • If restoring into the same namespace, ensure that the original application components have been removed. Especially the PVC of application are deleted.
  • If restoring to another cluster (migration scenario), ensure that TrilioVault for Kubernetes is running in the remote namespace/cluster as well. To restore into a new cluster (where the Backup CR does not exist), source.type must be set to location. Please refer to the Custom Resource Definition Restore Section to view a restore by location example.
  • When you delete the demo-backup-ns namespace, the load balancer resource associated with the mysql-qa service will be deleted as well. So, when you restore the mysq-qa service, the Load Balancer will be recreated by OVHcloud. The issue is that you will get a New IP address for your Load Balancer, so you will need to adjust the A records for getting traffic into your domains hosted on the cluster.

To restore a specific Backup, you need to create a Restore CRD. Typical Restore CRD looks like below:

apiVersion: triliovault.trilio.io/v1
kind: Restore
metadata:
  name: mysql-qa-helm-release-restore
  namespace: demo-restore-ns
spec:
  source:
    type: Backup
    backup:
      name: mysql-qa-helm-release-full-backup
      namespace: demo-backup-ns
  skipIfAlreadyExists: true

Explanation for the above configuration:

  • spec.source.type: Specifies what backup type to restore from.
  • spec.source.backup: Contains a reference to the backup object to restore from.
  • spec.skipIfAlreadyExists: Specifies whether to skip restore of a resource if it already exists in the namespace restored.

Restore allows you to restore the last successful Backup for an application. It is used to restore a single namespaces or Helm release, protected by the Backup CRD. The Backup CRD is identified by its name: mysql-qa-helm-release-full-backup.

First, inspect the Restore CRD example from the ovh/docs Git repository:

cat manifests/mysql-qa-helm-release-restore.yaml

Then, create the Restore resource using kubectl:

kubectl apply -f manifests/mysql-qa-helm-release-restore.yaml

Finally, inspect the Restore object status:

kubectl get restore mysql-qa-helm-release-restore -n demo-restore-ns

The output looks similar to (notice the STATUS column set to Completed, as well as the PERCENTAGE COMPLETED set to 100):

NAME                            STATUS      DATA SIZE   START TIME             END TIME               PERCENTAGE COMPLETED   DURATION
mysql-qa-helm-release-restore   Completed   0           2022-06-21T15:06:52Z   2022-06-21T15:07:35Z   100                    43.524191306s

If the output looks like above, then the mysql-qa Helm release restoration process completed successfully.

Verifying Applications Integrity after Restoration

Check that all the demo-restore-ns namespace resources are in place and running:

kubectl get all -n demo-restore-ns

The output looks similar to:

NAME                                                           READY   STATUS      RESTARTS   AGE
pod/mysql-qa-665f6fb548-m8tnd                                  1/1     Running     0          91m
pod/mysql-qa-helm-release-full-backup-metamover-9w7s0y-x8867   0/1     Completed   0          9m2s

NAME               TYPE        CLUSTER-IP     EXTERNAL-IP   PORT(S)    AGE
service/mysql-qa   ClusterIP   10.3.227.118   <none>        3306/TCP   91m

NAME                       READY   UP-TO-DATE   AVAILABLE   AGE
deployment.apps/mysql-qa   1/1     1            1           91m

NAME                                  DESIRED   CURRENT   READY   AGE
replicaset.apps/mysql-qa-665f6fb548   1         1         1       91m

NAME                                                           COMPLETIONS   DURATION   AGE
job.batch/mysql-qa-helm-release-full-backup-metamover-9w7s0y   1/1           28s        9m2s

Next step deals with whole cluster backup and restore, thus covering a disaster recovery scenario.

Step 5 - Backup and Restore Whole Cluster Example

In this step, you will simulate a disaster recovery scenario. The whole OVHcloud Managed Kubernetes Cluster will be deleted, and then the important applications restored from a previous backup.

Next, you will perform the following tasks:

  • Create the multi-namespace backup, using a ClusterBackupPlan CRD that targets all important namespaces from your OVHcloud Managed Kubernetes Cluster.
  • Delete the OVHcloud Managed Kubernetes Cluster, using the OVHcloud Control Panel.
  • Create a new OVHcloud Managed Kubernetes Cluster, using the OVHcloud Control Panel.
  • Re-install TVK and configure the OVHcloud Object Storage bucket as S3 target (you're going to use the same S3 bucket, where your important backups are stored)
  • Restore all the important applications by using the TVK web console.
  • Check the OVHcloud Managed Kubernetes Cluster applications integrity.

Creating the OVHcloud Managed Kubernetes Cluster Backup using TVK Multi-Namespace backup feature

The main idea here is to perform a OVHcloud Managed Kubernetes Cluster backup by including all important namespaces, that hold your essential applications and configurations. Basically, we cannot name it a full cluster backup and restore, but rather a multi-namespace backup and restore operation. In practice this is all that's needed, because everything is "namespaced" in Kubernetes. You will also learn how to perform a cluster restore operation via location from the target. The same flow applies when you need to perform cluster migration.

Typical ClusterBackupPlan manifest targeting multiple namespaces looks like below:

apiVersion: triliovault.trilio.io/v1
kind: ClusterBackupPlan
metadata:
  name: ovh-multi-ns-backup-plan
  namespace: default
spec:
  backupConfig:
    target:
      name: trilio-ovh-s3-target
      namespace: default
  backupComponents:
    - namespace: default
    - namespace: demo-backup-ns
    - namespace: backend
    - namespace: monitoring

Notice that kube-system (or other OVHcloud Managed Kubernetes Cluster related namespaces) is not included in the list. Usually, those are not required, unless there is a special case requiring some settings to be persisted at that level.

Typical ClusterBackup manifest targeting multiple namespaces looks like below:

apiVersion: triliovault.trilio.io/v1
kind: ClusterBackup
metadata:
  name: multi-ns-backup
  namespace: default
spec:
  type: Full
  clusterBackupPlan:
    name: ovh-multi-ns-backup-plan
    namespace: default

Steps to initiate a backup for all important namespaces in your OVHcloud Managed Kubernetes Cluster:

  1. First, change directory where the ovh/docs Git repository was cloned on your local machine:
cd docs
  1. Then, open and inspect the ClusterBackupPlan and ClusterBackup manifest files provided in the docs repository.
cat manifests/multi-ns-backup-plan.yaml
cat manifests/multi-ns-backup.yaml
  1. Create the ClusterBackupPlan resource, using kubectl:
kubectl apply -f manifests/multi-ns-backup-plan.yaml

Now, inspect the ClusterBackupPlan status, using kubectl:

kubectl get clusterbackupplan multi-ns-backup-plan -n default

The output looks similar to (notice the STATUS column value which should be set to "Available"):

NAME                            TARGET                 ...		STATUS
ovh-multi-ns-backup-plan		trilio-ovh-s3-target   ...		Available
  1. Finally, create the ClusterBackup resource, using kubectl:
kubectl apply -f manifests/multi-ns-cluster-backup.yaml

Next, check the ClusterBackup status, using kubectl:

kubectl get clusterbackup multi-ns-cluster-backup -n default

The output looks similar to (notice the STATUS column value which should be set to "Available", as well as the PERCENTAGE COMPLETE set to "100"):

NAME           		BACKUPPLAN             		BACKUP TYPE   STATUS		...		COMPLETE
multi-ns-backup   	ovh-multi-ns-backup-plan	Full          Avilable		...		100                               

If the output looks like above then all your important application namespaces were backed up successfully.

INFO

Please bear in mind that it may take a while for the full cluster backup to finish, depending on how many namespaces and associated resources are involved in the process.

You can also open the web console main dashboard and inspect the multi-namespace backup (notice how all the important namespaces that were backed up are highlighted in green color, in a honeycomb structure)

Re-creating the OVHcloud Managed Kubernetes Cluster and Restoring Applications

An important aspect to keep in mind is that whenever you destroy an OVHcloud Managed Kubernetes Cluster and then restore it, a new Load Balancer with a new external IP is created as well when TVK restores your ingress controller. So, please make sure to update your OVHcloud Managed DNS A records accordingly.

Now, delete the whole OVHcloud Managed Kubernetes Cluster using the OVHcloud Control Panel.

Next, re-create the cluster as described in Creating a OVHcloud Managed Kubernetes Cluster.

To perform the restore operation, you need to install the TVK application as described in Step 1 - Installing TrilioVault for Kubernetes. Please make sure to use the same Helm Chart version - this is important!

After the installation finishes successfully, configure the TVK target as described in Step 2 - Creating a TrilioVault Target to Store Backups, and point it to the same OVHcloud Object Storage bucket where your backup data is located. Also, please make sure that target browsing is enabled.

Next, verify and activate a new license as described in the TrilioVault Application Licensing section.

To get access to the web console user interface, please consult the Getting Access to the TVK Web Management Console section.

Then, navigate to Resource Management > TVK Namespace > Targets (in case of ovh/docs the TVK Namespace is tvk).

TVK Target List

Going further, browse the target and list the available backups by clicking on the Actions button from the right. Then, select Launch Browser option from the pop-up menu (for this to work the target must have the enableBrowsing flag set to "true").

TVK Target Browser

Now, click on the multi-ns-backup-plan item from the list, and then click and expand the multi-ns-backup item from the right sub-window similar to:

Multi-Namespace Restore Phase 1

To start the restore process, click on the Restore button. A progress window will be displayed similar to below:

Multi-Namespace Restore Phase 2

After a while, if the progress window looks like below, then the multi-namespace restore operation completed successfully.

Multi-Namespace Restore Phase 3

Checking OVHcloud Managed Kubernetes Cluster Applications State

First, verify all cluster Kubernetes resources (you should have everything in place):

kubectl get all --all-namespaces

In the next step, you will learn how to perform scheduled (or automatic) backups for your OVHcloud Managed Kubernetes Cluster applications.

Step 6 - Scheduled Backups

Taking backups automatically based on a schedule, is a really useful feature to have. It allows you to rewind back time, and restore the system to a previous working state if something goes wrong. This section provides an example for an automatic backup on a 15 minute schedule (the kube-system namespace was picked).

INFO

TVK Default Scheduling Policies

First, you need to create a Policy CRD of type Schedule that defines the backup schedule in cron format (same as Linux cron). Schedule polices can be used for either BackupPlan or ClusterBackupPlan CRDs. Typical schedule policy CRD looks like below (defines a 15 minute schedule):

kind: Policy
apiVersion: triliovault.trilio.io/v1
metadata:
  name: scheduled-backup-every-15min
  namespace: default
spec:
  type: Schedule
  scheduleConfig:
    schedule:
      - "*/15 * * * *" # trigger every 15 minutes

Next, you can apply the schedule policy to a ClusterBackupPlan CRD for example, as seen below:

apiVersion: triliovault.trilio.io/v1
kind: ClusterBackupPlan
metadata:
  name: multi-ns-backup-plan-5min-schedule
  namespace: default
spec:
  backupConfig:
    target:
      name: trilio-ovh-s3-target
      namespace: default
    schedulePolicy:
      fullBackupPolicy:
        name: scheduled-backup-every-15min
        namespace: default
  backupComponents:
    - namespace: default
    - namespace: demo-backup-ns
    - namespace: backend

Looking at the above, you can notice that it's a basic ClusterBackupPlan CRD, referencing the Policy CRD defined earlier via the spec.backupConfig.schedulePolicy field. You can have separate policies created for full or incremental backups, hence the fullBackupPolicy or incrementalBackupPolicy can be specified in the spec.

Now, please go ahead and create the schedule Policy, using the sample manifest provided by the ovh/docs tutorial (make sure to change directory first, where the ovh/docs Git repository was cloned on your local machine):

kubectl apply -f manifests/triliovault-scheduling-policy-every-15min.yaml

Check that the policy resource was created:

kubectl get policies -n default

The output looks similar to (notice the POLICY type set to Schedule):

NAMESPACE   NAME                           POLICY     DEFAULT
default     scheduled-backup-every-15min   Schedule   false

Finally, create the backupplan resource for the default namespace scheduled backups:

Create the backup plan first for default namespace.

kubectl apply -f manifests/triliovault-multi-ns-backup-plan-every-15min.yaml

Check the scheduled backup plan status for default:

kubectl get clusterbackupplan triliovault-multi-ns-backup-plan-every-15min.yaml -n default

The output looks similar to (notice the FULL BACKUP POLICY value set to the previously created scheduled-backup-every-5min policy resource, as well as the STATUS which should be "Available"):

NAME                                  TARGET                 ...   FULL BACKUP POLICY             STATUS
multi-ns-backup-plan-15min-schedule   trilio-ovh-s3-target   ...   scheduled-backup-every-15min   Available

Create a clusterbackup resource using scheduled policy for every 15 min:

Create and trigger the scheduled backup for default namespace:

kubectl apply -f manifests/triliovault-multi-ns-backup-every-15min.yaml.yaml

Check the scheduled backup status for default:

kubectl get clusterbackup multi-ns-backup-15min-schedule -n default

The output looks similar to (notice the BACKUPPLAN value set to the previously created backup plan resource, as well as the STATUS which should be "Available"):

NAME                             BACKUPPLAN                            BACKUP TYPE   STATUS      ...
multi-ns-backup-15min-schedule   multi-ns-backup-plan-15min-schedule   Full          Available   ...

Now, you can check that backups are performed on a regular interval (15 minutes), by querying the cluster backup resource and inspect the START TIME column (kubectl get clusterbackup -n default). It should reflect the 15 minutes delta.

In the next step, you will learn how to set up a retention policy for your backups.

Step 7 - Backups Retention Policy

The retention policy allows you to define the number of backups to retain and the cadence to delete backups as per compliance requirements. The retention policy CRD provides a simple YAML specification to define the number of backups to retain in terms of days, weeks, months, years, latest etc.

INFO

By default TrilioVault for Kubernetes creates the sample retention policy sample-ret-policy after installation. Users can use the same retention policy is no changes is required. See the default values of the policy in the TVK UI Retention policy: TVK Default Retention Policy

Using Retention Policies

Retention polices can be used for either BackupPlan or ClusterBackupPlan CRDs. Typical Policy manifest for the Retention type looks like below:

apiVersion: triliovault.trilio.io/v1
kind: Policy
metadata:
  name: sample-ret-policy
spec:
  type: Retention
  retentionConfig:
    latest: 2
    weekly: 1
    dayOfWeek: Wednesday
    monthly: 1
    dateOfMonth: 15
    monthOfYear: March
    yearly: 1

Explanation for the above configuration:

  • spec.type: Defines policy type. Can be: Retention or Schedule.
  • spec.retentionConfig: Describes retention configuration, such as what interval to use for backups retention and how many.
  • spec.retentionConfig.latest: Maximum number of latest backups to be retained.
  • spec.retentionConfig.weekly: Maximum number of backups to be retained in a week.
  • spec.retentionConfig.dayOfWeek: Day of the week to maintain weekly backups.
  • spec.retentionConfig.monthly: Maximum number of backups to be retained in a month.
  • spec.retentionConfig.dateOfMonth: Date of the month to maintain monthly backups.
  • spec.retentionConfig.monthOfYear: Month of the backup to retain for yearly backups.
  • spec.retentionConfig.yearly: Maximum number of backups to be retained in a year.

The above retention policy translates to:

  • On a weekly basis, keep one backup each Wednesday.
  • On a monthly basis, keep one backup in the 15th day.
  • On a yearly basis, keep one backup every March.
  • Overall, I want to always have the 2 most recent backups available.

The basic flow for creating a retention policy resource goes the same way as for scheduled backups. You need a BackupPlan or a ClusterBackupPlan CRD defined to reference the retention policy, and then have a Backup or ClusterBackup object to trigger the process.

Typical ClusterBackupPlan example configuration that has retention set, looks like below:

apiVersion: triliovault.trilio.io/v1
kind: ClusterBackupPlan
metadata:
  name: multi-ns-backup-plan-15min-schedule-retention
  namespace: default
spec:
  backupConfig:
    target:
      name: trilio-ovh-s3-target
      namespace: default
    retentionPolicy:
        name: sample-ret-policy
        namespace: default
  backupComponents:
    - namespace: default
    - namespace: backend

Once you apply the ClusterBackupplan, you can check it using:

kubect get clusterbackupplan -n default

Output would look similar to below:

NAME                                            TARGET                 RETENTION POLICY    ...		STATUS
multi-ns-backup-plan-15min-schedule-retention   trilio-ovh-s3-target   sample-ret-policy   ...		Available  

Notice that it uses a retentionPolicy field to reference the policy in question. Of course, you can have a backup plan that has both types of policies set, so that it is able to perform scheduled backups, as well as to deal with retention strategies.

Using Cleanup Policies

Having so many TVK resources (each one responsible with various operations such as: scheduled backups, retention, etc), it is very probable for things to go wrong at some point in time. It means that some of the previously enumerated operations might fail due to various reasons, like: inaccessible storage, network issues for NFS, etc.
So, what happens is that your OVHcloud Managed Kubernetes Cluster will get crowded with many Kubernetes objects in a failed state.

You need a way to garbage collect all those objects in the end and release associated resources, to avoid trouble in the future. Meet the Cleanup Policy CRD:

apiVersion: triliovault.trilio.io/v1
kind: Policy
metadata:
  name: garbage-collect-policy
  namespace: tvk
spec:
  type: Cleanup
  cleanupConfig:
    backupDays: 5

The above cleanup policy must be defined in the TVK install namespace. Then, a cron job is created automatically for you that runs every 30 mins, and deletes failed backups based on the value specified for backupdays within the spec field.

This is a very neat feature that TVK provides to help you deal with this kind of situation.

Conclusion

In this tutorial, you learned how to perform one time, as well as scheduled backups, and to restore everything back. Having scheduled backups in place, is very important as it allows you to revert to a previous snapshot in time, if something goes wrong along the way. You walked through a disaster recovery scenario, as well. Next, backups retention plays an important role as well, because storage is finite and sometimes it can get expensive if too many objects are implied.

All the basic tasks and operations explained in this tutorial, are meant to give you a basic introduction and understanding of what TrilioVault for Kubernetes is capable of. You can learn more about TrilioVault for Kubernetes and other interesting (or useful) topics, by following the links below:

Go further

  • If you need training or technical assistance to implement our solutions, contact your sales representative or click on this link to get a quote and ask our Professional Services experts for assisting you on your specific use case of your project.

Join our community of users.

*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud's service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc.

Questa pagina ti è stata utile?
🚀

Condividi il tuo parere sulla nuova documentazione

Il tuo feedback aiuta i nostri team a migliorare la tua esperienza.

2 minuti · Anonimo

Backup and Restore OVHcloud Managed Kubernetes Cluster, Namespace and Applications using TrilioVault for Kubernetes

Webmail Il mio account Supporto 🇮🇹 Italiano Tema Lingue 🇮🇹 Italiano 🇫🇷 Francais 🇬🇧 English 🇩🇪 Deutsch 🇪🇸 Espanol 🇮🇹 Italiano 🇵🇱 Polski 🇵🇹 Portugues Menu In questa pagina Search ⌘K Documentation Beta Riferimento API Changelog prodotto E-Learning e certificazioni Migrazione Bare Metal Cloud Server dedicati Panoramica Concetti chiave Bare Metal 3-AZ Region - Presentazione dell'offerta Clienti Kimsufi e So you Start - familiarizzarsi con lo Spazio Cliente OVHcloud Shared responsibility for Dedicated Servers (EN) Understanding the dedicated server boot process Per iniziare Iniziare a utilizzare un server dedicato Iniziare a utilizzare un server dedicato Kimsufi, So You Start o Rise Come eseguire le prime operazioni sulle connessioni SSH Come creare e utilizzare chiavi di autenticazione per le connessioni SSH ai server OVHcloud Come salvare le chiavi SSH nello Spazio Cliente Come utilizzare la console IPMI con un server dedicato Come ottenere l'impronta di carbonio dei servizi OVHcloud Configurazione Sistema Configurazione degli account utente e dell'accesso root su un server Come cambiare la Product Key di Windows Server Modificare la password amministratore su un server dedicato Windows Come reimpostare la password amministratore con Rescue-Customer-Windows Come gestire Intel SGX su un server dedicato Aggiornamento dell'hardware su un server dedicato High Grade o Scale Come assegnare un tag a un server Bare Metal How to install VMware ESXi 8 on a dedicated server Storage Gestione e ricostruzione del RAID software sui server in modalita legacy boot (BIOS) Gestione e ricostruzione di un RAID software sui server in modalita UEFI Managing hardware RAID (EN) Hot Swap - Hardware RAID (EN) Sostituire un disco a caldo su un server con RAID Software Configura il tuo MegaRAID in RAID 0 Configura un software mirror (RAID) su Windows OVHcloud API and Storage (EN) Configuring the storage on a HGR-STOR-2 server (EN) Creating a Windows partition on a server with hardware RAID Advance Dedicated Servers - Upgrading your Samsung NVMe PM9A1 firmware (EN) High Grade Dedicated Servers - Upgrading your SSD SAS Western Digital SS300 firmware (EN) High Grade Dedicated Servers - Upgrading your SSD SAS Western Digital SS530 firmware (EN) Dedicated Servers - Upgrading your SSD Solidigm D7-P5520 firmware Dedicated Servers - Upgrading your Micron 7500 PRO firmware Come verificare la versione del firmware BMC su un server dedicato Rete Creare un DNS secondario su un server dedicato Installare la chiave SSH OVHcloud Configurare un NIC per il servizio OVHcloud Link Aggregation nello Spazio Cliente Configurare un NIC per il servizio OVHcloud Link Aggregation in Debian 9 a 11 Come configurare l'aggregazione di link con LACP in Debian 12 o Ubuntu 24.04 (EN) Configurare un NIC per il servizio OVHcloud Link Aggregation in Windows Server 2019 Come configurare il NIC handle per aggregare i link OVHcloud in SLES 15 Tutorial - Installare un server Web (LAMP) su Debian o Ubuntu Manage your server reboot with the OVHcloud Link Aggregation feature (EN) Configurare IPv6 su un server dedicato Configurare un indirizzo IPv6 su una macchina virtuale (EN) Spostare un Additional IP Configurare Additional IP in modalita bridge sulle proprie macchine virtuali Quali sono gli indirizzi IP del monitoring OVHcloud? Configurer son adresse IP en alias Come configurare il reverse DNS del tuo server (record PTR) Determinare se la funzionalita dei MAC virtuali e supportata su un server dedicato Assegnare un MAC virtuale a un Additional IP Configurare la rete su Windows Server con Hyper-V Configurare la rete su Proxmox VE sulle gamme High Grade, Scale & Advance (EN) Upgrade and downgrade Bandwidth via the OVHcloud API Improving Network Resilience on Bare Metal servers vRack Configurare due o piu server dedicati nella vRack Configurare frame Jumbo nella vRack Configurare un blocco Additional IP in un vRack Configurare un blocco Additional IPv6 in un vRack Modificare i blocchi IP annunciati nella vRack Creare due o piu VLAN nella vRack Utilizza Hyper-V con indirizzi Additional IP su una vRack Configurare la vRack tra un'istanza Public Cloud e un server dedicato Upgrade and downgrade private bandwidth (vRack) via the OVHcloud API Implementazione OVHcloud API and OS Installation (EN) Bring Your Own Image (BYOI) / Bring Your Own Linux (BYOLinux), a comparison sheet (EN) Bring Your Own Image (BYOI) (EN) Bring Your Own Linux (BYOLinux) (EN) Configurare uno script iPXE personalizzato per avviare il tuo server tramite l'API OVHcloud Migrazione Migrare i dati da un server dedicato a un altro Copiare dati da un server dedicato a un altro con rsync Tutoriels Tutorial - Come utilizzare PuTTY per le connessioni SSH e l'autenticazione Tutorial - Configuring pfSense network bridge (EN) Tutorial - Installare un server Web (LAMP) su Debian o Ubuntu Activating Windows Machines using Hyper-V on an OVHcloud licensed Windows Server Installare CUDA su un server dedicato GPU Eseguire il backup di dati e database su un server di storage Come utilizzare SFTP per trasferire i file How to create a Palworld compatible server (EN) Installer un environnement de developpement web sur un VPS ou un serveur dedie How to deploy and verify an OpenNebula Hosted Cloud on Bare Metal servers How to install CloudPanel on a VPS or a Dedicated Server How to install WordPress with Docker on a VPS or a dedicated server How to install WordPress with WP-CLI on a VPS or a dedicated server How to install ISPmanager on a VPS or Dedicated Server Come evitare che le tue email siano contrassegnate come Spam Sicurezza Rafforzamento Mettere in sicurezza un server dedicato Mettere in sicurezza un server con Memcached How to mitigate the Zenbleed vulnerability How to mitigate the Downfall vulnerability How to mitigate the Inception vulnerability Find your patch for Meltdown and Spectre Information about Meltdown and Spectre vulnerability fixes AMD SME/SEV on Ubuntu 20 Dedicated Server Security Specifications Controllare e proteggere il vostro server dedicato ESXi dal primo avvio (EN) ESXi Dedicated Servers - FAQ Backup Preparing a Bare Metal Server backup with Veeam Enterprise (EN) Backing up a Bare Metal Linux Server with Veeam Enterprise (EN) Backing Up a Bare Metal Windows Server Using Veeam Agent for Windows (EN) Restoring a Bare Metal Server with Veeam Enterprise (EN) Utilizzare il Backup Storage su un server dedicato Rete OVHcloud AntiSpam - Migliori pratiche e sblocco di un indirizzo IP Configura il firewall su Linux con iptables Configura il firewall su Windows Attivare e configurare Edge Network Firewall Proteggere un server game con il firewall dell'applicazione Monitoraggio degli attacchi DDoS con il Network Security Dashboard How to configure the Anti-DDos Infrastructure for Solana Diagnosi Come recuperare l'accesso al server in caso di perdita della password dell'utente Attivare e utilizzare il Rescue mode Come attivare e utilizzare la modalita Rescue Windows Sostituzione del vostro paio di chiavi SSH Sostituire un disco difettoso Diagnosticare problemi hardware su un server dedicato Recuperare il numero di serie di un hard disk Completa l'intervento di manutenzione del tuo server dedicato (EN) Disinstallare il sistema di monitoring RTM v2 Recupero dei database in modalita Rescue Network - Fixing slow downloads problems inside containers and VMs running on Proxmox VE servers with Broadcom BCM57502 NICs Server Privati Virtuali Panoramica Per iniziare Prime attivazione di un VPS VPS - Gestione tramite lo Spazio Cliente OVHcloud FAQ su VPS OVHcloud Configurazione degli account utente e dell'accesso root su un server Come eseguire le prime operazioni sulle connessioni SSH Come creare e utilizzare chiavi di autenticazione per le connessioni SSH ai server OVHcloud Come salvare le chiavi SSH nello Spazio Cliente Come modificare le risorse di un VPS Partizionare un VPS dopo un upgrade di storage Iniziare a utilizzare applicazioni preinstallate Utilizzare la console KVM per accedere a un VPS Gestire un VPS legacy Configurazione Backup Usare snapshot su un VPS Comment utiliser les sauvegardes automatisees sur un VPS Configura un disco aggiuntivo Aumenta la dimensione di un disco aggiuntivo Rete e IP Configurare IPv6 su un server VPS Come configurare il reverse DNS del tuo server (record PTR) Configurare un indirizzo IP in alias Configurare un DNS secondario OVHcloud su un VPS Utilizzo avanzato Deploy di cPanel su un VPS Backup automatico - Kernel panic (cPanel) Migrazione How to migrate a website from a VPS to a Dedicated Server or a Public Cloud instance (EN) How to migrate an n8n configuration between two VPS Tutorial Tutorial - Come utilizzare PuTTY per le connessioni SSH e l'autenticazione Come utilizzare SFTP per trasferire i file Recupero dei database in modalita Rescue Come creare un server Minecraft su un VPS o un server dedicato How to create a Palworld compatible server (EN) Tutorial - Installare un server Web (LAMP) su Debian o Ubuntu Installer un environnement de developpement web sur un VPS ou un serveur dedie How to install CloudPanel on a VPS or a Dedicated Server How to install WordPress with Docker on a VPS or a dedicated server How to install WordPress with WP-CLI on a VPS or a dedicated server Automating the deployment of your website on your VPS via GitHub Actions (EN) Automating the deployment of your website on your VPS via GitLab CI/CD (EN) How to install n8n on an OVHcloud VPS How to migrate an n8n configuration between two VPS Automatizzare l'invio di SMS con n8n tramite l'API OVHcloud How to create and import a Lovable website on an OVHcloud VPS How to install an AI agent on an OVHcloud VPS How to install ISPmanager on a VPS or Dedicated Server How to install Docker and Docker Compose on a VPS How to install Nextcloud on an OVHcloud VPS with Docker How to install Nextcloud on an OVHcloud VPS with Docker and Traefik How to install an OpenClaw agent on a VPS Automated backup with plakar Sicurezza Securiser un VPS Come installare un certificato SSL su un VPS Configura il firewall su Linux con iptables Configura il firewall su Windows Diagnosi Verifica il file system su un VPS VPS - Attivare i log di avvio Windows Visualizza i log di boot nel KVM Attivare e utilizzare il Rescue mode su un VPS Come recuperare l'accesso al server in caso di perdita della password dell'utente Modificare la password amministratore su un server Windows Sostituzione del vostro paio di chiavi SSH Come evitare che le tue email siano contrassegnate come Spam Risorse aggiuntive Public Cloud & VPS - Image and OS life cycle and end of life/support announcements Fine del supporto Plesk e cPanel per VPS - Garantire la continuita dei servizi Managed Bare Metal Panoramica Opzioni e servizi OVHcloud Setting up a VPN for OVHcloud Zerto DRP Ripristina i backup tramite le API OVHcloud Activating and using Veeam Managed Backup Modificare la politica di accesso al vCenter Autorizzare IP ad accedere al vCenter FAQ Capacita tecniche Funzionalita OVHcloud Aggiungere un blocco IP Snapshot orari OVHcloud Modificare la password utente Creazione di VLAN Utilizzare Managed Bare Metal all'interno di una vRack Host sostitutivo Rimuovere un server host Rimuovere un datastore Modificare i permessi di un utente Aggiungere una risorsa oraria Associare un’email a un utente vSphere Utilizzare il plugin OVHcloud Network Disattivare una soluzione Managed Bare Metal Per iniziare Introduzione allo Spazio Cliente Managed Bare Metal OVHcloud Configurare un IP su una macchina virtuale (EN) Best practice di sicurezza per il client vSphere Web Connessione all’interfaccia vSphere Migrating an infrastructure to a new vDC Migrating an infrastructure to a Managed Bare Metal solution Gestione delle macchine virtuali Modificare le risorse di una macchina virtuale Creare uno Snapshot Creare un alert Clonare una VM Scegliere il formato del disco Installare VMware Tools Installare un template OVF Windows e SQL Server Deploy di una macchina virtuale Evitare la modalita di sola lettura sui dischi delle VM Linux Caratteristiche VMware vSphere VMware vMotion VMware Storage VMotion VMware HA (High Availability) VMware Fault Tolerance VMware DRS (Distributed Resource Scheduler) Attivare Virtual Machine Encryption (VM Encryption) Utilizzare SDK vSphere Hosted Private Cloud Public VCF as-a-Service Panoramica Concetti chiave Capacita tecniche Hosted Private Cloud VMware Lifecycle Policy Ciclo di vita di VMware on OVHcloud - Determinare le azioni da intraprendere (EN) Responsibility sharing for the VMware on OVHcloud service Datamotive - Introduction Public VCF as-a-Service - The fundamentals of Public VCF as-a-Service Technical capabilities and limitations of Public VCF as-a-Service Per iniziare Introduzione allo Spazio Cliente Private Cloud OVHcloud Connessione all’interfaccia vSphere Connexion a l'API OVH Public VCF as-a-Service - Logging in to your organization (EN) Public VCF as-a-Service - Find out how to use the Public VCF as-a-Service user interface (EN) Configurazione Connettere un'immagine ISO a una VM (EN) How to disconnect an ISO image from a VM (EN) Configurare un IP su una macchina virtuale (EN) Public VCF as-a-Service - Network concepts and best practices Public VCF as-a-Service - Creating network components from the Public VCF as-a-Service control panel Public VCF as-a-Service - Linking a public IP block with vRack Public VCF as-a-Service - Declaring the public IP gateway in VCD Migrazione Migrating a PCC to Hosted Private Cloud Migrating an infrastructure to a new vDC End-Of-Life management for LV1 and LV2 storage Public VCF as-a-Service - Migrate from VMware vSphere on OVHcloud Public VCF as-a-Service - Setting up your network after vSphere to Public VCF as-a-Service migration Reversibility Policy for the Managed Mutualized Virtualization product Tutorials Public VCF as-a-Service - Creating a new virtual machine (EN) Public VCF as-a-Service - Backups with Veeam Data Platform (EN) Sicurezza Diagnosi Risorse aggiuntive FAQ Hosted Private Cloud Come ottenere l'impronta di carbonio dei servizi OVHcloud Public VCF as-a-Service - FAQ (EN) Managed VMware Concetti chiave SPN Concept Concepts overview Per iniziare Iniziare con NSX (EN) Activer NSX-T dans un Hosted Private Cloud VMware on OVHcloud Introduzione a vRealize Operations - vROPS (EN) Getting started with your SecNumCloud vSphere Configurazione Macchine virtuali Deploy di una macchina virtuale Installare VMware Tools Scegliere il formato del disco Modificare le risorse di una macchina virtuale Evitare la modalita di sola lettura sui dischi delle VM Linux Attivazione della modalita promiscua su una macchina virtuale (EN) Changing the MTU size for machines reaching the OVHcloud Gateway SSL (EN) Deploy an OVF template through content libraries (EN) Installare un template OVF Windows e SQL Server OVF Tool (EN) Archiviazione e risorse Come aggiungere uno storage? (EN) Come aggiungere un host? (EN) Rimuovere un datastore Rimuovere un server host Uploading an ISO in a datastore Rete e connettivita Creazione di VLAN (EN) Compatibilita della vRack con Hosted Private Cloud Enable the Private Gateway Aggiungere un blocco IP Host sostitutivo Gestione dei segmenti in NSX (EN) Configurazione DHCP in NSX (EN) Configurazione del server d'inoltro DNS in NSX (EN) Aggiunta di un nuovo gateway di livello 1 in NSX (EN) Funzionalita vSphere Utilizzare SDK vSphere Managing granular rights on vSphere objects Creazione di cluster e attivazione di EVC (EN) Backup e replica Activating and using Veeam Managed Backup (EN) Setting up Zerto Virtual Replication between two OVHcloud data centres Setting up Zerto multi-site replication on OVHcloud Managed vSphere Using Zerto between OVHcloud and a third-party platform Encrypting backup jobs with Veeam and OKMS Evitare il freeze di una macchina virtuale con l’opzione Veeam Managed Backup Migrazione Migrating OmniOS datastores Move2Cloud - Migrating VMware Workloads to OVHcloud Hosted Private Cloud with Veeam Replication Move2Cloud - Migrate VMware workloads to OVHcloud Hosted Private Cloud with Zerto Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication Move2Cloud - Migrate VMware workloads to OVHcloud SecNumCloud Hosted Private Cloud with Zerto Tutorials Macchine virtuali Creare uno Snapshot (EN) Clonare una VM (EN) Registra le VM in un nuovo PCC Verificare una macchina in caso di lentezza (EN) Creare un alert VMware vCenter Converter Archiviazione e replica Snapshot orari OVHcloud Zmotion Ripristina i backup tramite le API OVHcloud Eliminare la copia di una VM dal sito di recupero Zerto Veeam Cloud Connect - How to migrate data from Veeam Cloud Connect to Object Storage Rete e NSX Utilizzare il plugin OVHcloud Network Utilizzare Hosted Private Cloud all'interno di una vRack Utilizzare il plugin OVHcloud Configurazione di NAT per i reindirizzamenti delle porte con NSX (EN) Configurazione del bilanciamento del carico in NSX (EN) Funzionalita vSphere Capire l'interfaccia vScope (EN) VMware DRS (Distributed Resource Scheduler) VMware Storage VMotion Applicare l’iperconvergenza VMware utilizzando vSAN (EN) Aggiungere un server ESXi in un cluster vSAN (EN) Aggiornamento del formato del disco vSAN (EN) Gestione dei domini di guasto vSAN VMware vMotion Alta disponibilita e resilienza VMware HA (High Availability) VMware Fault Tolerance Sicurezza Gestione identita e accessi IAM for VMware on OVHcloud - Presentation and FAQ IAM for VMware on OVHcloud - How to activate IAM IAM for VMware on OVHcloud - How to create an IAM vSphere role IAM for VMware on OVHcloud - How to associate a vSphere role with an IAM policy IAM for VMware on OVHcloud - How to associate a user with a global IAM policy How to use IAM policies with vSphere (EN) Modificare la password utente Associare un’email a un utente vSphere Crittografia e gestione delle chiavi vNKP - Enabling virtual machine encryption (EN) Attivare Virtual Machine Encryption (VM Encryption) (EN) KMS for VMware on OVHcloud - VM encryption use case scenarios KMS for VMware on OVHcloud - Configuring VM encryption Mise en route du KMS CipherTrust Manager Sicurezza di rete (NSX) Gestione distribuita del firewall in NSX (EN) Gestione del firewall del gateway in NSX (EN) Setting up an IPsec Tunnel with NSX (EN) Configure BGP between two PCCs via NSX-T (EN) Rafforzamento del sistema e vulnerabilita Best practice di sicurezza per il client vSphere Web Utilizzare l’interfaccia sicura Utilizzare l’autenticazione a due fattori (2FA) su un’infrastruttura Private Cloud Autorizzare IP ad accedere al vCenter Rilevare e bloccare la vulnerabilita L1TF Checking and applying patches for Spectre/Meltdown vulnerabilities on your hosts Utiliser le protocole SSLv3 sur Private Cloud Conformita e SecNumCloud Partage de responsabilite sur le service Hosted Private Cloud by VMware sous la qualification SecNumCloud VPN-SPN Concept SPN Connector Concept Diagnosi Manutenzione e aggiornamenti VMware on OVHcloud maintenance operations (EN) Scegli la manutenzione pianificata su Hosted Private Cloud Updating hosts using vSphere Lifecycle Management (vLCM) Usare VMware Update Manager Estendi un volume in vSphere e in un OS (EN) Testa la perdita temporanea di un host attivando la modalita resilienza (EN) Monitoraggio e log Configuring a vROps alert via the SMTP protocol Logs Data Platform - Collect VMware on OVHcloud logs (EN) NSX-T: retrieving logs How to read and filter NSX-T logs Monitoraggio della conformita Attivare la certificazione PCI DSS nel Private Cloud OVH How to manage Windows licences for virtual machines on your Hosted Private Cloud infrastructure Come cambiare la Product Key di Windows Server Risorse aggiuntive NSX - FAQ (EN) Pricing and Management of OVHcloud NSX Edges FAQ SecNumCloud Connectivity SNC Cloud Platform Per iniziare Mise en route de votre projet SNC Cloud Platform Comment sauvegarder une instance SNC Cloud Platform Comment sauvegarder un bucket Object Storage SNC Cloud Platform Bare Metal Pod Per iniziare Getting started with your Bare Metal Pod SecNumCloud On-Prem Cloud Platform Per iniziare Getting started with your OPCP Lifecycle of an OPCP Node OPCP - How to use the APIs and obtain the credentials OPCP - How to install an instance from the Horizon interface OPCP - How to Deploy an Instance via OpenStack APIs OPCP - How to setup LACP on a Node OPCP - How to set up Trunk ports on a Node OPCP - How to configure a software RAID on a node OPCP - How to see the node inventory Risorse aggiuntive OPCP - Object Storage features and specifications Building a custom OpenStack Image on OPCP OPCP - Ceph RBD Block Storage - Performance, Resilience and Scalability with OpenStack Nutanix on OVHcloud Concetti chiave Nutanix on OVHcloud - Documentazione generale (EN) Nutanix hardware compatibility - OVHcloud configurations Versioni di Nutanix AOS supportate da OVHcloud (EN) Elenco delle licenze inclusi (EN) Disaster Recovery Plan a Nutanix (EN) Condivisione delle responsabilita - Nutanix on OVHcloud (EN) Nutanix on OVHcloud - Lifecycle Policy Per iniziare Iniziare a utilizzare il cluster Nutanix (EN) Hyperconvergenza Nutanix (EN) Ridistribuzione personalizzata del tuo Cluster (EN) Presentazione dello storage su Nutanix (EN) Importare immagini ISO (EN) Gestione delle macchine virtuali (EN) Gestione di alert ed eventi (EN) Gestione delle licenze nel cluster dell'offerta Nutanix on OVHcloud BYOL (EN) Rete e sicurezza Documentazione di OVHgateway (EN) Aggiungere un indirizzo IP pubblico a una nuova VM (EN) Upgrade del cluster Nutanix (EN) Aggiornamento Firmware Del Cluster Nutanix (EN) Configurazione Modifica della vRack di un cluster Nutanix (EN) Isolamento delle macchine di gestione dalla produzione (EN) Configura Flusso Nutanix (EN) Sostituzione del OVHgateway con un server dedicato (EN) Sostituzione del OVHgateway (EN) KMS configuration with Nutanix on OVHcloud Configura HYCU Backup (EN) Configura Veeam Backup per Nutanix (EN) Migrazione Migrazione verso Nutanix tramite il tool Nutanix Move (EN) Tutorials Strumenti avanzati (EN) Attiva le VM Windows installate su Nutanix da OVHcloud (EN) Aggiungere o rimuovere un nodo in un cluster Nutanix (Scale In/Out) (EN) Sostituzione di Prism Central dalla modalita Small alla modalita X-LARGE (EN) Configurazione NCM Self Service (CALM) (EN) Impostazione di Objects Nutanix (EN) Sicurezza Protezione dell'accesso Web a Prism Central (EN) Interconnessione IPSec tra due siti (EN) Interconnessione di cluster attraverso la vRack (EN) Diagnosi Recupera le informazioni di stato della tua installazione Nutanix (EN) Risorse aggiuntive Replicazione asincrona o NearSync attraverso Prism Element (EN) Replica avanzata con Leap (EN) Configurazione del ripristino di emergenza con Metro (EN) Setting up Multicloud Snapshot Technology (MST) on a Nutanix on OVHcloud infrastructure Configuring Prism Central Point-in-Time Backup to OVHcloud S3-compatible Object Storage SAP on OVHcloud Concetti SAP HANA on Bare Metal and SAP Application Servers on VMware on OVHcloud SAP infrastructure with VMware on OVHcloud solution SAP infrastructure with SecNumCloud-qualified SAP HANA on Private Cloud Per iniziare Install SAP HANA on Bare Metal with SLES 15 for SAP Deploy a virtual machine with SAP HANA and OVHcloud Backint Agent pre-installed Deployer un SAProuter avec NSX Shared responsibility for SAP on OVHcloud solutions Implementazioni automatizzate Deploy virtual machines of SAP Application Server on VMware on OVHcloud solution with Terraform Deploy virtual machines of SAP HANA database on VMware on OVHcloud solution with Terraform Deploy an SAP system infrastructure on VMware on OVHcloud solution with Terraform SAP pre-installation wizard Resilienza SAP HANA cluster with SLES on VMware on OVHcloud Backups Install and use OVHcloud Backint Agent for SAP HANA Use OVHcloud Backint Agent with several Object Storage buckets OVHcloud Backint Agent versions Sauvegarder SAP HANA avec Veeam Backup and Replication Osservabilita SAP logs on OVHcloud Logs Data Platform - Configuration SAP logs on OVHcloud Logs Data Platform - Analysez et exploitez vos logs SAP logs on OVHcloud Logs Data Platform - Index des logs SAP Public Cloud Public Cloud - Informazioni generali Panoramica Concetti chiave Public Cloud Glossary Limiti di velocita delle API Public Cloud Comparison and resilience of Deployment Modes - Understanding 3-AZ / 1-AZ / Local Zones (EN) 3-AZ resilience: Mechanisms and reference architectures (EN) How do Savings Plans work? Per iniziare L'essenziale per iniziare con il Public Cloud Scopri l’interfaccia Public Cloud Creazione del tuo primo progetto Public Cloud OVHcloud Getting started with OVHcloud Shell Getting Started with OVHcloud CLI Configurazione Informazioni sulla fatturazione Aumentare le quote Public Cloud Comment gerer un Savings Plan Gestione dei progetti Public Cloud Best Practices for securing & structuring OVHcloud Public Cloud Projects (EN) Eliminare un progetto Public Cloud Delega progetti Migrazione Public Cloud IaaS Migration - Steps and Best Practices Architecture Reference - Building a Landing Zone with OVHcloud Public Cloud Tutorials Gestione via Horizon Introduzione a Horizon Parametri di accesso e sicurezza in Horizon Gestione via Openstack Preparare l’ambiente per utilizzare l’API OpenStack Impostare le variabili d'ambiente OpenStack Utilizzo dei token OpenStack Gestione dei token How to use service accounts to connect to OpenStack (EN) Gestione degli utenti OpenStack Gestione delle regole di firewall e port security sulle reti che utilizzano OpenStack CLI Gestione via Terraform Terraform Tutorial (EN) Sicurezza Healthcare (HDS) compliance activation (EN) Risoluzione dei problemi FAQ Public Cloud OVHcloud Risorse aggiuntive Sistema di fatturazione dei servizi Public Cloud Proper Usage and Limitations of Classic Multi-Attach Block Storage in 3AZ Regions Understanding Landing Zones Understanding metrics in OVHcloud Public Cloud Compute Panoramica Concetti chiave Public Cloud Istanze - Concetti chiave Per iniziare Aggiungi credito Cloud al tuo progetto Come creare un'istanza Public Cloud e connettersi Gestire le istanze Public Cloud Come avviare un'istanza Public Cloud su un volume avviabile Sospendi o metti in pausa un’istanza Attiva una licenza Windows per un'istanza in modalita privata Iniziare a utilizzare applicazioni preinstallate Configurazione Gestione del progetto Modificare i contatti di un progetto Public Cloud Compute - Passare dalla fatturazione oraria a quella mensile Gestione delle istanze Effettuare il backup di un'istanza Crea/ripristina il tuo server virtuale da un backup Modificare l’hostname di un’istanza Public Cloud Comment activer le mode rescue sur une instance Public Cloud Mettere un’istanza Metal in modalita Rescue - (EN) Come sostituire un paio di chiavi SSH su un'istanza Public Cloud Creare un’istanza GPU Configura il reverse DNS di un'istanza Public Cloud Ridimensionare un'istanza dallo Spazio Cliente OVHcloud Creating and using a Server Group in Horizon and CLI Gestione via Horizon Creare un’istanza dall’interfaccia Horizon Gestisci le tue istanze Public Cloud tramite Horizon Creare e configurare un gruppo di sicurezza su Horizon Gestisci gli snapshot di un’istanza con Horizon Crea, carica ed elimina immagini con Horizon Ridimensionare un’istanza via Horizon Passare da un'istanza flex a un'istanza classica Gestione via API OpenStack Come utilizzare l’API OpenStack Iniziare con la gestione dei volumi con l'API OpenStack Importa la tua immagine Ridimensionare un’istanza Public Cloud con il CLI OpenStack Scaricare e trasferire il backup di un’istanza da una Region OpenStack ad un’altra Esegui uno script durante la creazione della tua istanza Condividere un oggetto con un indirizzo temporaneo Condividere immagini tra progetti Public Cloud Migrazione Migrazione di istanze tra zone di disponibilita (AZ) Tutorials Tutorial - Come utilizzare PuTTY per le connessioni SSH e l'autenticazione Using OVHcloud Object Storage as Terraform Backend to store your Terraform state (EN) Using OVHcloud Object Storage as Pulumi Backend to store your Pulumi state Create a custom OpenStack image with Packer (EN) How To Install ownCloud on a Public Cloud Instance Come installare Plesk su un’istanza Public Cloud Installa WordPress sulla tua istanza Installare l'agente Prometheus su un'istanza Public Cloud How to deploy the 3CX IPBX automatically on OVHcloud Public Cloud Tutorial - Installare un server Web (LAMP) su Debian o Ubuntu Local Zone VPN-as-a-Service (VPNaaS) with Tailscale integration (EN) Enterprise File Storage - Connect a Public Cloud instance to an EFS Volume via vRack Private Network Sicurezza Come creare e utilizzare chiavi di autenticazione per le connessioni SSH alle istanze Public Cloud Come configurare chiavi SSH aggiuntive su un’istanza Modificare la password amministratore su un server Windows Aggiorna il tuo sistema operativo Risoluzione dei problemi Forensics: How to deal with Public Cloud instances (EN) Riparare il bootloader GRUB Ridimensionare il file system su FreeBSD 12 Recupero dei database in modalita Rescue FAQ - Modifica del metodo di fatturazione mensile Risorse aggiuntive Public Cloud Instances - Shared responsibilities (EN) Public Cloud & VPS - Image and OS life cycle and end of life/support announcements Local Zone Compute - Funzionalita, capacita e limiti Come ottenere l'impronta di carbonio dei servizi OVHcloud Come evitare che le tue email siano contrassegnate come Spam Storage and Backup Object Storage S3 compatible Concetti chiave Object Storage - Choosing the right storage class for your needs Object Storage - Endpoints and Object Storage geoavailability Comparison of Object Storage Deployment Modes - Understanding 3-AZ / 1-AZ / Local Zones Cold Archive - Panoramica (EN) Per iniziare Object Storage - Getting started Cold Archive - Getting started with Cold Archive Object Storage - Identity and access management Configurazione Object Storage - Getting Started with Versioning Object Storage - Smart Storage Management with Lifecycle Rules Object Storage - Master asynchronous replication across your buckets Object Storage - Server Access Logging Object Storage - Setting up CORS on Object Storage Object Storage - Bucket ACL Object Storage - Hosting a static website in an Object Storage bucket Object Storage - Restoring an archived object from Cold Archive storage class Object Storage - Enabling HTTPS on a static website using a custom domain Object Storage - How to connect Object Storage buckets with other resources in a vRack Migrazione Object Storage - How to migrate from an S3-compatible object storage provider to OVHcloud Object Storage Object Storage - How to migrate from OVHcloud Swift Object Storage to OVHcloud S3-compatible Object Storage Tutorials Object Storage - Use Object Storage with Rclone Object Storage - Use Object Storage with S3cmd Object Storage - Use Object Storage with WinSCP Object Storage - Utilizza Object Storage con Veeam (EN) Object Storage - Utilizza Object Storage con Nextcloud (EN) Object Storage - Utilizza Object Storage con Owncloud (EN) Object Storage – Use Object Storage with Cohesity NetBackup Object Storage – Use Object Storage with Pure Storage Flashblade Object Storage - Manage an Object Storage bucket with Terraform Object Storage – How to share an object or file externally Sicurezza Object Storage - Encrypt your server-side objects with SSE-C or SSE-OMK Object Storage - Managing object immutability with Object Lock (WORM) Object Storage - Identity and access management Risoluzione dei problemi Object Storage - FAQ Cold Archive - FAQ (EN) Object Storage - Local Zones specifications Object Storage - Compliance Object Storage - Limiti tecnici (EN) Object Storage - Optimising Performance Object Storage - Optimise the sending of your files to Object Storage Risorse aggiuntive Object Storage - Shared Responsibility Cold Storage - Shared Responsibility for archive and restoration services Object Storage - Third-party applications compatibility Swift Per iniziare Object Storage Swift - Creating an Object Storage container Object Storage Swift - Come utilizzare l’API Swift Object Storage Swift - Iniziare a utilizzare l'API Swift S3 Configurazione Object Storage Swift - Configura un dominio su un container del tuo Object Storage Object Storage Swift - Sincronizzazione dei contenitori di oggetti (EN) Object Storage Swift - Configura la cancellazione automatica dei tuoi oggetti Object Storage Swift - Setting up CORS on Object Storage (EN) Cloud Archive Swift - Gestisci i tuoi archivi con un client SFTP/SCP Cloud Archive Swift - Creazione di container Public Cloud Archive Cloud Archive Swift - Rendi disponibili i tuoi dati salvati su Public Cloud Archive Cloud Archive Swift - Set up an Access Control List on Public Cloud Archive (EN) Migrazione Object Storage - How to migrate from OVHcloud Swift Object Storage to OVHcloud S3-compatible Object Storage Tutorials Object Storage Swift - Sincronizza un Synology NAS con l'Object Storage Object Storage Swift - Configura un container di oggetti S3QL (EN) Object Storage Swift - Gestisci il tuo Object Storage con CyberDuck Object Storage Swift - Using Object Storage with Rclone Object Storage Swift - Configura il tuo Object Storage su Owncloud (EN) Cloud Archive Swift - Gestisci i tuoi archivi con un client Swift (Cyberduck) Cloud Archive Swift - Gestisci i tuoi archivi con Rsync Sicurezza Object Storage Swift - Set up an Access Control List on Object Storage (EN) Risoluzione dei problemi Object Storage Swift - S3/Swift REST API compatibility (EN) Object Storage Swift - Capabilities and limitations Cloud Archive Swift - Capabilities and limitations Object Storage Swift - Ottimizza il trasferimento dei tuoi file verso l’Object Storage Risorse aggiuntive Object Storage Swift - Curl Command Memo (EN) Object Storage Swift - Swift commands Memo (EN) Cloud Archive Swift - Curl Command Memo (EN) Cloud Archive Swift - Swift Command Memo (EN) Block Storage Concetti chiave Scegliere la classe corretta di Block Storage Proper Usage and Limitations of Classic Multi-Attach Block Storage in 3AZ Regions Per iniziare Crea e configura un disco aggiuntivo sulla tua istanza Creare un backup di un volume Creare uno Snapshot di un volume Configurazione Creare un volume a partire da un backup Aumenta la dimensione di un disco aggiuntivo Esegui un test della velocita dei tuoi dischi Migrazione Migrer un volume Block Storage vers un volume chiffre LUKS Modificare un Volume Block Storage Risorse aggiuntive Public Cloud Block Storage - Shared responsibilities (EN) File Storage Key concepts Per iniziare File Storage Service - Getting started (Beta) Public Cloud Network Services Concetti chiave Concepts - Public Cloud Networking (EN) Concepts - Additional IP or Floating IP (EN) Concepts - Load Balancer (EN) Public Cloud Network Services - Known limits (EN) Per iniziare Private Network Creating a private network with Gateway (EN) Configurazione della vRack sul Public Cloud Configuring vRack on the Public Cloud using the OVHcloud API (EN) Configurare il Public Cloud vRack con OpenStack CLI Modifica i server DNS di un'istanza Public Cloud Load Balancer Getting started with Load Balancer on Public Cloud Public IPs Attaching a Floating IP to a Public Cloud instance (EN) Configurazione Private Network How to share a private network between 2 Public Cloud projects How to extend a private OVHcloud network across Public Cloud regions Update a subnet properties (EN) Changing the MTU size for existing networks using OpenStack CLI/API (EN) Load Balancer Deploying a Public Cloud Load Balancer (EN) Updating a Load Balancer size via the Horizon interface Using the weight feature on a Load Balancer member Public Cloud Load Balancer TCP / HTTP / HTTPS Logs Forwarding (EN) Public IPs Configura un Additional IP Acquista un Additional IP Importa un Additional IP Trasferisci il tuo Additional IP Gateway L3 services SNAT configuration (EN) Configurare IPv6 su un’istanza Public Cloud Configuring a public IP block in a vRack on a Public Cloud instance Tutorials Generale Rendere sicura la tua infrastruttura OVHcloud con Stormshield Network Security Securing your OVHcloud infrastructure with Ubika WAAP Gateway (EN) Private Network Local Zone VPN-as-a-Service (VPNaaS) with Tailscale integration (EN) Load Balancer Configuring a secure Load Balancer with Let's Encrypt (EN) Sicurezza Configuring a secure Load Balancer with Let's Encrypt (EN) Configuring a TERMINATED_HTTPS listener via CLI / Horizon Rendere sicura la tua infrastruttura OVHcloud con Stormshield Network Security Securing your OVHcloud infrastructure with Ubika WAAP Gateway (EN) Risoluzione dei problemi Public Cloud Network Services - FAQ (EN) Risorse aggiuntive How to create and manage a Health Monitor for OVHcloud Public Cloud Load Balancer How to create and manage Level 7 (L7) Policies and Rules for OVHcloud Public Cloud Load Balancers Public Cloud Load Balancer monitoring with Prometheus Containers & Orchestration Managed Kubernetes Service (MKS) Panoramica Key concepts Understanding OVHcloud Managed Kubernetes architecture Limites connues Choosing the right OVHcloud Managed Kubernetes Plan: Free or Standard Available datacenters, worker nodes and persistent storage flavors Exposed APIs, Kubernetes configuration and Feature gates Getting started Creating a cluster Deploying an application Deploying a Hello World application Expose your app deployed on an OVHcloud Managed Kubernetes Service Installing the Kubernetes Dashboard on OVHcloud Managed Kubernetes Installing and using Helm on OVHcloud Managed Kubernetes Installing WordPress on OVHcloud Managed Kubernetes Deploying a GPU application on OVHcloud Managed Kubernetes Service Managed Kubernetes objects (services, deployments, pods...) Configuration Cluster Configuring kubectl on an OVHcloud Managed Kubernetes cluster Configuring the API server flags on an OVHcloud Managed Kubernetes cluster Resetting an OVHcloud Managed Kubernetes cluster Upgrading Kubernetes version on an OVHcloud Managed Kubernetes cluster Add IP restrictions on an OVHcloud Managed Kubernetes cluster Changing the security update policy on an OVHcloud Managed Kubernetes cluster Configuring the OIDC provider on an OVHcloud Managed Kubernetes cluster Personnaliser l'allocation IP sur un cluster OVHcloud Managed Kubernetes Nodepools & Nodes How to manage nodes and node pools on an OVHcloud Managed Kubernetes cluster Dynamically resizing a cluster with the cluster autoscaler Configuring the cluster autoscaler Adding Labels & Taint on Node Pool (Node Pool template) Cluster autoscaler example Deploy applications to specific Nodes and Nodes Pools Taint, cordon and drain specific Nodes and Nodes Pools Adapt your Inotify parameters for your Managed Kubernetes Service deployments Storage Persistent Volumes on OVHcloud Managed Kubernetes Service Resizing Persistent Volumes Configuring multi-attach persistent volumes with OVHcloud NAS-HA Configuring multi-attach persistent volumes with Enterprise File Storage Configuring multi-attach persistent volumes with OVHcloud Cloud Disk Array Formating NVMe disks on IOPS nodes Network Using vRack Private Network Using vRack - Communicating between different private networks Using a custom gateway on an OVHcloud Managed Kubernetes cluster Working with vRack example - Managed Kubernetes and Public Cloud instances Working with vRack example - Communicating between different private networks Using Floating IPs on Managed Kubernetes Service Customizing Kube-proxy on an OVHcloud Managed Kubernetes cluster Customizing CoreDNS on an OVHcloud Managed Kubernetes cluster Customizing Cilium on an OVHcloud Managed Kubernetes cluster Traffic management Installing Nginx Ingress on OVHcloud Managed Kubernetes Expose your applications using OVHcloud Public Cloud Load Balancer Sticky sessions/Session Affinity based on Nginx Ingress on OVHcloud Managed Kubernetes Secure a Nginx Ingress with cert-manager on OVHcloud Managed Kubernetes Getting the source IP behind the LoadBalancer How to migrate from Load Balancer for MKS (IOLB) to Public Cloud Load Balancer (Octavia) Backup and Restore Backup and Restore OVHcloud Managed Kubernetes Cluster, Namespace and Applications using TrilioVault for Kubernetes Backing-up an OVHcloud Managed Kubernetes cluster using CloudCasa Backing up and restoring your Persistent Volume with Volume Snapshots on OVHcloud Managed Kubernetes Backing-up an OVHcloud Managed Kubernetes cluster using Velero Backing-up Persistent Volumes using Stash Monitoring & Observability Monitoring apps with Prometheus and Grafana on an OVHcloud Managed Kubernetes Service Collect metrics from Public Cloud instances with Prometheus on an OVHcloud Managed Kubernetes Service Distributed tracing with Jaeger on an OVHcloud Managed Kubernetes Service Pushing logs from a Kubernetes cluster to Logs Data Platform using Fluent Bit Managed Kubernetes Service Audit Logs Forwarding Monitoring GPU usage on OVHcloud Managed Kubernetes Service Managed Kubernetes Service Audit Logs Forwarding Operators Set up the Kubernetes operator for Public Cloud Databases Deploying a Kubernetes Operator based on Helm on OVHcloud Managed Kubernetes Deploying a Kubernetes Operator written in Golang on OVHcloud Managed Kubernetes Migration Migration Guide – Moving Your Kubernetes cluster to OVHcloud How to migrate from Load Balancer for MKS (IOLB) to Public Cloud Load Balancer (Octavia) Tutorials Installing Agones on OVHcloud Managed Kubernetes Installing Jenkins on OVHcloud Managed Kubernetes Using Codefresh with OVHcloud Managed Kubernetes cluster Deploying Apache Pulsar on an OVHcloud Managed Kubernetes cluster How to install OpenFaaS CE on OVHcloud Managed Kubernetes Run Serverless containers on OVHcloud Managed Kubernetes with Knative Deploying Artifactory on an OVHcloud Managed Kubernetes cluster Enforcing policy management on OVHcloud Managed Kubernetes with Kyverno Scan for vulnerabilities and misconfigurations of your OVHcloud Managed Kubernetes with Trivy Near real-time threats detection with Falco on OVHcloud Managed Kubernetes Sanitize your OVHcloud Managed Kubernetes with Popeye Installing cert-manager on OVHcloud Managed Kubernetes Installing Keycloak, an OIDC Provider, on OVHcloud Managed Kubernetes Installing Istio on OVHcloud Managed Kubernetes Traffic management with Istio on OVHcloud Managed Kubernetes Security Add IP restrictions on an OVHcloud Managed Kubernetes cluster Changing the security update policy on an OVHcloud Managed Kubernetes cluster Configuring the OIDC provider on an OVHcloud Managed Kubernetes cluster Encrypt your Secret for OVHcloud Managed Kubernetes with Sealed Secrets (Kubeseal) Using RBAC to handle limited access to an OVHcloud Managed Kubernetes cluster Troubleshooting ETCD Quotas, usage, troubleshooting and error Troubleshooting permission errors when enabling persistence Additional resources Managed Kubernetes End-of-Sale, End-of-Service and End-of-Life policies Managed Kubernetes - Responsibility model Orchestration product reversibility policy Recommended external resources OVHcloud Managed Kubernetes - Features and roadmap Kubernetes Plugins (CNI, CRI, CSI...) & softwares versions and reserved resources Managed Private Registry (MPR) Panoramica Getting started Creating a private registry Creating a private registry (Harbor) through Terraform Creating a private registry with Pulumi Creating and using a Docker image stored in an OVHcloud Managed Private Registry Connecting to the UI Managing users and projects Configuration Using Private Registry with OVHcloud Managed Kubernetes Managing Helm charts in the OVHcloud Managed Private Registry Deploying a Helm chart from your private registry in Kubernetes Configuring Proxy Cache on an OVHcloud Managed Private Registry Migrate Helm Charts from Chartmuseum to OCI Security Configure the authentication via an OIDC provider on an OVHcloud Managed Private Registry Adding IP restrictions on an OVHcloud Managed Private Registry Sign OCI artifacts with Cosign on OVHcloud Managed Private Registry Scanning Docker images for vulnerabilities with OVHcloud Managed Private Registry Troubleshooting FAQ Managed Private Registry (MPR) Additional resources Managed Private Registry - Responsibility model (EN) Managed OCI artifact Registry Product Reversibility Policy Managed Rancher Service (MRS) Panoramica Getting started Getting Started with Managed Rancher Service Creating, updating and accessing a Managed Rancher Service (EN) Managing users and projects in Managed Rancher Service Importing an existing Kubernetes cluster in MRS Creating a Managed Kubernetes Service (MKS) cluster in MRS Creating a Kubernetes cluster based on OVHcloud Public Cloud Compute Instances in MRS Creating a Kubernetes cluster with existing nodes (Generic) in MRS Configuration Editing the configuration of a Kubernetes cluster in Managed Rancher Service Backing up and restoring a Kubernetes cluster in Managed Rancher Service Deploying a monitoring stack (Prometheus & Grafana) in a Kubernetes cluster in MRS Tutorials How to use Rancher CLI Additional resources Managed Rancher Service supported versions and lifecycle policy Orchestration product reversibility policy Public Cloud Databases Panoramica PostgreSQL Panoramica Concetti chiave Lifecycle policy for Public Cloud Databases FAQ for Public Cloud Databases Capabilities and Limitations of Public Cloud Databases Capabilities and Limitations of Public Cloud Databases for PostgreSQL Automated Backups for Public Cloud Databases High availability and failure scenarios for Public Cloud Databases for PostgreSQL Per iniziare Getting started with Public Cloud Databases Getting started with Public Cloud Databases APIs Getting started with Terraform for Public Cloud Databases Configure incoming connections of a Public Cloud Databases for PostgreSQL service Connect using the CLI for Public Cloud Databases for PostgreSQL Connect using PHP for Public Cloud Databases for PostgreSQL Connect using Python for Public Cloud Databases for PostgreSQL Connect using PgAdmin for Public Cloud Databases for PostgreSQL Configurazione Create and use connection pools in Public Cloud Databases for PostgreSQL Maintenance operations for Public Cloud Databases Configurer le reseau prive des bases de donnees Public Cloud (EN) Configure the advanced parameters for Public Cloud Databases Advanced parameters for Public Cloud Databases for PostgreSQL Restore a backup of Public Cloud Databases Detect and terminate long-running queries of Public Cloud Databases for PostgreSQL Resize the storage of Public Cloud Databases Update the flavor of Public Cloud Databases Update the plan of Public Cloud Databases Mettre en place le transfert de logs des bases de donnees Public Cloud (EN) Set up the Kubernetes operator for Public Cloud Databases Set up service integration for Public Cloud Databases Fetch service metrics with Prometheus for Public Cloud Databases Enable deletion protection for Public Cloud Databases Migrazione Public Cloud Databases - How to migrate to OVHcloud Database as a Service (DBaaS) Reversibility Policy for Managed Relational Database Product Tutorials Build a Strapi app connected to Public Cloud Databases for PostgreSQL Install and connect Wagtail to Public Cloud Databases for PostgreSQL Migrate an on-premises database to Public Cloud Databases for PostgreSQL Sicurezza Security Overview for Public Cloud Databases Responsibility model for Public Cloud Databases Diagnosi Troubleshoot your Public Cloud Databases Handle 'Disk Full' situations for Public Cloud Databases Risorse aggiuntive Available extensions for Public Cloud Databases for PostgreSQL MySQL Panoramica Concetti chiave Lifecycle policy for Public Cloud Databases FAQ for Public Cloud Databases Capabilities and Limitations of Public Cloud Databases Capabilities and Limitations of Public Cloud Databases for MySQL Automated Backups for Public Cloud Databases Per iniziare Getting started with Public Cloud Databases Getting started with Public Cloud Databases APIs Getting started with Terraform for Public Cloud Databases Configure incoming connections of a Public Cloud Databases for MySQL service Connect using the CLI for Public Cloud Databases for MySQL Connect using PHP for Public Cloud Databases for MySQL Connect using Python for Public Cloud Databases for MySQL Connect using Workbench for Public Cloud Databases for MySQL Configurazione Maintenance operations for Public Cloud Databases Configurer le reseau prive des bases de donnees Public Cloud (EN) Configure the advanced parameters for Public Cloud Databases Advanced parameters for Public Cloud Databases for MySQL Restore a backup of Public Cloud Databases Resize the storage of Public Cloud Databases Update the flavor of Public Cloud Databases Update the plan of Public Cloud Databases Mettre en place le transfert de logs des bases de donnees Public Cloud (EN) Set up the Kubernetes operator for Public Cloud Databases Set up service integration for Public Cloud Databases Fetch service metrics with Prometheus for Public Cloud Databases Enable deletion protection for Public Cloud Databases Migrazione Public Cloud Databases - How to migrate to OVHcloud Database as a Service (DBaaS) Reversibility Policy for Managed Relational Database Product Tutorials Connect Managed Kubernetes to Public Cloud Databases for MySQL Sicurezza Security Overview for Public Cloud Databases Responsibility model for Public Cloud Databases Diagnosi Troubleshoot your Public Cloud Databases Handle 'Disk Full' situations for Public Cloud Databases MongoDB Panoramica Concetti chiave Why choose MongoDB? Cluster sizing for Public Cloud Databases for MongoDB Developer Best Practices with Public Cloud Databases for MongoDB Operational Best Practices with Public Cloud Databases for MongoDB Lifecycle policy for Public Cloud Databases FAQ for Public Cloud Databases Capabilities and Limitations of Public Cloud Databases Capabilities and Limitations of Public Cloud Databases for MongoDB Automated Backups for Public Cloud Databases Understand the connection strings URI format of Public Cloud Databases for MongoDB Per iniziare Getting started with Public Cloud Databases for MongoDB Getting started with Public Cloud Databases Getting started with Public Cloud Databases APIs Getting started with Terraform for Public Cloud Databases Deploy with Terraform for Public Cloud for MongoDB Configure incoming connections of a Public Cloud Databases for MongoDB service Connect using the CLI for Public Cloud Databases for MongoDB Connect using PHP for Public Cloud Databases for MongoDB Connect using Python for Public Cloud Databases for MongoDB Connect using Compass for Public Cloud Databases for MongoDB Developer Tools for Public Cloud Databases for MongoDB Cluster monitoring for Public Cloud Databases for MongoDB Configurazione Maintenance operations for Public Cloud Databases Configurer le reseau prive des bases de donnees Public Cloud (EN) Configure the advanced parameters for Public Cloud Databases Restore a backup of Public Cloud Databases Backup and restore a service with the CLI for Public Cloud Databases for MongoDB Resize the storage of Public Cloud Databases Update the flavor of Public Cloud Databases Update the plan of Public Cloud Databases Mettre en place le transfert de logs des bases de donnees Public Cloud (EN) Set up the Kubernetes operator for Public Cloud Databases Set up service integration for Public Cloud Databases Fetch service metrics with Prometheus for Public Cloud Databases Enable deletion protection for Public Cloud Databases Migrazione Public Cloud Databases - How to migrate to OVHcloud Database as a Service (DBaaS) Migrate to OVHcloud Public Cloud Databases for MongoDB Relational Migrator for Public Cloud Databases for MongoDB Reversibility Policy for Managed Document Database Product Tutorials Build and connect a Node.js application to Public Cloud Databases for MongoDB Sicurezza Security Overview for Public Cloud Databases Responsibility model for Public Cloud Databases Diagnosi Troubleshoot your Public Cloud Databases Handle 'Disk Full' situations for Public Cloud Databases Risorse aggiuntive Set up BI Connector for Public Cloud Databases for MongoDB Configure an Analytics node for Public Databases for MongoDB Set up a Kafka integration for Public Cloud Databases for MongoDB Understand readPreference and writeConcern of Public Cloud Databases for MongoDB Benchmark Public Cloud Databases for MongoDB Valkey Panoramica Concetti chiave Lifecycle policy for Public Cloud Databases FAQ for Public Cloud Databases Capabilities and Limitations of Public Cloud Databases Capabilities and Limitations of Public Cloud Databases for Valkey Automated Backups for Public Cloud Databases Per iniziare Getting started with Public Cloud Databases Getting started with Public Cloud Databases APIs Getting started with Terraform for Public Cloud Databases Configure incoming connections of a Public Cloud Databases for Valkey service Connect using the CLI for Public Cloud Databases for Valkey Connect using PHP for Public Cloud Databases for Valkey Connect using Python for Public Cloud Databases for Valkey Connect using RedisInsight for Public Cloud Databases for Valkey Configurazione Maintenance operations for Public Cloud Databases Configurer le reseau prive des bases de donnees Public Cloud (EN) Configure the advanced parameters for Public Cloud Databases Advanced parameters for Public Cloud Databases for Valkey Restore a backup of Public Cloud Databases Update the flavor of Public Cloud Databases Update the plan of Public Cloud Databases Manage ACLs via API for Public Cloud Databases for Valkey Mettre en place le transfert de logs des bases de donnees Public Cloud (EN) Set up the Kubernetes operator for Public Cloud Databases Set up service integration for Public Cloud Databases Fetch service metrics with Prometheus for Public Cloud Databases Enable deletion protection for Public Cloud Databases Migrazione Public Cloud Databases - How to migrate to OVHcloud Database as a Service (DBaaS) Reversibility Policy for the Managed In-Memory Database product Tutorials Boost your WordPress CMS with caching with Public Cloud Databases for Valkey Sicurezza Security Overview for Public Cloud Databases Responsibility model for Public Cloud Databases Diagnosi Troubleshoot your Public Cloud Databases Common Concetti chiave Lifecycle policy for Public Cloud Databases FAQ for Public Cloud Databases Capabilities and Limitations of Public Cloud Databases Automated Backups for Public Cloud Databases Per iniziare Getting started with Public Cloud Databases Getting started with Public Cloud Databases APIs Getting started with Terraform for Public Cloud Databases Configurazione Maintenance operations for Public Cloud Databases Configurer le reseau prive des bases de donnees Public Cloud (EN) Configure the advanced parameters for Public Cloud Databases Restore a backup of Public Cloud Databases Resize the storage of Public Cloud Databases Update the flavor of Public Cloud Databases Update the plan of Public Cloud Databases Mettre en place le transfert de logs des bases de donnees Public Cloud (EN) Set up the Kubernetes operator for Public Cloud Databases Set up service integration for Public Cloud Databases Fetch service metrics with Prometheus for Public Cloud Databases Enable deletion protection for Public Cloud Databases Migrazione Public Cloud Databases - How to migrate to OVHcloud Database as a Service (DBaaS) Reversibility Policy for Managed Relational Database Product Reversibility Policy for Managed Document Database Product Reversibility Policy for the Managed In-Memory Database product Sicurezza Security Overview for Public Cloud Databases Responsibility model for Public Cloud Databases Diagnosi Troubleshoot your Public Cloud Databases Handle 'Disk Full' situations for Public Cloud Databases Analytics Clickhouse Panoramica Key concepts Getting started Configuration Tutorials Kafka Panoramica Concetti chiave Lifecycle policy for Analytics Capabilities and Limitations of Analytics Capabilities and Limitations of Analytics with Kafka Capabilities and Limitations of Analytics with Kafka Connect Capabilities and Limitations of Analytics with Kafka MirrorMaker Automated Backups for Analytics Per iniziare Getting started with Analytics with Kafka Getting started with Analytics Getting started with Analytics APIs Getting started with Terraform for Analytics Configurazione Maintenance operations for Analytics Configure the advanced parameters for Analytics Advanced parameters for Analytics with Kafka Advanced parameters for Analytics with Kafka Connect Restore a backup of Analytics Resize the storage of Analytics Update the flavor of Analytics Update the plan of Analytics Set up logs forwarding for Analytics Set up the Kubernetes operator for Analytics Fetch service metrics with Prometheus for Analytics Migrazione Reversibility Policy for the Managed Message Broker product Tutorials Create publisher and consumer applications with Analytics with Kafka Sicurezza Presentation de la securite des services Analytics (EN) Partage des responsabilites des services Analytics (EN) Diagnosi Troubleshoot your Analytics Handle 'Disk Full' situations for Analytics OpenSearch OpenSearch - Guides OpenSearch - Capabilities and Limitations OpenSearch - Getting started OpenSearch - Monitor your infra (with Logstash or Fluent Bit) OpenSearch - Advanced parameters references Dashboards Panoramica Dashboards - Guides Dashboards - Capabilities and Limitations Dashboards - Configure your Dashboards instance to accept incoming connections Dashboards - Advanced parameters references Dashboards - Tutorials Dashboards - Tutorial - Expose your Dashboards instance in your private network via a reverse proxy NGINX Dashboards - Tutorial - How to use the Grafana® API Common Concetti chiave Lifecycle policy for Analytics Capabilities and Limitations of Analytics Automated Backups for Analytics Per iniziare Getting started with Analytics Getting started with Analytics APIs Getting started with Terraform for Analytics Configurazione Maintenance operations for Analytics Configure the advanced parameters for Analytics Restore a backup of Analytics Resize the storage of Analytics Update the flavor of Analytics Update the plan of Analytics Set up logs forwarding for Analytics Set up the Kubernetes operator for Analytics Fetch service metrics with Prometheus for Analytics Migrazione Reversibility Policy for the Managed Message Broker product Reversibility Policy for the Managed Search Engine Software Platform product Reversibility Policy for the Managed Data Visualization product Sicurezza Presentation de la securite des services Analytics (EN) Partage des responsabilites des services Analytics (EN) Diagnosi Troubleshoot your Analytics Handle 'Disk Full' situations for Analytics AI & machine learning Panoramica General information Comparative tables - AI Notebooks, AI Training, AI Deploy AI Tools - Lifecycle policy Data - Concept and best practices Data - Compliance between AI Tools and S3 compatible Object Storage AI Dashboard - Getting started Users - Manage AI users and roles Registries - Use & manage your registries AI Tools - Remote SSH Connection AI Tools - Monitor your cloud resources AI Tools - ovhai SDK Reversibility Policy for the AI Managed Container product FAQ - AI Tools Command Line Interface CLI - Installation CLI - Cheat Sheet CLI - Launch an AI notebook CLI - Launch an AI Training job CLI - Manage access tokens CLI - Launch and share an AI Notebook with tokens CLI - Commands reference CLI - Commands reference for data CLI - Use your data in a notebook CLI - Launch an AI Deploy app AI Notebooks Panoramica AI Notebooks - Key concepts AI Notebooks - Notebook concept AI Notebooks - Features, Capabilities and Limitations AI Notebooks - Getting started AI Notebooks - Premiers pas (EN) AI Notebooks - Workspace AI Notebooks - Configuration AI Notebooks - Manage and use data in a notebook via UI AI Notebooks - Politique de reversibilite du produit Notebook Interface AI Notebooks - Tutorials Audio/Speech AI Notebooks - Tutorial - Audio analysis and classification with AI AI Notebooks - Tutorial - Use Speech-to-Text powers on audio and video Computer vision AI Notebooks - Tutorial - Train YOLOv5 on a custom dataset AI Notebooks - Tutorial - Train YOLOv7 for sign language recognition AI Notebooks - Tutorial - Train YOLOv8 to play rock paper scissors (EN) AI Notebooks - Tutorial - Use ResNet for image classification AI Notebooks - Tutorial - Brain tumor segmentation using U-Net AI Notebooks - Tutorial - Create and train an image generation model NLP AI Notebooks - Tutorial - Sentiment analysis on Tweets using Hugging Face AI Notebooks - Tutorial - Build your spam classifier Code assistant AI Notebooks - Using a code assistant (EN) Fine Tuning AI Notebooks - Tutorial - Fine-Tune and export an AI model to ONNX AI Notebooks - Tutorial - Create and train a Rasa chatbot AI Notebooks - Tutorial - Fine-tuning LLaMA 2 MLOps/Monitoring AI Notebooks - Tutorial - Use tensorboard inside notebooks AI Notebooks - Tutorial - Weights & Biases integration AI Notebooks - Tutorial - Track your ML models with MLflow inside notebooks AI Notebooks - Troubleshooting AI Notebooks - Troubleshooting AI Notebooks - Additional resources AI Notebooks - Billing and lifecycle AI Training Panoramica AI Training - Key concepts AI Training - Job concept AI Training - Features, Capabilities and Limitations AI Training - Getting started AI Training - Getting started AI Training - Start a job with a notebook Docker image AI Training - Tutorial - Build & use custom Docker image AI Training - Tutorial - Train your first ML model AI Training - Configuration AI Training - Tutorial - Build & use custom Docker image AI Training - Tutorials MLOps/Monitoring AI Training - Tutorial - Use tensorboard inside a job AI Training - Tutorial - Compare models with W&B for audio classification task NLP AI Training - Tutorial - Train a Rasa chatbot inside a Docker container Audio/Signal processing AI Training - Tutorial - Train a model to recognize marine mammal sounds Computer vision AI Training - Tutorial - Train YOLOv8 to play rock paper scissors (EN) AI Training - Tutorial - Turn a video into a 3D model using NVIDIA Neuralangelo Model export/Inference AI Training - Tutorial - Train a PyTorch model and export it to ONNX AI Training - Tutorial - Get started with NVIDIA Triton Inference Server and AI Training AI Training - Troubleshooting AI Training - Troubleshooting AI Training - Additional resources AI Training - Billing and lifecycle AI Deploy Panoramica AI Deploy - Key concepts AI Deploy - App concept AI Deploy - Features, Capabilities and Limitations AI Deploy - Apps portfolio AI Deploy - Scaling strategies AI Deploy - Getting started AI Deploy - Getting started AI Deploy - Configuration AI Deploy - Accessing your app with tokens (EN) AI Deploy - Scaling strategies AI Deploy - Update custom Docker images AI Deploy - Security AI Deploy - Accessing your app with tokens (EN) AI Deploy - Tutorials AI Deploy - Tutorial - Build & use a custom Docker image AI Deploy - Tutorial - Build & use a Streamlit image AI Deploy - Tutorial - Deploy a simple app with Flask AI Deploy - Tutorial - Deploy an app for audio classification task using Streamlit AI Deploy - Tutorial - Deploy a web service for YOLOv5 using Flask AI Deploy - Tutorial - Deploy a Gradio app for sketch recognition AI Deploy - Tutorial - Deploy an app for sentiment analysis with Hugging Face and Flask AI Deploy - Tutorial - Deploy an interactive app for EDA and prediction using Streamlit AI Deploy - Tutorial - Deploy and call a spam classifier with FastAPI AI Deploy - Tutorial - Create and deploy a Speech to Text application using Streamlit AI Deploy - Tutorial - How to load test your application with Locust AI Deploy - Tutorial - Deploy a Rasa chatbot with a simple Flask app AI Deploy - Tutorial - Create a web service to recognize sign language with YOLOv7 AI Deploy - Tutorial - Deploy a brain tumor segmentation app using Streamlit AI Deploy - Tutorial - Deploy LLaMA 2 in a Streamlit application AI Deploy - Tutorial - Deploy an ONNX model using FastAPI AI Deploy - Tutorial - Create an application to play rock paper scissors with YoloV8 (EN) AI Deploy - Tutorial - Deploy Whisper Speech Recognition Model AI Deploy - Tutorial - Deploy Stable Diffusion WebUI AI Deploy - Tutorial - Deploy FLUX Text-to-Image Models AI Deploy - Troubleshooting AI Deploy - Troubleshooting AI Deploy - Additional resources AI Deploy - Billing and lifecycle AI Endpoints Panoramica AI Endpoints - Key concepts AI Endpoints - Features, Capabilities and Limitations AI Endpoints - Structured Output AI Endpoints - Function Calling AI Endpoints - Responses API AI Endpoints - Getting started AI Endpoints - Getting started AI Endpoints - Tutorials AI Endpoints - Create your own audio summarizer AI Endpoints - Create your own voice assistant AI Endpoints - Using Virtual Models AI Endpoints - Speech to Text Integrations AI Endpoints - Create a code assistant with Continue AI Endpoints - Build a Python Chatbot with LangChain AI Endpoints - Build a JavaScript Chatbot with LangChain AI Endpoints - Create your own AI chatbot using LangChain4j and Quarkus AI Endpoints - Create a Streaming Chatbot with LangChain4j and Quarkus AI Endpoints - Enable conversational memory in your chatbot using LangChain AI Endpoints - Create a Memory Chatbot with LangChain4j AI Endpoints - Build a RAG Chatbot with LangChain AI Endpoints - Build a RAG Chatbot with LangChain4j AI Endpoints - Using Structured Output with LangChain4j AI Endpoints - Using Function Calling with LangChain4J AI Endpoints - Model Context Protocol (MCP) with LangChain4j AI Endpoints - Integration in Python with LiteLLM AI Endpoints - Integration with Apache Airflow AI Endpoints - Integration with Hugging Face Inference Providers AI Endpoints - Integration with Pydantic AI AI Endpoints - Troubleshooting AI Endpoints - Troubleshooting AI Endpoints - Additional resources AI Endpoints - Billing and lifecycle AI Partners Ecosystem Panoramica AI Partners - Key concepts AI Partners Ecosystem - Voxist - Models concept (EN) AI Partners Ecosystem - Lettria - Models concept (EN) AI Partners - Getting started AI Partners Ecosystem - Lettria - Models features, capabilities and billing (EN) AI Partners Ecosystem - Voxist - Models features, capabilities and billing (EN) Quantum computing General information Quantum computing - Features, Capabilities and Limitations Quantum computing - Billing and lifecycle Quantum computing - Troubleshooting Quantum emulators Guides Quantum computing - Getting started with Emulators Notebooks Quantum QPUs Guides Quantum computing - Getting started with QPUs Notebooks Integrations Prefect Prefect - Getting Started Prefect - Tutorial - Emails notification with blocks and automations Prefect - Tutorial - AI pipeline with training job Data Platform Data Platform documentation Sign-up to OVHcloud Data Platform Web Cloud Domini Panoramica API Panoramica Concetti chiave Introduction Per iniziare Order a Domain Name Configurazione Tasks Management Manage Contacts of a Domain Name Managing Eligibility Rules Configure the Display of Contact Data in the Whois Configure the DNS of your Domain Name Migrazione Transfer a Domain Name Domini Panoramica Per iniziare FAQ sui nomi di dominio & DNS Come creare un sottodominio? Reindirizzare un dominio gestito da OVHcloud Rinnovare i miei domini OVHcloud Come ottenere informazioni relative a un dominio con il WHOIS Come configurare la visualizzazione del WHOIS di un nome di dominio? Come esportare la lista dei tuoi domini in CSV Configurazione Gestione dei contatti dei domini Dominio - Come cambiare l'intestatario? Nome di dominio - Gestione del contatto titolare Changer le proprietaire d'un domaine avec une Demande d'Operation AFNIC (DOA) Diagnostica Risolvere un errore su un nome di dominio Migrazione Trasferimento in entrata verso OVHcloud Trasferire un nome di dominio in OVHcloud Trasferire un nome di dominio.uk in OVHcloud Transferring a .pl domain name to OVHcloud Trasferire un nome di dominio Hostinger in OVHcloud Trasferire un nome di dominio GoDaddy in OVHcloud Transferring a home.pl domain name to OVHcloud Trasferire un nome di dominio Ionos in OVHcloud Trasferire un nome di dominio O2Switch in OVHcloud Trasferire un nome di dominio Gandi in OVHcloud Trasferire un nome di dominio Wix in OVHcloud Trasferimento in uscita da OVHcloud Trasferire un nome di dominio verso un altro Registrar Trasferire un nome di dominio .uk verso un altro Registrar Tutorial Connettere un nome di dominio OVHcloud a un Google Site Connettere un nome di dominio OVHcloud a Shopify Connettere un nome di dominio OVHcloud a SquareSpace Connettere un nome di dominio OVHcloud a Wix Connettere un nome di dominio OVHcloud a GoDaddy Connettere un nome di dominio OVHcloud a Webflow How to use an OVHcloud domain with iCloud Mail DNS (Domain Name System) Panoramica Concetti chiave Scopri tutto sui server DNS Sapere tutto sulla zona DNS Scopri tutto sui record DNS Configurazione Server DNS Modificare i server DNS di un nome di dominio OVHcloud List of IP addresses of OVHcloud DNS servers Zona DNS Creare una zona DNS OVHcloud per un dominio Creare una zona DNS OVHcloud per un sottodominio Modificare una zona DNS di OVHcloud Gestire la cronologia di una zona DNS Come eliminare una zona DNS OVHcloud? Record DNS Aggiungere un record DNS di tipo A per un dominio Aggiungere un record DNS di tipo AAAA per un dominio Come aggiungere un record DNS di tipo CNAME per un sottodominio Aggiungere un record DNS di tipo TXT per un dominio Configurare un record MX per la gestione delle email Opzioni DNS Attivare i DNS Anycast per il tuo dominio Personalizzare i server DNS di un dominio (Host) Impostare un DNS dinamico (DynHost/DynDNS) per il tuo dominio Sicurezza Migliora la sicurezza delle email con un record SPF Ameliorer la securite des e-mails via un enregistrement DKIM Migliora la sicurezza delle email con un record DMARC Rendere sicuro il tuo dominio con DNSSEC Tutorials Tutorial - Utilizzo di Zonemaster Hosting Web Per iniziare Hosting Web - Attivare l'hosting gratuito 100M Come eseguire le prime operazioni sul tuo hosting Web Premiers pas avec un hebergement Cloud Web Premiers pas avec la solution Visibilite Pro Visualizzare e gestire tutti i siti Web dallo Spazio Cliente OVHcloud Come creare un sito Web - Realizzare il tuo progetto in 5 tappe FAQ Hosting web Mettere online un sito Internet su un hosting Web Hosting Web - Attiva gli indirizzi email inclusi Hosting Web - Come conoscere cluster e filer Come trovare il nome della tua offerta di hosting web Configurazione Ospitare piu siti su uno stesso hosting Configurare e utilizzare Git con un hosting Web OVHcloud Hosting Web - Modificare un dominio gia associato a un hosting Hosting Web - Ambiente, versione PHP, .ovhconfig Configura un indirizzo IPv6 per il tuo sito Web Gestire i motori di esecuzione di un hosting Cloud Web Recuperare il backup dello spazio FTP del tuo hosting Cloud Web Hosting Web - Come far evolvere la tua offerta Aumentare la velocita di un sito Web con la CDN Hosting Web - Consultare le statistiche e i log di un sito Web Hosting Web - Consulta le statistiche e i log della CDN Come geolocalizzare un sito Web in un paese specifico? Ottimizza le performance del tuo sito Crea task automatizzati (CRON) sul tuo hosting Web How to create and manage a web application using the OVHcloud public API (EN) Database Creare un database su un hosting Web Modificare la password del database di un hosting Web Duplicare il contenuto di un database in un altro Recuperare il backup del database di un hosting Web Recuperare il backup di un database eliminato Come identificare il server del proprio database FTP e SSH Hosting Web - Come utilizzare FileZilla Hosting Web - Come gestire gli utenti FTP Accedi allo spazio di storage FTP del tuo hosting Web Web Hosting - Come attivare l'accesso SFTP Modificare la password di un utente FTP Gestire un hosting Web con Visual Studio Code via SFTP Tutorial - Utilizzare Cyberduck con un hosting Web Ripristinare i dati dello spazio di storage di un hosting Web Hosting Web - Come utilizzare l’accesso SSH Tutorial - Come utilizzare PuTTY per le connessioni SSH e l'autenticazione Utilizza SVN Hosting Web - Copiare file con il comando SCP CMS Installare il tuo sito Web con un 'CMS in 1 click' Come cambiare la password amministratore di un CMS Come gestire il tuo modulo in 1 click? Migrazione Come migrare un sito Web da un hosting Web condiviso a un VPS Importare un backup nel database di un hosting Web Esporta il tuo sito Web Migrare un sito Web e i servizi associati a OVHcloud Migrare un sito Web Xara in OVHcloud Migrare un sito Web WordPress in OVHcloud Tutorial Tutorial - Creare la propria pagina personale in OVHcloud Casi d’uso - Come cambiare il dominio di un sito esistente Tutorial - Installazione e configurazione di Cecil, un generatore di siti statici (SSG) in PHP Tutorial - Aggiungere contenuto dinamico in una pagina Web statica generata con Cecil Installare Composer su un hosting Web Tutorial WordPress Tutorial - Iniziare a utilizzare WordPress Tutorial - Salva il tuo sito WordPress Tutorial - Utilizza il file htaccess con WordPress Tutorial - Utilizza WooCommerce con CMS WordPress Managing multiple WordPress websites with the MainWP plugin Backing up your WordPress websites with MainWP Improving your website's security with the MainWP plugin for WordPress Managing customer information on your WordPress websites with MainWP Tutorial per Cloud Web Installare Ghost su un hosting Cloud Web Installer Etherpad sur son hebergement Cloud Web Comment installer Django CMS sur son hebergement Cloud Web Installer Camaleon CMS sur son hebergement Cloud Web Reindirizzamento e autenticazione Tutorial - Proteggere una directory o l'interfaccia di amministrazione del tuo sito web con file .htaccess e .htpasswd Tutorial - riscrivi l'URL di accesso al mio sito grazie al mod_rewrite tramite il file.htaccess Tutorial - Come bloccare l'accesso al mio sito per alcuni indirizzi IP tramite un file .htaccess? Tutorial - Operazioni realizzabili con un file .htaccess CMS Tutorial - Installare manualmente un CMS sul tuo hosting Tutorial - installa manualmente WordPress Tutorial - Installare manualmente Joomla! Tutorial - Installare manualmente Pico Tutorial - Installare manualmente PrestaShop Tutorial - Installare manualmente Drupal Tutorial - Installa manualmente Grav Tutorial - Installare manualmente Typo3 Tutorial - Installare manualmente SPIP Sicurezza Come proteggere il tuo sito Web? Hosting condiviso: attiva un firewall applicativo Hosting Web - Gestire un certificato SSL Hosting Web - Passare il proprio sito Web in HTTPS Hosting Web - Attivare un certificato SSL gratuito Let's Encrypt Hosting Web - Attivare un certificato SSL Sectigo DV Hosting Web - Attiva un certificato SSL Sectigo EV Hosting Web - Installa un certificato SSL personalizzato Errori comuni associati alla protezione del sito Web con il certificato SSL Diagnosi Casi d'uso - Consigli in seguito alla pirateria del tuo sito Web Come mitigare la vulnerabilita HTTP/2 Rapid Reset (EN) Cosa fare se il tuo sito e inaccessibile? Il mio sito e lento. Cosa fare? Risolvi gli errori piu comuni relativi ai CMS/moduli in 1 click Cosa fare in caso di errore 'La connessione non e privata'? Risolvi gli errori piu frequenti associati ai database Risolvere l’errore "Sito non installato" Cosa fare in caso di errore 500 Internal Server Error? Cosa fare in caso di pagina "Index of"? Cosa fare in caso di pagina "403 forbidden"? Cosa fare se viene visualizzata la pagina 'Your IP has been banned'? Cosa fare se viene visualizzata la pagina 'Your request has been blocked'? Gestire l’invio delle email automatiche Come reagire a un'attivita anomala rilevata sul tuo hosting web Hosting Web - Il mio database e saturo, cosa fare? Risolvere gli errori ricorrenti nell'utilizzo di un software FTP Risorse aggiuntive Hosting Web - Lista degli indirizzi IP per cluster Specifiche tecniche degli hosting condivisi Hebergement web - Versions disponibles des langages Web Hosting Reversibility Policy (DE) Annunci di fine vendita/vita database SQL Migrazione da MySQL a Percona Server per MySQL Managed Hosting for WordPress Per iniziare Discover Managed Hosting for WordPress (Beta version) Video Center Per iniziare Video Center - Manage your videos online SSL Gateway Per iniziare Ordinare un SSL Gateway Utilizza il servizio SSL Gateway Web Cloud Databases Per iniziare Iniziare a utilizzare Web Cloud Databases Come utilizzare MySQL e MariaDB Come utilizzare PostgreSQL Configurazione Web Cloud Databases - Come autorizzare un indirizzo IP? Creare database e utenti sul tuo database server Web Cloud Databases - Modificare i diritti di un utente Web Cloud Databases - Connettersi a un database Configura il tuo database server Web Cloud Databases - Come gestire i log? Scollegare la mia soluzione Web Cloud Databases da un hosting Web Migrazione Salvare ed esportare un database sul server di database Ripristinare e importare un database sul tuo server di database Risorse aggiuntive Annunci di fine vendita/vita Web Cloud Databases Politica di fine vita dei database gestiti Reversibility Policy for the Managed Database System for Web Hosting product Soluzioni email e strumenti collaborativi Funzionalita comuni alle offerte email Gestire la politica di sicurezza di un servizio di posta elettronica Utilizzare gli alias e i reindirizzamenti email Elimina un account email Utilizzo di Outlook Web App (OWA) Utilizzare un account di posta da "Outlook on the web" Creare regole di posta in arrivo in Outlook Web App (OWA) Imposta risposte automatiche con OWA Condividere una cartella con la Webmail OWA Condividi un calendario con la Webmail OWA Migrazione di servizi Migrare un indirizzo email MX Plan verso un account Email Pro, Exchange o Zimbra Migra manualmente il tuo indirizzo email Migrare accounti email tramite OVHcloud Mail Migrator Migrare i tuoi indirizzi email da una piattaforma OVHcloud verso un'altra Risoluzione dei problemi Invio o ricezione delle email impossibile Cosa fare in caso di account bloccato per spam? Recuperare l'header e il file .eml di un'e-mail Gestire lo spazio di storage di un account email Ripristina gli elementi eliminati dal tuo account email MX Plan Panoramica Per iniziare Iniziare a utilizzare la soluzione MX Plan Creare un account email con MX Plan Modifica la password di un indirizzo email Webmail: guida all’utilizzo di Roundcube FAQ email OVHcloud Utilizzare la webmail Zimbra Domande frequenti sulla soluzione Zimbra OVHcloud Caratteristiche indirizzo di posta elettronica MX Plan - Crea risposta automatica su un indirizzo email Gestire e utilizzare una mailing list Creare filtri per i tuoi indirizzi email MX Plan - Delegare la gestione dei tuoi account email a un'altra persona Configura un'applicazione di posta elettronica sul tuo computer MX Plan / Zimbra Starter - Configurare l'indirizzo e-mail su Outlook classico per Windows MX Plan - Configurare un indirizzo email su Outlook per macOS MX Plan - Configura il tuo account di posta elettronica su Mail per macOS MX Plan - Configurare l'indirizzo email su Thunderbird per Windows MX Plan - Configurare l'indirizzo e-mail in Thunderbird per macOS MX Plan / Zimbra Starter - Aggiungere un account e-mail sul nuovo Outlook per Windows Installazione di un'applicazione di posta elettronica sul telefono cellulare MX Plan - Configura il tuo account di posta elettronica su Mail per iPhone e iPad MX Plan - Configurare un indirizzo email in Gmail per Android MX Plan / Zimbra STARTER - Configurare Outlook per Android MX Plan - Configurare un account email su Outlook per iOS Aggiunta del tuo indirizzo di posta elettronica a un servizio di posta elettronica esistente MX Plan - Configurare un account di posta su Gmail Email Pro Panoramica Per iniziare Iniziare a utilizzare la soluzione Email Pro Gestire la fatturazione dei tuoi account Email Pro Delegare i diritti su un account email Creare firme automatiche Configura un'applicazione di posta elettronica sul tuo computer Email Pro - Configurare un account email su Outlook classico per Windows Email Pro - Configura il tuo account di posta elettronica su Outlook per macOS Email Pro - Configura il tuo account di posta elettronica su Mail per macOS Email Pro - Configurazione del tuo account Email Pro sul nuovo Outlook per Windows Email Pro - Configurare l'indirizzo email in Thunderbird su Windows Email Pro - Configurare l'indirizzo email in Thunderbird per macOS Installazione di un'applicazione di posta elettronica sul telefono cellulare Email Pro - Configura il tuo account di posta elettronica su Mail per iPhone e iPad Email Pro - Configurare un indirizzo email in Gmail per Android Email Pro - Configurare un indirizzo email su Outlook per Android Email Pro - Configurare un account email su Outlook per iOS Aggiunta del tuo indirizzo di posta elettronica a un servizio di posta elettronica esistente Email Pro - Configura il tuo account di posta elettronica su Gmail Microsoft Exchange Panoramica Per iniziare Iniziare a utilizzare Hosted Exchange Iniziare a utilizzare Private Exchange Private Exchange - Backing up your email accounts with Veeam Backup for Microsoft 365 Gestire la fatturazione di un account Exchange Aggiungi un dominio su una piattaforma email Aggiungi un record CNAME per convalidare il tuo dominio sul tuo servizio di posta Responsibility model for the product Managed Email Server on Mutualized Infrastructure (EN) Responsibility model for the product Managed Dedicated E-mail Infrastructure (EN) Funzionalita di un account Exchange Exchange - Utilizzo dei gruppi (mailing list) Delegare i diritti su un account email Attivare la doppia autenticazione su un account Exchange Crea e utilizza account di risorsa Crea e utilizza un account condiviso Creare firme automatiche Ottieni una licenza Outlook per Exchange Configurer un connecteur d'envoi sur votre plateforme Private ou Trusted Exchange Configura un'applicazione di posta elettronica sul tuo computer Exchange - Configurare un account email su Outlook classico per Windows Exchange - Configura il tuo account di posta elettronica su Outlook per macOS Exchange - Configura il tuo account di posta elettronica su Mail per macOS Exchange - Configura il tuo account di posta elettronica su Posta per Windows Exchange - Configurare l'indirizzo e-mail su Thunderbird per Windows Exchange - Configurare l'indirizzo e-mail su Thunderbird per macOS Installazione di un'applicazione di posta elettronica sul telefono cellulare Exchange - Configura il tuo account di posta elettronica su Mail per iPhone e iPad Exchange - Configurare un indirizzo email in Gmail per Android Risoluzione dei problemi Utilizzo della diagnostica di errori Exchange Exchange - Come gestire i log Microsoft Office Gestisci un gruppo di licenze Microsoft 365 OVHcloud Gestisci un gruppo di licenze Office 365 Reseller (CSP2) OVHcloud Utilizza il desktop remoto con Microsoft 365 aps Zimbra Panoramica Per iniziare Per iniziare con l'offerta Zimbra Utilizzare la webmail Zimbra Domande frequenti sulla soluzione Zimbra OVHcloud Configurare un indirizzo email Zimbra su un client di posta Migrare un indirizzo email MX Plan verso un account Zimbra OVHcloud Zimbra - Configurare un account email sull’applicazione mobile Zimbra Zimbra - Sincronizzare un calendario CalDAV in un'applicazione Zimbra - Configurare una cartella WebDAV sul tuo computer Configura un'applicazione di posta elettronica sul tuo computer Zimbra Pro - Configurare un account email con ActiveSync su Outlook per Windows Zimbra Pro - Configurare un account email via EWS su Outlook per Mac Zimbra Pro - Configurare un account email via EWS in Mail su Mac Installazione di un'applicazione di posta elettronica sul telefono cellulare Zimbra Pro - Configurare un account email con ActiveSync su Outlook per iOS Zimbra Pro - Configurare un account email via ActiveSync su Mail per iPhone o iPad Zimbra Pro - Configurare un account email con ActiveSync su Outlook per Android Zimbra Pro - Configurare un account email con ActiveSync su Gmail per Android Internet Accesso internet Panoramica Concetti chiave La desserte interne Comprendre le cycle de vie des commandes FTTE et FTTO Per iniziare FAQ solutions Internet OVHcloud Obtenir les identifiants PPPoE Configurazione Configura il tuo accesso Configurer sa box a partir de l'espace client OVHcloud Modification du profil de synchronisation Comment configurer le reverse DNS de ma connexion Internet OVHcloud Activer l'adresse IPv6 d'une connexion Internet OVHcloud Gestisci la tua offerta Comment changer mon offre xDSL/Fibre Fin du cuivre - Comment migrer mon offre xDSL vers la Fibre ? Comment demenager mon acces xDSL/Fibre Comment resilier un acces xDSL/Fibre VoIP / Acces Internet - Deroulement d'un RMA Gestisci le tue opzioni Comment activer mes lignes telephoniques ? (Offres ADSL/VDSL/FTTH) Activer les adresses e-mail incluses dans votre offre FTTH/xDSL Configurazione avanzata Comment activer le mode bridge sur un modem Zyxel Comment reutiliser le WiFi d'un modem Zyxel avec OverTheBox Activer ou desactiver l'envoi d'e-mails depuis le SMTP OVHcloud Gerer et configurer un bloc IP /29 Comment changer le backend ACS du modem Connectivity API Configurer un routeur manuellement Diagnosi Redemarrer ou reinitialiser une box OVHcloud Depanner son acces Internet fibre Resoudre une interruption ou des lenteurs de navigation Retablir la synchronisation d'une connexion suite a une coupure Retablir un acces a Internet suite a une coupure complete ou partielle Verifier si son lien xDSL est sature Verifier la stabilite de son acces OVHcloud via les logs radius Activer une alerte de monitoring OverTheBox Panoramica Per iniziare Premiers pas avec OverTheBox Comment installer OverTheBox ? FAQ OverTheBox Configurazione Gestisci la tua offerta Comment changer mon offre OverTheBox Configurazione iniziale Comment mettre a jour un appareil OverTheBox ? Comment acceder a distance a une OverTheBox Comment configurer IPv6 sur OverTheBox ? Comment reinitialiser ou restaurer la configuration d'une OverTheBox Comment configurer le pare-feu (firewall) sur OverTheBox ? Comment configurer le reseau local d'une OverTheBox ? Comment configurer une route statique sur OverTheBox ? Comment configurer la qualite de service (QoS) sur OverTheBox ? Comment configurer un lien 4G sur OverTheBox? Configurazione avanzata Comment configurer une interface reseau ? Installer l'image OverTheBox sur votre appareil Configurer un ancien appareil OverTheBox v1 (Intel & IT v1) Telefono e Fax VoIP - Presentation de la documentation Per iniziare FAQ VoIP OVHcloud Gerer vos services VoIP Gerer vos groupes de telephonie Renseigner les coordonnees d'une ligne ou d'un numero et les faire paraitre en ligne Amministrare Valider votre identite pour l'utilisation des services VoIP Valider votre identite pour l'exploitation d'un numero special SVA Gerer les reversements ou les couts de vos numeros speciaux Gestion du depot de garantie et de la limite hors-forfait Effectuer un changement de contacts pour vos groupes de telephonie Comment resilier un service VoIP ou une ligne Fax VoIP / Acces Internet - Deroulement d'un RMA Configurazione Linee telefoniche Ligne SIP - commander, modifier, rattacher ou detacher un telephone OVHcloud Configurer et consulter le repondeur de sa ligne Configurer la presentation de son numero Filtrer et renvoyer ses appels Configurer des plages horaires et des fermetures exceptionnelles sur une ligne Installer et configurer Softcall Gerer un carnet de contacts sur une ligne SIP Creer des numeros abreges Modifier les musiques et sonneries de votre ligne Activer ou desactiver des services depuis le telephone Gerer et utiliser les appels simultanes Configurer les touches programmables de votre telephone OVHcloud Gerer le mode intercom de votre ligne Configurer et utiliser le Click2Call sur une ligne SIP Statistiques sur la QoS des appels Numeri e alias Demander et suivre une portabilite de numero Demander et suivre une portabilite de numero belge Choisir et appliquer une configuration pour un numero Configurer une redirection d'appels Configurer une file d'appels Configurer un serveur vocal interactif (SVI) Configurer un Contact Center Solution Creer et gerer des conferences telephoniques POPC Installer le logiciel POPC Prise en main du logiciel POPC IPBX How to deploy the 3CX IPBX automatically on OVHcloud Public Cloud Asterisk - configuration et utilisation Comment modifier le temps d’enregistrement d’une ligne sur Asterisk 3CX - Configuration et utilisation Freeswitch - configuration et utilisation Integrazione della telefonia informatica (CTI) Integration CTI de la telephonie OVHcloud aux CRM et ERP - exemple avec SugarCRM Documentation technique CTI Projet communautaire CTI Tutorial Ligne SIP - Configuration sur un softphone / telephone personnel Enregistrer une ligne SIP OVHcloud sur Zoiper Tutoriel - Utiliser une ligne SIP OVHcloud sur Linphone Sicurezza Securiser sa ligne SIP OVHcloud Modifier le mot de passe d'une ligne SIP Restreindre sa ligne SIP OVHcloud par IP Diagnosi Tutoriel - Diagnostic du reseau local Depanner son telephone OVHcloud Risorse aggiuntive Guides d'utilisation de nos precedentes gammes de telephones Utiliser le Cisco 8851 Utiliser le Cisco 7841 Utiliser le Yealink T4X Utiliser le Yealink W56P Utiliser le Yealink CP860 Branchements du C530 IP Utiliser le Gigaset C530IP Depannage C530 IP Branchements SPA112 Adaptateur SPA112 Depannage SPA112 Branchements SPA504G Fonctionalites SPA504G Depannage SPA504G Branchements IP5000 Depannage IP5000 Fax Panoramica Per iniziare FAQ sur la solution Fax OVHcloud Configuration de votre ligne Fax Utiliser son fax physique avec l'offre Plug & Fax Activation du repondeur Fax EcoFax Pro / Plug & Fax Configurazione Invio e ricezione fax Envoyer des fax par e-mail Envoyer une campagne de fax depuis l'espace client OVHcloud Envoyer des Fax via l'imprimante virtuelle EcoFax - macOS X Envoyer des Fax via l'imprimante virtuelle EcoFax - Windows Comment resilier un service VoIP ou une ligne Fax Messaggistica SMS Panoramica Per iniziare FAQ SMS OVHcloud Creare la prima campagna SMS Time2Chat, la messagerie conversationnelle par SMS pour les entreprises Configurazione Invio SMS Inviare SMS dallo Spazio Cliente Inviare degli SMS da un indirizzo e-mail Inviare SMS con l’API OVHcloud in PHP Inviare SMS con l’API OVHcloud in Node.js Inviare SMS con l’API OVHcloud in Java Envoyer des SMS avec l’API OVHcloud en c# Inviare SMS negli Stati Uniti Inviare SMS da un URL - http2sms Gestisci la tua soluzione Gestire i crediti SMS e attivare la ricarica automatica Gestire la cronologia degli SMS Tutto cio che devi sapere sugli mittenti SMS Tutto sugli utenti SMS Lista di destinatari SMS Gestire le rubriche indirizzi SMS Envoyer des SMS permettant la reponse Utilizzo avanzato Tout ce qu'il faut savoir sur le HLR - SMS API SMS Cookbook Automatizzare l'invio di SMS con n8n tramite l'API OVHcloud SMPP Gestione di un account SMS SMPP SMPP Technical Specifications (EN) Storage e backup Object Storage Panoramica S3 compatible Concetti chiave Object Storage - Choosing the right storage class for your needs Object Storage - Endpoints and Object Storage geoavailability Comparison of Object Storage Deployment Modes - Understanding 3-AZ / 1-AZ / Local Zones Cold Archive - Panoramica (EN) Per iniziare Object Storage - Getting started Cold Archive - Getting started with Cold Archive Object Storage - Identity and access management Configurazione Object Storage - Getting Started with Versioning Object Storage - Smart Storage Management with Lifecycle Rules Object Storage - Master asynchronous replication across your buckets Object Storage - Server Access Logging Object Storage - Setting up CORS on Object Storage Object Storage - Bucket ACL Object Storage - Hosting a static website in an Object Storage bucket Object Storage - Enabling HTTPS on a static website using a custom domain Object Storage - How to connect Object Storage buckets with other resources in a vRack Migrazione Object Storage - How to migrate from an S3-compatible object storage provider to OVHcloud Object Storage Object Storage - How to migrate from OVHcloud Swift Object Storage to OVHcloud S3-compatible Object Storage Tutorials Object Storage - Use Object Storage with Rclone Object Storage - Use Object Storage with S3cmd Object Storage - Use Object Storage with WinSCP Object Storage - Utilizza Object Storage con Veeam (EN) Object Storage - Utilizza Object Storage con Nextcloud (EN) Object Storage - Utilizza Object Storage con Owncloud (EN) Object Storage – Use Object Storage with Cohesity NetBackup Object Storage – Use Object Storage with Pure Storage Flashblade Object Storage - Manage an Object Storage bucket with Terraform Object Storage – How to share an object or file externally Sicurezza Object Storage - Encrypt your server-side objects with SSE-C or SSE-OMK Object Storage - Managing object immutability with Object Lock (WORM) Object Storage - Identity and access management Risoluzione dei problemi Object Storage - FAQ Cold Archive - FAQ (EN) Object Storage - Local Zones specifications Object Storage - Compliance Object Storage - Limiti tecnici (EN) Object Storage - Optimising Performance Object Storage - Optimise the sending of your files to Object Storage Risorse aggiuntive Object Storage - Shared Responsibility Cold Storage - Shared Responsibility for archive and restoration services Object Storage - Third-party applications compatibility Swift Per iniziare Object Storage Swift - Creating an Object Storage container Object Storage Swift - Come utilizzare l’API Swift Object Storage Swift - Iniziare a utilizzare l'API Swift S3 Configurazione Object Storage Swift - Configura un dominio su un container del tuo Object Storage Object Storage Swift - Sincronizzazione dei contenitori di oggetti (EN) Object Storage Swift - Configura la cancellazione automatica dei tuoi oggetti Object Storage Swift - Setting up CORS on Object Storage (EN) Cloud Archive Swift - Gestisci i tuoi archivi con un client SFTP/SCP Cloud Archive Swift - Creazione di container Public Cloud Archive Cloud Archive Swift - Rendi disponibili i tuoi dati salvati su Public Cloud Archive Cloud Archive Swift - Set up an Access Control List on Public Cloud Archive (EN) Migrazione Object Storage - How to migrate from OVHcloud Swift Object Storage to OVHcloud S3-compatible Object Storage Tutorials Object Storage Swift - Sincronizza un Synology NAS con l'Object Storage Object Storage Swift - Configura un container di oggetti S3QL (EN) Object Storage Swift - Gestisci il tuo Object Storage con CyberDuck Object Storage Swift - Using Object Storage with Rclone Object Storage Swift - Configura il tuo Object Storage su Owncloud (EN) Cloud Archive Swift - Gestisci i tuoi archivi con un client Swift (Cyberduck) Cloud Archive Swift - Gestisci i tuoi archivi con Rsync Sicurezza Object Storage Swift - Set up an Access Control List on Object Storage (EN) Risoluzione dei problemi Object Storage Swift - S3/Swift REST API compatibility (EN) Object Storage Swift - Capabilities and limitations Cloud Archive Swift - Capabilities and limitations Object Storage Swift - Ottimizza il trasferimento dei tuoi file verso l’Object Storage Risorse aggiuntive Object Storage Swift - Curl Command Memo (EN) Object Storage Swift - Swift commands Memo (EN) Cloud Archive Swift - Curl Command Memo (EN) Cloud Archive Swift - Swift Command Memo (EN) File Storage Panoramica Enterprise File Storage Panoramica Concetti chiave Enterprise File Storage - Concetti Enterprise File Storage - Concetti di performance Enterprise File Storage - FAQ Per iniziare Enterprise File Storage - Gestione dallo Spazio Cliente OVHcloud Managing Enterprise File Storage with OVHcloud Terraform provider Enterprise File Storage - Iniziare a utilizzare le API Enterprise File Storage - Primi passi con Trident CSI Configurazione Enterprise File Storage - Gestisci le politiche degli Snapshot Enterprise File Storage - Conservare uno Snapshot automatico Enterprise File Storage - Ripristinare un volume con l'API di ripristino Snapshot Enterprise File Storage - Gestisci i tuoi volumi Enterprise File Storage - Gestire le ACL di un volume Enterprise File Storage - Gestire gli Snapshot di un volume Enterprise File Storage - Caratteristiche di alcuni client NFS Enterprise File Storage - Connect a Public Cloud instance to an EFS Volume via vRack Private Network Enterprise File Storage - Private network configuration Migrazione Enterprise File Storage - Clonare un volume Risorse aggiuntive File Storage services - Responsibility model (EN) File Storage reversibility policy NAS-HA Panoramica Concetti chiave Domande frequenti sul NAS-HA Per iniziare Iniziare a utilizzare un NAS-HA NAS-HA - Iniziare a utilizzare le API Configurazione Installazione di un NAS-HA tramite condivisione NFS Montare un NAS-HA tramite condivisione CIFS NAS-HA - Gestione delle ACL via API NAS-HA - Gestione delle partizioni tramite API NAS-HA - Gestisci gli Snapshot via API Migrazione Migrazione di dati da un NAS-HA verso un altro tramite NFS Risorse aggiuntive File Storage reversibility policy File Storage services - Responsibility model (EN) Public Cloud File Storage Key concepts Per iniziare File Storage Service - Getting started (Beta) Block Storage Panoramica Block volume Concetti chiave Proper Usage and Limitations of Classic Multi-Attach Block Storage in 3AZ Regions Per iniziare Crea e configura un disco aggiuntivo sulla tua istanza Creare un backup di un volume Creare uno Snapshot di un volume Configurazione Creare un volume a partire da un backup Aumenta la dimensione di un disco aggiuntivo Esegui un test della velocita dei tuoi dischi Migrazione Migrer un volume Block Storage vers un volume chiffre LUKS Modificare un Volume Block Storage Risorse aggiuntive Public Cloud Block Storage - Shared responsibilities (EN) Cloud Disk Array Concetti chiave FAQ (EN) Per iniziare Cloud Disk Array - Creazione dell'utente (EN) Cloud Disk Array - Pool creation (EN) Cloud Disk Array - Creazione ACL IP (EN) Configurazione Modifica i diritti dell'utente (EN) Filesystem distribuito CephFS (EN) How to upgrade a Cloud Disk Array (CDA) using the OVHcloud API Accedi al cluster utilizzando il client rbd (EN) Tutorials Utilizza Ceph con Proxmox (EN) Risorse aggiuntive Stato del cluster (EN) Eseguire test di Storage Benchmarking Backup and disaster recovery solution Backup Agent Concetti chiave Backup Agent - Presentazione del prodotto Backup Agent - Funzionamento del Vault Per iniziare Backup Agent - Come configurare il primo backup Backup Agent - Gestisci i tuoi backup e le tue ripristini Backup Agent - Connessione alla VSPC Risoluzione dei problemi Backup Agent - Diagnosi e risoluzione dei problemi Backup Agent - Restore a Bare Metal server with Veeam Backup Agent Risorse aggiuntive Backup Agent - Limitazioni note Backup Agent - Fatturazione Backup Agent - Aggiornamento del servizio Backup Agent - Procedura di eliminazione Veeam Enterprise Plus Per iniziare Installare Veeam Backup & Replication (EN) Configurazione Preparing a Bare Metal Server backup with Veeam Enterprise (EN) Backing up a Bare Metal Linux Server with Veeam Enterprise (EN) Backing Up a Bare Metal Windows Server Using Veeam Agent for Windows (EN) Restoring a Bare Metal Server with Veeam Enterprise (EN) Sicurezza Encrypting backup jobs with Veeam and OKMS Managed Veeam for Public VCF aaS Per iniziare Public VCF as-a-Service - Backups with Veeam Data Platform (EN) HYCU for OVHcloud Per iniziare Configura HYCU Backup (EN) Managed Kubernetes - Data Protection Tutorials Backup and Restore OVHcloud Managed Kubernetes Cluster, Namespace and Applications using TrilioVault for Kubernetes Backing-up an OVHcloud Managed Kubernetes cluster using CloudCasa Backing up and restoring your Persistent Volume with Volume Snapshots on OVHcloud Managed Kubernetes Backing-up an OVHcloud Managed Kubernetes cluster using Velero Backing-up Persistent Volumes using Stash Rete Additional IP Concetti chiave Concepts - Primary IP and Additional IP Configurazione Spostare un Additional IP Configurare un blocco Additional IP in un vRack Configurare un blocco Additional IPv6 in un vRack Guide specifiche al prodotto Server dedicati Configurare la rete su Proxmox VE sulle gamme High Grade, Scale & Advance (EN) Configurare Additional IP in modalita bridge sulle proprie macchine virtuali Tutorial - Configuring pfSense network bridge (EN) Configurer son adresse IP en alias Configurare la rete su Windows Server con Hyper-V Assegnare un MAC virtuale a un Additional IP Utilizza Hyper-V con indirizzi Additional IP su una vRack Hosted Private Cloud Aggiungere un indirizzo IP pubblico a una nuova VM (EN) Aggiungere un blocco IP Load Balancer How to route an Additional IP Managed Bare Metal Aggiungere un blocco IP Public Cloud Concepts - Additional IP or Floating IP (EN) Configura un Additional IP Acquista un Additional IP Trasferisci il tuo Additional IP Importa un Additional IP Virtual Private Servers Configurare un indirizzo IP in alias Risoluzione dei problemi Come rimuovere un indirizzo IP da un elenco di indirizzi IP bloccati Cancelling an Additional IP service Bring Your Own IP How to use the Bring Your Own IP feature (EN) BGP Service Configuration du service BGP Content Delivery Network (CDN) Infrastructure Prima configurazione di un dominio Funzionamento della quota sulla CDN Funzionamento del certificato SSL sulla CDN Lista degli indirizzi IP da autorizzare per la CDN Infrastructure Load Balancer Panoramica Concetti chiave Introduction to the OVHcloud Load Balancer OVHcloud Load Balancer FAQ Introduzione Gestion du service OVHcloud Load Balancer via l'espace client Order a free SSL certificate Load Balancer API Quick Reference OVHcloud Load Balancer TCP / HTTP / HTTPS Logs Forwarding Load balancing methods Configurazione Infrastruttura How to route an Additional IP Configuring the vRack on the load balancer How to configure the OVHcloud Load Balancer in multiple zones Traffico Configurare HTTP/2 su OVHcloud Load Balancer Comment configurer le SMTP sur un service Load Balancer Configuration of an OVHcloud Load Balancer service - HTTP headers Configuring an OVHcloud Load Balancer with ProxyProtocol Configuration of probes on an OVHcloud Load Balancer service Configuring an OVHcloud Load Balancer service with redirects Configuring an OVHcloud Load Balancer with HTTP routes Tracking connections on the OVHcloud Load Balancer Distribuzioni Configuration of an OVHcloud Load Balancer service with HTTP/HTTPS Deploying a blue-green infrastructure Risorse aggiuntive Details of API functions Risoluzione dei problemi Retrieving server health status Sicurezza di rete Attivare e configurare Edge Network Firewall Proteggere un server game con il firewall dell'applicazione Monitoraggio degli attacchi DDoS con il Network Security Dashboard OVHcloud Connect Panoramica Concetti chiave Concepts overview Layer 2 mode Layer 3 mode Introduzione Installation of OVHcloud Connect Direct from the OVHcloud Control Panel Installation of OVHcloud Connect Provider from the OVHcloud Control Panel How to initiate a diagnostic for OVHcloud Connect from the OVHcloud Control Panel OVHcloud Connect Logs Forwarding FAQ OVHcloud Connect Configurazione Configuration of OVHcloud Connect using OVHcloud APIv6 Risoluzione dei problemi Troubleshooting common errors setting up OVHcloud Connect Risorse aggiuntive Technical capabilities and limitations SecNumCloud Concepts overview SPN Concept VPN-SPN Concept FAQ SecNumCloud Connectivity vRack Private Network Panoramica Configurazione Configurare un blocco Additional IP in un vRack Configurare un blocco Additional IPv6 in un vRack Configurare frame Jumbo nella vRack Creare due o piu VLAN nella vRack Modificare i blocchi IP annunciati nella vRack Upgrade and downgrade private bandwidth (vRack) via the OVHcloud API Guide specifiche al prodotto Server dedicati Configurare la rete su Proxmox VE sulle gamme High Grade, Scale & Advance (EN) Configurare due o piu server dedicati nella vRack Configurare la rete su Windows Server con Hyper-V Configurare la vRack tra un'istanza Public Cloud e un server dedicato Utilizza Hyper-V con indirizzi Additional IP su una vRack Configurare un NIC per il servizio OVHcloud Link Aggregation in Debian 9 a 11 Hosted Private Cloud Nutanix on OVHcloud Interconnessione di cluster attraverso la vRack (EN) Modifica della vRack di un cluster Nutanix (EN) VMware on OVHcloud Creazione di VLAN (EN) Utilizzare Hosted Private Cloud all'interno di una vRack Compatibilita della vRack con Hosted Private Cloud Load Balancer Configuring the vRack on the load balancer Managed Bare Metal Utilizzare Managed Bare Metal all'interno di una vRack Creazione di VLAN Public Cloud Containers & Orchestration Using vRack Private Network Working with vRack example - Communicating between different private networks Using vRack - Communicating between different private networks Working with vRack example - Managed Kubernetes and Public Cloud instances Public Cloud Network Services Configurazione della vRack sul Public Cloud Configuring vRack on the Public Cloud using the OVHcloud API (EN) Configurare il Public Cloud vRack con OpenStack CLI Configurare la vRack tra un'istanza Public Cloud e un server dedicato Configuring a public IP block in a vRack on a Public Cloud instance vRack Services vRack Services - Exposing a Managed Service on your vRack Enterprise File Storage - Private network configuration Enterprise File Storage - Connect a Public Cloud instance to an EFS Volume via vRack Private Network Risoluzione dei problemi How to troubleshoot your network using OVHcloud tools Come sapere se il mio indirizzo IP e gestito da OVHcloud? Gestire e operare API Per iniziare Iniziare a utilizzare le API OVHcloud Exploring the OVHcloud APIs (EN) APIv6 OVHcloud API v2 - Principles of operation Manage services Manage payment and billing of OVHcloud services Create a OVH sub-account and a user account with OVH API Managing OVHcloud service accounts via the API (EN) How to use service accounts to connect to OVHcloud APIs (EN) Generating OVHcloud account logs with Logs Data Platform (EN) Gestione degli utenti e della federazione Per iniziare Presentazione delle identita che possono interagire all'interno di un account OVHcloud Creare e gestire utenti locali su un account OVHcloud Managing OVHcloud service accounts via the API (EN) Federazione di identita Attiva le connessioni Active Directory Federation Services (AD FS) SSO con il tuo account OVHcloud Attiva le connessioni SSO di Google Workspace con il tuo account OVHcloud Attiva le connessioni SSO di Entra ID con il tuo account OVHcloud Attiva le connessioni Okta SSO con il tuo account OVHcloud IAM Come utilizzare le policy di IAM utilizzando l’API OVHcloud (EN) Come utilizzare le politiche IAM dallo Spazio Cliente Lista dei gruppi di permessi di OVHcloud (EN) How to manage tags on resources Come creare una politica IAM per permettere a un utente di accedere allo Spazio Cliente OVHcloud (EN) How to use IAM policies with vSphere (EN) How to use service accounts to connect to OpenStack (EN) How to analyse IAM policy results (EN) Generating OVHcloud account logs with Logs Data Platform (EN) Terraform Using Terraform with OVHcloud (EN) CLI Getting Started with OVHcloud CLI Observability Logs Data Platform Getting Started Introduction to Logs Data Platform Quick start for Logs Data Platform Logs Data Platform - Responsibility model Reversibility Policy for the Managed Log Manager product OVHcloud Service Logs Generating OVHcloud account logs with Logs Data Platform (EN) Logs Data Platform - Collect VMware on OVHcloud logs (EN) Public Cloud Load Balancer TCP / HTTP / HTTPS Logs Forwarding (EN) Mettre en place le transfert de logs des bases de donnees Public Cloud (EN) Web Cloud Databases - Come gestire i log? Managed Kubernetes Service Audit Logs Forwarding Pushing logs from OVHcloud KMS to Logs Data Platform OVHcloud Connect Logs Forwarding IAM Ingesting your logs Field naming convention Mutualized Inputs Dedicated input - Logstash Mutualized input - OpenSearch API Pushing logs with a SDK - Python 2.x - Djehouty Pushing logs with a SDK - Python 3.x - logging-ldp Pushing logs with a logging library - Rust - gelf_logger and log4rs-gelf Pushing logs with a forwarder - Filebeat (Linux) Pushing logs with a forwarder - Syslog-ng 3.12.1+ (Linux) Pushing logs with a forwarder - NXLog (Windows) Pushing logs from software - Apache Pushing logs from a Kubernetes cluster to Logs Data Platform using Fluent Bit Generating OVHcloud account logs with Logs Data Platform (EN) SAP logs on OVHcloud Logs Data Platform - Configuration Logs Data Platform - Collect VMware on OVHcloud logs (EN) Visualizing, querying and exploiting your logs Exposing your logs to third-party tools via the OpenSearch API Using OpenSearch Dashboards with Logs Data Platform Using Grafana with Logs Data Platform CLI - ldp-tail, a tool to follow your logs in real-time CLI - bonfire, querying graylog from a CLI Alerting - Configuring alerts on your streams Alerting - Using ElastAlert 2 with Logs Data Platform OpenSearch Index as a service OpenSearch Index as a Service Security and conformity Archiving your logs - Cold-storage Encrypting your logs archives Securing Logs Data Platform's APIs with tokens Usecases Tracking slow MySQL queries with Logs Data Platform Supervising your HAProxy deployment with Logs Data Platform Pushing logs from a Kubernetes cluster to Logs Data Platform using Fluent Bit Handling roles and permissions when IAM is not enabled SAP logs on OVHcloud Logs Data Platform - Configuration KMS Getting started with OVHcloud Key Management Service (KMS) Using OVHcloud Key Management Service (KMS) Manage your OKMS access certificate OKMS Architecture overview OKMS - Shared responsibilities How to connect a compatible product using KMIP protocol How to Encrypt Kubernetes ETCD with OVHcloud KMS Pushing logs from OVHcloud KMS to Logs Data Platform Secret Manager Using the Secret Manager in the OVHcloud Control Panel Using the Secret Manager with the REST API Using the Secret Manager with the HashiCorp Vault KV2 compliant API Manage your OKMS access certificate OKMS Architecture overview OKMS - Shared responsibilities How to use Kubernetes External Secret Operator with Secret Manager Gestione account Informazioni account Panoramica Per iniziare Creare un account OVHcloud Accedi allo Spazio Cliente OVHcloud Impostare e gestire la password di un account OVHcloud Rendere sicuro il tuo account OVHcloud e gestire i tuoi dati personali Gestire i contatti dei servizi OVHcloud Gestire le comunicazioni relative ai servizi OVHcloud Presentazione della nuova navigazione nello Spazio Cliente OVHcloud Condividere file con il tool Plik Creazione e gestione degli utenti Presentazione delle identita che possono interagire all'interno di un account OVHcloud Creare e gestire utenti locali su un account OVHcloud Come utilizzare le policy di IAM utilizzando l’API OVHcloud (EN) Come utilizzare le politiche IAM dallo Spazio Cliente Generating OVHcloud account logs with Logs Data Platform (EN) How to analyse IAM policy results (EN) Lista dei gruppi di permessi di OVHcloud (EN) Come creare una politica IAM per permettere a un utente di accedere allo Spazio Cliente OVHcloud (EN) Managing OVHcloud service accounts via the API (EN) Attiva le connessioni Active Directory Federation Services (AD FS) SSO con il tuo account OVHcloud Attiva le connessioni SSO di Google Workspace con il tuo account OVHcloud Attiva le connessioni SSO di Entra ID con il tuo account OVHcloud Attiva le connessioni Okta SSO con il tuo account OVHcloud How to use IAM policies with vSphere (EN) How to use service accounts to connect to OpenStack (EN) How to use service accounts to connect to OVHcloud APIs (EN) Come aggiungere una chiave SSH nel pannello di controllo OVHcloud (generated by AI) FAQ FAQ sulla gestione dell'account OVHcloud FAQ sul supporto OVHcloud Sicurezza e conformita Rendere sicuro il tuo account OVHcloud con la doppia autenticazione Limitare l'accesso via IP al tuo Spazio Cliente OVHcloud Phishing - Come riconoscere e-mail fraudolente? Information System Security Policy (ISSP) Dedicated Server Security Specifications Security specification for Private Cloud by VMmare (EN) Block Storage security specifications Security specification for Private Cloud VMmare under SecNumCloud qualification (EN) OVHcloud products ISO27k certifications OVHcloud products HDS certification Representation des garanties de la certification d'Hebergement de Donnees de Sante (HDS) sur les produits OVHcloud Gestione della fatturazione, dei pagamenti e dei servizi Rinnovo di un servizio Come rinnovare i servizi OVHcloud Rinnovare i miei domini OVHcloud Rinnovare un servizio tramite l’API OVHcloud Gestione dei servizi Best practice per la gestione dei tuoi servizi e del tuo account OVHcloud Come ottenere l'impronta di carbonio dei servizi OVHcloud Fatture, fatturazione e pagamenti Gestire gli ordini OVHcloud Gestire i metodi di pagamento Gestire le fatture OVHcloud Nozione di numero d'ordine o Purchase Order (PO) Payer une commande en tant qu’administration publique Hosted Private Cloud Hosted Private Cloud Billing (EN) AI Notebooks AI Notebooks - Billing and lifecycle Public Cloud Aggiungi credito Cloud al tuo progetto Public Cloud Compute - Passare dalla fatturazione oraria a quella mensile Rescissione di un servizio Come disattivare i servizi OVHcloud Hosted Private Cloud Disattivare una soluzione Private Cloud GDPR - How to immediately delete your OVHcloud services FAQ FAQ fatturazione e pagamento FAQ sullo stato dell'ordine OVHcloud Come sapere se il mio indirizzo IP e gestito da OVHcloud? API Ordina un progetto Public Cloud tramite l'API OVHcloud Reversibilita Politiche di reversibilita Global Reversibility Policy (EN) Web Hosting Reversibility Policy (DE) Public Cloud Reversibility Policy Reversibility Policy for Managed Dedicated Cloud product (EN) Reversibility policy for the service VMware on OVHcloud under SecNumCloud qualification (EN) Dedicated Servers Reversibility Policy (EN) Dedicated Servers 3-AZ Reversibility Policy Reversibility Policy for Managed Document Database Product Reversibility Policy for Managed Relational Database Product Reversibility Policy for the Managed Message Broker product Reversibility Policy for the Managed Data Visualization product File Storage reversibility policy Cold Storage product reversibility policy Object Storage product reversibility policy Politique de reversibilite du produit Object Storage 3AZ Orchestration product reversibility policy Managed OCI artifact Registry Product Reversibility Policy Reversibility Policy for the Managed Log Manager product Reversibility Policy for the Unified Data Platform product AI Notebooks - Politique de reversibilite du produit Notebook Interface Reversibility Policy for the AI Managed Container product Reversibility Policy for the Managed Search Engine Software Platform product Reversibility Policy for the Managed Mutualized Virtualization product Reversibility Policy for the Dedicated PoD-SecNumCloud product Reversibility Policy for the Managed Database System for Web Hosting product Reversibility Policy for the Managed In-Memory Database product Condivisione delle responsabilita Shared responsibility for Dedicated Servers (EN) File Storage services - Responsibility model (EN) Cold Storage - Shared Responsibility for archive and restoration services Responsibility sharing for the VMware on OVHcloud service Partage de responsabilite sur le service Hosted Private Cloud by VMware sous la qualification SecNumCloud Condivisione delle responsabilita - Nutanix on OVHcloud (EN) Shared responsibility for SAP on OVHcloud solutions Logs Data Platform - Responsibility model Public Cloud Instances - Shared responsibilities (EN) Responsibility model for Public Cloud Databases Public Cloud Block Storage - Shared responsibilities (EN) Object Storage - Shared Responsibility Managed Kubernetes - Responsibility model Managed Private Registry - Responsibility model (EN) Responsibility model for the product Managed Email Server on Mutualized Infrastructure (EN) Responsibility model for the product Managed Dedicated E-mail Infrastructure (EN) OKMS - Shared responsibilities Startup Program Panoramica General information Startup Program - How to apply to our newsletter? How to optimise your application to the Startup Program How to sign your Startup Program contract Support & Communication How to contact a Startup Program manager and/or request a technical consultation Credits & Billing How to check your Startup Program credits How to pay a bill with your Startup Program credits Which products are available to use with Startup Program credits? Technical resources How to increase Public Cloud quotas for a Startup Program member Sicurezza e identita IAM Panoramica Concetti chiave Primi passi Configurazione Gestire le policy (UI) Gestire le policy (API) Gruppi di permessi Account di servizio SSO / SAML Panoramica Concetti chiave Primi passi Configurazione Connessione con ADFS Connessione con Azure AD Connessione con Google Workspace Connessione con Okta Certificazioni di sicurezza Certificazione HDS Politica di sicurezza Specifiche server dedicati Specifiche Block Storage Specifiche Private Cloud VMware Specifiche Private Cloud SNC Home › Public Cloud › Containers & Orchestration › Managed kubernetes › Backup and Restore OVHcloud Managed Kubernetes Cluster, Namespace and Applications using TrilioVault for Kubernetes Backup and Restore OVHcloud Managed Kubernetes Cluster, Namespace and Applications using TrilioVault for Kubernetes Copia Markdown Chiedi all'IA Introduction In this tutorial, you will learn how to deploy TrilioVault for Kubernetes (or TVK ) to your OVHcloud Managed Kubernetes Cluster, create backups, and recover from a backup if something goes wrong. You can back up your entire cluster by including mutliple namespaces, or optionally choose a single namespace, label based backups, Helm Releases based backups or Operator based backups. Advantages of using Trilio : Take full (or incremental) backups of your all namespaces, selective applications and restore in case of data loss. Migrate from one cluster to another. Helm release backups are supported. Backup of Operator based application deployment is also supported. Run pre and post hooks for backup and restore operations. Web management console, that allows you to inspect your backup/restore operations state in detail (and many other features). Define retention policies for your backups. Application lifecycle (meaning, TVK itself) can be managed via a dedicated TrilioVault Operator. Velero integration (Trilio supports monitoring Velero backups, restores, and backup/snapshot locations via its web management console). How TrilioVault for Kubernetes works TVK follows a cloud native architecture, meaning that it has several components that together form the Control Plane and Data Plane layers. Everything is managed via CRDs , thus making it fully Kubernetes native. What is nice about Trilio is the clear separation of concerns, and how effective it handles backup and restore operations. Each TrilioVault application consists of a bunch of "Controllers" and the associated CRDs. Every time a CRD is created or updated, the responsible controller is notified and performs cluster reconciliation. Then, the controller in charge spawns Kubernetes jobs that perform the real operation (like , , etc) in parallel. Control Plane consists of: Target Controller : defines the storage backend ( * , , etc) via specific CRDs. BackupPlan Controller : defines the components to backup, automated backups schedule, retention strategy, etc via specific CRDs. Restore Controller : defines restore operations via specific CRDs. Data Plane consists of: Datamover Pods, responsible with transferring data between persistent volumes and backup media (or ). TrilioVault works with Persistent Volumes (PVs) using the CSI interface. For each PV that needs to be backed up, an ephemeral Datamover Pod is created. After each operation finishes, the associated pod is destroyed. Metamover Pods, responsible with transferring Kubernetes API objects data to backup media (or ). Metamover pods are ephemeral, just like the Datamover ones. Understanding TrilioVault Application Scope TrilioVault for Kubernetes works based on scope , meaning you can have a Namespaced or a Cluster type of installation. A Namespaced installation allows you to and at the namespace level only. In other words, the backup is meant to protect a set of applications that are bound to a namespace that you own. This is how a "BackupPlan" and the corresponding Backup CRD works. You cannot mutate those CRDs in other namespaces, they must be created in the same namespace where the application to be backed up is located. On the other hand, a Cluster type installation is not scoped or bound to any namespace or a set of applications. You define cluster type backups via the Cluster prefixed CRDs, like: , , etc. Cluster type backups are a little bit more flexible, in the sense that you are not tied to a specific namespace or set of applications to backup and restore. You can perform backup/restore operations for multiple namespaces and applications at once, including PVs as well (you can also backup databased content). In order to make sure that TVK application scope and rules are followed correctly, TrilioVault is using an Admission Controller . It intercepts and validates each CRD that you want to push for TVK, before it is actually created. In case TVK application scope is not followed, the admission controller will reject CRD creation in the cluster. Another important thing to consider and remember is that a TVK License is application scope specific. In other words, you need to generate one type of license for either a Namespaced or a Cluster type installation. Namespaced vs Cluster TVK application scope - when to use one or the other? It all depends on the use case. For example, a Namespaced scope is a more appropriate option when you don't have access to the whole Kubernetes cluster, only to specific namespaces and applications. In most of the cases you want to protect only the applications tied to a specific namespace that you own. On the other hand, a cluster scoped installation type works at the global level, meaning it can trigger backup/restore operations for any namespace or resource from a Kubernetes cluster (including PVs and the database). To summarize: If you are a cluster administrator, then you will most probably want to perform cluster level operations via corresponding CRDs, like: , , , etc. If you are a regular user, then you will usually perform namespaced only operations (application centric) via corresponding CRDs, like: , , , etc. The application interface is very similar or uniform when comparing the two types: Cluster vs non-Cluster prefixed CRDs. So, if you're familiar with one type, it's pretty straightforward to use the counterpart. For more information, please refer to the TVK CRDs official documentation. Backup and Restore Workflow Whenever you want to backup an application, you start by creating a (or ) CRD, followed by a (or ) object. Trilio Backup Controller is notified about the change and performs backup object inspection and validation (i.e. whether it is backup, backup, etc.). Then, it spawns worker pods (Metamover, Datamover) responsible with moving the actual data (Kubernetes metadata, PVs data) to the backend storage (or ), such as OVHcloud Object Storage. Similarly whenever you create a Restore object, the "Restore Controller" is notified to restore from a Backup object. Then, Trilio Restore Controller spawns worker nodes (Metamover, Datamover), responsible with moving backup data out of the (Kubernetes metadata, PVs data). Finally, the restore process is initiated from the particular backup object. Trilio is ideal for the disaster recoveryuse case, as well as for "snapshotting" your application state, prior to performing system operations on your cluster, like upgrades. For more details on this topic, please visit the Trilio Features and Trilio Use Case official page. After finishing this tutorial, you should be able to: Configure OVHcloud Object Storage backend for Trilio to use. and your applications and your entire OVHcloud Managed Kubernetes Cluster. Create scheduled backups for your applications. Create retention policies for your backups. Table of Contents Introduction How TrilioVault for Kubernetes Works Understanding TrilioVault Application Scope Backup and Restore Workflow Requirements Step 1 - Installing TrilioVault for Kubernetes Installing TrilioVault Operator and Manager Using Helm TrilioVault Application Licensing Installing TVK Application Licensing Renewing TVK Application License Step 2 - Creating a TrilioVault Target to Store Backups Step 3 - Getting to Know the TVK Web Management Console Getting Access to the TVK Web Management Console Exploring the TVK Web Console User Interface Step 4 - Helm Release Backup and Restore Example Creating mysql-qa Helm Release Backup Deleting mysql-qa Helm Release and Resources Restoring mysql-qa Helm Release Backup Verifying Applications Integrity after Restoration Step 5 - Backup and Restore Whole Cluster Example Creating the OVHcloud Managed Kubernetes Cluster Backup Re-creating the OVHcloud Managed Kubernetes Cluster and Restoring Applications Checking OVHcloud Managed Kubernetes Cluster Applications State Step 6 - Scheduled Backups Step 7 - Backups Retention Policy Using Retention Policies Using Cleanup Policies Conclusion Requirements To complete this tutorial, you need the following: An OVHcloud Object Storage Container/Bucket and a User which will have permission to access the Object Storage Container. A Git client, to clone the OVHcloud Docs repository. Helm , for managing TrilioVault Operator releases and upgrades. Kubectl , for Kubernetes interaction. krew , for installation of preflight checks plugin. WARNING In order for TrilioVault to work correctly and to backup your PVCs, the OVHcloud Managed Kubernetes Cluster needs to be configured to support the Container Storage Interface (or CSI, for short) and CustomResourceDefinitions should be deployed. The output should look similar to below: Also make sure that the CRD support both and API version. You can run below command to check the API version: At the end of the CRD yaml, you should obtain an output similar to below, showing as and : User can then install the Hostpath CSI driver and create a storageclass, volumesnapshotclass. You can check the existing storage class using below command: The output should look similar to (notice the provisioner is hostpath.csi.k8s.io if you have installed hostpath CSI driver): Users should run a preflight check to make sure all the prerequisites for the TVK are fulfilled to proceed safely with installation. Follow the TVK Preflight Checks page to install and run preflight through krew plugin. Instructions Step 1 - Installing TrilioVault for Kubernetes In this step, you will learn how to deploy TrilioVault for Kubernetes for OVHcloud Managed Kubernetes Cluster, and manage TVK installations via Helm. Backups data will be stored in the OVHcloud Object Storage bucket created earlier in the Requirements section. TrilioVault for Kubernetes consists of TVK Operator and TVM application. The TrilioVault Operator (installable via Helm) which also installs the TrilioVaultManager CRD and creates a custom resource. TVK Operator handles the installation, post-configuration steps, and future upgrades of the Trilio application components. Installing TrilioVault Operator and Manager Using Helm WARNING This tutorial is using the Cluster installation type for the TVK application ( Helm value is set to "Cluster"). All examples from this tutorial rely on this type of installation to function properly. Please follow the steps below, to install TrilioVault via Helm: First, clone the OVHcloud Docs Git repository and change directory to your local copy: Next, add the TrilioVault Helm repository, and list the available charts: The output looks similar to the following: The chart of interest is , which will install TrilioVault for Kubernetes Operator on the cluster. You can run command to install the Operator which will also install the Triliovault Manager CRD. Install TrilioVault for Kubernetes Operator using : TVK allows user to alter the values to be used by TVK Operator installation using option. Check the detailed instructions in the One-click Installation page. Now, please check your deployment: The output looks similar to the following ( column should display "deployed"): Next, verify that TrilioVault-Operator and Triliovault-Manager application is up and running: The output looks similar to the following (deployment pods must be in the state): Now, please check your CRDs, CR as well: The output looks similar to the following: You can also check if the TVM Custom Resource is created. The output looks similar to the following: If the output looks like above, you installed TVK successfully. Next, you will learn how to check license type and validity, as well as how to renew. TrilioVault Application Licensing By default, when installing TVK via Helm, there is no Free Trial license generated. This tutorial will help you install the 'Cluster' scoped license which is of type 'Basic' for cluster capacity of 500 CPUs and has expiration time of 5 years. You can always go to the Trilio website and generate a new license for your cluster that suits your needs. Installing TVK Application Licensing Please run below command to see what license is available for your cluster (it is managed via the License CRD): Run the below command to verify if the license is successfully created for OVHcloud users: The output looks similar to (notice the which should be "Active", as well as the license type in the column and ): The license is managed via a special , namely the object. You can inspect it by running below command: The output looks similar to (notice the and fields, as well as the ): The above output will also tell you when the license is going to expire in the field, and the ( based in this case). You can opt for a cluster wide license type, or for a namespace based license. More details can be found on the Trilio Licensing documentation page. Renewing TVK Application License To renew the license, you will have to request a new one from the Trilio website, by navigating to the licensing page. After completing the form, you should receive the License YAML manifest, which can be applied to your cluster using . Below commands assume that TVK is installed in the default namespace (please replace the placeholders accordingly, where required): Then, you can check the new license status as you already learned via: In the next step, you will learn how to define the storage backend for TrilioVault to store backups, called a . Step 2 - Creating a TrilioVault Target to Store Backups TrilioVault needs to know first where to store your backups. TrilioVault refers to the storage backend by using the target term, and it's managed via a special CRD named . The following target types are supported: and . For OVHcloud and the purpose of the tutorial, it makes sense to rely on the storage type because it's cheap and scalable. To benefit from an enhanced level of protection you can create multiple target types (for both and ), so that your data is kept safe in multiple places, thus achieving backup redundancy. OVHcloud provides two types of S3 compatible Object Storage solutions: To create Target for the , use this link . To create Target for the , use this link Create an Object Storage user in the tab next to Object Storage Container. Now, from , assign the Administrator priviledges to the S3 user. Next, create an Access Key and Secret Key to access the Object Storage Container using the Getting Started with the Swift S3 API tutorial. INFO If you have created a container with High Performance then follow the Getting started with S3 compatible Object Storage documentation. Save the Access key and Secret key used in AWS CLI file. It is required to create a target later. Take a note of the Object Storage endpoint URL , and the region name provided in the AWS CLI file. It is required to create a later. To access Object Storage, each target needs to know bucket credentials. A Kubernetes Secret must be created as well: Notice that the secret name is . It's referenced by the field of the Target CRD explained below. The can be in the same where TrilioVault was installed (defaults to ), or in another namespace of your choice. Just make sure that you reference the namespace correctly. On the other hand, please make sure to protect the where you store TrilioVault secrets via , for security reasons. Typical Target definition looks like below: Explanation for the above configuration: : Type of target for backup storage (Object Storage is an object store). : Third party storage vendor hosting the target (for OVHcloud Object Storage you need to use "Other" instead of "AWS"). : Enable browsing for the target to browse through the backups stored on it. : Defines required credentials (via ) to access the Object Storage, as well as other parameters such as bucket region and name. : Maximum threshold capacity to store backup data. Steps to create a for TrilioVault: First, change directory where the Git repository was cloned on your local machine: Next, create the Kubernetes secret containing your target Object Storage bucket credentials (please replace the placeholders accordingly): Then, open and inspect the manifest file provided in the repository, using an editor of your choice (preferably with YAML lint support). You can use VS Code for example: Now, please replace the placeholders accordingly to your OVHcloud Object Storage Trilio bucket, like: , , and . Finally, save the manifest file and create the object using : What happens next is, TrilioVault will spawn a worker job named responsible with validating your Object Storage bucket (like availability, permissions, etc.). If the job finishes successfully, the bucket is considered to be healthy or available and the job resource is deleted afterwards. If something bad happens, the Object Storage target validator job is left up and running so that you can inspect the logs and find the possible issue. Now, please go ahead and check if the resource created earlier is healthy: The output looks similar to (notice the column value - should be "Available", meaning it's in a healthy state): If the output looks like above, then you configured the Object Storage target object successfully. Hint: In case the target object fails to become healthy, you can inspect the logs from the Pod to find the issue: First, you need to find the target validator The output looks similar to: Now, fetch logs data The output looks similar to (notice the exception as an example): Next, you will discover the TVK web console which is a really nice and useful addition to help you manage backup and restore operations very easily, among many others. Step 3 - Getting to Know the TVK Web Management Console While you can manage backup and restore operations from the CLI entirely via and , provides a Web Management Console to accomplish the same operations via the GUI. The management console simplifies common tasks via point and click operations, provides better visualization and inspection of TVK cluster objects, as well as to create disaster recovery plans (or ). The Helm based installation covered in Step 1 - Installing TrilioVault for Kubernetes already took care of installing the required components for the web management console. Getting Access to the TVK Web Management Console To be able to access the console and explore the features it offers, you can either user LoadBalancer, NodePort or need to port forward the ingress-nginx-controller service for TVK. First, you need to identify the service from the namespace: The output looks similar to (search for the line, and notice that it listens on port 80 in the column): If you are using LoadBalancer for the then the output would look like: TVK is using an Nginx Ingress Controller to route traffic to the management web console services. Routing is host based, and the host name is as defined in the Helm values file from the : Having the above information at hand, please go ahead and edit the file, and add this entry: Next, create the port forward for the TVK ingress controller service: Finally download the file for your OVHcloud Managed Kubernetes Cluster present under tab as . This step is required so that the web console can authenticate you using kubeconfig file: After following the above steps, you can access the console in your web browser by navigating to: http://ovh-k8s-tvk.demo.trilio.io . When asked for the file, please select the one that you created in the last command from above. INFO Please keep the generated file safe because it contains sensitive data. Exploring the TVK Web Console User Interface The home page looks similar to: Go ahead and explore each section from the left: : This shows the list of primary cluster and other clusters having TVK instances, added to the primary OVHcloud cluster using Multi-Cluster Management feature. : This is the main dashboard which gives you a general overview for the whole cluster, like: Discovered namespaces, Applications, Backupplans list, Targets, Hooks, Policies etc. : : : : : : : This has two options, TrilioVault Monitoring and Velero Monitoring if user has Velero configured on their OVHcloud cluster. : It shows the backup and restore summary of the kubernetes cluster. : : Allows you to manage and perform disaster recovery operations. You can also see the Object Storage Target created earlier, by navigating to > > Select the TVK Namespace from the dropdown on the top (in case of the TVK Namespace is ): Going further, you can browse the target and list the available backups by clicking on the button from the right, and then select option from the pop-up menu (for this to work the target must have the flag set to ): For more information and available features, please consult the TVK Web Management Console User Interface official documentation. Next, you will learn how to perform backup and restore operations for specific use cases, like: Specific namespace(s) backup and restore. Whole cluster backup and restore. Step 4 - Helm Release Backup and Restore Example In this step, you will learn how to create a one-time backup for an entire helm release from your OVHcloud Managed Kubernetes Cluster and restore it afterwards, making sure that all the resources related to the helm release are re-created. The namespace in question is . TVK has a neat feature that allows you to perform backups at a higher level than just Helm releases, meaning: complete namespaces, Label based application, and Operator based application. You will learn how to accomplish such a task, in the steps to follow. Next, you will perform the following tasks: Create the namespace and create a helm release for the MySQL Database Perform a namespace backup , via BackupPlan and Backup CRDs. Delete the Helm release. Restore the Helm release, via Restore CRD. Check the Helm release resources restoration. Creating mysql-qa helm release To verify if the helm release is deployed correctly, run below command: The output looks similar to below: Next, verify that deployment is up and running: The output looks similar to below: This shows that the mysql-qa helm release is ready to be backedup. Creating mysql-qa Helm Release Backup To perform backups for a single application at the namespace level (or Helm release), a BackupPlan followed by a Backup CRD is required. A BackupPlan allows you to: Specify a where backups should be stored. Define a set of resources to backup (e.g.: namespace or Helm releases). Encryption, if you want to encrypt your backups on the target (this is a very nice feature for securing your backups data). Define for full or incremental type backups. Define policies for your backups. INFO The TrilioVault for Kubernetes has created a few sample scheduling and retention policies for users. Users can create the new policies or utilize the sample policies. In other words a BackupPlan is a definition of "what", "where", "to" and "how" of the backup process, but it doesn't perform the actual backup. The Backup CRD is responsible with triggering the actual backup process, as dictated by the BackupPlan spec. Typical BackupPlan CRD looks like below: Explanation for the above configuration: : Tells TVK what target name to use for storing backups. : Tells TVK in which namespace the target was created. : Defines a list of resources to back up (can be namespaces or Helm releases). Typical Backup CRD looks like below: Explanation for the above configuration: : Specifies backup type (e.g. or ). : Specifies the which this should use. Steps to initiate the Helm release one time backup: First, make sure that the is deployed in your cluster by following these steps . Next, change directory where the Git repository was cloned on your local machine: Then, open and inspect the mysql-qa helm release BackupPlan and Backup manifest files provided in the repository, using an editor of your choice (preferably with YAML lint support). You can use VS Code for example: Create the BackupPlan resource, using : Now, inspect the BackupPlan status (targeting the Helm release), using : The output looks similar to (notice the column value which should be set to "Available"): Finally, create a Backup resource, using : Now, inspect the Backup status (targeting the Helm release), using : Next, check the object status, using : The output looks similar to (notice the column value which should be set to "InProgress", as well as the set to "Full"): After all the Helm release components finish uploading to the Object Storage target, you should get below results: The output looks similar to (notice that the changed to "Available", and is "100") If the output looks like above, you successfully backed up the Helm release. You can go ahead and see how TrilioVault stores Kubernetes metadata by listing the TrilioVault S3 Bucket contents. Finally, you can check that the backup is available in the web console as well, by navigating to and select Namespace from the Top dropdown (notice that it's in the "Available" state, and that the Helm release was backed up in the "Component Details" sub-view) Deleting mysql-qa Helm Release and Resources Now, go ahead and simulate a disaster, by intentionally deleting the Helm release: Next, check that the namespace resources were deleted (listing should be empty): Restoring mysql-qa Helm Release Backup Important notes: If restoring into the same namespace, ensure that the original application components have been removed. Especially the PVC of application are deleted. If restoring to another cluster (migration scenario), ensure that TrilioVault for Kubernetes is running in the remote namespace/cluster as well. To restore into a new cluster (where the Backup CR does not exist), must be set to . Please refer to the Custom Resource Definition Restore Section to view a by example. When you delete the namespace, the load balancer resource associated with the mysql-qa service will be deleted as well. So, when you restore the service, the Load Balancer will be recreated by OVHcloud. The issue is that you will get a New IP address for your Load Balancer, so you will need to adjust the for getting traffic into your domains hosted on the cluster. To restore a specific Backup, you need to create a Restore CRD. Typical Restore CRD looks like below: Explanation for the above configuration: : Specifies what backup type to restore from. : Contains a reference to the backup object to restore from. : Specifies whether to skip restore of a resource if it already exists in the namespace restored. Restore allows you to restore the last successful Backup for an application. It is used to restore a single namespaces or Helm release, protected by the Backup CRD. The Backup CRD is identified by its name: . First, inspect the Restore CRD example from the Git repository: Then, create the Restore resource using : Finally, inspect the Restore object status: The output looks similar to (notice the STATUS column set to , as well as the PERCENTAGE COMPLETED set to ): If the output looks like above, then the Helm release restoration process completed successfully. Verifying Applications Integrity after Restoration Check that all the namespace resources are in place and running: The output looks similar to: Next step deals with whole cluster backup and restore, thus covering a disaster recovery scenario. Step 5 - Backup and Restore Whole Cluster Example In this step, you will simulate a disaster recovery scenario. The whole OVHcloud Managed Kubernetes Cluster will be deleted, and then the important applications restored from a previous backup. Next, you will perform the following tasks: Create the multi-namespace backup, using a ClusterBackupPlan CRD that targets all important namespaces from your OVHcloud Managed Kubernetes Cluster. Delete the OVHcloud Managed Kubernetes Cluster, using the OVHcloud Control Panel . Create a new OVHcloud Managed Kubernetes Cluster, using the OVHcloud Control Panel . Re-install TVK and configure the OVHcloud Object Storage bucket as S3 target (you're going to use the same S3 bucket, where your important backups are stored) Restore all the important applications by using the TVK web console. Check the OVHcloud Managed Kubernetes Cluster applications integrity. Creating the OVHcloud Managed Kubernetes Cluster Backup using TVK Multi-Namespace backup feature The main idea here is to perform a OVHcloud Managed Kubernetes Cluster backup by including all important namespaces, that hold your essential applications and configurations. Basically, we cannot name it a full cluster backup and restore, but rather a multi-namespace backup and restore operation. In practice this is all that's needed, because everything is "namespaced" in Kubernetes. You will also learn how to perform a cluster restore operation via location from the target. The same flow applies when you need to perform cluster migration. Typical ClusterBackupPlan manifest targeting multiple namespaces looks like below: Notice that (or other OVHcloud Managed Kubernetes Cluster related namespaces) is not included in the list. Usually, those are not required, unless there is a special case requiring some settings to be persisted at that level. Typical ClusterBackup manifest targeting multiple namespaces looks like below: Steps to initiate a backup for all important namespaces in your OVHcloud Managed Kubernetes Cluster: First, change directory where the Git repository was cloned on your local machine: Then, open and inspect the ClusterBackupPlan and ClusterBackup manifest files provided in the repository. Create the ClusterBackupPlan resource, using : Now, inspect the ClusterBackupPlan status, using : The output looks similar to (notice the column value which should be set to "Available"): Finally, create the ClusterBackup resource, using : Next, check the ClusterBackup status, using : The output looks similar to (notice the column value which should be set to "Available", as well as the set to "100"): If the output looks like above then all your important application namespaces were backed up successfully. INFO Please bear in mind that it may take a while for the full cluster backup to finish, depending on how many namespaces and associated resources are involved in the process. You can also open the web console main dashboard and inspect the multi-namespace backup (notice how all the important namespaces that were backed up are highlighted in green color, in a honeycomb structure) Re-creating the OVHcloud Managed Kubernetes Cluster and Restoring Applications An important aspect to keep in mind is that whenever you destroy an OVHcloud Managed Kubernetes Cluster and then restore it, a new Load Balancer with a new external IP is created as well when TVK restores your ingress controller. So, please make sure to update your OVHcloud Managed DNS accordingly. Now, delete the whole OVHcloud Managed Kubernetes Cluster using the OVHcloud Control Panel . Next, re-create the cluster as described in Creating a OVHcloud Managed Kubernetes Cluster . To perform the restore operation, you need to install the TVK application as described in Step 1 - Installing TrilioVault for Kubernetes . Please make sure to use the same Helm Chart version - this is important! After the installation finishes successfully, configure the TVK target as described in Step 2 - Creating a TrilioVault Target to Store Backups , and point it to the same OVHcloud Object Storage bucket where your backup data is located. Also, please make sure that is enabled. Next, verify and activate a new license as described in the TrilioVault Application Licensing section. To get access to the web console user interface, please consult the Getting Access to the TVK Web Management Console section. Then, navigate to (in case of the TVK Namespace is ). Going further, browse the target and list the available backups by clicking on the button from the right. Then, select option from the pop-up menu (for this to work the target must have the flag set to "true"). Now, click on the item from the list, and then click and expand the item from the right sub-window similar to: To start the restore process, click on the button. A progress window will be displayed similar to below: After a while, if the progress window looks like below, then the restore operation completed successfully. Checking OVHcloud Managed Kubernetes Cluster Applications State First, verify all cluster Kubernetes resources (you should have everything in place): In the next step, you will learn how to perform scheduled (or automatic) backups for your OVHcloud Managed Kubernetes Cluster applications. Step 6 - Scheduled Backups Taking backups automatically based on a schedule, is a really useful feature to have. It allows you to rewind back time, and restore the system to a previous working state if something goes wrong. This section provides an example for an automatic backup on a 15 minute schedule (the namespace was picked). INFO First, you need to create a Policy CRD of type that defines the backup schedule in format (same as Linux cron). Schedule polices can be used for either BackupPlan or ClusterBackupPlan CRDs. Typical schedule policy CRD looks like below (defines a 15 minute schedule): Next, you can apply the schedule policy to a ClusterBackupPlan CRD for example, as seen below: Looking at the above, you can notice that it's a basic ClusterBackupPlan CRD, referencing the Policy CRD defined earlier via the field. You can have separate policies created for full or incremental backups, hence the or can be specified in the spec. Now, please go ahead and create the schedule , using the sample manifest provided by the tutorial (make sure to change directory first, where the ovh/docs Git repository was cloned on your local machine): Check that the policy resource was created: The output looks similar to (notice the type set to ): Finally, create the resource for the namespace scheduled backups: Create the backup plan first for default namespace. Check the scheduled backup plan status for : The output looks similar to (notice the value set to the previously created policy resource, as well as the which should be "Available"): Create a clusterbackup resource using scheduled policy for every 15 min: Create and trigger the scheduled backup for default namespace: Check the scheduled backup status for : The output looks similar to (notice the value set to the previously created backup plan resource, as well as the which should be "Available"): Now, you can check that backups are performed on a regular interval (15 minutes), by querying the cluster backup resource and inspect the column (). It should reflect the 15 minutes delta. In the next step, you will learn how to set up a retention policy for your backups. Step 7 - Backups Retention Policy The retention policy allows you to define the number of backups to retain and the cadence to delete backups as per compliance requirements. The retention policy CRD provides a simple YAML specification to define the number of backups to retain in terms of days, weeks, months, years, latest etc. INFO By default TrilioVault for Kubernetes creates the sample retention policy after installation. Users can use the same retention policy is no changes is required. See the default values of the policy in the TVK UI Retention policy: Using Retention Policies Retention polices can be used for either BackupPlan or ClusterBackupPlan CRDs. Typical manifest for the type looks like below: Explanation for the above configuration: : Defines policy type. Can be: or . : Describes retention configuration, such as what interval to use for backups retention and how many. : Maximum number of latest backups to be retained. : Maximum number of backups to be retained in a week. : Day of the week to maintain weekly backups. : Maximum number of backups to be retained in a month. : Date of the month to maintain monthly backups. : Month of the backup to retain for yearly backups. : Maximum number of backups to be retained in a year. The above retention policy translates to: On a basis, keep one backup each . On a basis, keep one backup in the day. On a basis, keep one backup every . , I want to always have the backups available. The basic flow for creating a retention policy resource goes the same way as for scheduled backups. You need a BackupPlan or a ClusterBackupPlan CRD defined to reference the retention policy, and then have a Backup or ClusterBackup object to trigger the process. Typical ClusterBackupPlan example configuration that has retention set, looks like below: Once you apply the ClusterBackupplan, you can check it using: Output would look similar to below: Notice that it uses a field to reference the policy in question. Of course, you can have a backup plan that has both types of policies set, so that it is able to perform scheduled backups, as well as to deal with retention strategies. Using Cleanup Policies Having so many TVK resources (each one responsible with various operations such as: scheduled backups, retention, etc), it is very probable for things to go wrong at some point in time. It means that some of the previously enumerated operations might fail due to various reasons, like: inaccessible storage, network issues for NFS, etc. So, what happens is that your OVHcloud Managed Kubernetes Cluster will get crowded with many Kubernetes objects in a failed state. You need a way to garbage collect all those objects in the end and release associated resources, to avoid trouble in the future. Meet the CRD: The above cleanup policy must be defined in the TVK install namespace. Then, a cron job is created automatically for you that runs every 30 mins, and deletes failed backups based on the value specified for within the spec field. This is a very neat feature that TVK provides to help you deal with this kind of situation. Conclusion In this tutorial, you learned how to perform one time , as well as scheduled backups, and to restore everything back. Having scheduled backups in place, is very important as it allows you to revert to a previous snapshot in time, if something goes wrong along the way. You walked through a disaster recovery scenario, as well. Next, backups retention plays an important role as well, because storage is finite and sometimes it can get expensive if too many objects are implied. All the basic tasks and operations explained in this tutorial, are meant to give you a basic introduction and understanding of what TrilioVault for Kubernetes is capable of. You can learn more about TrilioVault for Kubernetes and other interesting (or useful) topics, by following the links below: TVK CRD API documentation. How to Integrate Pre/Post Hooks for Backup Operations , with examples given for various databases. Immutable Backups , which restrict backups on the target storage to be overwritten. Helm Releases Backup , which shows examples for Helm releases backup strategies. Backups Encryption , which explains how to encrypt and protect sensitive data on the target (storage). Disaster Recovery Plan . Multi-Cluster Management . Restore Transforms . Velero Integration to Monitor Velero Backups . Go further If you need training or technical assistance to implement our solutions, contact your sales representative or click on this link to get a quote and ask our Professional Services experts for assisting you on your specific use case of your project. Join our community of users . * : S3 is a trademark of Amazon Technologies, Inc. OVHcloud's service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. Questa pagina ti e stata utile? Si No Modifica questa pagina Ultimo aggiornamento : 31/03/2026, 09:35:42 Pagina successiva Riferimento API In questa pagina Introduction How TrilioVault for Kubernetes works Understanding TrilioVault Application Scope Backup and Restore Workflow Table of Contents Requirements Instructions Step 1 - Installing TrilioVault for Kubernetes Installing TrilioVault Operator and Manager Using Helm TrilioVault Application Licensing Installing TVK Application Licensing Renewing TVK Application License Step 2 - Creating a TrilioVault Target to Store Backups Step 3 - Getting to Know the TVK Web Management Console Getting Access to the TVK Web Management Console Exploring the TVK Web Console User Interface Step 4 - Helm Release Backup and Restore Example Creating mysql-qa helm release Creating mysql-qa Helm Release Backup Deleting mysql-qa Helm Release and Resources Restoring mysql-qa Helm Release Backup Verifying Applications Integrity after Restoration Step 5 - Backup and Restore Whole Cluster Example Creating the OVHcloud Managed Kubernetes Cluster Backup using TVK Multi-Namespace backup feature Re-creating the OVHcloud Managed Kubernetes Cluster and Restoring Applications Checking OVHcloud Managed Kubernetes Cluster Applications State Step 6 - Scheduled Backups Step 7 - Backups Retention Policy Using Retention Policies Using Cleanup Policies Conclusion Go further Modifica questa pagina 🚀 Condividi il tuo parere sulla nuova documentazione Il tuo feedback aiuta i nostri team a migliorare la tua esperienza. 2 minuti · Anonimo No, grazie Rispondi