Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 399 for MeshConfig (0.14 sec)

  1. releasenotes/notes/agent-dns-capture.yaml

      with TCP services without VIPs, multicluster DNS resolution, and DNS resolution of Kubernetes services
      from VM sidecars. This feature is disabled by default and can be enabled by setting the following in the
      Istio Operator: `meshConfig.defaultConfig.proxyMetadata.ISTIO_META_DNS_CAPTURE="true"`.
    
    upgradeNotes:
    - title: Istio CoreDNS Plugin Deprecation
      content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 08 04:32:46 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/sds.go

    	// Cache for XDS resources
    	cache         model.XdsCache
    	configCluster cluster.ID
    	meshConfig    *mesh.MeshConfig
    }
    
    var _ model.XdsResourceGenerator = &SecretGen{}
    
    func NewSecretGen(sc credscontroller.MulticlusterController, cache model.XdsCache, configCluster cluster.ID,
    	meshConfig *mesh.MeshConfig,
    ) *SecretGen {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_metric_test.go

    						Operation: tpb.MetricsOverrides_TagOverride_REMOVE,
    					},
    				},
    			},
    		},
    	}
    
    	cases := []struct {
    		name     string
    		metrics  []*tpb.Metrics
    		mesh     *meshconfig.MeshConfig
    		expected map[string]metricsConfig
    	}{
    		// without providers
    		{
    			name:     "no metrics",
    			mesh:     withoutMetricsProviders,
    			expected: nil,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 16 03:24:36 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    		port           *model.Port
    		mesh           *meshconfig.MeshConfig
    		connectionPool *networking.ConnectionPoolSettings
    
    		upgrade bool
    	}{
    		{
    			name:        "mesh upgrade - dr default",
    			clusterName: "bar",
    			port:        &model.Port{Protocol: protocol.HTTP},
    			mesh:        &meshconfig.MeshConfig{H2UpgradePolicy: meshconfig.MeshConfig_UPGRADE},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/bench_test.go

    	runBenchmark(b, v3.SecretType, secretCases)
    }
    
    func createGateways(n int) map[string]*meshconfig.Network {
    	out := make(map[string]*meshconfig.Network, n)
    	for i := 0; i < n; i++ {
    		out[fmt.Sprintf("network-%d", i)] = &meshconfig.Network{
    			Gateways: []*meshconfig.Network_IstioNetworkGateway{{
    				Gw:   &meshconfig.Network_IstioNetworkGateway_Address{Address: fmt.Sprintf("35.0.0.%d", i)},
    				Port: 15443,
    			}},
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_test.go

    	listeners := buildListeners(t, TestOptions{MeshConfig: m}, nil)
    	validateAccessLog(t, xdstest.ExtractListener(model.VirtualOutboundListenerName, listeners), "")
    
    	// Update MeshConfig
    	m.AccessLogFormat = "format modified"
    	// Trigger MeshConfig change and validate that access log is recomputed.
    	accessLogBuilder.reset()
    	listeners = buildListeners(t, TestOptions{MeshConfig: m}, nil)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    		DefaultAddress: "1.1.1.1",
    		Ports: model.PortList{
    			&model.Port{
    				Name:     "default",
    				Port:     8080,
    				Protocol: protocol.HTTP,
    			},
    		},
    	})
    
    	meshConfig := &meshconfig.MeshConfig{
    		ConnectTimeout: &durationpb.Duration{
    			Seconds: 10,
    			Nanos:   1,
    		},
    		LocalityLbSetting: &networking.LocalityLoadBalancerSetting{
    			Distribute: distribute,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  8. operator/pkg/util/merge_iop_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    import (
    	"os"
    	"path/filepath"
    	"testing"
    
    	"sigs.k8s.io/yaml"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	v1alpha12 "istio.io/api/operator/v1alpha1"
    	"istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/test/env"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 15 20:10:17 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/options/security.go

    import (
    	"fmt"
    	"strings"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/jwt"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/credentialfetcher"
    	"istio.io/istio/security/pkg/nodeagent/cafile"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/options/statusserver.go

    // limitations under the License.
    
    package options
    
    import (
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/cmd/pilot-agent/status"
    	"istio.io/istio/pilot/cmd/pilot-agent/status/ready"
    	istioagent "istio.io/istio/pkg/istio-agent"
    	"istio.io/istio/pkg/model"
    )
    
    func NewStatusServerOptions(ipv6 bool, t model.NodeType, proxyConfig *meshconfig.ProxyConfig, agent *istioagent.Agent) *status.Options {
    	return &status.Options{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top