Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 566 for Mesh (0.06 sec)

  1. samples/open-telemetry/als/README.md

    ```bash
    cat <<EOF | kubectl apply -n istio-system -f -
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: istio-system
    spec:
      accessLogging:
        - providers:
          - name: otel
    EOF
    ```
    
    ## Check ALS output
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. tests/testdata/networking/sidecar-without-service/configs.yaml

    # Authentication policy to enable mutual TLS for all services (that have sidecar) in the mesh.
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
      namespace: istio-config
    spec:
      mtls:
        mode: STRICT
    ---
    # Corresponding destination rule to configure client side to use mutual TLS when talking to
    # any service (host) in the mesh.
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  3. security/pkg/pki/ra/common.go

    type RegistrationAuthority interface {
    	caserver.CertificateAuthority
    	// SetCACertificatesFromMeshConfig sets the CACertificates using the ones from mesh config
    	SetCACertificatesFromMeshConfig([]*meshconfig.MeshConfig_CertificateData)
    	// GetRootCertFromMeshConfig returns the root cert for the specific signer in mesh config
    	GetRootCertFromMeshConfig(signerName string) ([]byte, error)
    }
    
    // CaExternalType : Type of External CA integration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 19:57:30 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. tests/fuzz/pilot_model_fuzzer.go

    import (
    	"errors"
    
    	fuzz "github.com/AdaLogics/go-fuzz-headers"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/memory"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/slices"
    )
    
    var protocols = []protocol.Instance{
    	protocol.TCP,
    	protocol.UDP,
    	protocol.GRPC,
    	protocol.GRPCWeb,
    	protocol.HTTP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 18:13:06 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. pkg/dns/client/dns_test.go

    			host:     "foo.svc.mesh.company.net.",
    			expected: a("foo.svc.mesh.company.net.", []netip.Addr{netip.MustParseAddr("10.1.2.3")}),
    		},
    		{
    			name:     "success: wild card with namespace with domain returns A record correctly",
    			host:     "foo.foons.svc.mesh.company.net.",
    			expected: a("foo.foons.svc.mesh.company.net.", []netip.Addr{netip.MustParseAddr("10.1.2.3")}),
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry.go

    func mergeLogs(logs []*computedAccessLogging, mesh *meshconfig.MeshConfig, mode tpb.WorkloadMode) map[string]loggingSpec {
    	providers := map[string]loggingSpec{}
    
    	if len(logs) == 0 {
    		for _, dp := range mesh.GetDefaultProviders().GetAccessLogging() {
    			// Insert the default provider.
    			providers[dp] = loggingSpec{}
    		}
    		return providers
    	}
    	providerNames := mesh.GetDefaultProviders().GetAccessLogging()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. operator/cmd/mesh/operator_test.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 (
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    
    	"k8s.io/client-go/kubernetes/fake"
    	"k8s.io/client-go/rest"
    	"sigs.k8s.io/controller-runtime/pkg/client"
    	"sigs.k8s.io/yaml"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. releasenotes/notes/40394.yaml

    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 18:48:04 UTC 2022
    - 497 bytes
    - Viewed (0)
  9. operator/pkg/validate/validate.go

    	if err := protomarshal.ApplyYAMLStrict(string(vs), mesh.DefaultMeshConfig()); err != nil {
    		return util.Errors{fmt.Errorf("failed to unmarshall mesh config: %v", err)}
    	}
    	// This method will also perform validation automatically
    	if _, validErr := mesh.ApplyMeshConfigDefaults(string(vs)); validErr != nil {
    		return util.Errors{validErr}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 12 16:04:15 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. releasenotes/notes/47835-otlp-http-exporter.yaml

    kind: feature
    area: telemetry
    
    # issue is a list of GitHub issues resolved in this note.
    issue:
      - https://github.com/istio/istio/issues/47835
    
    docs:
     - '[reference] https://istio.io/latest/docs/reference/config/istio.mesh.v1alpha1/#MeshConfig-ExtensionProvider-OpenTelemetryTracingProvider'
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 400 bytes
    - Viewed (0)
Back to top