Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for _rds (0.49 sec)

  1. manifests/charts/istio-operator/templates/crds.yaml

    {{- if .Values.enableCRDTemplates -}}
    {{- range $path, $bytes := .Files.Glob "crds/*.yaml" -}}
    ---
    {{ $.Files.Get $path }}
    {{- end -}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 08 21:55:57 UTC 2020
    - 147 bytes
    - Viewed (0)
  2. manifests/charts/base/templates/crds.yaml

    {{- if .Values.base.enableCRDTemplates }}
    {{ .Files.Get "crds/crd-all.gen.yaml" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 04:16:48 UTC 2023
    - 94 bytes
    - Viewed (0)
  3. pilot/pkg/xds/rds.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    type RdsGenerator struct {
    	ConfigGenerator core.ConfigGenerator
    }
    
    var _ model.XdsResourceGenerator = &RdsGenerator{}
    
    // Map of all configs that do not impact RDS
    var skippedRdsConfigs = sets.New[kind.Kind](
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.PeerAuthentication,
    	kind.Secret,
    	kind.WasmPlugin,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. releasenotes/notes/refresh-rds-cache.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - https://github.com/istio/istio/issues/36525
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 20 17:47:31 UTC 2021
    - 229 bytes
    - Viewed (0)
  5. pilot/pkg/networking/grpcgen/rds.go

    Zhonghu Xu <******@****.***> 1711645742 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/pilot/status.go

    	configs := handleAndGetXdsConfigs(clientConfig)
    	for _, config := range configs {
    		cfgType := config.GetTypeUrl()
    		switch cfgType {
    		case xdsresource.ListenerType:
    			lds = formatStatus(config)
    		case xdsresource.ClusterType:
    			cds = formatStatus(config)
    		case xdsresource.RouteType:
    			rds = formatStatus(config)
    		case xdsresource.EndpointType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3_test.go

    	tests := map[string]struct {
    		crds             []schema.GroupKind      // CRDFinder returns these CRD's
    		gvk              schema.GroupVersionKind // GVK whose OpenAPI V3 spec is checked
    		queryParam       VerifiableQueryParam    // Usually "fieldValidation"
    		expectedSupports bool
    	}{
    		"Field validation query param is supported for batch/v1/Job": {
    			crds: []schema.GroupKind{},
    			gvk: schema.GroupVersionKind{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 04:44:45 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top