Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for host_2 (0.42 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                - name: SERVICE_ACCOUNT
                  valueFrom:
                    fieldRef:
                      fieldPath: spec.serviceAccountName
                - name: HOST_IP
                  valueFrom:
                    fieldRef:
                      fieldPath: status.hostIP
                - name: ISTIO_CPU_LIMIT
                  valueFrom:
                    resourceFieldRef:
                      resource: limits.cpu
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    						utilnet.IPFamilyOfString(s.HostIP), s.HostIP, utilnet.IPFamilyOf(hostIPs[0]), hostIPs[0].String())
    				}
    			}
    			s.HostIP = hostIPs[0].String()
    			if utilfeature.DefaultFeatureGate.Enabled(features.PodHostIPs) {
    				s.HostIPs = []v1.HostIP{{IP: s.HostIP}}
    				if len(hostIPs) == 2 {
    					s.HostIPs = append(s.HostIPs, v1.HostIP{IP: hostIPs[1].String()})
    				}
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/hosted-git-info": {
          "version": "4.1.0",
          "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz",
          "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier_test.go

    				{"10.0.1.1", testHostname},
    				{"10.0.1.2", "host1"},
    				{"10.0.1.3", "host2"},
    			},
    		},
    		{
    			name:                  "internalTrafficPolicy is set and there are no local endpoints",
    			internalTrafficPolicy: ptr.To(v1.ServiceInternalTrafficPolicyLocal),
    			endpoints: []endpoint{
    				{"10.0.1.1", "host0"},
    				{"10.0.1.2", "host1"},
    				{"10.0.1.3", "host2"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier_test.go

    				{"10.0.1.1", testHostname},
    				{"10.0.1.2", "host1"},
    				{"10.0.1.3", "host2"},
    			},
    		},
    		{
    			name:                  "internalTrafficPolicy is set and there are no local endpoints",
    			internalTrafficPolicy: ptr.To(v1.ServiceInternalTrafficPolicyLocal),
    			endpoints: []endpoint{
    				{"10.0.1.1", "host0"},
    				{"10.0.1.2", "host1"},
    				{"10.0.1.3", "host2"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    			hostAliases:   []v1.HostAlias{},
    			rawHostsFileContent: `# hosts file for testing.
    127.0.0.1	localhost
    ::1	localhost ip6-localhost ip6-loopback
    fe00::0	ip6-localnet
    fe00::0	ip6-mcastprefix
    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    123.45.67.89	some.domain
    `,
    			expectedHostsFileContent: `# Kubernetes-managed hosts file (host network).
    # hosts file for testing.
    127.0.0.1	localhost
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    				t.Errorf("dropDisabledStatusFields() = %v, want %v", tt.podStatus, tt.wantPodStatus)
    			}
    		})
    	}
    }
    
    func makeHostIPs(ips ...string) []api.HostIP {
    	ret := []api.HostIP{}
    	for _, ip := range ips {
    		ret = append(ret, api.HostIP{IP: ip})
    	}
    	return ret
    }
    
    func TestDropNodeInclusionPolicyFields(t *testing.T) {
    	ignore := api.NodeInclusionPolicyIgnore
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. pkg/apis/core/zz_generated.deepcopy.go

    func (in *HostIP) DeepCopyInto(out *HostIP) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostIP.
    func (in *HostIP) DeepCopy() *HostIP {
    	if in == nil {
    		return nil
    	}
    	out := new(HostIP)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *HostIP) DeepCopyInto(out *HostIP) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostIP.
    func (in *HostIP) DeepCopy() *HostIP {
    	if in == nil {
    		return nil
    	}
    	out := new(HostIP)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

    import time
    import sys
    
    timeout_sec=300
    
    def resolve(host):
      for attempt in range(timeout_sec):
        try:
          print(socket.gethostbyname(host))
          break
        except Exception as e:
          sys.stderr.write("error: resolving host %s to IP failed: %s\n" % (host, e))
          time.sleep(1)
          continue
    
    '
    
      local -r host_ip=$(python3 -c "${resolve_host_script_py}"$'\n'"resolve(\"${host_name}\")")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top