Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 235 for Discover (0.13 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags_fake.go

    	"k8s.io/client-go/discovery"
    	"k8s.io/client-go/rest"
    	"k8s.io/client-go/restmapper"
    	"k8s.io/client-go/tools/clientcmd"
    	clientcmdapi "k8s.io/client-go/tools/clientcmd/api"
    )
    
    // TestConfigFlags contains clientConfig struct
    // and interfaces that implements RESTClientGetter
    type TestConfigFlags struct {
    	clientConfig    clientcmd.ClientConfig
    	discoveryClient discovery.CachedDiscoveryInterface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/wrapper.go

    		Produces(mediaTypes...).
    		Consumes(mediaTypes...).
    		Writes(returnType))
    	return ws
    }
    
    // WrapAggregatedDiscoveryToHandler wraps a handler with an option to
    // emit the aggregated discovery by passing in the aggregated
    // discovery type in content negotiation headers: eg: (Accept:
    // application/json;v=v2;g=apidiscovery.k8s.io;as=APIGroupDiscoveryList)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. istioctl/pkg/xds/client.go

    // limitations under the License.
    
    package xds
    
    // xds uses ADSC to call XDS
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"strings"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials"
    
    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/adsc"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. istioctl/pkg/version/version.go

    package version
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    	"os"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	statusv3 "github.com/envoyproxy/go-control-plane/envoy/service/status/v3"
    	"github.com/spf13/cobra"
    	"github.com/spf13/pflag"
    	"google.golang.org/protobuf/types/known/structpb"
    
    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. istioctl/pkg/proxystatus/proxystatus_test.go

    			args:          strings.Split("serviceaccount/sleep", " "),
    			wantException: true,
    		},
    	}
    	multixds.GetXdsResponse = func(_ *discovery.DiscoveryRequest, _ string, _ string, _ clioptions.CentralControlPlaneOptions, _ []grpc.DialOption,
    	) (*discovery.DiscoveryResponse, error) {
    		return &discovery.DiscoveryResponse{}, nil
    	}
    	t.Cleanup(func() {
    		multixds.GetXdsResponse = xds.GetXdsResponse
    	})
    
    	for i, c := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/namespacecontroller_test.go

    	nsB := "nsB"
    
    	// Create a namespace with discovery selector enabled
    	createNamespace(t, client.Kube(), nsA, map[string]string{"discovery-selectors": "enabled"})
    	// Create a namespace without discovery selector enabled
    	createNamespace(t, client.Kube(), nsB, map[string]string{})
    	expectConfigMap(t, nc.configmaps, CACertNamespaceConfigMap, nsA, expectedData)
    	// config map should not be created for discovery selector disabled namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/xds_cache_test.go

    	any1  = &discovery.Resource{Resource: &anypb.Any{TypeUrl: "foo"}}
    	any2  = &discovery.Resource{Resource: &anypb.Any{TypeUrl: "bar"}}
    )
    
    // TestXdsCacheToken is a regression test to ensure that we do not write
    // nolint: gosec
    // Test only code
    func TestXdsCacheToken(t *testing.T) {
    	c := model.NewXdsCache()
    	n := atomic.NewInt32(0)
    	mkv := func(n int32) *discovery.Resource {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 20:43:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. architecture/security/istio-agent.md

    ## Authentication
    
    The agent supports two forms of authentication with the CA/discovery servers: mTLS and JWT. Varying deployment
    topologies mix and match these two.
    
    For a standard Kubernetes deployment, both CA and discovery will use JWT authentication, with a token automatically
    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/xds/workload.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/config/schema/kind"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/versiongetter.go

    	// Discovery().Serverversion() resource for a dynamic client(?).
    	fakeclientDiscovery, ok := g.client.Discovery().(*fakediscovery.FakeDiscovery)
    	if ok {
    		clusterVersionInfo = fakeclientDiscovery.FakedServerVersion
    	} else {
    		clusterVersionInfo, err = g.client.Discovery().ServerVersion()
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top