Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for unconfined (0.2 sec)

  1. pkg/apis/core/validation/validation_test.go

    				},
    			},
    			Spec: validPodSpec(nil),
    		},
    		"unconfined seccomp profile": {
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "123",
    				Namespace: "ns",
    				Annotations: map[string]string{
    					core.SeccompPodAnnotationKey: "unconfined",
    				},
    			},
    			Spec: validPodSpec(nil),
    		},
    		"localhost seccomp profile": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    // SeccompProfileType defines the supported seccomp profile types.
    type SeccompProfileType string
    
    const (
    	// SeccompProfileTypeUnconfined is when no seccomp profile is applied (A.K.A. unconfined).
    	SeccompProfileTypeUnconfined SeccompProfileType = "Unconfined"
    	// SeccompProfileTypeRuntimeDefault represents the default container runtime seccomp profile.
    	SeccompProfileTypeRuntimeDefault SeccompProfileType = "RuntimeDefault"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    // +enum
    type SeccompProfileType string
    
    const (
    	// SeccompProfileTypeUnconfined indicates no seccomp profile is applied (A.K.A. unconfined).
    	SeccompProfileTypeUnconfined SeccompProfileType = "Unconfined"
    	// SeccompProfileTypeRuntimeDefault represents the default container runtime seccomp profile.
    	SeccompProfileTypeRuntimeDefault SeccompProfileType = "RuntimeDefault"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"type":             "type indicates which kind of AppArmor profile will be applied. Valid options are:\n  Localhost - a profile pre-loaded on the node.\n  RuntimeDefault - the container runtime's default profile.\n  Unconfined - no AppArmor enforcement.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. pkg/util/tolerations/tolerations_test.go

    					require.True(t, isContained(tol, whitelist), debugMsg(input, whitelist))
    				}
    			} else {
    				uncontained := false
    				for _, tol := range input {
    					if !isContained(tol, whitelist) {
    						uncontained = true
    						break
    					}
    				}
    				require.True(t, uncontained, debugMsg(input, whitelist))
    			}
    		}
    	})
    
    	t.Run("MergeTolerations", func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 26 22:25:49 UTC 2019
    - 11.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.9.md

    *   You can now disable AppArmor by setting the AppArmor profile to unconfined. ([#52395](https://github.com/kubernetes/kubernetes/pull/52395),[ @dixudx](https://github.com/dixudx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // type indicates which kind of AppArmor profile will be applied.
      // Valid options are:
      //   Localhost - a profile pre-loaded on the node.
      //   RuntimeDefault - the container runtime's default profile.
      //   Unconfined - no AppArmor enforcement.
      // +unionDiscriminator
      optional string type = 1;
    
      // localhostProfile indicates a profile loaded on the node that should be used.
      // The profile must be preconfigured on the node to work.
    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. okhttp/src/main/kotlin/okhttp3/internal/connection/RoutePlanner.kt

     *
     * It is possible to cancel the finding process by canceling its call.
     *
     * Implementations of this interface are not thread-safe. Each instance is thread-confined to the
     * thread executing the call.
     */
    interface RoutePlanner {
      val address: Address
    
      /** Follow-ups for failed plans and plans that lost a race. */
      val deferredPlans: ArrayDeque<Plan>
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    				return model.DiscoverableFromSameCluster
    			}
    		} else {
    			// MCS cluster.local mode is not enabled, so requests to the cluster.local host are not confined
    			// to the same cluster. Use the same discoverability policy as for clusterset.local.
    			ec.clusterLocalPolicySelector = ec.clusterSetLocalPolicySelector
    		}
    
    		return ec
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "type indicates which kind of AppArmor profile will be applied. Valid options are:\n  Localhost - a profile pre-loaded on the node.\n  RuntimeDefault - the container runtime's default profile.\n  Unconfined - no AppArmor enforcement.",
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object",
            "x-kubernetes-unions": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top