Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for instanceName (0.21 sec)

  1. pkg/bootstrap/platform/gcp_test.go

    			func() (string, error) { return "instanceName", nil },
    			func() (string, error) { return "instance", nil },
    			func() (string, error) { return "instanceTemplate", nil },
    			func() (string, error) { return "createdBy", nil },
    			map[string]string{},
    			map[string]string{
    				GCPProject: "pid", GCPProjectNumber: "npid", GCPLocation: "location", GCPCluster: "cluster", GCEInstance: "instanceName",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. pkg/apis/resource/structured/namedresources/validation/validation.go

    	var allErrs field.ErrorList
    	instanceNames := sets.New[string]()
    	for i, instance := range instances {
    		idxPath := fldPath.Index(i)
    		instanceName := instance.Name
    		allErrs = append(allErrs, validateInstanceName(instanceName, idxPath.Child("name"))...)
    		if instanceNames.Has(instanceName) {
    			allErrs = append(allErrs, field.Duplicate(idxPath.Child("name"), instanceName))
    		} else {
    			instanceNames.Insert(instanceName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/envoyfilter/envoyfilter.go

    		// of the envoy filters has the proxy version set
    		instanceName := ""
    		if patch.Patch.GetValue() != nil {
    			if patch.Patch.Value.GetFields() != nil {
    				tmpValue := patch.Patch.Value.GetFields()
    				tmpName := tmpValue["name"]
    				if tmpName != nil {
    					instanceName = tmpValue["name"].String()
    				} else if patch.GetMatch() != nil {
    					if patch.Match.GetListener() != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    										TlsMinimumProtocolVersion: tls.TlsParameters_TLSv1_1,
    									},
    									TlsCertificateCertificateProviderInstance: &tls.CommonTlsContext_CertificateProviderInstance{
    										InstanceName:    "instance",
    										CertificateName: "certificate",
    									},
    								},
    							}),
    						},
    					},
    				},
    			},
    		},
    		{
    			Name: "outbound|443||cluster2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/types/nodename.go

    //     kubelet will use Hostname as the Node.Name when it creates the Node.
    //
    // * The cloudproviders have the own names: GCE has InstanceName, AWS has InstanceId.
    //
    //	For GCE, InstanceName is the Name of an Instance object in the GCE API.  On GCE, Instance.Name becomes the
    //	Hostname, and thus it makes sense also to use it as the Node.Name.  But that is GCE specific, and it is up
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/grpcgen/grpcgen.go

    			InstanceName:    "default",
    			CertificateName: "default",
    		},
    		ValidationContextType: &tls.CommonTlsContext_CombinedValidationContext{
    			CombinedValidationContext: &tls.CommonTlsContext_CombinedCertificateValidationContext{
    				ValidationContextCertificateProviderInstance: &tls.CommonTlsContext_CertificateProviderInstance{
    					InstanceName:    "default",
    					CertificateName: "ROOTCA",
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. pkg/model/proxy.go

    // are consumed by Envoy itself, such as the telemetry filters.
    type BootstrapNodeMetadata struct {
    	NodeMetadata
    
    	// InstanceName is the short name for the workload instance (ex: pod name)
    	// replaces POD_NAME
    	InstanceName string `json:"NAME,omitempty"`
    
    	// Owner specifies the workload owner (opaque string). Typically, this is the owning controller of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	instanceName := "setup-instance"
    	instance := &unstructured.Unstructured{
    		Object: map[string]interface{}{
    			"apiVersion": crd.Spec.Group + "/" + versions[0],
    			"kind":       crd.Spec.Names.Kind,
    			"metadata": map[string]interface{}{
    				"namespace": ns,
    				"name":      instanceName,
    			},
    			"alpha":   "foo_123",
    			"beta":    10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  9. pkg/bootstrap/platform/gcp.go

    	shouldFillMetadata = func() bool {
    		return metadata.OnGCE() && isMetadataEndpointAccessible()
    	}
    	projectIDFn        = metadata.ProjectID
    	numericProjectIDFn = metadata.NumericProjectID
    	instanceNameFn     = metadata.InstanceName
    	instanceIDFn       = metadata.InstanceID
    
    	clusterNameFn = func() (string, error) {
    		cn, err := metadata.InstanceAttributeValue("cluster-name")
    		if err != nil {
    			return "", err
    		}
    		return cn, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. pkg/bootstrap/config.go

    		switch name {
    		case "ISTIO_METAJSON_LABELS":
    			m := jsonStringToMap(val)
    			if len(m) > 0 {
    				meta.Labels = m
    				meta.StaticLabels = m
    			}
    		case "POD_NAME":
    			meta.InstanceName = val
    		case "POD_NAMESPACE":
    			meta.Namespace = val
    		case "SERVICE_ACCOUNT":
    			meta.ServiceAccount = val
    		}
    	}
    	if plat != nil && len(plat.Metadata()) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top