Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 394 for components (0.1 sec)

  1. operator/pkg/validate/common.go

    	// with at least one letter or number, with following parts able to be
    	// separated by one period, one or two underscore and multiple dashes.
    	nameComponentRegexp = expression(
    		alphaNumericRegexp,
    		optional(repeated(separatorRegexp, alphaNumericRegexp)))
    
    	// domainComponentRegexp restricts the registry domain component of a
    	// repository name to start with a component as defined by DomainRegexp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. 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)
  3. manifests/charts/ztunnel/Chart.yaml

    apiVersion: v2
    name: ztunnel
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for istio ztunnel components
    keywords:
      - istio-ztunnel
      - istio
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 381 bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config/param/template_test.go

    // limitations under the License.
    
    package param_test
    
    import (
    	"testing"
    
    	. "github.com/onsi/gomega"
    
    	"istio.io/istio/pkg/test/framework/components/echo/config/param"
    	"istio.io/istio/pkg/test/util/tmpl"
    )
    
    func TestContains(t *testing.T) {
    	cases := []struct {
    		name        string
    		template    string
    		expectFound bool
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. 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)
  6. pkg/test/framework/components/echo/kube/workload.go

    	"istio.io/istio/pkg/test"
    	echoClient "istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/echo/proto"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/errors"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 19:46:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. 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)
  8. tests/integration/security/ca_custom_root/main_test.go

    	"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/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/tmpl"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top