Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for _rds (0.05 sec)

  1. pkg/kube/kclient/crdwatcher.go

    	c.mutex.Unlock()
    	kube.WaitForCacheSync("crd watcher", stop, c.crds.HasSynced)
    	c.queue.Run(stop)
    	c.crds.ShutdownHandlers()
    }
    
    // WaitForCRD waits until the request CRD exists, and returns true on success. A false return value
    // indicates the CRD does not exist but the wait failed or was canceled.
    // This is useful to conditionally enable controllers based on CRDs being created.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. bin/update_crds.sh

      echo "Generated Custom Resource Definitions file does not exist in the commit SHA ${SHA}. Not updating the CRD file."
      exit
    fi
    rm -f "${ROOTDIR}/manifests/charts/base/crds/crd-all.gen.yaml"
    cp "${API_TMP}/kubernetes/customresourcedefinitions.gen.yaml" "${ROOTDIR}/manifests/charts/base/crds/crd-all.gen.yaml"
    
    cd "${ROOTDIR}"
    
    GATEWAY_VERSION=$(grep "gateway-api" go.mod | awk '{ print $2 }')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 14:28:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    		return
    	}
    
    	// create initial spec to avoid merging once per CRD on startup
    	crds, err := c.crdLister.List(labels.Everything())
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("failed to initially list all CRDs: %v", err))
    		return
    	}
    	for _, crd := range crds {
    		if !apiextensionshelpers.IsCRDConditionTrue(crd, apiextensionsv1.Established) {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/fake.go

    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    const (
    	defaultFakeDomainSuffix = "company.com"
    )
    
    type FakeControllerOptions struct {
    	Client            kubelib.Client
    	CRDs              []schema.GroupVersionResource
    	NetworksWatcher   mesh.NetworksWatcher
    	MeshWatcher       mesh.Watcher
    	ServiceHandler    model.ServiceHandler
    	ClusterID         cluster.ID
    	WatchedNamespaces string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapiv3/controller.go

    		utilruntime.HandleError(fmt.Errorf("timed out waiting for caches to sync"))
    		return
    	}
    
    	crds, err := c.crdLister.List(labels.Everything())
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("failed to initially list all CRDs: %v", err))
    		return
    	}
    	for _, crd := range crds {
    		if !apiextensionshelpers.IsCRDConditionTrue(crd, apiextensionsv1.Established) {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. manifests/charts/base/Chart.yaml

    name: base
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for deploying Istio cluster resources and CRDs
    keywords:
      - istio
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 378 bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/cleanup.go

    			context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    			err = multierror.Append(err, e)
    		}
    		return
    	})
    }
    
    // When we cleanup, we should not delete CRDs. This will filter out all the crds
    func removeCRDs(istioYaml string) string {
    	allParts := yml.SplitString(istioYaml)
    	nonCrds := make([]string, 0, len(allParts))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pilot/pkg/xds/monitoring.go

    	)
    	xdsClientTrackerMutex = &sync.Mutex{}
    	xdsClientTracker      = make(map[string]float64)
    
    	// Covers xds_builderr and xds_senderr for xds in {lds, rds, cds, eds}.
    	pushes = monitoring.NewSum(
    		"pilot_xds_pushes",
    		"Pilot build and send errors for lds, rds, cds and eds.",
    	)
    
    	cdsSendErrPushes = pushes.With(typeTag.Value("cds_senderr"))
    	edsSendErrPushes = pushes.With(typeTag.Value("eds_senderr"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top