Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 186 for xds (0.04 sec)

  1. pilot/pkg/xds/xdsgen.go

    // limitations under the License.
    
    package xds
    
    import (
    	"encoding/json"
    	"strconv"
    	"strings"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/env"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/nds_test.go

    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pkg/config/constants"
    	dnsProto "istio.io/istio/pkg/dns/proto"
    )
    
    func TestNDS(t *testing.T) {
    	cases := []struct {
    		name     string
    		meta     model.NodeMetadata
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. tests/fuzz/xds_fuzzer.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/test/xds"
    )
    
    func init() {
    	testing.Init()
    }
    
    func FuzzXds(data []byte) int {
    	t := &testing.T{}
    
    	// Use crd.ParseInputs to verify data
    	_, _, err := crd.ParseInputs(string(data))
    	if err != nil {
    		return 0
    	}
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    		ConfigString: string(data),
    	})
    	proxy := s.SetupProxy(&model.Proxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. istioctl/pkg/version/version.go

      istioctl x version --xds-address istio.example.com:15012 --cert-dir ~/.istio-certs
    
      # Retrieve version information via XDS from specific control plane in multi-control plane in-cluster configuration
      # (Select a specific control plane in an in-cluster canary Istio configuration.)
      istioctl x version --xds-label istio.io/rev=default
    `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/extension/wasmplugin.go

    		Name: wasmPlugin.ResourceName,
    		ConfigType: &hcm.HttpFilter_ConfigDiscovery{
    			ConfigDiscovery: &core.ExtensionConfigSource{
    				ConfigSource: defaultConfigSource,
    				TypeUrls: []string{
    					xds.WasmHTTPFilterType,
    					xds.RBACHTTPFilterType,
    				},
    			},
    		},
    	}
    }
    
    func toEnvoyNetworkFilter(wasmPlugin *model.WasmPluginWrapper) *listener.Filter {
    	return &listener.Filter{
    		Name: wasmPlugin.ResourceName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. istioctl/pkg/config/config_test.go

    insecure                                 default
    istioNamespace          istio-system     default
    plaintext                                default
    prefer-experimental                      default
    xds-address                              default
    xds-port                15012            default
    `,
    			WantException: false,
    		},
    	}
    
    	for i, c := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/grpc-agent.yaml.injected

            - mountPath: /etc/istio/proxy
              name: istio-xds
            - mountPath: /var/run/secrets/tokens
              name: istio-token
            - mountPath: /etc/istio/pod
              name: istio-podinfo
          volumes:
          - name: workload-socket
          - name: workload-certs
          - emptyDir:
              medium: Memory
            name: istio-xds
          - emptyDir: {}
            name: istio-data
          - downwardAPI:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/statusgen.go

    // limitations under the License.
    
    package xds
    
    import (
    	"fmt"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	status "github.com/envoyproxy/go-control-plane/envoy/service/status/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/deltaadstest.go

    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/test"
    )
    
    func NewDeltaAdsTest(t test.Failer, conn *grpc.ClientConn) *DeltaAdsTest {
    	test.SetForTest(t, &features.DeltaXds, true)
    	return NewDeltaXdsTest(t, conn, func(conn *grpc.ClientConn) (DeltaDiscoveryClient, error) {
    		xds := discovery.NewAggregatedDiscoveryServiceClient(conn)
    		return xds.DeltaAggregatedResources(context.Background())
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/options/options.go

    	clusterIDVar      = env.Register("ISTIO_META_CLUSTER_ID", "", "")
    	// Provider for XDS auth, e.g., gcp. By default, it is empty, meaning no auth provider.
    	xdsAuthProvider = env.Register("XDS_AUTH_PROVIDER", "", "Provider for XDS auth")
    
    	jwtPolicy = env.Register("JWT_POLICY", jwt.PolicyThirdParty,
    		"The JWT validation policy.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top