Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 242 for components (0.49 sec)

  1. manifests/profiles/demo.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        egressGateways:
        - name: istio-egressgateway
          enabled: true
      values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 177 bytes
    - Viewed (0)
  2. manifests/profiles/ambient.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        cni:
          enabled: true
        ztunnel:
          enabled: true
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
      values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 246 bytes
    - Viewed (0)
  3. pkg/version/cobra.go

    )
    
    // CobraOptions holds options to be passed to `CobraCommandWithOptions`
    type CobraOptions struct {
    	// GetRemoteVersion is the function to be invoked to retrieve remote versions for
    	// Istio components. Optional. If not set, the 'version' subcommand will not attempt
    	// to connect to a remote side, and CLI flags such as '--remote' will be hidden.
    	GetRemoteVersion GetRemoteVersionFunc
    	GetProxyVersions GetProxyVersionFunc
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. tests/integration/security/ecc_signature_algorithm/mtls_strict_test.go

    package eccsignaturealgorithm
    
    import (
    	"crypto/x509"
    	"encoding/pem"
    	"strings"
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    const (
    	DestinationRuleConfigIstioMutual = `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. tests/integration/security/file_mounted_certs/p2p_mtls_test.go

    //  limitations under the License.
    
    package filemountedcerts
    
    import (
    	"testing"
    	"time"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const (
    	ServerSecretName = "test-server-cred"
    	ServerCertsPath  = "tests/testdata/certs/mountedcerts-server"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. manifests/charts/ztunnel/values.yaml

        # with Istiod configuration.
        clusterName: ""
    
      # meshConfig defines runtime configuration of components.
      # For ztunnel, only defaultConfig is used, but this is nested under `meshConfig` for consistency with other
      # components.
      # TODO: https://github.com/istio/istio/issues/43248
      meshConfig:
        defaultConfig:
          proxyMetadata: {}
    
      # This value defines:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. manifests/profiles/openshift-ambient.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        cni:
          enabled: true
          namespace: kube-system
        ztunnel:
          enabled: true
          namespace: kube-system
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
      values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 19:32:44 UTC 2024
    - 314 bytes
    - Viewed (0)
  8. pkg/test/framework/components/authz/kube.go

    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. tests/integration/iop-remote-integration-test-defaults.yaml

    kind: IstioOperator
    metadata:
      name: install
    spec:
      profile: remote
      meshConfig:
        accessLogFile: "/dev/stdout"
        defaultConfig:
          proxyMetadata:
            ISTIO_META_DNS_CAPTURE: "true"
      components:
        egressGateways:
        - name: istio-egressgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 00:20:37 UTC 2023
    - 381 bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/istio.go

    	"k8s.io/apimachinery/pkg/types"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/kube/inject"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/istio/ingress"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/framework/resource/config/cleanup"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top