Skip to content

Commit

Permalink
Set empty string to T1LR
Browse files Browse the repository at this point in the history
  • Loading branch information
chenlin07 committed Oct 27, 2023
1 parent 7cef6da commit 0ad3de9
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (

"github.com/go-logr/logr"
"github.com/vmware/alb-sdk/go/models"
"k8s.io/utils/pointer"

corev1 "k8s.io/api/core/v1"
apierrors "k8s.io/apimachinery/pkg/api/errors"
Expand Down Expand Up @@ -341,6 +342,10 @@ func (r *AKODeploymentConfigReconciler) createAviInfraSetting(adc *akoov1alpha1.
L7Settings: akov1beta1.AviInfraL7Settings{
ShardSize: shardSize,
},
// Known issue: T1LR value is required when reconciling AKODeploymentConfig
NSXSettings: akov1beta1.AviInfraNSXSettings{
T1LR: pointer.StringPtr(""),
},
},
}
}
Expand Down

0 comments on commit 0ad3de9

Please sign in to comment.