Skip to content

Commit

Permalink
Merge pull request #165 from linkernetworks/johnlin/upgrade-network-c…
Browse files Browse the repository at this point in the history
…ontroller

[Upgrade] upgrade networkcontroller to v0.4.0
  • Loading branch information
John-Lin authored Jul 25, 2018
2 parents 4b4e3ca + 319a588 commit b0a41aa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deploy/helm/apps/charts/network-controller/values.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
image:
tag: v0.3.0
tag: v0.4.0
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
effect: NoSchedule
containers:
- name: network-controller-server-tcp
image: sdnvortex/network-controller:v0.3.0
image: sdnvortex/network-controller:v0.4.0
securityContext:
privileged: true
command: ["/go/bin/server"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
effect: NoSchedule
containers:
- name: network-controller-server-unix
image: sdnvortex/network-controller:v0.3.0
image: sdnvortex/network-controller:v0.4.0
securityContext:
privileged: true
command: ["/go/bin/server"]
Expand Down
2 changes: 1 addition & 1 deletion src/pod/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,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.3.0",
Image: "sdnvortex/network-controller:v0.4.0",
Command: []string{"/go/bin/client"},
Args: generateClientCommand(v),
Env: []corev1.EnvVar{
Expand Down

0 comments on commit b0a41aa

Please sign in to comment.