Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 228 for hostNetwork (0.51 sec)

  1. pkg/securitycontext/accessors.go

    		w.podSC = &api.PodSecurityContext{}
    	}
    }
    
    func (w *podSecurityContextWrapper) HostNetwork() bool {
    	if w.podSC == nil {
    		return false
    	}
    	return w.podSC.HostNetwork
    }
    func (w *podSecurityContextWrapper) SetHostNetwork(v bool) {
    	if w.podSC == nil && v == false {
    		return
    	}
    	w.ensurePodSC()
    	w.podSC.HostNetwork = v
    }
    func (w *podSecurityContextWrapper) HostPID() bool {
    	if w.podSC == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. cluster/addons/kube-proxy/kube-proxy-ds.yaml

        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: 10%
      template:
        metadata:
          labels:
            k8s-app: kube-proxy
        spec:
          priorityClassName: system-node-critical
          hostNetwork: true
          nodeSelector:
            kubernetes.io/os: linux
            node.kubernetes.io/kube-proxy-ds-ready: "true"
          tolerations:
          - operator: "Exists"
            effect: "NoExecute"
          - operator: "Exists"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 01:01:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. 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)
  7. cluster/gce/manifests/kube-apiserver.manifest

        {{runAsUser}}
        {{runAsGroup}}
        {{supplementalGroups}}
        "seccompProfile": {
            "type": "RuntimeDefault"
        }
    },
    "priorityClassName": "system-node-critical",
    "priority": 2000001000,
    "hostNetwork": true,
    "containers":[
        {
        "name": "kube-apiserver",
        {{containerSecurityContext}}
        "image": "{{pillar['kube_docker_registry']}}/kube-apiserver-amd64:{{pillar['kube-apiserver_docker_tag']}}",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  8. 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)
  9. cluster/gce/manifests/kube-controller-manager.manifest

    "securityContext": {
      {{runAsUser}}
      {{runAsGroup}}
      {{supplementalGroups}}
      "seccompProfile": {
          "type": "RuntimeDefault"
      }
    },
    "priorityClassName": "system-node-critical",
    "priority": 2000001000,
    "hostNetwork": true,
    "containers":[
        {
        "name": "kube-controller-manager",
        "securityContext": {
          "allowPrivilegeEscalation": false,
          "capabilities": {
            "drop": [
              "all"
            ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 10 20:49:36 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  10. 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)
Back to top