Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 120 for registry_ (0.09 sec)

  1. samples/ambient-argo/tag-chart/values.yaml

      # ImagePullSecrets for control plane ServiceAccount, list of secrets in the same namespace
      # to use for pulling any images in pods that reference this ServiceAccount.
      # Must be set for any cluster configured with private docker registry.
      imagePullSecrets: []
    
      # Used to locate istiod.
      istioNamespace: istio-system
    
      istiod:
        enableAnalysis: false
    
      configValidation: true
      externalIstiod: false
      remotePilotAddress: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. pkg/dns/client/dns.go

    		out.Insert(altHost + ".")
    	}
    	return out
    }
    
    // Given a host, this function first decides if the host is part of our service registry.
    // If it is not part of the registry, return nil so that caller queries upstream. If it is part
    // of registry, we will look it up in one of our tables, failing which we will return NXDOMAIN.
    func (table *LookupTable) lookupHost(qtype uint16, hostname string) ([]dns.RR, bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. operator/pkg/validate/common.go

    	// nameComponentRegexp restricts registry path component names to start
    	// with at least one letter or number, with following parts able to be
    	// separated by one period, one or two underscore and multiple dashes.
    	nameComponentRegexp = expression(
    		alphaNumericRegexp,
    		optional(repeated(separatorRegexp, alphaNumericRegexp)))
    
    	// domainComponentRegexp restricts the registry domain component of a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    // XDSUpdater is used for direct updates of the xDS model and incremental push.
    // Pilot uses multiple registries - for example each K8S cluster is a registry
    // instance. Each registry is responsible for tracking a set
    // of endpoints associated with mesh services, and calling the EDSUpdate on changes.
    // A registry may group endpoints for a service in smaller subsets - for example by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/values.yaml

        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. pkg/model/proxy.go

    	// Warning: If this is enabled, ambient may break; use with caution.
    	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)
  7. pkg/kube/controllers/common.go

    					Namespace: obj.GetNamespace(),
    					Name:      ref.Name,
    				})
    			}
    		}
    	}
    	return handler
    }
    
    // EventType represents a registry update event
    type EventType int
    
    const (
    	// EventAdd is sent when an object is added
    	EventAdd EventType = iota
    
    	// EventUpdate is sent when an object is modified
    	// Captures the modified object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/context.go

    	// namespace <podName.namespace>.
    	ID string
    
    	// Locality is the location of where Envoy proxy runs. This is extracted from
    	// the registry where possible. If the registry doesn't provide a locality for the
    	// proxy it will use the one sent via ADS that can be configured in the Envoy bootstrap
    	Locality *core.Locality
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // to use for pulling any images in pods that reference this ServiceAccount.
      // Must be set for any cluster configured with private docker registry.
      repeated string imagePullSecrets = 37;
    
      // Specifies the default namespace for the Istio control plane components.
      string istioNamespace = 14;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    destination rule is exported. items: type: string type: array host: description: The name of a service from the service registry. type: string subsets: description: One or more named sets that represent individual versions of a service. items: properties: labels: additionalProperties: type: string description: Labels apply a filter over the endpoints of a service in the service registry. type: object name: description: Name of the subset. type: string trafficPolicy: description: Traffic policies that...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top