Skip to content

Commit

Permalink
Support for new gNMI server
Browse files Browse the repository at this point in the history
  • Loading branch information
anjan-keysight committed Apr 7, 2022
1 parent 1e9b76d commit 60b1570
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions controllers/ixiatg_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -731,8 +731,8 @@ func (r *IxiaTGReconciler) containersForController(ixia *networkv1alpha1.IxiaTG,

name := "gnmi"
image := pubRel.Path + ":" + pubRel.Tag
args := []string{}
command := []string{"python3", "-m", "otg_gnmi", "--server-port", "50051", "--app-mode", "athena", "--target-host", CONTROLLER_SERVICE, "--target-port", "443", "--insecure"}
args := []string{"-http-server", "https://localhost:443", "--debug"}
command := []string{}
var ports []corev1.ContainerPort
ports = append(ports, corev1.ContainerPort{Name: "gnmi", ContainerPort: 50051, Protocol: "TCP"})
log.Infof("Adding Pod: %s, Container: %s, Image: %s", CONTROLLER_NAME, name, image)
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.77
0.0.78

0 comments on commit 60b1570

Please sign in to comment.