Skip to content

Commit

Permalink
Merge pull request #342 from linkernetworks/johnlin/upgrade-nc-049
Browse files Browse the repository at this point in the history
[Task] upgrade network controller 0.4.9
  • Loading branch information
John-Lin authored Oct 5, 2018
2 parents 79566fb + 8412a99 commit 86d0228
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion deploy/helm/config/development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apps:
# vortex/deploy/helm/apps/charts/network-controller
network-controller:
controller:
imageTag: v0.4.8
imageTag: v0.4.9
tcpCPU: 50m
unixCPU: 50m
# vortex/deploy/helm/apps/charts/openvswitch-exec
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/config/production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apps:
# vortex/deploy/helm/apps/charts/network-controller
network-controller:
controller:
imageTag: v0.4.8
imageTag: v0.4.9
tcpCPU: 100m
unixCPU: 100m
# vortex/deploy/helm/apps/charts/openvswitch-exec
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/config/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apps:
# vortex/deploy/helm/apps/charts/network-controller
network-controller:
controller:
imageTag: v0.4.8
imageTag: v0.4.9
tcpCPU: 50m
unixCPU: 50m
# vortex/deploy/helm/apps/charts/openvswitch-exec
Expand Down
2 changes: 1 addition & 1 deletion src/deployment/deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ func generateInitContainer(networks []entity.DeploymentNetwork) ([]corev1.Contai
for i, v := range networks {
containers = append(containers, corev1.Container{
Name: fmt.Sprintf("init-network-client-%d", i),
Image: "sdnvortex/network-controller:v0.4.8",
Image: "sdnvortex/network-controller:v0.4.9",
Command: []string{"/go/bin/client"},
Args: generateClientCommand(v),
Env: []corev1.EnvVar{
Expand Down
2 changes: 1 addition & 1 deletion src/pod/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func generateInitContainer(networks []entity.PodNetwork) ([]corev1.Container, er
for i, v := range networks {
containers = append(containers, corev1.Container{
Name: fmt.Sprintf("init-network-client-%d", i),
Image: "sdnvortex/network-controller:v0.4.8",
Image: "sdnvortex/network-controller:v0.4.9",
Command: []string{"/go/bin/client"},
Args: generateClientCommand(v),
Env: []corev1.EnvVar{
Expand Down
8 changes: 4 additions & 4 deletions vendor/vendor.json
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,10 @@
{
"checksumSHA1": "QAOy7z8HT9JxBXbIhPjTjdLusVU=",
"path": "github.com/linkernetworks/network-controller/messages",
"revision": "76cb2946e17ea2ab9e92dce65c96f87e96e25302",
"revisionTime": "2018-09-01T07:38:16Z",
"version": "=v0.4.8",
"versionExact": "v0.4.8"
"revision": "48d3927f81876386dda34525c8d0985a1b482f09",
"revisionTime": "2018-10-05T09:33:17Z",
"version": "=v0.4.9",
"versionExact": "v0.4.9"
},
{
"checksumSHA1": "PKUmbmBhKwMo6Cj7j0KUZQ6Ecsk=",
Expand Down

0 comments on commit 86d0228

Please sign in to comment.