Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 529 for Mesh (0.04 sec)

  1. security/pkg/nodeagent/sds/server.go

    // limitations under the License.
    
    package sds
    
    import (
    	"net"
    	"time"
    
    	"go.uber.org/atomic"
    	"google.golang.org/grpc"
    
    	mesh "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/uds"
    )
    
    const (
    	maxStreams    = 100000
    	maxRetryTimes = 5
    )
    
    // Server is the gPRC server that exposes SDS through UDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/fake.go

    	// Services to pre-populate as part of the service discovery
    	Services  []*model.Service
    	Instances []*model.ServiceInstance
    	Gateways  []model.NetworkGateway
    
    	// If provided, this mesh config will be used
    	MeshConfig      *meshconfig.MeshConfig
    	NetworksWatcher mesh.NetworksWatcher
    
    	// Additional service registries to use. A ServiceEntry and memory registry will always be created.
    	ServiceRegistries []serviceregistry.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/README.md

    When configuring the chart, you should not include this.
    That is, `--set some.field=true` should be passed, not `--set defaults.some.field=true`.
    
    ### Examples
    
    #### Configuring mesh configuration settings
    
    Any [Mesh Config](https://istio.io/latest/docs/reference/config/istio.mesh.v1alpha1/) options can be configured like below:
    
    ```yaml
    meshConfig:
      accessLogFile: /dev/stdout
    ```
    
    #### Revisions
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. pkg/config/analysis/local/analyze_test.go

    	defer os.Remove(tmpfile.Name())
    
    	err := sa.AddReaderKubeSource([]ReaderSource{{Reader: tmpfile}})
    	g.Expect(err).To(BeNil())
    	assert.Equal(t, sa.meshCfg, mesh.DefaultMeshConfig()) // Base default meshcfg
    	g.Expect(sa.stores).To(HaveLen(0))
    
    	// Note that a blank file for mesh cfg is equivalent to specifying all the defaults
    	testRootNamespace := "testNamespace"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/proxy_config_test.go

    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	"istio.io/api/annotation"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/api/networking/v1beta1"
    	istioTypes "istio.io/api/type/v1beta1"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. pilot/pkg/xds/proxy_dependencies_test.go

    					JwtRules: []*security.JWTRule{{JwksUri: "https://" + fooSvc}},
    				},
    			},
    		},
    		MeshConfig: &mesh.MeshConfig{
    			ExtensionProviders: []*mesh.MeshConfig_ExtensionProvider{
    				{
    					Provider: &mesh.MeshConfig_ExtensionProvider_EnvoyExtAuthzHttp{
    						EnvoyExtAuthzHttp: &mesh.MeshConfig_ExtensionProvider_EnvoyExternalAuthorizationHttpProvider{
    							Service: extensionSvc,
    						},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. tests/fuzz/inject_fuzzer.go

    // limitations under the License.
    
    package fuzz
    
    import (
    	"bytes"
    
    	fuzz "github.com/AdaLogics/go-fuzz-headers"
    
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/kube/inject"
    )
    
    func FuzzIntoResourceFile(data []byte) int {
    	f := fuzz.NewConsumer(data)
    	var sidecarTemplate map[string]string
    	err := f.FuzzMap(&sidecarTemplate)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 20 06:17:08 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. pilot/pkg/security/authn/policy_applier.go

    				workloadCfg = cfg
    			}
    		}
    	}
    
    	// Process in mesh, namespace, workload order to resolve inheritance (UNSET)
    
    	if meshCfg != nil && !isMtlsModeUnset(meshCfg.Spec.(*v1beta1.PeerAuthentication).Mtls) {
    		// If mesh policy is defined, update parent policy to mesh policy.
    		outputPolicy.Mode = model.ConvertToMutualTLSMode(meshCfg.Spec.(*v1beta1.PeerAuthentication).Mtls.Mode)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. manifests/addons/gen.sh

        --from-file=istio-workload-dashboard.json="${TMP}/istio-workload-dashboard.json" \
        --from-file=istio-service-dashboard.json="${TMP}/istio-service-dashboard.json" \
        --from-file=istio-mesh-dashboard.json="${TMP}/istio-mesh-dashboard.json" \
        --from-file=istio-extension-dashboard.json="${TMP}/istio-extension-dashboard.json"
    } > "${ADDONS}/grafana.yaml"
    
    # Set up loki
    {
      helm3 template loki loki \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/service-port-name.yaml

    apiVersion: v1
    kind: Service
    metadata:
      labels:
        gateway.istio.io/managed: istio.io-mesh-controller
      name: reviews-istio-waypoint
      namespace: ambient
    spec:
      ports:
      - appProtocol: tcp
        name: status-port
        port: 15021
        protocol: TCP
        targetPort: 15021
      - appProtocol: hbone
        name: mesh
        port: 15008
        protocol: TCP
        targetPort: 15008
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top