Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for rulesv4 (0.1 sec)

  1. staging/publishing/rules.yaml

    rules:
    - destination: apimachinery
      branches:
      - name: master
        source:
          branch: master
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.27
        go: 1.21.11
        source:
          branch: release-1.27
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.28
        go: 1.21.11
        source:
          branch: release-1.28
          dirs:
          - staging/src/k8s.io/apimachinery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	proxier.mu.Lock()
    	defer proxier.mu.Unlock()
    
    	// don't sync rules till we've received services and endpoints
    	if !proxier.isInitialized() {
    		proxier.logger.V(2).Info("Not syncing nftables until Services and Endpoints have been received from master")
    		return
    	}
    
    	//
    	// Below this point we will not return until we try to write the nftables rules.
    	//
    
    	// Keep track of how long syncs take.
    	start := time.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    			}{
    				{
    					name:  "allow",
    					check: check.OK(),
    					spec: `
      rules:
      - from:
        - source:
            principals: ["cluster.local/ns/{{.Namespace}}/sa/{{.Source}}", "cluster.local/ns/{{.Namespace}}/sa/{{.WaypointName}}"]
    `,
    				},
    				{
    					name:  "not allow",
    					check: CheckDeny,
    					spec: `
      rules:
      - from:
        - source:
            principals: ["cluster.local/ns/something/sa/else"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    		})
    	}
    
    	type conversionResult struct {
    		error  *ConfigError
    		routes []*istio.HTTPRoute
    	}
    	convertRules := func(mesh bool) conversionResult {
    		res := conversionResult{}
    		for n, r := range route.Rules {
    			// split the rule to make sure each rule has up to one match
    			matches := slices.Reference(r.Matches)
    			if len(matches) == 0 {
    				matches = append(matches, nil)
    			}
    			for _, m := range matches {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

    {{- range $val := .GwMatches }}
      - group: ""
        kind: Service
        name: "{{$val.Name}}"
        namespace: "{{$val.Namespace}}"
    {{ with $.PortMatch }}
        port: {{.}}
    {{ end }}
    {{ end }}
      rules:
      - backendRefs:
        - kind: Hostname
          group: networking.istio.io
          name: {{.Dest}}
          port: {{.Port | default 80}}
    `, args)
    	case "virtualservice":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    			return objInfo, err
    		}
    		replcfg, err = getReplicationConfig(ctx, bucket)
    		if err != nil {
    			return objInfo, err
    		}
    	}
    
    	// expiration attempted on a bucket with no lifecycle
    	// rules shall be rejected.
    	if lc == nil && opts.Expiration.Expire {
    		if opts.VersionID != "" {
    			return objInfo, VersionNotFound{
    				Bucket:    bucket,
    				Object:    object,
    				VersionID: opts.VersionID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_test.go

    	},
    	{
    		Meta: config.Meta{Name: uuid.NewString(), Namespace: "istio-system", GroupVersionKind: gvk.AuthorizationPolicy},
    		Spec: &security.AuthorizationPolicy{
    			Selector:     nil,
    			TargetRef:    nil,
    			Rules:        nil,
    			Action:       security.AuthorizationPolicy_CUSTOM,
    			ActionDetail: &security.AuthorizationPolicy_Provider{Provider: &security.AuthorizationPolicy_ExtensionProvider{Name: "extauthz"}},
    		},
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top