Skip to content

Commit

Permalink
remove deprecated trust-domain args
Browse files Browse the repository at this point in the history
  • Loading branch information
waynz0r committed Nov 12, 2020
1 parent d0c98ef commit c26c1aa
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion pkg/resources/gateways/deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ func (r *Reconciler) deployment() runtime.Object {
"--domain", fmt.Sprintf("$(POD_NAMESPACE).svc.%s", r.Config.Spec.Proxy.ClusterDomain),
"--log_output_level", "info",
"--serviceCluster", r.gw.Name,
"--trust-domain", r.Config.Spec.TrustDomain,
}

if r.Config.Spec.Proxy.LogLevel != "" {
Expand Down
2 changes: 0 additions & 2 deletions pkg/resources/istiod/deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ func (r *Reconciler) containerArgs() []string {
r.Config.Spec.Proxy.ClusterDomain,
"--keepaliveMaxServerConnectionAge",
"30m",
"--trust-domain",
r.Config.Spec.TrustDomain,
}

if r.Config.Spec.Logging.Level != nil {
Expand Down
2 changes: 0 additions & 2 deletions pkg/resources/sidecarinjector/deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,6 @@ func (r *Reconciler) certFetcherContainer() apiv1.Container {
"--domain",
r.Config.Namespace + ".svc." + r.Config.Spec.Proxy.ClusterDomain,
"--discoveryAddress", r.Config.GetDiscoveryAddress(),
"--trust-domain",
r.Config.Spec.TrustDomain,
}

if util.PointerToBool(r.Config.Spec.Proxy.EnvoyAccessLogService.Enabled) {
Expand Down

0 comments on commit c26c1aa

Please sign in to comment.