Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 298 for components (0.4 sec)

  1. 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)
  2. 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)
  3. operator/pkg/apis/istio/v1alpha1/types.go

    // IstioOperatorSpec defines the desired installed state of Istio components.
    // The spec is a used to define a customization of the default profile values that are supplied with each Istio release.
    // Because the spec is a customization API, specifying an empty IstioOperatorSpec results in a default Istio
    // component values.
    //
    //	apiVersion: install.istio.io/v1alpha1
    //	kind: IstioOperator
    //	spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 15 10:49:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pilot/pkg/server/instance.go

    	Start(stop <-chan struct{}) error
    
    	// RunComponent adds the given component to the server's run queue.
    	RunComponent(name string, t Component)
    
    	// RunComponentAsync runs the given component asynchronously.
    	RunComponentAsync(name string, t Component)
    
    	// RunComponentAsyncAndWait runs the given component asynchronously. When
    	// the server Instance is shutting down, it will wait for the component
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.6K 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. operator/pkg/name/name.go

    	ValuesEnablementPathMap = map[string]string{
    		"spec.values.gateways.istio-ingressgateway.enabled": "spec.components.ingressGateways.[name:istio-ingressgateway].enabled",
    		"spec.values.gateways.istio-egressgateway.enabled":  "spec.components.egressGateways.[name:istio-egressgateway].enabled",
    	}
    
    	// userFacingComponentNames are the names of components that are displayed to the user in high level CLIs
    	// (like progress log).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. 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)
  10. pkg/test/framework/components/gcemetadata/kube.go

    package gcemetadata
    
    import (
    	"fmt"
    	"io"
    	"net"
    
    	corev1 "k8s.io/api/core/v1"
    
    	environ "istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    	testKube "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    const (
    	ns = "gce-metadata"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top