Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 354 for v1alpha3 (0.2 sec)

  1. pkg/config/schema/codegen/templates/clients.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"
    {{- range .Packages}}
    	{{.ImportName}} "{{.PackageName}}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/extension_configuration_patch_test.go

    // limitations under the License.
    
    package envoyfilter
    
    import (
    	"testing"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/memory"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestInsertedExtensionConfig(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. tests/integration/security/ecc_signature_algorithm/mtls_strict_test.go

    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    const (
    	DestinationRuleConfigIstioMutual = `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: server
      namespace: {{.AppNamespace}}
    spec:
      host: "server.{{.AppNamespace}}.svc.cluster.local"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. tests/integration/security/file_mounted_certs/p2p_mtls_test.go

    				},
    			}
    
    			client[0].CallOrFail(t, opts)
    		})
    }
    
    const (
    	DestinationRuleConfigMutual = `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: server
      namespace: {{.AppNamespace}}
    spec:
      host: "server.{{.AppNamespace}}.svc.cluster.local"
      trafficPolicy:
        tls:
          mode: MUTUAL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/plugin/client_test.go

    package plugin
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"os"
    	"path/filepath"
    	"sync"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	"google.golang.org/grpc"
    	drapbv1alpha3 "k8s.io/kubelet/pkg/apis/dra/v1alpha3"
    )
    
    type fakeV1alpha3GRPCServer struct {
    	drapbv1alpha3.UnimplementedNodeServer
    }
    
    var _ drapbv1alpha3.NodeServer = &fakeV1alpha3GRPCServer{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. tests/integration/pilot/cross_revision_test.go

    						Inject:   true,
    						Revision: rev,
    					}),
    				})
    			}
    			// Allow all namespaces so we do not hit passthrough cluster
    			t.ConfigIstio().YAML(apps.Namespace.Name(), `apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: allow-cross-namespaces
    spec:
      workloadSelector:
        labels:
          app: a
      egress:
      - hosts:
        - "*/*"`).ApplyOrFail(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/plugin/client.go

    limitations under the License.
    */
    
    package plugin
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	"google.golang.org/grpc"
    
    	"k8s.io/klog/v2"
    	drapb "k8s.io/kubelet/pkg/apis/dra/v1alpha3"
    )
    
    const PluginClientTimeout = 45 * time.Second
    
    func NewDRAPluginClient(pluginName string) (drapb.NodeClient, error) {
    	if pluginName == "" {
    		return nil, fmt.Errorf("plugin name is empty")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    // limitations under the License.
    
    package endpoints
    
    import (
    	"reflect"
    	"testing"
    
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    )
    
    func TestPopulateFailoverPriorityLabels(t *testing.T) {
    	tests := []struct {
    		name           string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. pkg/config/schema/codegen/templates/crdclient.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"
    {{- range .Packages}}
    	{{.ImportName}} "{{.PackageName}}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/bootstrap/option/convert_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package option
    
    import (
    	"reflect"
    	"testing"
    
    	networkingAPI "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/model"
    )
    
    // nolint: lll
    func TestTlsContextConvert(t *testing.T) {
    	tests := []struct {
    		desc         string
    		tls          *networkingAPI.ClientTLSSettings
    		sni          string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top