diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ba534ee..1d53a7ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# [2.1.0](https://github.com/camptocamp/bivac/releases/tag/2.1.0) (2019-06-14) + +NEW FEATURES: + +- `core`: Add command `restore` to restore a volume from a backup. +- `kubernetes`: Add support of subpaths and handle them as separate volumes. + +IMPROVEMENTS: + +- `core`: Add the parameter `--parallel.count` to customize the number of agents able to run at the same time on the same node. +- `core`: Add the parameter `--refresh.rate` to customize the refresh rate of the volume list. +- `tests`: Add integration tests for Docker and Cattle. + # [2.0.1](https://github.com/camptocamp/bivac/releases/tag/2.0.1) (2019-05-06) This minor release contains many bug fixes and improvements in order to stabilize the release 2.0. diff --git a/cmd/manager/manager.go b/cmd/manager/manager.go index 21fa3725..23fc04b2 100644 --- a/cmd/manager/manager.go +++ b/cmd/manager/manager.go @@ -102,7 +102,7 @@ func init() { managerCmd.Flags().StringVarP(&logServer, "log.server", "", "", "Manager's API address that will receive logs from agents.") envs["BIVAC_LOG_SERVER"] = "log.server" - managerCmd.Flags().StringVarP(&agentImage, "agent.image", "", "camptocamp/bivac:2.0", "Agent's Docker image.") + managerCmd.Flags().StringVarP(&agentImage, "agent.image", "", "camptocamp/bivac:2.1", "Agent's Docker image.") envs["BIVAC_AGENT_IMAGE"] = "agent.image" managerCmd.Flags().StringVarP(&whitelistVolumes, "whitelist", "", "", "Whitelist volumes.") diff --git a/contrib/charts/bivac/values.yaml b/contrib/charts/bivac/values.yaml index 80158cc7..50816f21 100644 --- a/contrib/charts/bivac/values.yaml +++ b/contrib/charts/bivac/values.yaml @@ -1,6 +1,6 @@ image: repository: camptocamp/bivac - tag: 2.1-dev + tag: 2.1 pullPolicy: Always # Optional docker pull secret #pullSecret: diff --git a/contrib/openshift/bivac-template.yaml b/contrib/openshift/bivac-template.yaml index 6cc5b6e8..e0e1d734 100644 --- a/contrib/openshift/bivac-template.yaml +++ b/contrib/openshift/bivac-template.yaml @@ -226,12 +226,10 @@ parameters: - name: BIVAC_BLACKLIST description: Do not backup blacklisted volumes (comma-separated list of PVC names) - name: BIVAC_MANAGER_IMAGE - value: camptocamp/bivac:2.0 + value: camptocamp/bivac:2.1 description: image used for bivac manager - # value: camptocamp/bivac:2.1-dev - name: BIVAC_AGENT_IMAGE - value: camptocamp/bivac:2.0 - # value: camptocamp/bivac:2.1-dev + value: camptocamp/bivac:2.1 description: Agent's Docker image - name: BIVAC_VERBOSE description: Enable verbose output (bool)