Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 122 for hostNetwork (0.45 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. 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)
  4. 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)
  5. 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)
  6. pkg/kubelet/container/helpers_test.go

    				Containers: []v1.Container{{
    					Name: containerName,
    					SecurityContext: &v1.SecurityContext{
    						WindowsOptions: &v1.WindowsSecurityContextOptions{
    							HostProcess: &trueVar,
    						},
    					},
    				}},
    			},
    			expectedResult: true,
    		},
    		{
    			name: "pod with hostprocess=false, container with hostprocess=true",
    			podSpec: &v1.PodSpec{
    				HostNetwork: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. cluster/addons/ip-masq-agent/ip-masq-agent.yaml

          k8s-app: ip-masq-agent
      template:
        metadata:
          labels:
            k8s-app: ip-masq-agent
        spec:
          priorityClassName: system-node-critical
          serviceAccountName: ip-masq-agent
          hostNetwork: true
          containers:
          - name: ip-masq-agent
            image: registry.k8s.io/networking/ip-masq-agent-amd64:v2.6.1
            args:
              - --masq-chain=IP-MASQ
              - --nomasq-all-reserved-ranges
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. cluster/gce/manifests/kube-proxy.manifest

    apiVersion: v1
    kind: Pod
    metadata:
      name: kube-proxy
      namespace: kube-system
      labels:
        tier: node
        component: kube-proxy
    spec:
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      tolerations:
      - operator: "Exists"
        effect: "NoExecute"
      - operator: "Exists"
        effect: "NoSchedule"
      containers:
      - name: kube-proxy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/conversion.go

    	if in.SecurityContext != nil {
    		// the host namespace fields have to be handled here for backward compatibility
    		// with v1.0.0
    		out.HostPID = in.SecurityContext.HostPID
    		out.HostNetwork = in.SecurityContext.HostNetwork
    		out.HostIPC = in.SecurityContext.HostIPC
    		out.ShareProcessNamespace = in.SecurityContext.ShareProcessNamespace
    		out.HostUsers = in.SecurityContext.HostUsers
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. cluster/gce/manifests/cloud-controller-manager.manifest

    },
    "spec":{
    "securityContext": {
      {{runAsUser}}
      {{runAsGroup}}
      {{supplementalGroups}}
      "seccompProfile": {
          "type": "RuntimeDefault"
      }
    },
    "priorityClassName": "system-node-critical",
    "hostNetwork": true,
    "containers":[
        {
        "name": "cloud-controller-manager",
        "image": "gcr.io/k8s-staging-cloud-provider-gcp/cloud-controller-manager:v30.0.0",
        "resources": {
          "requests": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 08:50:12 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top