Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 201 for hostNetwork (0.15 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    					Name: containerName,
    				}},
    			},
    			expectedWindowsConfig: nil,
    			expectedError:         fmt.Errorf("hostNetwork is required if Pod contains HostProcess containers"),
    		},
    		{
    			name: "Pod with HostProcess containers and HostNetwork set",
    			podSpec: &v1.PodSpec{
    				HostNetwork: true,
    				SecurityContext: &v1.PodSecurityContext{
    					WindowsOptions: &v1.WindowsSecurityContextOptions{
    						HostProcess: &trueVar,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. pkg/kubelet/network/dns/dns_test.go

    			dnsPolicy:       v1.DNSDefault,
    			expectedDNSType: podDNSHost,
    		},
    		{
    			desc:            "valid DNSDefault with hostnetwork",
    			hostNetwork:     true,
    			dnsPolicy:       v1.DNSDefault,
    			expectedDNSType: podDNSHost,
    		},
    		{
    			desc:            "DNSClusterFirst with hostnetwork, fallback to DNSDefault",
    			hasClusterDNS:   true,
    			hostNetwork:     true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/util/util_test.go

    			},
    			expectedChanged:   true,
    			expectedAttempt:   2,
    			expectedSandboxID: "sandboxID2",
    		},
    		"Pod with ready sandbox status but network namespace mismatch": {
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					HostNetwork: true,
    				},
    			},
    			status: &kubecontainer.PodStatus{
    				SandboxStatuses: []*runtimeapi.PodSandboxStatus{
    					{
    						Id: "sandboxID1",
    						Linux: &runtimeapi.LinuxPodSandboxStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:14:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. pkg/securitycontext/accessors_test.go

    				continue
    			}
    		}
    
    		// HostNetwork
    		{
    			modifiedSC := nonNilSC(tc.newSC())
    			m := NewPodSecurityContextMutator(tc.newSC())
    			modifiedSC.HostNetwork = !modifiedSC.HostNetwork
    			m.SetHostNetwork(!m.HostNetwork())
    			if !reflect.DeepEqual(m.PodSecurityContext(), modifiedSC) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  5. releasenotes/notes/we-memory-leaks.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue: [47893]
    releaseNotes:
      - |
        **Fixed** a memory leak when `hostNetwork` pods scale up and down.
      - |
        **Fixed** a memory leak when `WorkloadEntries` change their IP address.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 21 22:28:50 UTC 2023
    - 325 bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/templates/daemonset.yaml

                type: DirectoryOrCreate # DirectoryOrCreate instead of Directory for the following reason - CNI may not bind mount this until a non-hostnetwork pod is scheduled on the node,
                # and we don't want to block CNI agent pod creation on waiting for the first non-hostnetwork pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. cluster/gce/manifests/konnectivity-server.yaml

    spec:
      securityContext:
        {{ run_as_user }}
        {{ run_as_group }}
        {{ supplemental_groups }}
        seccompProfile:
          type: RuntimeDefault
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      containers:
      - name: konnectivity-server-container
        {{ container_security_context }}:
          {{ disallow_privilege_escalation}}
          {{ capabilities }}
            {{ drop_capabilities }}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. cluster/addons/kube-network-policies/kube-network-policies.yaml

        matchLabels:
          app: kube-network-policies
      template:
        metadata:
          labels:
            tier: node
            app: kube-network-policies
            k8s-app: kube-network-policies
        spec:
          hostNetwork: true
          tolerations:
          - operator: Exists
            effect: NoSchedule
          serviceAccountName: kube-network-policies
          containers:
          - name: kube-network-policies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:27:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// If this option is set, the ports that will be used must be specified.
    	// Default to false.
    	// +k8s:conversion-gen=false
    	// +optional
    	HostNetwork bool `json:"hostNetwork,omitempty" protobuf:"varint,11,opt,name=hostNetwork"`
    	// Use the host's pid namespace.
    	// Optional: Default to false.
    	// +k8s:conversion-gen=false
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. cluster/gce/manifests/kube-addon-manager.yaml

    spec:
      securityContext:
        seccompProfile:
          type: RuntimeDefault
        runAsUser: {{runAsUser}}
        runAsGroup: {{runAsGroup}}
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      containers:
      - name: kube-addon-manager
        securityContext:
          allowPrivilegeEscalation: false
          capabilities:
            drop:
            - all
        # When updating version also bump it in:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 03:09:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top