Skip to content

Commit

Permalink
Merge pull request #269 from linkernetworks/johnlin/upgrade-nc
Browse files Browse the repository at this point in the history
[Upgrade] upgrade network controller to v0.4.5
  • Loading branch information
John-Lin authored Aug 23, 2018
2 parents f148547 + 0990a9b commit cba1ea9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deploy/helm/config/development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ apps:
# vortex/deploy/helm/apps/charts/network-controller
network-controller:
controller:
imageTag: v0.4.3
imageTag: v0.4.5
tcpCPU: 50m
unixCPU: 50m
# vortex/deploy/helm/apps/charts/prometheus
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 @@ -19,7 +19,7 @@ apps:
# vortex/deploy/helm/apps/charts/network-controller
network-controller:
controller:
imageTag: v0.4.3
imageTag: v0.4.5
tcpCPU: 100m
unixCPU: 100m
# vortex/deploy/helm/apps/charts/prometheus
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 @@ -19,7 +19,7 @@ apps:
# vortex/deploy/helm/apps/charts/network-controller
network-controller:
controller:
imageTag: v0.4.3
imageTag: v0.4.5
tcpCPU: 50m
unixCPU: 50m
# vortex/deploy/helm/apps/charts/prometheus
Expand Down
2 changes: 1 addition & 1 deletion src/deployment/deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,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.3",
Image: "sdnvortex/network-controller:v0.4.5",
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.3",
Image: "sdnvortex/network-controller:v0.4.5",
Command: []string{"/go/bin/client"},
Args: generateClientCommand(v),
Env: []corev1.EnvVar{
Expand Down

0 comments on commit cba1ea9

Please sign in to comment.