Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 134 for _rds (0.04 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

      failurePolicy: Fail
      reinvocationPolicy: "{{ .reinvocationPolicy }}"
      admissionReviewVersions: ["v1beta1", "v1"]
    {{- end }}
    {{- /* Installed for each revision - not installed for cluster resources ( cluster roles, bindings, crds) */}}
    {{- if not .Values.global.operatorManageWebhooks }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
    {{- if eq .Release.Namespace "istio-system"}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. architecture/networking/pilot.md

    #### CRD Watcher
    
    For watches against custom types (CRDs), we want to gracefully handle missing CRDs. Naively starting informers against the missing types would result in errors and blocking startup. Instead, we introduce a "CRD Watcher" component that watches the CRDs in the cluster to determine if they are available or not.
    
    This is consumed in two ways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    		}
    
    		f := l.FilterChains[0].Filters[0]
    		cfg, _ := conversion.MessageToStruct(f.GetTypedConfig())
    		rds := cfg.Fields["rds"].GetStructValue().Fields["route_config_name"].GetStringValue()
    		if rds != "8080" {
    			t.Fatalf("expect routes %s, found %s", "8080", rds)
    		}
    
    		l = findListenerByAddress(listeners, "1.2.3.4")
    		if l == nil {
    			t.Fatalf("expect listener %s", "1.2.3.4_8080")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	Terminating CustomResourceDefinitionConditionType = "Terminating"
    	// KubernetesAPIApprovalPolicyConformant indicates that an API in *.k8s.io or *.kubernetes.io is or is not approved.  For CRDs
    	// outside those groups, this condition will not be set.  For CRDs inside those groups, the condition will
    	// be true if .metadata.annotations["api-approved.kubernetes.io"] is set to a URL, otherwise it will be false.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. pkg/kube/kclient/client_test.go

    		}, 1)
    		tracker.WaitOrdered("add/name")
    	})
    	t.Run("CRD not ready", func(t *testing.T) {
    		stop := test.NewStop(t)
    		c := kube.NewFakeClient()
    
    		// Client created before CRDs are ready
    		wasm := kclient.NewDelayedInformer[controllers.Object](c, gvr.WasmPlugin, kubetypes.StandardInformer, kubetypes.Filter{})
    		tracker := assert.NewTracker[string](t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/lib/panels.libsonnet

          + timeSeries.standardOptions.withOverrides([
            overrideSeries('cds', 'Clusters'),
            overrideSeries('eds', 'Endpoints'),
            overrideSeries('lds', 'Listeners'),
            overrideSeries('rds', 'Routes'),
            overrideSeries('istio.io/debug', 'Debug'),
            overrideSeries('wads', 'Authorization'),
            overrideSeries('wds', 'Workloads'),
          ]),
      },
    
      heatmap: {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/lds.go

    							HttpFilters: filters,
    							RouteSpecifier: &hcm.HttpConnectionManager_Rds{
    								// TODO: for TCP listeners don't generate RDS, but some indication of cluster name.
    								Rds: &hcm.Rds{
    									ConfigSource: &core.ConfigSource{
    										ConfigSourceSpecifier: &core.ConfigSource_Ads{
    											Ads: &core.AggregatedConfigSource{},
    										},
    									},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/configgen.go

    		watched *model.WatchedResource) ([]*discovery.Resource, []string, model.XdsLogDetails, bool)
    
    	// BuildHTTPRoutes returns the list of HTTP routes for the given proxy. This is the RDS output
    	BuildHTTPRoutes(node *model.Proxy, req *model.PushRequest, routeNames []string) ([]*discovery.Resource, model.XdsLogDetails)
    
    	// BuildNameTable returns list of hostnames and the associated IPs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/crdclient/client_test.go

    	}
    
    	if _, err := store.Create(config.Config{
    		Meta: configMeta,
    		Spec: pb,
    	}); err != nil {
    		t.Fatalf("Create => got %v", err)
    	}
    
    	return pb
    }
    
    // Ensure that the client can run without CRDs present
    func TestClientNoCRDs(t *testing.T) {
    	schema := collection.NewSchemasBuilder().MustAdd(collections.Sidecar).Build()
    	store, _ := makeClient(t, schema, nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. tests/integration/helm/upgrade/util.go

    	_, err := shell.Execute(false, execCmd)
    	if err != nil {
    		ctx.Fatalf("couldn't run kubectl apply on crds folder: %v", err)
    	}
    
    	// Upgrade base chart
    	err = h.UpgradeChart(helmtest.BaseReleaseName, filepath.Join(helmtest.ManifestsChartPath, helmtest.BaseChart),
    		nsConfig.Get(helmtest.BaseReleaseName), overrideValuesFile, helmtest.Timeout, "--skip-crds")
    	if err != nil {
    		ctx.Fatalf("failed to upgrade istio %s chart", helmtest.BaseReleaseName)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top