Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 315 for Mesh (0.13 sec)

  1. releasenotes/notes/disable-host-header-fallback.yaml

      prevent traffic coming from out-of-mesh locations from potential polluting the `destination_service` dimension in
      metrics with junk data (and exploding metrics cardinality). With this change, it is possible that users relying on
      host headers for labeling the destination service for inbound traffic from out-of-mesh workloads will see that traffic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 22 19:40:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/telemetry-disable-provider.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: istio-system
    spec:
      accessLogging:
        - providers:
            - name: envoy
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: foo
    spec:
      accessLogging:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 15 02:29:39 UTC 2023
    - 327 bytes
    - Viewed (0)
  3. releasenotes/notes/cipher_suites_mesh_to_mesh.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - https://github.com/istio/istio/issues/28996
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 10 20:24:43 UTC 2023
    - 218 bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/configmap.yaml

    data:
    
      # Configuration file for the mesh networks to be used by the Split Horizon EDS.
      meshNetworks: |-
      {{- if .Values.global.meshNetworks }}
        networks:
    {{ toYaml .Values.global.meshNetworks | trim | indent 6 }}
      {{- else }}
        networks: {}
      {{- end }}
    
      mesh: |-
    {{- if .Values.meshConfig }}
    {{ $mesh | toYaml | indent 4 }}
    {{- else }}
    {{- include "mesh" . }}
    {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. pkg/kube/namespace/filter.go

    	namespaces kclient.Client[*corev1.Namespace],
    	mesh mesh.Watcher,
    	stop <-chan struct{},
    ) kubetypes.DynamicObjectFilter {
    	// convert LabelSelectors to Selectors
    	f := &discoveryNamespacesFilter{
    		namespaces:          namespaces,
    		discoveryNamespaces: sets.New[string](),
    	}
    	mesh.AddMeshHandler(func() {
    		f.selectorsChanged(mesh.Mesh().GetDiscoverySelectors(), true)
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. security/pkg/server/ca/authenticate/oidc.go

    	"istio.io/api/security/v1beta1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/spiffe"
    )
    
    const (
    	IDTokenAuthenticatorType = "IDTokenAuthenticator"
    )
    
    type JwtAuthenticator struct {
    	// holder of a mesh configuration for dynamically updating trust domain
    	meshHolder mesh.Holder
    	audiences  []string
    	verifier   *oidc.IDTokenVerifier
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. pilot/pkg/security/authn/utils/utils_test.go

    	tests := []struct {
    		name                     string
    		mesh                     meshconfig.MeshConfig
    		expectedMTLSCipherSuites []string
    	}{
    		{
    			name:                     "Default MTLS supported Ciphers",
    			expectedMTLSCipherSuites: SupportedCiphers,
    		},
    		{
    			name: "Configure 1 MTLS cipher suite",
    			mesh: meshconfig.MeshConfig{
    				MeshMTLS: &meshconfig.MeshConfig_TLSConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 10 20:24:43 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top