Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 566 for Mesh (0.04 sec)

  1. istioctl/cmd/root.go

    	rootCmd.AddCommand(dashboardCmd)
    
    	manifestCmd := mesh.ManifestCmd(ctx)
    	hideInheritedFlags(manifestCmd, cli.FlagNamespace, cli.FlagIstioNamespace, FlagCharts)
    	rootCmd.AddCommand(manifestCmd)
    
    	operatorCmd := mesh.OperatorCmd(ctx)
    	hideInheritedFlags(operatorCmd, cli.FlagNamespace, cli.FlagIstioNamespace, FlagCharts)
    	rootCmd.AddCommand(operatorCmd)
    
    	installCmd := mesh.InstallCmd(ctx)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/test/framework/components/istio/configmap.go

    	// Get the MeshConfig yaml from the config map.
    	mcYAML, ok := cm.Data["mesh"]
    	if !ok {
    		return "", fmt.Errorf("mesh config was missing in istio config map for %s", c.Name())
    	}
    	return mcYAML, nil
    }
    
    func setMeshConfigData(cm *corev1.ConfigMap, mcYAML string) {
    	cm.Data["mesh"] = mcYAML
    }
    
    func yamlToMeshConfig(mcYAML string) (*meshconfig.MeshConfig, error) {
    	// Parse the YAML.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K 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. architecture/environments/operator.md

    ## CLI
    
    The CLI `mesh` command is implemented in the [cmd/mesh](../operator/cmd/mesh/)
    subdirectory as a Cobra command with the following subcommands:
    
    - [manifest](../operator/cmd/mesh/manifest.go): the manifest subcommand is used to generate, install, diff or migrate Istio manifests, it has the following subcommands:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/ingress/conversion.go

    	return
    }
    
    // ConvertIngressV1alpha3 converts from ingress spec to Istio Gateway
    func ConvertIngressV1alpha3(ingress knetworking.Ingress, mesh *meshconfig.MeshConfig, domainSuffix string) config.Config {
    	gateway := &networking.Gateway{}
    	gateway.Selector = getIngressGatewaySelector(mesh.IngressSelector, mesh.IngressService)
    
    	for i, tls := range ingress.Spec.TLS {
    		if tls.SecretName == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. 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)
Back to top