Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for instanceName (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. samples/addons/kiali.yaml

          image_pull_secrets: []
          image_version: v1.85
          ingress:
            additional_labels: {}
            class_name: nginx
            override_yaml:
              metadata: {}
          ingress_enabled: false
          instance_name: kiali
          logger:
            log_format: text
            log_level: info
            sampler_rate: "1"
            time_field_format: 2006-01-02T15:04:05Z07:00
          namespace: istio-system
          node_selector: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      # otherwise kubelet and kube-proxy will not be able to run properly.
      $instance_name = "$(Get-InstanceMetadata 'name' | Out-String)"
      $default_kubelet_args = @(`
          "--pod-infra-container-image=${env:INFRA_CONTAINER}",
          "--hostname-override=${instance_name}"
      )
    
      $kubelet_args = ${default_kubelet_args} + ${kubelet_args}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top