2015-04-28 23:11:37 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
2015-04-28 23:11:37 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package rkt
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-08-21 17:45:11 +00:00
|
|
|
|
2015-11-19 02:35:31 +00:00
|
|
|
"github.com/coreos/go-semver/semver"
|
|
|
|
rktapi "github.com/coreos/rkt/api/v1alpha"
|
|
|
|
"github.com/golang/glog"
|
|
|
|
"golang.org/x/net/context"
|
2015-04-28 23:11:37 +00:00
|
|
|
)
|
|
|
|
|
2015-11-19 02:35:31 +00:00
|
|
|
// rktVersion implementes kubecontainer.Version interface by implementing
|
|
|
|
// Compare() and String() (which is implemented by the underlying semver.Version)
|
|
|
|
type rktVersion struct {
|
|
|
|
*semver.Version
|
|
|
|
}
|
2015-04-28 23:11:37 +00:00
|
|
|
|
2015-11-19 02:35:31 +00:00
|
|
|
func newRktVersion(version string) (rktVersion, error) {
|
|
|
|
sem, err := semver.NewVersion(version)
|
2015-08-21 17:45:11 +00:00
|
|
|
if err != nil {
|
2015-11-19 02:35:31 +00:00
|
|
|
return rktVersion{}, err
|
2015-04-28 23:11:37 +00:00
|
|
|
}
|
2015-11-19 02:35:31 +00:00
|
|
|
return rktVersion{sem}, nil
|
2015-04-28 23:11:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r rktVersion) Compare(other string) (int, error) {
|
2015-11-19 02:35:31 +00:00
|
|
|
v, err := semver.NewVersion(other)
|
2015-04-28 23:11:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
|
2015-11-19 02:35:31 +00:00
|
|
|
if r.LessThan(*v) {
|
2015-04-28 23:11:37 +00:00
|
|
|
return -1, nil
|
|
|
|
}
|
2015-11-19 02:35:31 +00:00
|
|
|
if v.LessThan(*r.Version) {
|
|
|
|
return 1, nil
|
|
|
|
}
|
2015-04-28 23:11:37 +00:00
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
|
2015-11-19 02:35:31 +00:00
|
|
|
// checkVersion tests whether the rkt/systemd/rkt-api-service that meet the version requirement.
|
|
|
|
// If all version requirements are met, it returns nil.
|
|
|
|
func (r *Runtime) checkVersion(minimumRktBinVersion, recommendedRktBinVersion, minimumAppcVersion, minimumRktApiVersion, minimumSystemdVersion string) error {
|
|
|
|
// Check systemd version.
|
|
|
|
var err error
|
|
|
|
r.systemdVersion, err = r.systemd.Version()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
result, err := r.systemdVersion.Compare(minimumSystemdVersion)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if result < 0 {
|
|
|
|
return fmt.Errorf("rkt: systemd version(%v) is too old, requires at least %v", r.systemdVersion, minimumSystemdVersion)
|
2015-04-28 23:11:37 +00:00
|
|
|
}
|
|
|
|
|
2015-11-19 02:35:31 +00:00
|
|
|
// Example for the version strings returned by GetInfo():
|
|
|
|
// RktVersion:"0.10.0+gitb7349b1" AppcVersion:"0.7.1" ApiVersion:"1.0.0-alpha"
|
|
|
|
resp, err := r.apisvc.GetInfo(context.Background(), &rktapi.GetInfoRequest{})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-04-28 23:11:37 +00:00
|
|
|
|
2015-11-19 02:35:31 +00:00
|
|
|
// Check rkt binary version.
|
|
|
|
r.binVersion, err = newRktVersion(resp.Info.RktVersion)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
result, err = r.binVersion.Compare(minimumRktBinVersion)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if result < 0 {
|
|
|
|
return fmt.Errorf("rkt: binary version is too old(%v), requires at least %v", resp.Info.RktVersion, minimumRktBinVersion)
|
|
|
|
}
|
|
|
|
result, err = r.binVersion.Compare(recommendedRktBinVersion)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if result != 0 {
|
|
|
|
// TODO(yifan): Record an event to expose the information.
|
|
|
|
glog.Warningf("rkt: current binary version %q is not recommended (recommended version %q)", resp.Info.RktVersion, recommendedRktBinVersion)
|
|
|
|
}
|
2015-04-28 23:11:37 +00:00
|
|
|
|
2015-11-19 02:35:31 +00:00
|
|
|
// Check Appc version.
|
|
|
|
r.appcVersion, err = newRktVersion(resp.Info.AppcVersion)
|
2015-04-28 23:11:37 +00:00
|
|
|
if err != nil {
|
2015-11-19 02:35:31 +00:00
|
|
|
return err
|
2015-04-28 23:11:37 +00:00
|
|
|
}
|
2015-11-19 02:35:31 +00:00
|
|
|
result, err = r.appcVersion.Compare(minimumAppcVersion)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if result < 0 {
|
|
|
|
return fmt.Errorf("rkt: appc version is too old(%v), requires at least %v", resp.Info.AppcVersion, minimumAppcVersion)
|
2015-04-28 23:11:37 +00:00
|
|
|
}
|
|
|
|
|
2015-11-19 02:35:31 +00:00
|
|
|
// Check rkt API version.
|
|
|
|
r.apiVersion, err = newRktVersion(resp.Info.ApiVersion)
|
2015-04-28 23:11:37 +00:00
|
|
|
if err != nil {
|
2015-11-19 02:35:31 +00:00
|
|
|
return err
|
2015-04-28 23:11:37 +00:00
|
|
|
}
|
2015-11-19 02:35:31 +00:00
|
|
|
result, err = r.apiVersion.Compare(minimumRktApiVersion)
|
2015-04-28 23:11:37 +00:00
|
|
|
if err != nil {
|
2015-11-19 02:35:31 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if result < 0 {
|
|
|
|
return fmt.Errorf("rkt: API version is too old(%v), requires at least %v", resp.Info.ApiVersion, minimumRktApiVersion)
|
2015-04-28 23:11:37 +00:00
|
|
|
}
|
2015-11-19 02:35:31 +00:00
|
|
|
return nil
|
2015-04-28 23:11:37 +00:00
|
|
|
}
|