Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 142 for Discover (0.23 sec)

  1. cmd/kube-controller-manager/app/autoscaling.go

    	hpaClient := controllerContext.ClientBuilder.ClientOrDie("horizontal-pod-autoscaler")
    
    	apiVersionsGetter := custom_metrics.NewAvailableAPIsGetter(hpaClient.Discovery())
    	// invalidate the discovery information roughly once per resync interval our API
    	// information is *at most* two resync intervals old.
    	go custom_metrics.PeriodicallyInvalidate(
    		apiVersionsGetter,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 01:37:36 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/completion.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package apiserver
    
    import (
    	"k8s.io/apiserver/pkg/endpoints/discovery"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    )
    
    type completedConfig struct {
    	Generic genericapiserver.CompletedConfig
    	*Extra
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 06:13:43 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/lds.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/networking/core"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config/schema/kind"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/negotiation.go

    )
    
    // Interface is from "k8s.io/apiserver/pkg/endpoints/handlers/negotiation"
    
    // DiscoveryEndpointRestrictions allows requests to /apis to provide a Content Negotiation GVK for aggregated discovery.
    var DiscoveryEndpointRestrictions = discoveryEndpointRestrictions{}
    
    type discoveryEndpointRestrictions struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    // SetDefaults_Discovery assigns default values for the discovery process
    func SetDefaults_Discovery(obj *Discovery) {
    	if len(obj.TLSBootstrapToken) == 0 && obj.BootstrapToken != nil {
    		obj.TLSBootstrapToken = obj.BootstrapToken.Token
    	}
    
    	if obj.File != nil {
    		SetDefaults_FileDiscovery(obj.File)
    	}
    }
    
    // SetDefaults_FileDiscovery assigns default values for file based discovery
    func SetDefaults_FileDiscovery(obj *FileDiscovery) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top