Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for destinationFile (0.2 sec)

  1. tests/integration/security/pass_through_filter_chain_test.go

    {{- range $port := .To.Config.Ports.GetWorkloadOnlyPorts }}
      - number: {{ $port.WorkloadPort }}
        name: {{ $port.Name }}
        protocol: TCP
    {{- end }}
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: {{ .To.ServiceName }}-dr
    spec:
      host: "fake.destination.{{ .To.ServiceName }}"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    ---`)).
    						BuildAll(nil, apps.Ns1.All).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/istio-mesh-dashboard.json

            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "max(pilot_k8s_cfg_events{type=\"DestinationRule\", event=\"add\"}) - (max(pilot_k8s_cfg_events{type=\"DestinationRule\", event=\"delete\"}) or max(up * 0))",
              "format": "time_series",
              "intervalFactor": 1,
              "refId": "A"
            }
          ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  3. pkg/config/analysis/local/istiod_analyze.go

    	Code string
    
    	// ResourceName is the name of the resource to suppress the message for. For
    	// K8s resources it has the same form as used by istioctl (e.g.
    	// "DestinationRule default.istio-system"). Note that globbing wildcards are
    	// supported (e.g. "DestinationRule *.istio-system").
    	ResourceName string
    }
    
    // ReaderSource is a tuple of a io.Reader and filepath.
    type ReaderSource struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/eds_test.go

    			Full: true,
    			ConfigsUpdated: sets.New(
    				model.ConfigKey{Kind: kind.ServiceEntry, Name: "destall.default.svc.cluster.local", Namespace: "default"},
    				model.ConfigKey{Kind: kind.DestinationRule, Name: "destall", Namespace: "testns"}),
    		})
    		if _, err := ads.Wait(time.Second*5, watchAll...); err != nil {
    			t.Fatal(err)
    		}
    		if len(ads.GetEndpoints()) != 4 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. pilot/pkg/features/pilot.go

    			"we also match the ExternalName. In general, this mirrors Kubernetes behavior more closely. However, it means that policies (routes and DestinationRule) "+
    			"cannot be applied to the ExternalName service. "+
    			"If disabled, ExternalName behaves in fairly unexpected manner. Port matters, while it does not in Kubernetes. If it is a TCP port, "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. security/pkg/nodeagent/cache/secretcache.go

    // certificates. These are separated only due to the fact that Envoy has them separated.
    // Additionally, arbitrary certificates may be fetched from local files to support DestinationRule
    // and Gateway. Note that certificates stored externally will be sent from Istiod directly; the
    // in-agent SecretManagerClient has low privileges and cannot read Kubernetes Secrets or other
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. tests/integration/pilot/istioctl_test.go

    	// details.
    	describeSvcAOutput = regexp.MustCompile(`(?s)Service: a\..*
       Port: http 80/HTTP targets pod port 18080
    .*
    80:
       DestinationRule: a\..* for "a"
          Matching subsets: v1
          No Traffic Policy
    `)
    
    	describePodAOutput = describeSvcAOutput
    )
    
    // This test requires `--istio.test.env=kube` because it tests istioctl doing PodExec
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. tests/integration/pilot/analyze_test.go

    	"istio.io/istio/tests/integration/helm"
    )
    
    const (
    	gatewayFile          = "testdata/gateway.yaml"
    	jsonGatewayFile      = "testdata/gateway.json"
    	destinationRuleFile  = "testdata/destinationrule.yaml"
    	virtualServiceFile   = "testdata/virtualservice.yaml"
    	invalidFile          = "testdata/invalid.yaml"
    	invalidExtensionFile = "testdata/invalid.md"
    	dirWithConfig        = "testdata/some-dir/"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. pilot/pkg/xds/mesh_network_test.go

    						client.ExpectWithWeight(&workload{kind: sc.expectKind, name: name, namespace: "test", port: port}, subset, eps...)
    					}
    					configObjects := `
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: subset-se
      namespace: test
    spec:
      host: "*"
      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
          version: v2
      - name: v3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ads.go

    		push = request.Push
    		if len(request.ConfigsUpdated) == 0 {
    			sidecar = true
    			gateway = true
    		}
    		for conf := range request.ConfigsUpdated {
    			switch conf.Kind {
    			case kind.ServiceEntry, kind.DestinationRule, kind.VirtualService, kind.Sidecar, kind.HTTPRoute, kind.TCPRoute, kind.TLSRoute, kind.GRPCRoute:
    				sidecar = true
    			case kind.Gateway, kind.KubernetesGateway, kind.GatewayClass, kind.ReferenceGrant:
    				gateway = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top