Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 315 for Mesh (0.06 sec)

  1. pilot/cmd/pilot-agent/config/config_test.go

    import (
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    	"google.golang.org/protobuf/types/known/durationpb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    )
    
    func TestGetMeshConfig(t *testing.T) {
    	meshOverride := `
    defaultConfig:
      discoveryAddress: foo:123
      controlPlaneAuthPolicy: NONE
      proxyMetadata:
        SOME: setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. releasenotes/notes/sidecar-api-connectionpool.yaml

       **Added** Connection pool settings to the `Sidecar` API to enable configuring the inbound connection pool for sidecars in the mesh. Previously the `DestinationRule`'s connection pool settings applied to both clients' and server sidecars. Using the updated `Sidecar` API, it's now possible to configure the server's connection pool separately from clients' in the mesh....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 17:19:29 UTC 2023
    - 612 bytes
    - Viewed (0)
  5. releasenotes/notes/35539.yaml

    Istio namespace to install Istio at the first time. And `istioctl install`, `istioctl tag set` and `istioctl tag generate` will be influenced. For example, user can set a specified namespace (`mesh-1` as an example) to install Istio via `istioctl install --set profile=demo --set values.global.istioNamespace=mesh-1 -y`...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 14 07:59:40 UTC 2021
    - 545 bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/configgen.go

    	// MeshConfigChanged is invoked when mesh config is changed, giving a chance to rebuild any cached config.
    	MeshConfigChanged(mesh *meshconfig.MeshConfig)
    }
    
    type ConfigGeneratorImpl struct {
    	Cache model.XdsCache
    }
    
    func NewConfigGenerator(cache model.XdsCache) *ConfigGeneratorImpl {
    	return &ConfigGeneratorImpl{
    		Cache: cache,
    	}
    }
    
    // MeshConfigChanged is called when mesh config is changed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. operator/pkg/util/merge_iop_test.go

    package util
    
    import (
    	"os"
    	"path/filepath"
    	"testing"
    
    	"sigs.k8s.io/yaml"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	v1alpha12 "istio.io/api/operator/v1alpha1"
    	"istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    func TestOverlayIOP(t *testing.T) {
    	cases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 15 20:10:17 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. pilot/pkg/security/authn/utils/utils.go

    		"", /*crl*/
    		trustDomainAliases, ctx.RequireClientCertificate.Value)
    
    	// Compliance for downstream mesh mTLS.
    	authn_model.EnforceCompliance(ctx.CommonTlsContext)
    	return ctx
    }
    
    // GetMinTLSVersion returns the minimum TLS version for workloads based on the mesh config.
    func GetMinTLSVersion(ver meshconfig.MeshConfig_TLSConfig_TLSProtocol) tls.TlsParameters_TlsProtocol {
    	switch ver {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/conversion.go

    func kubeToIstioServiceAccount(saname string, ns string, mesh *meshconfig.MeshConfig) string {
    	return spiffe.MustGenSpiffeURI(mesh, ns, saname)
    }
    
    // SecureNamingSAN creates the secure naming used for SAN verification from pod metadata
    func SecureNamingSAN(pod *corev1.Pod, mesh *meshconfig.MeshConfig) string {
    	return spiffe.MustGenSpiffeURI(mesh, pod.Namespace, pod.Spec.ServiceAccountName)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. pkg/test/loadbalancersim/loadbalancer/weight.go

    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    package loadbalancer
    
    import (
    	mesh2 "istio.io/istio/pkg/test/loadbalancersim/mesh"
    	network2 "istio.io/istio/pkg/test/loadbalancersim/network"
    	"istio.io/istio/pkg/test/loadbalancersim/timeseries"
    )
    
    type WeightedConnection struct {
    	network2.Connection
    	Weight uint32
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top