Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 727 for v1alpha3 (0.13 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/services_test.go

    package ambient
    
    import (
    	"net/netip"
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	networking "istio.io/api/networking/v1alpha3"
    	networkingclient "istio.io/client-go/pkg/apis/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/kube/krt/krttest"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test/util/assert"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tests/integration/pilot/label_test.go

    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			cfg := `apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: {{.Destination}}
    spec:
      hosts:
      - {{.Destination}}
      http:
      - route:
        - destination:
            host: {{.Destination}}
            subset: my-subset
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: {{.Destination}}
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. pkg/config/schema/codegen/templates/types.go.tmpl

    	apiistioioapiextensionsv1alpha1 "istio.io/client-go/pkg/apis/extensions/v1alpha1"
    	apiistioioapinetworkingv1alpha3 "istio.io/client-go/pkg/apis/networking/v1alpha3"
    	apiistioioapinetworkingv1beta1 "istio.io/client-go/pkg/apis/networking/v1beta1"
    	apiistioioapisecurityv1beta1 "istio.io/client-go/pkg/apis/security/v1beta1"
    	apiistioioapitelemetryv1alpha1 "istio.io/client-go/pkg/apis/telemetry/v1alpha1"
    )
    
    func getGvk(obj any) (config.GroupVersionKind, bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/config/common.go

    	// v1.10 and earlier: v1alpha1
    	// v1.11: v1alpha1 read-only, writes only v1alpha2 config
    	// v1.12: v1alpha2 read-only, writes only v1alpha3 config. Errors if the user tries to use v1alpha1
    	// v1.13: v1alpha3 read-only, writes only v1beta1 config. Errors if the user tries to use v1alpha1 or v1alpha2
    	// v1.14: v1alpha3 convert only, writes only v1beta1 config. Errors if the user tries to use v1alpha1 or v1alpha2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. tests/integration/security/ca_custom_root/secure_naming_test.go

    	defaultIdentityDR = `apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "service-b-dr"
    spec:
      host: "b.NS.svc.cluster.local"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
          subjectAltNames:
          - "spiffe://cluster.local/ns/NS/sa/default"
    `
    	correctIdentityDR = `apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "service-b-dr"
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: SIMPLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 288 bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/endpoint_builder.go

    	}
    
    	return false
    }
    
    func getOutlierDetectionAndLoadBalancerSettings(
    	destinationRule *v1alpha3.DestinationRule,
    	portNumber int,
    	subsetName string,
    ) (bool, *v1alpha3.LoadBalancerSettings) {
    	if destinationRule == nil {
    		return false, nil
    	}
    	outlierDetectionEnabled := false
    	var lbSettings *v1alpha3.LoadBalancerSettings
    
    	port := &model.Port{Port: portNumber}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname-selector.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    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/testdata/destinationrule-simple-destination-credentialname-selector.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        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
    - 271 bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/tunneling/gateway/tls/passthrough/originate-tls.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: originate-tls-for-external-svc
    spec:
      host: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}.{{ .EgressGatewayServiceNamespace | default "istio-system" }}.svc.cluster.local
      subsets:
      - name: originate-tls-for-plain-traffic
        trafficPolicy:
          tls:
            mode: SIMPLE
            sni: external.{{ .externalNamespace }}.svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 20 19:37:50 UTC 2024
    - 472 bytes
    - Viewed (0)
Back to top