Skip to content

Commit

Permalink
Merge pull request #265 from karelyatin/fix_tls
Browse files Browse the repository at this point in the history
Fix ovn_controller tls args
  • Loading branch information
openshift-merge-bot[bot] committed Apr 11, 2024
2 parents 4d443b8 + 2ca4015 commit e75b363
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/ovncontroller/daemonset.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ package ovncontroller

import (
"fmt"
"strings"

"github.com/openstack-k8s-operators/lib-common/modules/common/env"
"github.com/openstack-k8s-operators/lib-common/modules/common/tls"
Expand Down Expand Up @@ -72,7 +73,7 @@ func CreateOVNDaemonSet(
{
Name: "ovn-controller",
Command: []string{"/bin/bash", "-c"},
Args: args,
Args: []string{strings.Join(args, " ")},
Lifecycle: &corev1.Lifecycle{
PreStop: &corev1.LifecycleHandler{
Exec: &corev1.ExecAction{
Expand Down

0 comments on commit e75b363

Please sign in to comment.