Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptobioz committed Jun 14, 2019
1 parent b313521 commit 4769d8f
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion cmd/manager/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
Expand Down
2 changes: 1 addition & 1 deletion contrib/charts/bivac/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image:
repository: camptocamp/bivac
tag: 2.1-dev
tag: 2.1
pullPolicy: Always
# Optional docker pull secret
#pullSecret:
Expand Down
6 changes: 2 additions & 4 deletions contrib/openshift/bivac-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4769d8f

Please sign in to comment.