Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for WorkloadGroup (0.44 sec)

  1. 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)
  2. 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)
  3. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.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:
        - description: 'CreationTimestamp is a timestamp representing the server time
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    labels: app: istio-pilot chart: istio heritage: Tiller release: istio name: workloadgroups.networking.istio.io 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: - additionalPrinterCol: - description: 'CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. 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