Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 173 for v2alpha1 (0.17 sec)

  1. pkg/bootstrap/instance_test.go

    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/encoding/prototext"
    	"google.golang.org/protobuf/testing/protocmp"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/api/annotation"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/test/util"
    	"istio.io/istio/pkg/bootstrap/platform"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/util/protomarshal"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/deployment/namespace.go

    	// Restrict egress from this namespace to only those endpoints in the same Echos.
    	cfg := t.ConfigIstio().New()
    	cfg.Eval(ns.Name(), map[string]any{
    		"Namespaces": namespaces,
    	}, `
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: restrict-to-namespace
    spec:
      egress:
      - hosts:
        - "istio-system/*"
    {{ range $ns := .Namespaces }}
        - "{{ $ns.Name }}/*"
    {{ end }}
    `)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/extension/wasmplugin_test.go

    	"google.golang.org/protobuf/types/known/anypb"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	extensions "istio.io/api/extensions/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    )
    
    var (
    	someAuthNFilter = &model.WasmPluginWrapper{
    		Name:         "someAuthNFilter",
    		Namespace:    "istio-system",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/webhooks/validation/controller/controller.go

    	klabels "k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/util/workqueue"
    
    	"istio.io/api/label"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/client-go/pkg/apis/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/keycertbundle"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/util.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package serviceentry
    
    import (
    	"k8s.io/apimachinery/pkg/types"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/labels"
    )
    
    func getWorkloadServiceEntries(ses []config.Config, wle *networking.WorkloadEntry) map[types.NamespacedName]*config.Config {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/core.go

    		controllerContext.InformerFactory.Core().V1().Pods(),
    		controllerContext.InformerFactory.Resource().V1alpha2().PodSchedulingContexts(),
    		controllerContext.InformerFactory.Resource().V1alpha2().ResourceClaims(),
    		controllerContext.InformerFactory.Resource().V1alpha2().ResourceClaimTemplates())
    	if err != nil {
    		return nil, true, fmt.Errorf("failed to start resource claim controller: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. security/pkg/server/ca/authenticate/kubeauth/kube_jwt_test.go

    	k8sauth "k8s.io/api/authentication/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/fake"
    	ktesting "k8s.io/client-go/testing"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    type mockMeshConfigHolder struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/extension/wasmplugin.go

    	wasmextensions "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	"google.golang.org/protobuf/types/known/durationpb"
    
    	extensions "istio.io/api/extensions/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config/xds"
    	"istio.io/istio/pkg/util/sets"
    	_ "istio.io/istio/pkg/wasm" // include for registering wasm logging scope
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/caclient/providers/citadel/client.go

    	"context"
    	"errors"
    	"fmt"
    
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials"
    	"google.golang.org/grpc/metadata"
    	"google.golang.org/protobuf/types/known/structpb"
    
    	pb "istio.io/api/security/v1alpha1"
    	istiogrpc "istio.io/istio/pilot/pkg/grpc"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/nodeagent/caclient"
    )
    
    const (
    	bearerTokenPrefix = "Bearer "
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceregistry_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/client-go/kubernetes"
    
    	"istio.io/api/label"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/api/meta/v1alpha1"
    	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/model/status"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top