Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 192 for hostNetwork (0.23 sec)

  1. cluster/gce/manifests/cluster-autoscaler.manifest

                {{runAsUser}}
                {{runAsGroup}}
                {{supplementalGroups}}
                "seccompProfile": {
                    "type": "RuntimeDefault"
                }
            },
            "hostNetwork": true,
            "containers": [
                {
                    "name": "cluster-autoscaler",
                    "image": "registry.k8s.io/autoscaling/cluster-autoscaler:v1.26.1",
                    "livenessProbe": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:04:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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/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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. cluster/addons/dns/nodelocaldns/nodelocaldns.yaml

          annotations:
            prometheus.io/port: "9253"
            prometheus.io/scrape: "true"
        spec:
          priorityClassName: system-node-critical
          serviceAccountName: node-local-dns
          hostNetwork: true
          dnsPolicy: Default  # Don't use cluster DNS.
          tolerations:
          - key: "CriticalAddonsOnly"
            operator: "Exists"
          - effect: "NoExecute"
            operator: "Exists"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top