Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for SeccompProfile (0.28 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.SeccompProfile)(nil), (*core.SeccompProfile)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_SeccompProfile_To_core_SeccompProfile(a.(*v1.SeccompProfile), b.(*core.SeccompProfile), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.SeccompProfile)(nil), (*v1.SeccompProfile)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    			err := validateSeccompAnnotationsAndFieldsMatch(annotation, podSpec.SecurityContext.SeccompProfile, seccompPath)
    			if err != nil {
    				allErrs = append(allErrs, err)
    			}
    		}
    	}
    
    	podshelper.VisitContainersWithPath(podSpec, specPath, func(c *core.Container, cFldPath *field.Path) bool {
    		var field *core.SeccompProfile
    		if c.SecurityContext != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	Privileged *wrapperspb.BoolValue `protobuf:"bytes,18,opt,name=privileged,proto3" json:"privileged,omitempty"`
    	// The Container seccompProfile
    	//
    	// See: https://kubernetes.io/docs/tutorials/security/seccomp/
    	SeccompProfile *v1.SeccompProfile `protobuf:"bytes,19,opt,name=seccompProfile,proto3" json:"seccompProfile,omitempty"`
    	// Configuration for Istio Ambient.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// The seccomp options to use by the containers in this pod.
    	// Note that this field cannot be set when spec.os.name is windows.
    	// +optional
    	SeccompProfile *SeccompProfile `json:"seccompProfile,omitempty" protobuf:"bytes,10,opt,name=seccompProfile"`
    	// appArmorProfile is the AppArmor options to use by the containers in this pod.
    	// Note that this field cannot be set when spec.os.name is windows.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      optional string fsGroupChangePolicy = 9;
    
      // The seccomp options to use by the containers in this pod.
      // Note that this field cannot be set when spec.os.name is windows.
      // +optional
      optional SeccompProfile seccompProfile = 10;
    }
    
    // Describes the class of pods that should avoid this node.
    // Exactly one field should be set.
    message PodSignature {
      // Reference to controller whose pods should avoid this node.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// Note that this field cannot be set when spec.os.name is windows.
    	// +optional
    	SeccompProfile *SeccompProfile
    	// appArmorProfile is the AppArmor options to use by the containers in this pod.
    	// Note that this field cannot be set when spec.os.name is windows.
    	// +optional
    	AppArmorProfile *AppArmorProfile
    }
    
    // SeccompProfile defines a pod/container's seccomp profile settings.
    // Only one profile source may be set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      optional string fsGroupChangePolicy = 9;
    
      // The seccomp options to use by the containers in this pod.
      // Note that this field cannot be set when spec.os.name is windows.
      // +optional
      optional SeccompProfile seccompProfile = 10;
    
      // appArmorProfile is the AppArmor options to use by the containers in this pod.
      // Note that this field cannot be set when spec.os.name is windows.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"seccompProfile":           "The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "seccompProfile": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.SeccompProfile"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - The `SecurityContextDeny` admission plugin is going deprecated and will be removed in future versions....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top