Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 186 for xds (0.3 sec)

  1. pilot/cmd/pilot-agent/status/ready/probe_test.go

    		result string
    	}{
    		{
    			"only lds",
    			"listener_manager.lds.update_success: 1",
    			"config not fully received from XDS server: cds updates: 0 successful, 0 rejected; lds updates: 1 successful, 0 rejected",
    		},
    		{
    			"only cds",
    			"cluster_manager.cds.update_success: 1",
    			"config not fully received from XDS server: cds updates: 1 successful, 0 rejected; lds updates: 0 successful, 0 rejected",
    		},
    		{
    			"reject CDS",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/monitoring.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    package xds
    
    import (
    	"sync"
    	"time"
    
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/status"
    
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	typeTag    = monitoring.CreateLabel("type")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  8. 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)
  9. 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)
  10. pkg/proxy/proxyinfo.go

    package proxy
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    
    	"istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pkg/kube"
    	istioVersion "istio.io/istio/pkg/version"
    )
    
    type sidecarSyncStatus struct {
    	// nolint: structcheck, unused
    	pilot string
    	xds.SyncStatus
    }
    
    // GetProxyInfo retrieves infos of proxies that connect to the Istio control plane of specific revision.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 22:41:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top