Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,526 for policyv1 (0.17 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/extended-single-policy-out.yaml

    name: envoy.filters.http.rbac
    typedConfig:
      '@type': type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
      rules:
        policies:
          ns[foo]-policy[httpbin]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - header:
                        name: :authority
                        stringMatch:
                          exact: rule[0]-to[0]-host[1]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/extended-simple-policy-td-aliases-out.yaml

    name: envoy.filters.http.rbac
    typedConfig:
      '@type': type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
      rules:
        policies:
          ns[foo]-policy[httpbin]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - header:
                        name: :method
                        stringMatch:
                          exact: rule[0]-to[0]-method[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/simple-policy-td-aliases-out.yaml

    name: envoy.filters.http.rbac
    typedConfig:
      '@type': type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
      rules:
        policies:
          ns[foo]-policy[httpbin]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - header:
                        name: :method
                        stringMatch:
                          exact: rule[0]-to[0]-method[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. helm/minio/templates/configmap.yaml

      add-user: |-
        {{- include (print $.Template.BasePath "/_helper_create_user.txt") . | nindent 4 }}
      add-policy: |-
        {{- include (print $.Template.BasePath "/_helper_create_policy.txt") . | nindent 4 }}
      {{- range $idx, $policy := .Values.policies }}
      # Policy: {{ $policy.name }}
      policy_{{ $idx }}.json: |-
        {{- include (print $.Template.BasePath "/_helper_policy.tpl") . | nindent 4 }}
      {{ end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. pkg/kubelet/qos/policy.go

    vinay kulkarni <******@****.***> 1678419335 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. helm/minio/templates/_helper_create_policy.txt

      return 0
    }
    
    # checkPolicyExists ($policy)
    # Check if the policy exists, by using the exit code of `mc admin policy info`
    checkPolicyExists() {
      POLICY=$1
      CMD=$(${MC} admin policy info myminio $POLICY > /dev/null 2>&1)
      return $?
    }
    
    # createPolicy($name, $filename)
    createPolicy () {
      NAME=$1
      FILENAME=$2
    
      # Create the name if it does not exist
      echo "Checking policy: $NAME (in /config/$FILENAME.json)"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/simple-policy-principal-with-wildcard-out.yaml

    name: envoy.filters.http.rbac
    typedConfig:
      '@type': type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
      rules:
        policies:
          ns[foo]-policy[httpbin]-rule[0]:
            permissions:
            - andRules:
                rules:
                - any: true
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    	// Relevant policy for this hook.
    	// This field is always populated
    	Policy P
    
    	// Matched Kind for the request given the policy's matchconstraints
    	// May be empty if there was an error matching the resource
    	Kind schema.GroupVersionKind
    
    	// Matched Resource for the request given the policy's matchconstraints
    	// May be empty if there was an error matching the resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/policyattachment_test.go

    		},
    		{
    			name: "gateway API ingress and a selector",
    			policy: &mockPolicyTargetGetter{
    				selector: sampleGatewaySelector,
    			},
    			selection:              sampleGateway,
    			expected:               true,
    			enableSelectorPolicies: true,
    		},
    		{
    			name: "gateway API ingress and a selector (policy attachment only)",
    			policy: &mockPolicyTargetGetter{
    				selector: sampleGatewaySelector,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. pkg/controller/validatingadmissionpolicystatus/controller.go

    	c.policySynced = reg.HasSynced
    	return c, nil
    }
    
    func (c *Controller) enqueuePolicy(policy any) {
    	if policy, ok := policy.(*v1.ValidatingAdmissionPolicy); ok {
    		// policy objects are cluster-scoped, no point include its namespace.
    		key := policy.ObjectMeta.Name
    		if key == "" {
    			utilruntime.HandleError(fmt.Errorf("cannot get name of object %v", policy))
    		}
    		c.policyQueue.Add(key)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top