Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 159 for istiooperators (0.14 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/input/component_hub_tag.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      hub: istio-spec.hub
      tag: istio-spec.tag
      components:
        pilot:
          enabled: true
          hub: component.pilot.hub
          tag: 2
        cni:
          enabled: true
          hub: component.cni.hub
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 06:46:00 UTC 2020
    - 274 bytes
    - Viewed (0)
  2. tests/integration/iop-remote-integration-test-defaults.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      profile: remote
      meshConfig:
        accessLogFile: "/dev/stdout"
        defaultConfig:
          proxyMetadata:
            ISTIO_META_DNS_CAPTURE: "true"
      components:
        egressGateways:
        - name: istio-egressgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 00:20:37 UTC 2023
    - 381 bytes
    - Viewed (0)
  3. istioctl/pkg/kubeinject/testdata/istio-operator.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: test
      namespace: istio-system
    spec:
      meshConfig:
        # Set enableTracing to false to disable request tracing.
        enableTracing: true
        # This is the ingress service name, update if you used a different name
        ingressService: istio-ingress
        connectTimeout: 1s
        defaultConfig:
          ### ADVANCED SETTINGS #############
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 689 bytes
    - Viewed (0)
  4. manifests/profiles/empty.yaml

    # The empty profile has everything disabled
    # This is useful as a base for custom user configuration
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        base:
          enabled: false
        pilot:
          enabled: false
        ingressGateways:
        - name: istio-ingressgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 11 05:41:16 UTC 2020
    - 317 bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/input/sidecar_template.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      values:
        sidecarInjectorWebhook:
          defaultTemplates: ["sidecar", "credential-volume"]
          templates:
            credential-volume: |
              spec:
                volumes:
                - name: application-credentials
                  secret:
                    secretName: secret
                containers:
                - name: istio-proxy
                  volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 26 17:54:11 UTC 2021
    - 566 bytes
    - Viewed (0)
  6. operator/pkg/util/merge_iop_test.go

    }
    
    func TestOverlayIOPDefaultMeshConfig(t *testing.T) {
    	// Transform default mesh config into map[string]interface{} for inclusion in IstioOperator.
    	m := mesh.DefaultMeshConfig()
    	my, err := protomarshal.ToJSONMap(m)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	iop := &v1alpha1.IstioOperator{
    		Spec: &v1alpha12.IstioOperatorSpec{
    			MeshConfig: MustStruct(my),
    		},
    	}
    
    	iy, err := yaml.Marshal(iop)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 15 20:10:17 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. manifests/profiles/remote.yaml

    # The remote profile is used to configure a mesh cluster without a locally deployed control plane.
    # Only the injector mutating webhook configuration is installed.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        base:
          enabled: false
        pilot:
          enabled: false
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
        istiodRemote:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 18 16:33:33 UTC 2024
    - 418 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/util/constants.go

    )
    
    const (
    	DefaultClusterLocalDomain  = "svc." + constants.DefaultClusterLocalDomain
    	ExportToNamespaceLocal     = "."
    	ExportToAllNamespaces      = "*"
    	IstioProxyName             = "istio-proxy"
    	IstioOperator              = "istio-operator"
    	MeshGateway                = "mesh"
    	Wildcard                   = "*"
    	MeshConfigName             = "istio"
    	InjectionLabelName         = "istio-injection"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. releasenotes/notes/revision-cmd.yaml

    issue:
      - 23892
    releaseNotes:
      - |
        **Added** tooling for revision-centric view of current istio deployments in a cluster. This is to
        provide better understanding of deployments - like number of istiod, gateway pods, IstioOperator CRs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 26 15:53:01 UTC 2021
    - 408 bytes
    - Viewed (0)
  10. tests/integration/iop-externalistiod-primary-integration-test-defaults.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      components:
        base:
          enabled: true
        pilot:
          enabled: true
          k8s:
            service:
              type: LoadBalancer
              ports:
              - port: 15017
                name: tcp-webhook-testing
                protocol: TCP
            overlays:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 05 22:06:57 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top