rkt: Replace 'journalctl' with rkt's GetLogs() API.

Also fixed a bug where 'journalctl -f' process leaks when the kubelet
is killed.
This commit is contained in:
Yifan Gu
2016-06-01 17:06:57 +08:00
committed by Yifan Gu
parent c9c4ada309
commit d69351b83a
2 changed files with 47 additions and 105 deletions

View File

@@ -66,8 +66,8 @@ const (
RktType = "rkt"
DefaultRktAPIServiceEndpoint = "localhost:15441"
minimumRktBinVersion = "1.7.0"
recommendedRktBinVersion = "1.7.0"
minimumRktBinVersion = "1.8.0"
recommendedRktBinVersion = "1.8.0"
minimumRktApiVersion = "1.0.0-alpha"
minimumSystemdVersion = "219"