Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for WorkloadGroup (0.27 sec)

  1. pkg/istio-agent/xds_proxy_test.go

    	if _, err := f.Store().Create(config.Config{
    		Meta: config.Meta{
    			Name:             "group",
    			Namespace:        "default",
    			GroupVersionKind: gvk.WorkloadGroup,
    		},
    		Spec: &networking.WorkloadGroup{
    			Template: &networking.WorkloadEntry{},
    		},
    	}); err != nil {
    		t.Fatal(err)
    	}
    	setDialOptions(proxy, f.BufListener)
    	conn := setupDownstreamConnection(t, proxy)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/eds.go

    }
    
    var _ model.XdsDeltaResourceGenerator = &EdsGenerator{}
    
    // Map of all configs that do not impact EDS
    var skippedEdsConfigs = sets.New(
    	kind.Gateway,
    	kind.VirtualService,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.DNSName,
    
    	kind.KubernetesGateway,
    	kind.HTTPRoute,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    		name    string
    		in      proto.Message
    		valid   bool
    		warning bool
    	}{
    		{
    			name:  "valid",
    			in:    &networking.WorkloadGroup{Template: &networking.WorkloadEntry{}},
    			valid: true,
    		},
    		{
    			name: "invalid",
    			in: &networking.WorkloadGroup{Template: &networking.WorkloadEntry{}, Metadata: &networking.WorkloadGroup_ObjectMeta{Labels: map[string]string{
    				".": "~",
    			}}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. pilot/pkg/features/pilot.go

    	WorkloadEntryHealthChecks = env.Register("PILOT_ENABLE_WORKLOAD_ENTRY_HEALTHCHECKS", true,
    		"Enables automatic health checks of WorkloadEntries based on the config provided in the associated WorkloadGroup").Get()
    
    	WorkloadEntryCrossCluster = env.Register("PILOT_ENABLE_CROSS_CLUSTER_WORKLOAD_ENTRY", true,
    		"If enabled, pilot will read WorkloadEntry from other clusters, selectable by Services in that cluster.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/model/proxy.go

    	DisableHBONESend StringBool `json:"DISABLE_HBONE_SEND,omitempty"`
    
    	// AutoRegister will enable auto registration of the connected endpoint to the service registry using the given WorkloadGroup name
    	AutoRegisterGroup string `json:"AUTO_REGISTER_GROUP,omitempty"`
    
    	// WorkloadEntry specifies the name of the WorkloadEntry this proxy corresponds to.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server.go

    			if schema.GroupVersionKind() == gvk.ServiceEntry {
    				continue
    			}
    			if schema.GroupVersionKind() == gvk.WorkloadEntry {
    				continue
    			}
    			if schema.GroupVersionKind() == gvk.WorkloadGroup {
    				continue
    			}
    
    			s.configController.RegisterEventHandler(schema.GroupVersionKind(), configHandler)
    		}
    		if s.environment.GatewayAPIController != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

    spec:
      group: networking.istio.io
      names:
        categories:
        - istio-io
        - networking-istio-io
        kind: WorkloadGroup
        listKind: WorkloadGroupList
        plural: workloadgroups
        shortNames:
        - wg
        singular: workloadgroup
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. manifests/charts/base/crds/crd-all.gen.yaml

    spec:
      group: networking.istio.io
      names:
        categories:
        - istio-io
        - networking-istio-io
        kind: WorkloadGroup
        listKind: WorkloadGroupList
        plural: workloadgroups
        shortNames:
        - wg
        singular: workloadgroup
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    // ValidateWorkloadGroup validates a workload group.
    var ValidateWorkloadGroup = RegisterValidateFunc("ValidateWorkloadGroup",
    	func(cfg config.Config) (warnings Warning, errs error) {
    		wg, ok := cfg.Spec.(*networking.WorkloadGroup)
    		if !ok {
    			return nil, fmt.Errorf("cannot cast to workload entry")
    		}
    
    		if wg.Template == nil {
    			return nil, fmt.Errorf("template is required")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top