Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 354 for v1alpha3 (0.49 sec)

  1. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-badport-notarget.yaml

    # Gateway with non-standard IngressGateway
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 653 bytes
    - Viewed (0)
  2. pkg/model/proxy_test.go

    package model_test
    
    import (
    	"encoding/json"
    	"reflect"
    	"testing"
    	"time"
    
    	"google.golang.org/protobuf/types/known/durationpb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestNodeMetadata(t *testing.T) {
    	tests := []struct {
    		name  string
    		in    model.BootstrapNodeMetadata
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/envoyfilter.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      labels:
        app.kubernetes.io/managed-by: Helm
        istio.io/rev: default
      name: stats-filter-1.19
      namespace: istio-system
    spec:
      configPatches:
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_OUTBOUND
          listener:
            filterChain:
              filter:
                name: envoy.filters.network.http_connection_manager
                subFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/README.md

            },
        },
    ```
    
    `virtualservice_gateways.yaml`:
    
    ```yaml
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        istio: ingressgateway
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: httpbin
    spec:
      hosts:
      - "*"
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/virtualservice/conflictingmeshgatewayhosts.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package virtualservice
    
    import (
    	"fmt"
    	"sort"
    	"strings"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/host"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/fuzz_test.go

    // limitations under the License.
    
    package envoyfilter
    
    import (
    	"testing"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/memory"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/fuzz"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/gateway/gateway.go

    // limitations under the License.
    
    package gateway
    
    import (
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	klabels "k8s.io/apimachinery/pkg/labels"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/resource"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/sidecar/selector.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package sidecar
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/labels"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/resource"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/cds.go

    	tls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	corexds "istio.io/istio/pilot/pkg/networking/core"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. tests/integration/pilot/locality_test.go

    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/tests/integration/pilot/common"
    )
    
    const localityTemplate = `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-service-locality
    spec:
      hosts:
      - {{.Host}}
      location: MESH_EXTERNAL
      ports:
      - name: http
        number: 80
        protocol: HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top