Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 394 for xds (0.02 sec)

  1. pilot/pkg/xds/util_test.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 (
    	"fmt"
    	"strings"
    	"testing"
    )
    
    func TestAtMostNJoin(t *testing.T) {
    	tests := []struct {
    		data  []string
    		limit int
    		want  string
    	}{
    		{
    			[]string{"a", "b", "c"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. releasenotes/notes/fips.yaml

      * mTLS communication between Envoy proxies;
      * regular TLS on the downstream and the upstream of Envoy proxies (e.g. gateway);
      * Google gRPC side requests from Envoy proxies (e.g. Stackdriver extensions);
      * Istiod xDS server;
      * Istiod injection and validation webhook servers.
    
      The restrictions are not applied on the following data paths:
      * Istiod to Kubernetes API server;
      * JWK fetch from Istiod;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/debug.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pilot/pkg/xds/endpoints"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/config/xds"
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/sds/sdsservice_test.go

    )
    
    type TestServer struct {
    	t       *testing.T
    	server  *Server
    	udsPath string
    	store   *ca2.DirectSecretManager
    }
    
    func (s *TestServer) Connect() *xds.AdsTest {
    	conn, err := setupConnection(s.udsPath)
    	if err != nil {
    		s.t.Fatal(err)
    	}
    	return xds.NewSdsTest(s.t, conn)
    }
    
    func (s *TestServer) UpdateSecret(name string, secret *ca2.SecretItem) {
    	s.t.Helper()
    	s.store.Set(name, secret)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. pkg/config/xds/filters.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 (
    	resource "github.com/envoyproxy/go-control-plane/pkg/resource/v3"
    
    	pm "istio.io/istio/pkg/model"
    )
    
    const (
    	WasmHTTPFilterType    = pm.WasmHTTPFilterType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. releasenotes/notes/route-collapse.yaml

    upgradeNotes:
    - title: EnvoyFilter `match.routeConfiguration.vhost.name` semantics change
      content: |
        `EnvoyFilter` matches rely on internal implementation details to match generated XDS segments, which is subject to change at any time.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 02 16:10:04 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/util.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 (
    	"fmt"
    	"strings"
    )
    
    func atMostNJoin(data []string, limit int) string {
    	if limit == 0 || limit == 1 {
    		// Assume limit >1, but make sure we dpn't crash if someone does pass those
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 1021 bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/ep_filters_test.go

    //   - 1 gateway for network1
    //   - 3 gateway for network2
    //   - 1 gateway for network3
    //   - 0 gateways for network4
    func environment(t test.Failer, c ...config.Config) *xds.FakeDiscoveryServer {
    	ds := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    		Configs: c,
    		Services: []*model.Service{{
    			Hostname:   "example.ns.svc.cluster.local",
    			Attributes: model.ServiceAttributes{Name: "example", Namespace: "ns"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. pkg/cluster/debug.go

    // limitations under the License.
    
    package cluster
    
    // DebugInfo contains minimal information about remote clusters.
    // This struct is defined here, in a package that avoids many imports, since xds/debug usually
    // affects agent binary size. We avoid embedding other parts of a "remote cluster" struct like kube clients.
    type DebugInfo struct {
    	ID         ID     `json:"id"`
    	SecretName string `json:"secretName"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 13 19:27:51 UTC 2021
    - 1007 bytes
    - Viewed (0)
  10. istioctl/pkg/proxystatus/proxystatus_test.go

    	cmdutil "k8s.io/kubectl/pkg/cmd/util"
    
    	"istio.io/api/label"
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/istioctl/pkg/multixds"
    	"istio.io/istio/istioctl/pkg/xds"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    type execTestCase struct {
    	args     []string
    	revision string
    	noIstiod bool
    
    	// Typically use one of the three
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top