Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 391 for components (0.24 sec)

  1. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		warnings = append(warnings,
    			"components.pilot.k8s.replicaCount should not be set when values.pilot.autoscaleEnabled is true")
    	}
    
    	validateGateways := func(gateways []*v1alpha1.GatewaySpec, gwType string) {
    		const format = "components.%sGateways[name=%s].k8s.replicaCount should not be set when values.gateways.istio-%sgateway.autoscaleEnabled is true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. tests/integration/pilot/original_src_addr_test.go

    // limitations under the License.
    
    package pilot
    
    import (
    	"fmt"
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    )
    
    func TestTproxy(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).
    		RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			if t.Settings().Skip(echo.TProxy) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. manifests/helm-profiles/README.md

    Any changes to this folder should have a `make copy-templates` applied afterwards.
    
    Warning: unlike the `IstioOperator` profiles, these profiles cannot enable or disable certain components.
    As a result, users still need to ensure they install the appropriate charts to use a profile correctly.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 708 bytes
    - Viewed (0)
  4. tests/integration/pilot/mirror_test.go

    	"k8s.io/apimachinery/pkg/util/rand"
    
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/log"
    	"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/util/retry"
    )
    
    //	Virtual service topology
    //
    //	    a                      b                     c
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/registry_setup_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package api
    
    import (
    	"encoding/base64"
    	"fmt"
    
    	"istio.io/istio/pkg/test/framework/components/registryredirector"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var registry registryredirector.Instance
    
    const (
    	// Same user name and password as specified at pkg/test/fakes/imageregistry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/dashboard_test.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/env"
    	"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/echo/check"
    	"istio.io/istio/pkg/test/framework/components/prometheus"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/test/util/yml"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/eastwest.go

    import (
    	"context"
    	"fmt"
    	"os"
    	"os/exec"
    	"path"
    
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/test/util/tmpl"
    )
    
    const (
    	eastWestIngressIstioNameLabel = "eastwestgateway"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. operator/cmd/operator/server.go

    			LeaderElectionID:        leaderElectionID,
    			LeaseDuration:           &leaseDuration,
    			RenewDeadline:           renewDeadline,
    		}
    	}
    
    	// Create a new Cmd to provide shared dependencies and start components
    	mgr, err := manager.New(cfg, mgrOpt)
    	if err != nil {
    		log.Fatalf("Could not create a controller manager: %v", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. tests/integration/security/sds_ingress/ingress_test.go

    	"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/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/echo/echotest"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. tests/integration/operator/switch_cr_test.go

    	istioKube "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/env"
    	"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/framework/resource"
    	kube2 "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top