Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for HostAliases (0.29 sec)

  1. pkg/kubelet/kubelet_pods.go

    		}
    	}
    	buffer.Write(hostsEntriesFromHostAliases(hostAliases))
    	return buffer.Bytes()
    }
    
    func hostsEntriesFromHostAliases(hostAliases []v1.HostAlias) []byte {
    	if len(hostAliases) == 0 {
    		return []byte{}
    	}
    
    	var buffer bytes.Buffer
    	buffer.WriteString("\n")
    	buffer.WriteString("# Entries added by HostAliases.\n")
    	// for each IP, write all aliases onto single line in hosts file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    func TestNodeHostsFileContent(t *testing.T) {
    	testCases := []struct {
    		hostsFileName            string
    		hostAliases              []v1.HostAlias
    		rawHostsFileContent      string
    		expectedHostsFileContent string
    	}{
    		{
    			hostsFileName: "hosts_test_file1",
    			hostAliases:   []v1.HostAlias{},
    			rawHostsFileContent: `# hosts file for testing.
    127.0.0.1	localhost
    ::1	localhost ip6-localhost ip6-loopback
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    		in, out := &in.Tolerations, &out.Tolerations
    		*out = make([]Toleration, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.HostAliases != nil {
    		in, out := &in.HostAliases, &out.HostAliases
    		*out = make([]HostAlias, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.Priority != nil {
    		in, out := &in.Priority, &out.Priority
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		in, out := &in.Tolerations, &out.Tolerations
    		*out = make([]Toleration, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.HostAliases != nil {
    		in, out := &in.HostAliases, &out.HostAliases
    		*out = make([]HostAlias, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.Priority != nil {
    		in, out := &in.Priority, &out.Priority
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              },
              "type": "array",
              "x-kubernetes-patch-merge-key": "name",
              "x-kubernetes-patch-strategy": "merge"
            },
            "hostAliases": {
              "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.",
              "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top