diff --git a/site/_config.yml b/site/_config.yml index c90f10646..fb11ce2de 100644 --- a/site/_config.yml +++ b/site/_config.yml @@ -56,10 +56,10 @@ defaults: gh: https://github.com/vmware-tanzu/velero/tree/master layout: "docs" - scope: - path: docs/v1.3.0-beta.1 + path: docs/v1.3.0-beta.2 values: - version: v1.3.0-beta.1 - gh: https://github.com/vmware-tanzu/velero/tree/v1.3.0-beta.1 + version: v1.3.0-beta.2 + gh: https://github.com/vmware-tanzu/velero/tree/v1.3.0-beta.2 layout: "docs" - scope: path: docs/v1.2.0 @@ -160,7 +160,7 @@ versioning: true latest: v1.2.0 versions: - master -- v1.3.0-beta.1 +- v1.3.0-beta.2 - v1.2.0 - v1.1.0 - v1.0.0 diff --git a/site/_data/toc-mapping.yml b/site/_data/toc-mapping.yml index 6d11a677f..ec582d41e 100644 --- a/site/_data/toc-mapping.yml +++ b/site/_data/toc-mapping.yml @@ -3,7 +3,7 @@ # that the navigation for older versions still work. master: master-toc -v1.3.0-beta.1: v1-3-0-beta-1-toc +v1.3.0-beta.2: v1-3-0-beta-2-toc v1.2.0: v1-2-0-toc v1.1.0: v1-1-0-toc v1.0.0: v1-0-0-toc diff --git a/site/_data/v1-3-0-beta-1-toc.yml b/site/_data/v1-3-0-beta-2-toc.yml similarity index 100% rename from site/_data/v1-3-0-beta-1-toc.yml rename to site/_data/v1-3-0-beta-2-toc.yml diff --git a/site/docs/v1.3.0-beta.1/namespace.md b/site/docs/v1.3.0-beta.1/namespace.md deleted file mode 100644 index fb50cf67d..000000000 --- a/site/docs/v1.3.0-beta.1/namespace.md +++ /dev/null @@ -1,23 +0,0 @@ -# Run in custom namespace - -You can run Velero in any namespace. - -First, ensure you've [downloaded & extracted the latest release][0]. - -Then, install Velero using the `--namespace` flag: - -```bash -velero install --bucket --provider --namespace -``` - - - -## Specify the namespace in client commands - -To specify the namespace for all Velero client commands, run: - -```bash -velero client config set namespace= -``` - -[0]: basic-install.md#install-the-cli diff --git a/site/docs/v1.3.0-beta.1/README.md b/site/docs/v1.3.0-beta.2/README.md similarity index 96% rename from site/docs/v1.3.0-beta.1/README.md rename to site/docs/v1.3.0-beta.2/README.md index 820babdf9..68f7b2ae9 100644 --- a/site/docs/v1.3.0-beta.1/README.md +++ b/site/docs/v1.3.0-beta.2/README.md @@ -27,7 +27,7 @@ If you encounter issues, review the [troubleshooting docs][30], [file an issue][ ## Contributing -If you are ready to jump in and test, add code, or help with documentation, follow the instructions on our [Start contributing](https://velero.io/docs/v1.3.0-beta.1/start-contributing/) documentation for guidance on how to setup Velero for development. +If you are ready to jump in and test, add code, or help with documentation, follow the instructions on our [Start contributing](https://velero.io/docs/v1.3.0-beta.2/start-contributing/) documentation for guidance on how to setup Velero for development. ## Changelog diff --git a/site/docs/v1.3.0-beta.1/api-types/README.md b/site/docs/v1.3.0-beta.2/api-types/README.md similarity index 51% rename from site/docs/v1.3.0-beta.1/api-types/README.md rename to site/docs/v1.3.0-beta.2/api-types/README.md index 31c4ce403..2ba83cc5e 100644 --- a/site/docs/v1.3.0-beta.1/api-types/README.md +++ b/site/docs/v1.3.0-beta.2/api-types/README.md @@ -6,11 +6,13 @@ Here we list the API types that have some functionality that you can only config (hooks) * [Backup][1] -* [Schedule][2] -* [BackupStorageLocation][3] -* [VolumeSnapshotLocation][4] +* [Restore][2] +* [Schedule][3] +* [BackupStorageLocation][4] +* [VolumeSnapshotLocation][5] [1]: backup.md -[2]: schedule.md -[3]: backupstoragelocation.md -[4]: volumesnapshotlocation.md +[2]: restore.md +[3]: schedule.md +[4]: backupstoragelocation.md +[5]: volumesnapshotlocation.md diff --git a/site/docs/v1.3.0-beta.1/api-types/backup.md b/site/docs/v1.3.0-beta.2/api-types/backup.md similarity index 100% rename from site/docs/v1.3.0-beta.1/api-types/backup.md rename to site/docs/v1.3.0-beta.2/api-types/backup.md diff --git a/site/docs/v1.3.0-beta.1/api-types/backupstoragelocation.md b/site/docs/v1.3.0-beta.2/api-types/backupstoragelocation.md similarity index 100% rename from site/docs/v1.3.0-beta.1/api-types/backupstoragelocation.md rename to site/docs/v1.3.0-beta.2/api-types/backupstoragelocation.md diff --git a/site/docs/v1.3.0-beta.2/api-types/restore.md b/site/docs/v1.3.0-beta.2/api-types/restore.md new file mode 100644 index 000000000..2044d4725 --- /dev/null +++ b/site/docs/v1.3.0-beta.2/api-types/restore.md @@ -0,0 +1,89 @@ +# Restore API Type + +## Use + +The `Restore` API type is used as a request for the Velero server to perform a Restore. Once created, the +Velero Server immediately starts the Restore process. + +## API GroupVersion + +Restore belongs to the API group version `velero.io/v1`. + +## Definition + +Here is a sample `Restore` object with each of the fields documented: + +```yaml +# Standard Kubernetes API Version declaration. Required. +apiVersion: velero.io/v1 +# Standard Kubernetes Kind declaration. Required. +kind: Restore +# Standard Kubernetes metadata. Required. +metadata: + # Restore name. May be any valid Kubernetes object name. Required. + name: a-very-special-backup-0000111122223333 + # Restore namespace. Must be the namespace of the Velero server. Required. + namespace: velero +# Parameters about the restore. Required. +spec: + # BackupName is the unique name of the Velero backup to restore from. + backupName: a-very-special-backup + # Array of namespaces to include in the restore. If unspecified, all namespaces are included. + # Optional. + includedNamespaces: + - '*' + # Array of namespaces to exclude from the restore. Optional. + excludedNamespaces: + - some-namespace + # Array of resources to include in the restore. Resources may be shortcuts (e.g. 'po' for 'pods') + # or fully-qualified. If unspecified, all resources are included. Optional. + includedResources: + - '*' + # Array of resources to exclude from the restore. Resources may be shortcuts (e.g. 'po' for 'pods') + # or fully-qualified. Optional. + excludedResources: + - storageclasses.storage.k8s.io + # Whether or not to include cluster-scoped resources. Valid values are true, false, and + # null/unset. If true, all cluster-scoped resources are included (subject to included/excluded + # resources and the label selector). If false, no cluster-scoped resources are included. If unset, + # all cluster-scoped resources are included if and only if all namespaces are included and there are + # no excluded namespaces. Otherwise, if there is at least one namespace specified in either + # includedNamespaces or excludedNamespaces, then the only cluster-scoped resources that are backed + # up are those associated with namespace-scoped resources included in the restore. For example, if a + # PersistentVolumeClaim is included in the restore, its associated PersistentVolume (which is + # cluster-scoped) would also be backed up. + includeClusterResources: null + # Individual objects must match this label selector to be included in the restore. Optional. + labelSelector: + matchLabels: + app: velero + component: server + # NamespaceMapping is a map of source namespace names to + # target namespace names to restore into. Any source namespaces not + # included in the map will be restored into namespaces of the same name. + namespaceMapping: + namespace-backup-from: namespace-to-restore-to + # RestorePVs specifies whether to restore all included PVs + # from snapshot (via the cloudprovider). + restorePVs: true + # ScheduleName is the unique name of the Velero schedule + # to restore from. If specified, and BackupName is empty, Velero will + # restore from the most recent successful backup created from this schedule. + scheduleName: my-scheduled-backup-name +# RestoreStatus captures the current status of a Velero restore. Users should not set any data here. +status: + # The current phase. Valid values are New, FailedValidation, InProgress, Completed, PartiallyFailed, Failed. + phase: "" + # An array of any validation errors encountered. + validationErrors: null + # Number of warnings that were logged by the restore. + warnings: 2 + # Errors is a count of all error messages that were generated + # during execution of the restore. The actual errors are stored in object + # storage. + errors: 0 + # FailureReason is an error that caused the entire restore + # to fail. + failureReason: + +``` diff --git a/site/docs/v1.3.0-beta.1/api-types/schedule.md b/site/docs/v1.3.0-beta.2/api-types/schedule.md similarity index 100% rename from site/docs/v1.3.0-beta.1/api-types/schedule.md rename to site/docs/v1.3.0-beta.2/api-types/schedule.md diff --git a/site/docs/v1.3.0-beta.1/api-types/volumesnapshotlocation.md b/site/docs/v1.3.0-beta.2/api-types/volumesnapshotlocation.md similarity index 100% rename from site/docs/v1.3.0-beta.1/api-types/volumesnapshotlocation.md rename to site/docs/v1.3.0-beta.2/api-types/volumesnapshotlocation.md diff --git a/site/docs/v1.3.0-beta.1/backup-reference.md b/site/docs/v1.3.0-beta.2/backup-reference.md similarity index 100% rename from site/docs/v1.3.0-beta.1/backup-reference.md rename to site/docs/v1.3.0-beta.2/backup-reference.md diff --git a/site/docs/v1.3.0-beta.1/basic-install.md b/site/docs/v1.3.0-beta.2/basic-install.md similarity index 100% rename from site/docs/v1.3.0-beta.1/basic-install.md rename to site/docs/v1.3.0-beta.2/basic-install.md diff --git a/site/docs/v1.3.0-beta.1/build-from-source.md b/site/docs/v1.3.0-beta.2/build-from-source.md similarity index 100% rename from site/docs/v1.3.0-beta.1/build-from-source.md rename to site/docs/v1.3.0-beta.2/build-from-source.md diff --git a/site/docs/v1.3.0-beta.1/code-standards.md b/site/docs/v1.3.0-beta.2/code-standards.md similarity index 98% rename from site/docs/v1.3.0-beta.1/code-standards.md rename to site/docs/v1.3.0-beta.2/code-standards.md index c7c2603b2..0448d3138 100644 --- a/site/docs/v1.3.0-beta.1/code-standards.md +++ b/site/docs/v1.3.0-beta.2/code-standards.md @@ -52,7 +52,7 @@ Example: We use a package to generate mocks for our interfaces. -Example: if you want to change this mock: https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.1/pkg/restic/mocks/restorer.go +Example: if you want to change this mock: https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.2/pkg/restic/mocks/restorer.go Run: diff --git a/site/docs/v1.3.0-beta.1/contributions/ibm-config.md b/site/docs/v1.3.0-beta.2/contributions/ibm-config.md similarity index 100% rename from site/docs/v1.3.0-beta.1/contributions/ibm-config.md rename to site/docs/v1.3.0-beta.2/contributions/ibm-config.md diff --git a/site/docs/v1.3.0-beta.1/contributions/minio.md b/site/docs/v1.3.0-beta.2/contributions/minio.md similarity index 100% rename from site/docs/v1.3.0-beta.1/contributions/minio.md rename to site/docs/v1.3.0-beta.2/contributions/minio.md diff --git a/site/docs/v1.3.0-beta.1/contributions/oracle-config.md b/site/docs/v1.3.0-beta.2/contributions/oracle-config.md similarity index 99% rename from site/docs/v1.3.0-beta.1/contributions/oracle-config.md rename to site/docs/v1.3.0-beta.2/contributions/oracle-config.md index c4fbe3001..74d7a648f 100644 --- a/site/docs/v1.3.0-beta.1/contributions/oracle-config.md +++ b/site/docs/v1.3.0-beta.2/contributions/oracle-config.md @@ -241,5 +241,5 @@ After creating the Velero server in your cluster, try this example: ## Additional Reading -* [Official Velero Documentation](https://velero.io/docs/v1.3.0-beta.1/) +* [Official Velero Documentation](https://velero.io/docs/v1.3.0-beta.2/) * [Oracle Cloud Infrastructure Documentation](https://docs.cloud.oracle.com/) diff --git a/site/docs/v1.3.0-beta.1/custom-plugins.md b/site/docs/v1.3.0-beta.2/custom-plugins.md similarity index 97% rename from site/docs/v1.3.0-beta.1/custom-plugins.md rename to site/docs/v1.3.0-beta.2/custom-plugins.md index 4d5360c04..c44181e69 100644 --- a/site/docs/v1.3.0-beta.1/custom-plugins.md +++ b/site/docs/v1.3.0-beta.2/custom-plugins.md @@ -87,5 +87,5 @@ Once parsed into a `[]string`, the features can then be registered using the `Ne Velero adds the `LD_LIBRARY_PATH` into the list of environment variables to provide the convenience for plugins that requires C libraries/extensions in the runtime. [1]: https://github.com/vmware-tanzu/velero-plugin-example -[2]: https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.1/pkg/plugin/logger.go -[3]: https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.1/pkg/restore/restic_restore_action.go +[2]: https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.2/pkg/plugin/logger.go +[3]: https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.2/pkg/restore/restic_restore_action.go diff --git a/site/docs/v1.3.0-beta.1/customize-installation.md b/site/docs/v1.3.0-beta.2/customize-installation.md similarity index 100% rename from site/docs/v1.3.0-beta.1/customize-installation.md rename to site/docs/v1.3.0-beta.2/customize-installation.md diff --git a/site/docs/v1.3.0-beta.1/debugging-install.md b/site/docs/v1.3.0-beta.2/debugging-install.md similarity index 100% rename from site/docs/v1.3.0-beta.1/debugging-install.md rename to site/docs/v1.3.0-beta.2/debugging-install.md diff --git a/site/docs/v1.3.0-beta.1/debugging-restores.md b/site/docs/v1.3.0-beta.2/debugging-restores.md similarity index 100% rename from site/docs/v1.3.0-beta.1/debugging-restores.md rename to site/docs/v1.3.0-beta.2/debugging-restores.md diff --git a/site/docs/v1.3.0-beta.1/development.md b/site/docs/v1.3.0-beta.2/development.md similarity index 100% rename from site/docs/v1.3.0-beta.1/development.md rename to site/docs/v1.3.0-beta.2/development.md diff --git a/site/docs/v1.3.0-beta.1/disaster-case.md b/site/docs/v1.3.0-beta.2/disaster-case.md similarity index 100% rename from site/docs/v1.3.0-beta.1/disaster-case.md rename to site/docs/v1.3.0-beta.2/disaster-case.md diff --git a/site/docs/v1.3.0-beta.1/examples.md b/site/docs/v1.3.0-beta.2/examples.md similarity index 100% rename from site/docs/v1.3.0-beta.1/examples.md rename to site/docs/v1.3.0-beta.2/examples.md diff --git a/site/docs/v1.3.0-beta.1/faq.md b/site/docs/v1.3.0-beta.2/faq.md similarity index 98% rename from site/docs/v1.3.0-beta.1/faq.md rename to site/docs/v1.3.0-beta.2/faq.md index 6050967c8..d76710107 100644 --- a/site/docs/v1.3.0-beta.1/faq.md +++ b/site/docs/v1.3.0-beta.2/faq.md @@ -22,7 +22,7 @@ Examples of cases where Velero is useful: Yes, with some exceptions. For example, when Velero restores pods it deletes the `nodeName` from the pod so that it can be scheduled onto a new node. You can see some more examples of the differences -in [pod_action.go](https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.1/pkg/restore/pod_action.go) +in [pod_action.go](https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.2/pkg/restore/pod_action.go) ## I'm using Velero in multiple clusters. Should I use the same bucket to store all of my backups? diff --git a/site/docs/v1.3.0-beta.1/hooks.md b/site/docs/v1.3.0-beta.2/hooks.md similarity index 98% rename from site/docs/v1.3.0-beta.1/hooks.md rename to site/docs/v1.3.0-beta.2/hooks.md index 32689960e..e6ca581e3 100644 --- a/site/docs/v1.3.0-beta.1/hooks.md +++ b/site/docs/v1.3.0-beta.2/hooks.md @@ -77,5 +77,5 @@ velero backup logs nginx-hook-test | grep hookCommand [1]: api-types/backup.md -[2]: https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.1/examples/nginx-app/with-pv.yaml +[2]: https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.2/examples/nginx-app/with-pv.yaml [3]: cloud-common.md diff --git a/site/docs/v1.3.0-beta.1/how-velero-works.md b/site/docs/v1.3.0-beta.2/how-velero-works.md similarity index 100% rename from site/docs/v1.3.0-beta.1/how-velero-works.md rename to site/docs/v1.3.0-beta.2/how-velero-works.md diff --git a/site/docs/v1.3.0-beta.1/image-tagging.md b/site/docs/v1.3.0-beta.2/image-tagging.md similarity index 100% rename from site/docs/v1.3.0-beta.1/image-tagging.md rename to site/docs/v1.3.0-beta.2/image-tagging.md diff --git a/site/docs/v1.3.0-beta.1/img/README.md b/site/docs/v1.3.0-beta.2/img/README.md similarity index 100% rename from site/docs/v1.3.0-beta.1/img/README.md rename to site/docs/v1.3.0-beta.2/img/README.md diff --git a/site/docs/v1.3.0-beta.1/img/backup-process.png b/site/docs/v1.3.0-beta.2/img/backup-process.png similarity index 100% rename from site/docs/v1.3.0-beta.1/img/backup-process.png rename to site/docs/v1.3.0-beta.2/img/backup-process.png diff --git a/site/docs/v1.3.0-beta.1/img/velero.png b/site/docs/v1.3.0-beta.2/img/velero.png similarity index 100% rename from site/docs/v1.3.0-beta.1/img/velero.png rename to site/docs/v1.3.0-beta.2/img/velero.png diff --git a/site/docs/v1.3.0-beta.1/locations.md b/site/docs/v1.3.0-beta.2/locations.md similarity index 100% rename from site/docs/v1.3.0-beta.1/locations.md rename to site/docs/v1.3.0-beta.2/locations.md diff --git a/site/docs/v1.3.0-beta.1/migration-case.md b/site/docs/v1.3.0-beta.2/migration-case.md similarity index 100% rename from site/docs/v1.3.0-beta.1/migration-case.md rename to site/docs/v1.3.0-beta.2/migration-case.md diff --git a/site/docs/v1.3.0-beta.2/namespace.md b/site/docs/v1.3.0-beta.2/namespace.md new file mode 100644 index 000000000..9a3d62808 --- /dev/null +++ b/site/docs/v1.3.0-beta.2/namespace.md @@ -0,0 +1,19 @@ +# Run in a non-default namespace + +The Velero installation and backups by default are run in the `velero` namespace. However, it is possible to use a different namespace. + +### 1) Customize the namespace during install + +Use the `--namespace` flag, in conjunction with the other flags in the `velero install` command (as shown in the [the Velero install instructions][0]). This will inform Velero where to install. + +### 2) Customize the namespace for operational commands + +To have namespace consistency, specify the namespace for all Velero operational commands to be the same as the namespace used to install Velero: + +```bash +velero client config set namespace= +``` + +Alternatively, you may use the global `--namespace` flag with any operational command to tell Velero where to run. + +[0]: basic-install.md#install-the-cli diff --git a/site/docs/v1.3.0-beta.1/on-premises.md b/site/docs/v1.3.0-beta.2/on-premises.md similarity index 100% rename from site/docs/v1.3.0-beta.1/on-premises.md rename to site/docs/v1.3.0-beta.2/on-premises.md diff --git a/site/docs/v1.3.0-beta.1/output-file-format.md b/site/docs/v1.3.0-beta.2/output-file-format.md similarity index 100% rename from site/docs/v1.3.0-beta.1/output-file-format.md rename to site/docs/v1.3.0-beta.2/output-file-format.md diff --git a/site/docs/v1.3.0-beta.1/overview-plugins.md b/site/docs/v1.3.0-beta.2/overview-plugins.md similarity index 100% rename from site/docs/v1.3.0-beta.1/overview-plugins.md rename to site/docs/v1.3.0-beta.2/overview-plugins.md diff --git a/site/docs/v1.3.0-beta.1/rbac.md b/site/docs/v1.3.0-beta.2/rbac.md similarity index 100% rename from site/docs/v1.3.0-beta.1/rbac.md rename to site/docs/v1.3.0-beta.2/rbac.md diff --git a/site/docs/v1.3.0-beta.1/release-instructions.md b/site/docs/v1.3.0-beta.2/release-instructions.md similarity index 100% rename from site/docs/v1.3.0-beta.1/release-instructions.md rename to site/docs/v1.3.0-beta.2/release-instructions.md diff --git a/site/docs/v1.3.0-beta.1/restic.md b/site/docs/v1.3.0-beta.2/restic.md similarity index 100% rename from site/docs/v1.3.0-beta.1/restic.md rename to site/docs/v1.3.0-beta.2/restic.md diff --git a/site/docs/v1.3.0-beta.1/restore-reference.md b/site/docs/v1.3.0-beta.2/restore-reference.md similarity index 100% rename from site/docs/v1.3.0-beta.1/restore-reference.md rename to site/docs/v1.3.0-beta.2/restore-reference.md diff --git a/site/docs/v1.3.0-beta.1/run-locally.md b/site/docs/v1.3.0-beta.2/run-locally.md similarity index 100% rename from site/docs/v1.3.0-beta.1/run-locally.md rename to site/docs/v1.3.0-beta.2/run-locally.md diff --git a/site/docs/v1.3.0-beta.1/start-contributing.md b/site/docs/v1.3.0-beta.2/start-contributing.md similarity index 90% rename from site/docs/v1.3.0-beta.1/start-contributing.md rename to site/docs/v1.3.0-beta.2/start-contributing.md index 82f1cb9e7..44a468fcf 100644 --- a/site/docs/v1.3.0-beta.1/start-contributing.md +++ b/site/docs/v1.3.0-beta.2/start-contributing.md @@ -17,5 +17,5 @@ Please browse our list of resources, including a playlist of past online communi If you are ready to jump in and test, add code, or help with documentation, please use the navigation on the left under `Contribute`. -[1]: https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.1/CODE_OF_CONDUCT.md -[2]: https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.1/CONTRIBUTING.md +[1]: https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.2/CODE_OF_CONDUCT.md +[2]: https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.2/CONTRIBUTING.md diff --git a/site/docs/v1.3.0-beta.1/support-process.md b/site/docs/v1.3.0-beta.2/support-process.md similarity index 100% rename from site/docs/v1.3.0-beta.1/support-process.md rename to site/docs/v1.3.0-beta.2/support-process.md diff --git a/site/docs/v1.3.0-beta.1/supported-providers.md b/site/docs/v1.3.0-beta.2/supported-providers.md similarity index 100% rename from site/docs/v1.3.0-beta.1/supported-providers.md rename to site/docs/v1.3.0-beta.2/supported-providers.md diff --git a/site/docs/v1.3.0-beta.1/troubleshooting.md b/site/docs/v1.3.0-beta.2/troubleshooting.md similarity index 100% rename from site/docs/v1.3.0-beta.1/troubleshooting.md rename to site/docs/v1.3.0-beta.2/troubleshooting.md diff --git a/site/docs/v1.3.0-beta.1/uninstalling.md b/site/docs/v1.3.0-beta.2/uninstalling.md similarity index 100% rename from site/docs/v1.3.0-beta.1/uninstalling.md rename to site/docs/v1.3.0-beta.2/uninstalling.md diff --git a/site/docs/v1.3.0-beta.1/upgrade-to-1.2.md b/site/docs/v1.3.0-beta.2/upgrade-to-1.2.md similarity index 100% rename from site/docs/v1.3.0-beta.1/upgrade-to-1.2.md rename to site/docs/v1.3.0-beta.2/upgrade-to-1.2.md diff --git a/site/docs/v1.3.0-beta.1/velero-install.md b/site/docs/v1.3.0-beta.2/velero-install.md similarity index 100% rename from site/docs/v1.3.0-beta.1/velero-install.md rename to site/docs/v1.3.0-beta.2/velero-install.md diff --git a/site/docs/v1.3.0-beta.1/vendoring-dependencies.md b/site/docs/v1.3.0-beta.2/vendoring-dependencies.md similarity index 100% rename from site/docs/v1.3.0-beta.1/vendoring-dependencies.md rename to site/docs/v1.3.0-beta.2/vendoring-dependencies.md diff --git a/site/docs/v1.3.0-beta.1/website-guidelines.md b/site/docs/v1.3.0-beta.2/website-guidelines.md similarity index 96% rename from site/docs/v1.3.0-beta.1/website-guidelines.md rename to site/docs/v1.3.0-beta.2/website-guidelines.md index 17972087c..3c5743fcc 100644 --- a/site/docs/v1.3.0-beta.1/website-guidelines.md +++ b/site/docs/v1.3.0-beta.2/website-guidelines.md @@ -18,7 +18,7 @@ Alternatively, for quickly loading the website, under the `velero/site/` directo bundle exec jekyll serve --livereload --future ``` -For more information on how to run the website locally, please see our [jekyll documentation](https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.1/site/README-JEKYLL.md). +For more information on how to run the website locally, please see our [jekyll documentation](https://github.com/vmware-tanzu/velero/blob/v1.3.0-beta.2/site/README-JEKYLL.md). ## Adding a blog post diff --git a/site/docs/v1.3.0-beta.1/zenhub.md b/site/docs/v1.3.0-beta.2/zenhub.md similarity index 100% rename from site/docs/v1.3.0-beta.1/zenhub.md rename to site/docs/v1.3.0-beta.2/zenhub.md