Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 566 for Mesh (0.1 sec)

  1. pkg/test/framework/components/istio/installer.go

    	if err != nil {
    		return fmt.Errorf("create Kubernetes client: %v", err)
    	}
    
    	// Generate the manifest YAML, so that we can uninstall it in Close.
    	var stdOut, stdErr bytes.Buffer
    	if err := mesh.ManifestGenerate(kubeClient, &mesh.RootArgs{}, &mesh.ManifestGenerateArgs{
    		InFilenames:   iArgs.InFilenames,
    		Set:           iArgs.Set,
    		Force:         iArgs.Force,
    		ManifestsPath: iArgs.ManifestsPath,
    		Revision:      iArgs.Revision,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pkg/config/mesh/watcher_test_utils.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package mesh
    
    import (
    	"errors"
    	"time"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    )
    
    // only used for testing, exposes a blocking Update method that allows test environments to trigger meshConfig updates
    type TestWatcher struct {
    	internalWatcher
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 03 00:26:45 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/meshconfig.go

    // nolint: gocritic
    package ambient
    
    import (
    	"google.golang.org/protobuf/proto"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    
    	meshapi "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/log"
    )
    
    type MeshConfig struct {
    	*meshapi.MeshConfig
    }
    
    func (m MeshConfig) ResourceName() string { return " " }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_traffic_policy.go

    	}
    	cb.applyConnectionPool(opts.mesh, opts.mutable, connectionPool)
    	if opts.direction != model.TrafficDirectionInbound {
    		cb.applyH2Upgrade(opts.mutable, opts.port, opts.mesh, connectionPool)
    		applyOutlierDetection(opts.mutable.cluster, outlierDetection)
    		applyLoadBalancer(opts.mutable.cluster, loadBalancer, opts.port, cb.locality, cb.proxyLabels, opts.mesh)
    		if opts.clusterMode != SniDnatClusterMode {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/values.yaml

        #
        # If an administrator expects that any of these conditions may become true in
        # the future, they should ensure their meshes have different Mesh IDs
        # assigned.
        #
        # Within a multicluster mesh, each cluster must be (manually or auto)
        # configured to have the same Mesh ID value. If an existing cluster 'joins' a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml.golden

        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: egress-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - google.com
      http:
      - name: default.egress.0
        route:
        - destination:
            host: google.com
            port:
              number: 80
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/ingress/controller.go

    	klabels "k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/types"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    	kubecontroller "istio.io/istio/pilot/pkg/serviceregistry/kube/controller"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/config/schema/collections"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. pkg/config/analysis/local/istiod_analyze.go

    	}
    
    	cfg, err := mesh.ApplyMeshConfigDefaults(configYaml)
    	if err != nil {
    		return fmt.Errorf("error parsing mesh config: %v", err)
    	}
    
    	sa.meshCfg = cfg
    
    	meshNetworksYaml, ok := meshConfigMap.Data[meshNetworksMapKey]
    	if !ok {
    		return fmt.Errorf("missing config map key %q", meshNetworksMapKey)
    	}
    
    	mn, err := mesh.ParseMeshNetworks(meshNetworksYaml)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/ingress/status.go

    	"istio.io/istio/pkg/config/mesh"
    	kubelib "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    )
    
    var statusLog = log.RegisterScope("ingress status", "")
    
    // StatusSyncer keeps the status IP in each Ingress resource updated
    type StatusSyncer struct {
    	meshConfig mesh.Watcher
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/values.yaml

        #
        # If an administrator expects that any of these conditions may become true in
        # the future, they should ensure their meshes have different Mesh IDs
        # assigned.
        #
        # Within a multicluster mesh, each cluster must be (manually or auto)
        # configured to have the same Mesh ID value. If an existing cluster 'joins' a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top