Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 394 for components (0.32 sec)

  1. manifests/profiles/default.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-system
    spec:
      hub: gcr.io/istio-testing
      tag: latest
    
      # Turn on default components: base, pilot, and ingress gateway
      components:
        base:
          enabled: true
        pilot:
          enabled: true
        # Istio Gateway feature
        ingressGateways:
        - name: istio-ingressgateway
          enabled: true
        egressGateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 744 bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/run.go

    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/istio/ingress"
    )
    
    type (
    	perDeploymentTest  func(t framework.TestContext, deployments echo.Instances)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. tests/integration/security/remote_jwks/main_test.go

    package remotejwks
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/jwt"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/tcp_probe_test.go

    	"testing"
    	"time"
    
    	"istio.io/api/annotation"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/deployment"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    )
    
    func TestTcpProbe(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. tests/integration/pilot/revisions/revision_tag_test.go

    	"strings"
    	"testing"
    
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/deployment"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	kubetest "istio.io/istio/pkg/test/kube"
    )
    
    func TestRevisionTags(t *testing.T) {
    	// nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. tests/integration/ambient/cnirepair/main_test.go

    	"istio.io/istio/pkg/test/framework/components/echo"
    	common_deploy "istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/echo/common/ports"
    	"istio.io/istio/pkg/test/framework/components/echo/deployment"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate.go

    	// HelmSubdir is a mapping between a component name and the subdirectory of the component Chart.
    	HelmSubdir string
    	// ToHelmValuesTreeRoot is the tree root in values YAML files for the component.
    	ToHelmValuesTreeRoot string
    	// SkipReverseTranslate defines whether reverse translate of this component need to be skipped.
    	SkipReverseTranslate bool
    	// FlattenValues, if true, means the component expects values not prefixed with ToHelmValuesTreeRoot
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/match/matchers.go

    // limitations under the License.
    
    package match
    
    import (
    	"istio.io/api/annotation"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    )
    
    // Any doesn't filter out any echos.
    var Any Matcher = func(_ echo.Instance) bool {
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    	"testing"
    
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/env"
    	"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/components/echo/match"
    )
    
    const (
    	httpPlaintext = "http-plaintext"
    	httpMTLS      = "http-mtls"
    	tcpPlaintext  = "tcp-plaintext"
    	tcpMTLS       = "tcp-mtls"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/revisions/uninstall_test.go

    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/pkg/config/schema/gvr"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const (
    	stableRevision       = "stable"
    	canaryRevision       = "canary"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top