Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 394 for xds (0.02 sec)

  1. istioctl/pkg/internaldebug/internal-debug.go

      istioctl x internal-debug syncz --xds-address istio.example.com:15012 --cert-dir ~/.istio-certs
    
      # Retrieve syncz 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 internal-debug syncz --xds-label istio.io/rev=default
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/wasm/convert_test.go

    			})},
    			wantNack: true,
    		},
    		{
    			name: "wrong typed struct value",
    			input: []*anypb.Any{protoconv.MessageToAny(&core.TypedExtensionConfig{
    				Name:        "wrong-input",
    				TypedConfig: messageToAnyWithTypeURL(t, &v3.VmConfig{Runtime: "test", VmId: "test"}, xds.TypedStructType),
    			})},
    			wantNack: true,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. pkg/bootstrap/testdata/stats_inclusion_golden.json

                    }
                  }
                }]
              }]
            }
          },
          {
            "name": "xds-grpc",
            "type" : "STATIC",
            "connect_timeout": "1s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "xds-grpc",
              "endpoints": [{
                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. pkg/istio-agent/metrics/metrics.go

    	XdsProxyRequests = monitoring.NewSum(
    		"xds_proxy_requests",
    		"The total number of Xds Proxy Requests",
    	)
    
    	// XdsProxyResponses records total number of upstream responses.
    	XdsProxyResponses = monitoring.NewSum(
    		"xds_proxy_responses",
    		"The total number of Xds Proxy Responses",
    	)
    
    	IstiodConnectionCancellations = istiodDisconnections.With(disconnectionTypeTag.Value(Cancel))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. pkg/test/echo/common/scheme/scheme.go

    package scheme
    
    // Scheme enumerates the optional schemes for requests.
    type Instance string
    
    const (
    	HTTP      Instance = "http"
    	HTTPS     Instance = "https"
    	GRPC      Instance = "grpc"
    	XDS       Instance = "xds"
    	WebSocket Instance = "ws"
    	TCP       Instance = "tcp"
    	UDP       Instance = "udp"
    	// TLS sends a TLS connection and reports back the properties of the TLS connection
    	// This is similar to `openssl s_client`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/debuggen.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	"bytes"
    	"encoding/json"
    	"net/http"
    	"net/url"
    	"strconv"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc/codes"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 18:51:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. pkg/xds/server.go

    		// By XDS spec, these are not wildcard
    		return false
    	case model.ClusterType, model.ListenerType:
    		// By XDS spec, these are wildcard
    		return true
    	default:
    		// All of our internal types use wildcard semantics
    		return true
    	}
    }
    
    // DiscoveryStream is a server interface for XDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. pilot/pkg/xds/deltatest.go

    // limitations under the License.
    
    package xds
    
    import (
    	"fmt"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. architecture/security/istio-agent.md

    |PROXY_XDS_VIA_AGENT|use istio-agent to proxy XDS. True for all use cases now, likely can be always-on now or soon|
    |PROXY_XDS_DEBUG_VIA_AGENT|Offer XDS istio.io/debug API on agent's 15004 HTTP endpoint. (Requires PROXY_XDS_VIA_AGENT)|
    |{XDS,CA}_ROOT_CA|explicitly configure root certificate path|
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. pilot/pkg/features/tuning.go

    	XDSCacheMaxSize = env.Register("PILOT_XDS_CACHE_SIZE", 60000,
    		"The maximum number of cache entries for the XDS cache.").Get()
    
    	XDSCacheIndexClearInterval = env.Register("PILOT_XDS_CACHE_INDEX_CLEAR_INTERVAL", 5*time.Second,
    		"The interval for xds cache index clearing.").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top