Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for WorkloadSelector (0.26 sec)

  1. tests/integration/telemetry/policy/testdata/enable_envoy_ratelimit.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-ratelimit
      namespace: istio-system
    spec:
      workloadSelector:
        labels:
          app: clt
      configPatches:
        # The Envoy config you want to modify
        - applyTo: HTTP_FILTER
          match:
            context: SIDECAR_OUTBOUND
            listener:
              filterChain:
                filter:
                  name: "envoy.filters.network.http_connection_manager"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/envoy-filter-replace-operation.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-replace-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews1
      priority: 10
      configPatches:
      - applyTo: CLUSTER
        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: REPLACE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-relative-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews1
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

      namespace: ns1
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: has-selector
      namespace: ns1
    spec:
      workloadSelector: # Since this has a workload selector, it shouldn't conflict with the other Sidecar in the namespace
        labels:
          app: foo
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. releasenotes/notes/51568.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl  
    issue:
    - 51567
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 194 bytes
    - Viewed (0)
  6. releasenotes/notes/destination-rule-workload-selector.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Added** Support for WorkloadSelector in DestinationRule.
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 29 14:16:21 UTC 2022
    - 234 bytes
    - Viewed (0)
  7. releasenotes/notes/25678.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 25678
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 224 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname-selector.yaml

    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: SIMPLE
              credentialName: db-credential
      workloadSelector:
          matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 342 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/util/find_errorline_utils_test.go

    	"{.spec.http[0].match[0].test.regex}":                           1,
    	"{.spec.http[0].match[0].test.test.regex}":                      1,
    	"{.spec.http[0].corsPolicy.allowOrigins[0].regex}":              1,
    	"{.spec.workloadSelector.labels.test}":                          1,
    	"{.spec.ports[0].port}":                                         1,
    	"{.spec.containers[0].image}":                                   1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/conversion.go

    		//  alpha.istio.io/kubernetes-serviceaccounts.
    		SubjectAltNames: svc.ServiceAccounts,
    	}
    
    	if len(svc.Attributes.LabelSelectors) > 0 {
    		se.WorkloadSelector = &networking.WorkloadSelector{Labels: svc.Attributes.LabelSelectors}
    	}
    
    	// Based on networking.istio.io/exportTo annotation
    	for k := range svc.Attributes.ExportTo {
    		// k is Private or Public
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top