Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 394 for components (0.38 sec)

  1. pkg/test/framework/components/gcemetadata/gcemetadata.go

    //  limitations under the License.
    
    // Package gcemetadata provides basic utilities around configuring the fake
    // GCE Metadata Server component for integration testing.
    package gcemetadata
    
    import (
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    // Instance represents a deployed GCE Metadata Server app instance.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. tests/integration/ambient/traffic_test.go

    // limitations under the License.
    
    package ambient
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/tests/integration/pilot/common"
    )
    
    func TestTraffic(t *testing.T) {
    	framework.NewTest(t).
    		TopLevel().
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. tests/integration/security/jwt_test.go

    	"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/framework/components/echo/config"
    	"istio.io/istio/pkg/test/framework/components/echo/config/param"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/istio/ingress"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  4. tests/integration/helm/install_test.go

    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pkg/test/framework"
    	kubecluster "istio.io/istio/pkg/test/framework/components/cluster/kube"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/helm"
    	"istio.io/istio/tests/util/sanitycheck"
    )
    
    // TestDefaultInstall tests Istio installation using Helm with default options
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. pkg/test/framework/components/cluster/kube/factory.go

    //  limitations under the License.
    
    package kube
    
    import (
    	"fmt"
    	"net/http"
    	"net/url"
    
    	"k8s.io/client-go/rest"
    
    	istioKube "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/util/file"
    )
    
    const (
    	kubeconfigMetaKey = "kubeconfig"
    	vmSupportMetaKey  = "fakeVM"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. manifests/profiles/openshift.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        cni:
          enabled: true
          namespace: kube-system
      values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 169 bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/reconciler.go

    	}
    }
    
    // overallStatus returns the summary status over all components.
    // - If all components are HEALTHY, overall status is HEALTHY.
    // - If one or more components are RECONCILING and others are HEALTHY, overall status is RECONCILING.
    // - If one or more components are UPDATING and others are HEALTHY, overall status is UPDATING.
    // - If components are a mix of RECONCILING, UPDATING and HEALTHY, overall status is UPDATING.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/input/autoscaling_v2.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        ingressGateways:
        - enabled: true
          name: istio-ingressgateway
      values:
        pilot:
          cpu:
            targetAverageUtilization: 90
          memory:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 271 bytes
    - Viewed (0)
  9. releasenotes/notes/46780.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 14:32:10 UTC 2023
    - 192 bytes
    - Viewed (0)
  10. tests/integration/telemetry/tracing/zipkin/main_test.go

    // limitations under the License.
    
    package zipkin
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/tests/integration/telemetry/tracing"
    )
    
    func TestMain(m *testing.M) {
    	framework.NewSuite(m).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top