Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 199 for _rds (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/merge.go

    	for _, s := range crdSpecs {
    		// merge specs without checking conflicts, since the naming controller prevents
    		// conflicts between user-defined CRDs
    		mergeSpec(crdSpec, s)
    	}
    
    	// The static spec has the highest priority. Resolve conflicts to prevent user-defined
    	// CRDs potentially overlapping the built-in apiextensions API
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 16 14:08:01 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. pkg/config/crd/validator.go

    					return nil, err
    				}
    			default:
    				return nil, fmt.Errorf("unknown CRD type: %v", un.GroupVersionKind())
    			}
    			crds = append(crds, crd)
    		}
    	}
    	return NewValidatorFromCRDs(crds...)
    }
    
    func NewValidatorFromCRDs(crds ...apiextensions.CustomResourceDefinition) (*Validator, error) {
    	v := &Validator{
    		byGvk:      map[schema.GroupVersionKind]validation.SchemaCreateValidator{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. releasenotes/notes/rds-cache-allow-any.yaml

    John Howard <******@****.***> 1658373169 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 21 03:12:49 UTC 2022
    - 201 bytes
    - Viewed (0)
  4. samples/ambient-argo/tag-chart/values.yaml

      externalIstiod: false
      remotePilotAddress: ""
    
    base:
      # Used for helm2 to add the CRDs to templates.
      enableCRDTemplates: false
    
      # Validation webhook configuration url
      # For example: https://$remotePilotAddress:15017/validate
      validationURL: ""
    
      # For istioctl usage to disable istio config crds in base
      enableIstioConfigCRDs: true
    
      # Defines the mapping from revision tags to revisions.
      #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/xds_cache.go

    	CDSType = "cds"
    	EDSType = "eds"
    	RDSType = "rds"
    	SDSType = "sds"
    )
    
    // NewXdsCache returns an instance of a cache.
    func NewXdsCache() XdsCache {
    	cache := XdsCacheImpl{
    		eds: newTypedXdsCache[uint64](),
    	}
    	if features.EnableCDSCaching {
    		cache.cds = newTypedXdsCache[uint64]()
    	} else {
    		cache.cds = disabledCache[uint64]{}
    	}
    	if features.EnableRDSCaching {
    		cache.rds = newTypedXdsCache[uint64]()
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 07:02:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. manifests/charts/base/values.yaml

      base:
        # Used for helm2 to add the CRDs to templates.
        enableCRDTemplates: false
    
        # Validation webhook configuration url
        # For example: https://$remotePilotAddress:15017/validate
        validationURL: ""
        # Validation webhook caBundle value. Useful when running pilot with a well known cert
        validationCABundle: ""
    
        # For istioctl usage to disable istio config crds in base
        enableIstioConfigCRDs: true
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/vendor_test_issue14613.txt

    	}
    }
    
    -- $GOPATH/src/github.com/clsung/go-vendor-issue-14613/./vendor/mylibtesttest/myapp/myapp_test.go --
    package myapp
    import (
       "mylibtesttest/rds"
    )
    
    -- $GOPATH/src/github.com/clsung/go-vendor-issue-14613/./vendor/mylibtesttest/rds/rds.go --
    package rds
    
    -- $GOPATH/src/github.com/clsung/go-vendor-issue-14613/./vendor/github.com/clsung/fake/fake.go --
    package fake
    
    func DoNothing() string {
    	return "Ok"
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier.go

    // supported or not.
    //
    // It reads the OpenAPI to see if the given GVK supports the given query param.
    // If the GVK can not be found, we assume that CRDs will have the same level of
    // support as "namespaces", and non-CRDs will not be supported. We
    // delay the check for CRDs as much as possible though, since it
    // requires an extra round-trip to the server.
    type QueryParamVerifier struct {
    	finder        CRDFinder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    	apiServiceName := groupVersion.Version + "." + groupVersion.Group
    
    	// check all CRDs.  There shouldn't that many, but if we have problems later we can index them
    	crds, err := c.crdLister.List(labels.Everything())
    	if err != nil {
    		return err
    	}
    	for _, crd := range crds {
    		if crd.Spec.Group != groupVersion.Group {
    			continue
    		}
    		for _, version := range crd.Spec.Versions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. manifests/charts/README.md

    in that cluster. Currently, the minimum we require is the security provider (node agent or citadel).
    
    ### Install Istio CRDs
    
    This is the first step of the installation. Please do not remove or edit any CRD - config currently requires
    all CRDs to be present. On each upgrade it is recommended to reapply the file, to make sure
    you get all CRDs.  CRDs are separated by release and by component type in the CRD directory.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top