Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for LocalhostProfile (0.27 sec)

  1. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			podSc:         &v1.PodSecurityContext{SeccompProfile: &v1.SeccompProfile{Type: v1.SeccompProfileTypeLocalhost}},
    			expectedError: "localhostProfile must be set if seccompProfile type is Localhost.",
    		},
    		{
    			description:   "container seccomp profile set to SeccompProfileTypeLocalhost with empty LocalhostProfile returns error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/apparmorprofile.go

    // with apply.
    type AppArmorProfileApplyConfiguration struct {
    	Type             *v1.AppArmorProfileType `json:"type,omitempty"`
    	LocalhostProfile *string                 `json:"localhostProfile,omitempty"`
    }
    
    // AppArmorProfileApplyConfiguration constructs an declarative configuration of the AppArmorProfile type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json

                  "procMount": "procMountValue",
                  "seccompProfile": {
                    "type": "typeValue",
                    "localhostProfile": "localhostProfileValue"
                  },
                  "appArmorProfile": {
                    "type": "typeValue",
                    "localhostProfile": "localhostProfileValue"
                  }
                },
                "stdin": true,
                "stdinOnce": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml

              requests:
                requestsKey: "0"
            restartPolicy: restartPolicyValue
            securityContext:
              allowPrivilegeEscalation: true
              appArmorProfile:
                localhostProfile: localhostProfileValue
                type: typeValue
              capabilities:
                add:
                - addValue
                drop:
                - dropValue
              privileged: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json

                  "procMount": "procMountValue",
                  "seccompProfile": {
                    "type": "typeValue",
                    "localhostProfile": "localhostProfileValue"
                  },
                  "appArmorProfile": {
                    "type": "typeValue",
                    "localhostProfile": "localhostProfileValue"
                  }
                },
                "stdin": true,
                "stdinOnce": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml

              requests:
                requestsKey: "0"
            restartPolicy: restartPolicyValue
            securityContext:
              allowPrivilegeEscalation: true
              appArmorProfile:
                localhostProfile: localhostProfileValue
                type: typeValue
              capabilities:
                add:
                - addValue
                drop:
                - dropValue
              privileged: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json

                  "procMount": "procMountValue",
                  "seccompProfile": {
                    "type": "typeValue",
                    "localhostProfile": "localhostProfileValue"
                  },
                  "appArmorProfile": {
                    "type": "typeValue",
                    "localhostProfile": "localhostProfileValue"
                  }
                },
                "stdin": true,
                "stdinOnce": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodTemplate.json

                "procMount": "procMountValue",
                "seccompProfile": {
                  "type": "typeValue",
                  "localhostProfile": "localhostProfileValue"
                },
                "appArmorProfile": {
                  "type": "typeValue",
                  "localhostProfile": "localhostProfileValue"
                }
              },
              "stdin": true,
              "stdinOnce": true,
              "tty": true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.DaemonSet.yaml

              requests:
                requestsKey: "0"
            restartPolicy: restartPolicyValue
            securityContext:
              allowPrivilegeEscalation: true
              appArmorProfile:
                localhostProfile: localhostProfileValue
                type: typeValue
              capabilities:
                add:
                - addValue
                drop:
                - dropValue
              privileged: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/helpers.go

    	}
    	if scmp.Type == v1.SeccompProfileTypeLocalhost {
    		if scmp.LocalhostProfile != nil && len(*scmp.LocalhostProfile) > 0 {
    			fname := filepath.Join(profileRootPath, *scmp.LocalhostProfile)
    			return &runtimeapi.SecurityProfile{
    				ProfileType:  runtimeapi.SecurityProfile_Localhost,
    				LocalhostRef: fname,
    			}, nil
    		} else {
    			return nil, fmt.Errorf("localhostProfile must be set if seccompProfile type is Localhost.")
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top