Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for instanceName (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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