mirror of https://github.com/linkerd/linkerd2.git
Prepare for v0.1.0 (#1)
Update versions in code. Use default docker tag of v0.1.0
This commit is contained in:
parent
a1fbafaae3
commit
bff3efea3f
|
@ -105,7 +105,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "conduit-proxy"
|
||||
version = "0.0.1"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"abstract-ns 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
|
|
@ -355,7 +355,7 @@ type enhancedDaemonSet struct {
|
|||
|
||||
func init() {
|
||||
RootCmd.AddCommand(injectCmd)
|
||||
injectCmd.PersistentFlags().StringVarP(&version, "conduit-version", "v", "latest", "tag to be used for conduit images")
|
||||
injectCmd.PersistentFlags().StringVarP(&version, "conduit-version", "v", "v0.1.0", "tag to be used for conduit images")
|
||||
injectCmd.PersistentFlags().StringVar(&initImage, "init-image", "gcr.io/runconduit/proxy-init", "Conduit init container image name")
|
||||
injectCmd.PersistentFlags().StringVar(&proxyImage, "proxy-image", "gcr.io/runconduit/proxy", "Conduit proxy container image name")
|
||||
injectCmd.PersistentFlags().StringVar(&imagePullPolicy, "image-pull-policy", "IfNotPresent", "Docker image pull policy")
|
||||
|
|
|
@ -389,7 +389,7 @@ func validate() error {
|
|||
|
||||
func init() {
|
||||
RootCmd.AddCommand(installCmd)
|
||||
installCmd.PersistentFlags().StringVarP(&version, "version", "v", "latest", "Conduit version to install")
|
||||
installCmd.PersistentFlags().StringVarP(&version, "version", "v", "v0.1.0", "Conduit version to install")
|
||||
installCmd.PersistentFlags().StringVarP(&dockerRegistry, "registry", "r", "gcr.io/runconduit", "Docker registry to pull images from")
|
||||
installCmd.PersistentFlags().UintVar(&controllerReplicas, "controller-replicas", 1, "replicas of the controller to deploy")
|
||||
installCmd.PersistentFlags().UintVar(&webReplicas, "web-replicas", 1, "replicas of the web server to deploy")
|
||||
|
|
|
@ -7,15 +7,15 @@ import (
|
|||
"testing"
|
||||
"time"
|
||||
|
||||
pb "github.com/runconduit/conduit/controller/gen/public"
|
||||
"github.com/golang/protobuf/proto"
|
||||
pb "github.com/runconduit/conduit/controller/gen/public"
|
||||
)
|
||||
|
||||
func TestClientUnmarshal(t *testing.T) {
|
||||
versionInfo := pb.VersionInfo{
|
||||
GoVersion: "1.9.1",
|
||||
BuildDate: "2017.11.17",
|
||||
ReleaseVersion: "0.0.1",
|
||||
ReleaseVersion: "0.1.0",
|
||||
}
|
||||
|
||||
var unmarshaled pb.VersionInfo
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
package controller
|
||||
|
||||
var Version = "v0.0.1"
|
||||
var Version = "v0.1.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "conduit-proxy"
|
||||
version = "0.0.1"
|
||||
version = "0.1.0"
|
||||
authors = ["Oliver Gould <ver@buoyant.io>"]
|
||||
publish = false
|
||||
|
||||
|
|
Loading…
Reference in New Issue