Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 324 for components (0.16 sec)

  1. tests/integration/iop-ambient-test-defaults.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      profile: ambient
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
      values:
        cni:
          ambient:
            # Some of the tests require DNS capture
            # For that, DNS capture must be enabled in the CNI
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/values.yaml

        # For components that don't use ServiceAccounts (i.e. grafana, servicegraph, tracing)
        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_installation_failed.yaml

    # Simulate the case where the default installation failed, and the user has to reinstall the components.
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      labels:
        app: sidecar-injector
      name: w-istio-sidecar-injector-istio-system
    
    webhooks:
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod
          namespace: istio-system
          path: /inject
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. tests/integration/ambient/wasm_test.go

    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/http/headers"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/crd"
    	"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 (
    	imageName      = "istio-testing/wasm/header-injector"
    	injectedHeader = "x-resp-injection"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. operator/pkg/helmreconciler/prune.go

    	var errs util.Errors
    	// Ultimately, we want to prune based on component labels. Each of these share a common set of labels
    	// Rather than do N List() calls for each component, we will just filter for the common subset here
    	// and each component will do its own filtering
    	// Because we are filtering by the core labels, List() will only return items that some components will care
    	// about, so we are not querying for an overly broad set of resources.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. pkg/test/framework/components/environment/kube/kube.go

    //  limitations under the License.
    
    package kube
    
    import (
    	"fmt"
    
    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/cluster/kube"
    	"istio.io/istio/pkg/test/framework/config"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. tests/integration/ambient/gateway_conformance_test.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework"
    	ambientComponent "istio.io/istio/pkg/test/framework/components/ambient"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/prow"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/echotest/filters.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package echotest
    
    import (
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    )
    
    type (
    	Filter            func(echo.Instances) echo.Instances
    	CombinationFilter func(from echo.Instance, to echo.Instances) echo.Instances
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. pkg/test/framework/config.go

    	"fmt"
    	"strings"
    
    	"github.com/hashicorp/go-multierror"
    	"go.uber.org/atomic"
    	"golang.org/x/sync/errgroup"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/framework/resource/config"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/profile-dump/output/all_off.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        base:
          enabled: true
        cni:
          enabled: false
        egressGateways:
        - enabled: false
          name: istio-egressgateway
        ingressGateways:
        - enabled: true
          name: istio-ingressgateway
        pilot:
          enabled: false
      hub: gcr.io/istio-testing
    
      profile: default
      tag: latest
      values:
        defaultRevision: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 565 bytes
    - Viewed (0)
Back to top