Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 234 for discoveryv1 (0.19 sec)

  1. pilot/test/xds/fake.go

    package xds
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"strings"
    	"time"
    
    	endpoint "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials/insecure"
    	"google.golang.org/grpc/test/bufconn"
    	authorizationv1 "k8s.io/api/authorization/v1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/aggregator.go

    			// this prevents the autoregistration controller's initial sync from deleting APIServices for CRDs that still exist.
    			// we only need to do this if CRDs are enabled on this server.  We can't use discovery because we are the source for discovery.
    			if crdAPIEnabled {
    				klog.Infof("waiting for initial CRD sync...")
    				crdRegistrationController.WaitForInitialSync()
    				klog.Infof("initial CRD sync complete...")
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/eds.go

    package xds
    
    import (
    	"fmt"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pilot/pkg/xds/endpoints"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // SvcUpdate is a callback from service discovery when service info changes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/typed_xds_cache_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package model
    
    import (
    	"reflect"
    	"testing"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/hash"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/config/common_test.go

    			input: []any{&kubeadmapi.JoinConfiguration{
    				Discovery: kubeadmapi.Discovery{
    					Timeout: &metav1.Duration{
    						Duration: 1234 * time.Microsecond,
    					},
    				},
    				Timeouts: &kubeadmapi.Timeouts{
    					Discovery: &metav1.Duration{},
    				},
    			}},
    			expected: []any{&kubeadmapi.JoinConfiguration{
    				Timeouts: &kubeadmapi.Timeouts{
    					Discovery: &metav1.Duration{
    						Duration: 1234 * time.Microsecond,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    				t.Fatalf("incorrect status via discovery: expected name: %v, got: %v", "noxus/status", status.Name)
    			}
    
    			if status.Namespaced != true {
    				t.Fatalf("incorrect status via discovery: expected namespace: %v, got: %v", true, status.Namespaced)
    			}
    
    			if status.Kind != "WishIHadChosenNoxu" {
    				t.Fatalf("incorrect status via discovery: expected kind: %v, got: %v", "WishIHadChosenNoxu", status.Kind)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    type Issuer struct {
    	// url points to the issuer URL in a format https://url or https://url/path.
    	// This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    	// Same value as the --oidc-issuer-url flag.
    	// Discovery information is fetched from "{url}/.well-known/openid-configuration" unless overridden by discoveryURL.
    	// Required to be unique across all JWT authenticators.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    	if err != nil {
    		// discovery errors are not fatal.  We often have some set of resources we can operate against even if we don't have a complete list
    		errs = append(errs, err)
    		conditionUpdater.ProcessDiscoverResourcesErr(err)
    	}
    	// TODO(sttts): get rid of opCache and pass the verbs (especially "deletecollection") down into the deleter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// Defaults to "/etc/kubernetes/pki/ca.crt".
    	// +optional
    	CACertPath string `json:"caCertPath,omitempty"`
    
    	// Discovery specifies the options for the kubelet to use during the TLS Bootstrap process
    	Discovery Discovery `json:"discovery"`
    
    	// ControlPlane defines the additional control plane instance to be deployed on the joining node.
    	// If nil, no additional control plane instance will be deployed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/types.go

    	// secure comunications between node and control-plane.
    	// Defaults to "/etc/kubernetes/pki/ca.crt".
    	CACertPath string
    
    	// Discovery specifies the options for the kubelet to use during the TLS Bootstrap process
    	Discovery Discovery
    
    	// ControlPlane defines the additional control plane instance to be deployed on the joining node.
    	// If nil, no additional control plane instance will be deployed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top