Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix release #561

Merged
merged 1 commit into from
Jun 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,17 @@
- Adhoc backup now appends the start time to the PVC name by default.
- add the privileged option for TiKV pod
- `tkctl upinfo` can show nodeIP podIP port now
- get TS and use it before full backup using mydumper
- Fix capabilities issue for `tkctl debug` command

## Detailed Bug Fixes And Changes

- Add capabilities and privilege mode for debug container ([#537](https://github.com/pingcap/tidb-operator/pull/537))
- docs: note helm versions in deployment docs ([#553](https://github.com/pingcap/tidb-operator/pull/553))
- deploy/aws: split public and private subnets when using existing vpc ([#530](https://github.com/pingcap/tidb-operator/pull/530))
- release v1.0.0-beta.3 ([#557](https://github.com/pingcap/tidb-operator/pull/557))
- Gke terraform upgrade to 0.12 and fix bastion instance zone to be region agnostic ([#554](https://github.com/pingcap/tidb-operator/pull/554))
- get TS and use it before full backup using mydumper ([#534](https://github.com/pingcap/tidb-operator/pull/534))
- Add port podip nodeip to tkctl upinfo ([#538](https://github.com/pingcap/tidb-operator/pull/538))
- fix disaster tolerance of stability test ([#543](https://github.com/pingcap/tidb-operator/pull/543))
- add privileged option for tikv pod template ([#550](https://github.com/pingcap/tidb-operator/pull/550))
Expand Down
4 changes: 2 additions & 2 deletions pkg/tkctl/debug/launcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const (
dockerContainerPrefix = "docker://"

CAP_SYS_PTRACE = "SYS_PTRACE"
CAP_SYS_ADMIN = "SYS_ADMIN"
CAP_SYS_ADMIN = "SYS_ADMIN"
)

type IOStreams struct {
Expand All @@ -49,7 +49,7 @@ type Launcher struct {
dockerSocket string
ctx context.Context

privileged bool
privileged bool

client *dockerclient.Client
}
Expand Down