Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 325 for v1alpha3 (0.43 sec)

  1. pilot/pkg/serviceregistry/util/workloadinstances/index_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package workloadinstances
    
    import (
    	"testing"
    	"time"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/util.go

    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/test/util/yml"
    )
    
    var dummyValidationVirtualServiceTemplate = `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: validation-readiness-dummy-virtual-service
      namespace: %s
    spec:
      hosts:
        - non-existent-host
      http:
        - route:
          - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_cache_test.go

    package route
    
    import (
    	"reflect"
    	"testing"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. pkg/bootstrap/option/instances.go

    // limitations under the License.
    
    package option
    
    import (
    	"strings"
    
    	"google.golang.org/protobuf/types/known/durationpb"
    
    	meshAPI "istio.io/api/mesh/v1alpha1"
    	networkingAPI "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/model"
    )
    
    type (
    	LocalhostValue       string
    	WildcardValue        string
    	DNSLookupFamilyValue string
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    spec:
      selector:
        matchLabels:
          app: server
      mtls:
        mode: STRICT
      portLevelMtls:
        8090:
          mode: DISABLE
        8092:
          mode: DISABLE
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: server
    spec:
      host: server.%s.svc.cluster.local
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
        portLevelSettings:
        - port:
            number: 8090
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. pilot/pkg/model/destination_rule.go

    // limitations under the License.
    
    package model
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/types"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/controller_test.go

    	. "github.com/onsi/gomega"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	k8s "sigs.k8s.io/gateway-api/apis/v1"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core"
    	"istio.io/istio/pilot/pkg/serviceregistry/kube/controller"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 16:47:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/context.go

    // limitations under the License.
    
    package gateway
    
    import (
    	"fmt"
    	"sort"
    	"strconv"
    	"strings"
    
    	corev1 "k8s.io/api/core/v1"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route_cache.go

    // limitations under the License.
    
    package route
    
    import (
    	"fmt"
    	"math/big"
    	"strconv"
    	"strings"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/hash"
    )
    
    var (
    	Separator = []byte{'~'}
    	Slash     = []byte{'/'}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_traffic_policy_test.go

    	tls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    )
    
    func TestApplyUpstreamProxyProtocol(t *testing.T) {
    	istioMutualTLSSettings := &networking.ClientTLSSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top