Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 394 for components (0.14 sec)

  1. pkg/test/framework/components/istio/ingress.go

    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"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"
    	"istio.io/istio/pkg/test/framework/components/environment/kube"
    	"istio.io/istio/pkg/test/framework/components/istio/ingress"
    	"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 Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input/deprecated_autoscaling_k8s_spec.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: empty
      hub: docker.io/istio
      tag: 1.1.4
      meshConfig:
        rootNamespace: istio-control
      components:
        pilot:
          enabled: true
          namespace: istio-control
          k8s:
            hpaSpec:
              maxReplicas: 333
              scaleTargetRef:
                name: istio-pilot
              metrics:
              - type: Resource
                resource:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. tests/integration/pilot/piggyback_test.go

    // limitations under the License.
    
    package pilot
    
    import (
    	"fmt"
    	"strings"
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func TestPiggyback(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).RequiresSingleCluster().
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. operator/pkg/translate/translate_value_test.go

    values:
      global:
        istioNamespace: istio-system
    `,
    		},
    		{
    			desc: "Some components Disabled",
    			valueYAML: `
    pilot:
      enabled: true
    global:
      hub: docker.io/istio
      istioNamespace: istio-system
      tag: 1.2.3
    `,
    			want: `
    hub: docker.io/istio
    tag: 1.2.3
    components:
       pilot:
         enabled: true
    values:
      global:
        istioNamespace: istio-system
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. tests/integration/security/util/cert/cert.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/security/pkg/pki/ca"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. tests/integration/security/mtls_healthcheck_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"
    )
    
    // TestMtlsHealthCheck verifies Kubernetes HTTP health check can work when mTLS
    // is enabled, https://github.com/istio/istio/issues/9150.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate_test.go

      namespace: istio-system
    spec:
      type: LoadBalancer
    `
    	const iopString = `
    components:
      ingressGateways:
        - name: istio-ingressgateway
          enabled: true
          k8s:
            service:
              ports:
              - name: http2
                port: 80
                targetPort: 8080
    `
    	const iopString2 = `
    components:
      ingressGateways:
        - name: istio-ingressgateway
          enabled: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. tests/integration/security/main_test.go

    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/authz"
    	"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/resource"
    )
    
    var (
    	// Namespaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. operator/README.md

    The operator uses the [IstioOperator API](https://github.com/istio/api/blob/master/operator/v1alpha1/operator.proto), which has
    three main components:
    
    - [MeshConfig](https://github.com/istio/api/blob/master/mesh/v1alpha1/config.proto) for runtime config consumed directly by Istio
    control plane components.
    - [Component configuration API](https://github.com/istio/api/blob/00671adacbea20f941cb20cce021bc63cbad1840/operator/v1alpha1/operator.proto#L42-L93), for managing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. pkg/test/echo/docker/Dockerfile.app_sidecar_centos_8

    # Install the certs.
    COPY certs/                           /var/lib/istio/
    COPY certs/default/                   /var/run/secrets/istio/
    
    # Install the sidecar components
    COPY istio-sidecar.rpm  /tmp/istio-sidecar.rpm
    RUN rpm -vi /tmp/istio-sidecar.rpm && rm /tmp/istio-sidecar.rpm
    
    # Sudoers used to allow tcpdump and other debug utilities.
    COPY sudoers /etc/sudoers
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 839 bytes
    - Viewed (0)
Back to top