Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for networkingv1 (0.54 sec)

  1. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	c.FuzzNoCustom(obj)
    
    	// Pinning values for fields that get defaults if fuzz value is empty string or nil (thus making the round trip test fail)
    	obj.DataDir = "foo"
    }
    
    func fuzzNetworking(obj *kubeadm.Networking, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    	// Pinning values for fields that get defaults if fuzz value is empty string or nil (thus making the round trip test fail)
    	obj.DNSDomain = "foo"
    	obj.ServiceSubnet = "bar"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.proto

      //
      // As an example, a ServiceEntry with two WorkloadEntries inlined could become
      // two Workloads with the following UIDs:
      // - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint1
      // - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint2
      //
      // For VMs and other workloads other formats are also supported; for example,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    package ambient
    
    import (
    	"net/netip"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/api/label"
    	networkingv1alpha3 "istio.io/api/networking/v1alpha3"
    	networkingclient "istio.io/client-go/pkg/apis/networking/v1alpha3"
    	securityclient "istio.io/client-go/pkg/apis/security/v1beta1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. samples/addons/prometheus.yaml

          - services
          - endpoints
          - pods
          - ingresses
          - configmaps
        verbs:
          - get
          - list
          - watch
      - apiGroups:
          - "extensions"
          - "networking.k8s.io"
        resources:
          - ingresses/status
          - ingresses
        verbs:
          - get
          - list
          - watch
      - apiGroups:
          - "discovery.k8s.io"
        resources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. pkg/config/constants/constants.go

    	DeprecatedGatewayNameLabel = "istio.io/gateway-name"
    	// GatewayNameLabel indicates the gateway managing a particular proxy instances. Only populated for Gateway API gateways
    	GatewayNameLabel = "gateway.networking.k8s.io/gateway-name"
    
    	// TODO formalize this API
    	// TODO additional values to represent passthrough and hbone or both
    	ListenerModeOption          = "gateway.istio.io/listener-protocol"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pilot/pkg/features/pilot.go

    			"applying policies that select the gateway with a targetRef.").Get()
    
    	// Useful for IPv6-only EKS clusters. See https://aws.github.io/aws-eks-best-practices/networking/ipv6/ why it assigns an additional IPv4 NAT address.
    	// Also see https://github.com/istio/istio/issues/46719 why this flag is required
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. pilot/test/xds/fake.go

    	"istio.io/istio/pilot/pkg/config/memory"
    	kubesecrets "istio.io/istio/pilot/pkg/credentials/kube"
    	"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 "istio.io/istio/pilot/pkg/serviceregistry/kube/controller"
    	memregistry "istio.io/istio/pilot/pkg/serviceregistry/memory"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. pkg/kube/kclient/client_test.go

    	"k8s.io/client-go/kubernetes/fake"
    	k8stesting "k8s.io/client-go/testing"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	istioclient "istio.io/client-go/pkg/apis/extensions/v1alpha1"
    	istionetclient "istio.io/client-go/pkg/apis/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/schema/gvr"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. pilot/pkg/simulation/traffic.go

    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"github.com/yl2chen/cidranger"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core"
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/config/host"
    	istiolog "istio.io/istio/pkg/log"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/istio_ca.go

    	}
    
    	// TODO: if not set, parse Istiod's own token (if present) and get the issuer. The same issuer is used
    	// for all tokens - no need to configure twice. The token may also include cluster info to auto-configure
    	// networking properties.
    	if iss != "" && // issuer set explicitly or extracted from our own JWT
    		k8sInCluster.Get() == "" { // not running in cluster - in cluster use direct call to apiserver
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top