Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 212 for hostNetwork (0.34 sec)

  1. 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)
  2. cluster/addons/metadata-proxy/gce/metadata-proxy.yaml

            k8s-app: metadata-proxy
            kubernetes.io/cluster-service: "true"
            version: v0.1
        spec:
          priorityClassName: system-node-critical
          serviceAccountName: metadata-proxy
          hostNetwork: true
          dnsPolicy: Default
          tolerations:
          - operator: "Exists"
            effect: "NoExecute"
          - operator: "Exists"
            effect: "NoSchedule"
          containers:
          - name: metadata-proxy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podspec.go

    	return b
    }
    
    // WithHostNetwork sets the HostNetwork field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the HostNetwork field is set to the value of the last call.
    func (b *PodSpecApplyConfiguration) WithHostNetwork(value bool) *PodSpecApplyConfiguration {
    	b.HostNetwork = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:22:42 UTC 2022
    - 23.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/example/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.1K bytes
    - Viewed (0)
  5. cluster/gce/manifests/glbc.manifest

        kubernetes.io/name: "GLBC"
    spec:
      securityContext:
        seccompProfile:
          type: RuntimeDefault
      priorityClassName: system-node-critical
      priority: 2000001000
      terminationGracePeriodSeconds: 600
      hostNetwork: true
      containers:
      - image: gcr.io/k8s-ingress-image-push/ingress-gce-glbc-amd64:v1.23.1
        livenessProbe:
          httpGet:
            path: /healthz
            port: 8086
            scheme: HTTP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 10:40:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. 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)
  7. pkg/proxy/nftables/README.md

    the kernel netfilter subsystem.
    
    ## General theory of netfilter
    
    Packet flow through netfilter looks something like:
    
    ```text
                 +================+      +=====================+
                 | hostNetwork IP |      | hostNetwork process |
                 +================+      +=====================+
                             ^                |
      -  -  -  -  -  -  -  - | -  -  -  -  - [*] -  -  -  -  -  -  -  -  -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    		tracker := &basicPodStartupLatencyTracker{
    			pods:  map[types.UID]*perPodState{},
    			clock: fakeClock,
    		}
    
    		// hostNetwork pods should not be tracked
    		hostNetworkPodInitializing := buildInitializingPod()
    		hostNetworkPodInitializing.UID = "11111-22222"
    		hostNetworkPodInitializing.Spec.HostNetwork = true
    		tracker.ObservedPodOnWatch(hostNetworkPodInitializing, frozenTime)
    
    		hostNetworkPodStarted := buildRunningPod()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. cluster/gce/manifests/etcd.manifest

      "namespace": "kube-system"
    },
    "spec":{
    "securityContext": {
        "seccompProfile": {
            "type": "RuntimeDefault"
        }
    },
    "priorityClassName": "system-node-critical",
    "priority": 2000001000,
    "hostNetwork": true,
    "containers":[
        {
        "name": "etcd-container",
        {{security_context}}
        "image": "{{ pillar.get('etcd_docker_repository', 'registry.k8s.io/etcd') }}:{{ pillar.get('etcd_docker_tag', '3.5.14-0') }}",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_linux_test.go

    		},
    	}
    
    	for name, tc := range testCases {
    		t.Run(name, func(t *testing.T) {
    			fhu := hostutil.NewFakeHostUtil(nil)
    			fsp := &subpath.FakeSubpath{}
    			pod := v1.Pod{
    				Spec: v1.PodSpec{
    					HostNetwork: true,
    				},
    			}
    
    			mounts, _, err := makeMounts(&pod, "/pod", &tc.container, "fakepodname", "", []string{""}, tc.podVolumes, fhu, fsp, nil, tc.supportsRRO)
    
    			// validate only the error if we expect an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top