Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for AsSelector (0.33 sec)

  1. pkg/config/analysis/analyzers/testdata/destinationrule-simple-destination-credentialname-selector.yaml

    Leonardo Sarra <******@****.***> 1718349751 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 271 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname-selector.yaml

    Leonardo Sarra <******@****.***> 1718349751 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 342 bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
     name: default
    spec:
     selector:
       matchLabels:
         app: foo
     mtls:
       mode: STRICT
    ---`
    	paDisable := `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
     name: default
    spec:
     selector:
       matchLabels:
         app: foo
     mtls:
       mode: DISABLE
    ---`
    	paPermissive := `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. releasenotes/notes/ambient-ns-policy.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue: [51556]
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 195 bytes
    - Viewed (0)
  5. pilot/pkg/model/destination_rule.go

    				// if the selectors do not match
    				continue
    			}
    			// If both the destination rules are without a workload selector or with matching workload selectors, simply merge them.
    			// If the incoming rule has a workload selector, it has to be merged with the existing rules with workload selector, and
    			// at the same time added as a unique entry in the processedDestRules.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/accesslog_test.go

    	configStore.Create(config.Config{
    		Meta: config.Meta{
    			Name:             "test",
    			Namespace:        "default",
    			GroupVersionKind: gvk.Telemetry,
    		},
    		Spec: &tpb.Telemetry{
    			Selector: &v1beta1.WorkloadSelector{
    				MatchLabels: map[string]string{
    					"app": "test",
    				},
    			},
    			AccessLogging: []*tpb.AccessLogging{
    				{
    					Providers: []*tpb.ProviderRef{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/deprecation.yaml"},
    		analyzer:   &deprecation.FieldAnalyzer{},
    		expected: []message{
    			{msg.Deprecated, "VirtualService foo/productpage"},
    			{msg.Deprecated, "Sidecar default/no-selector"},
    		},
    	},
    	{
    		name:       "externalControlPlaneMissingWebhooks",
    		inputFiles: []string{"testdata/externalcontrolplane-missing-urls.yaml"},
    		analyzer:   &externalcontrolplane.ExternalControlPlaneAnalyzer{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. manifests/charts/gateway/templates/deployment.yaml

      annotations:
        {{- .Values.annotations | toYaml | nindent 4 }}
    spec:
      {{- if not .Values.autoscaling.enabled }}
      {{- with .Values.replicaCount }}
      replicas: {{ . }}
      {{- end }}
      {{- end }}
      selector:
        matchLabels:
          {{- include "gateway.selectorLabels" . | nindent 6 }}
      template:
        metadata:
          {{- with .Values.podAnnotations }}
          annotations:
            {{- toYaml . | nindent 8 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		pol := a.(*securityclient.PeerAuthentication)
    		if pol.Namespace == meshCfg.GetRootNamespace() && pol.Spec.Selector == nil {
    			return true
    		}
    		if pol.Namespace != ns {
    			return false
    		}
    		sel := pol.Spec.Selector
    		if sel == nil {
    			return true // No selector matches everything
    		}
    		return labels.Instance(sel.MatchLabels).SubsetOf(matchLabels)
    	}))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    	if routes == nil || routes.Namespaces == nil || routes.Namespaces.Selector == nil {
    		return nil
    	}
    	res := []string{}
    	for k := range routes.Namespaces.Selector.MatchLabels {
    		res = append(res, k)
    	}
    	for _, me := range routes.Namespaces.Selector.MatchExpressions {
    		if me.Operator == metav1.LabelSelectorOpNotIn || me.Operator == metav1.LabelSelectorOpDoesNotExist {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top