Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for n_components (0.23 sec)

  1. manifests/profiles/openshift.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        cni:
          enabled: true
          namespace: kube-system
      values:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 169 bytes
    - Viewed (0)
  2. manifests/profiles/ambient.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        cni:
          enabled: true
        ztunnel:
          enabled: true
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
      values:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 246 bytes
    - Viewed (0)
  3. manifests/profiles/external.yaml

    # Deprecated. Use the "remote" profile instead.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        base:
          enabled: false
        pilot:
          enabled: false
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
        istiodRemote:
          enabled: true
      values:
        global:
          externalIstiod: true
          omitSidecarInjectorConfigMap: true
          configCluster: false
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Sep 08 17:32:21 GMT 2022
    - 489 bytes
    - Viewed (0)
  4. istioctl/pkg/tag/revision.go

    	Namespace      string                     `json:"namespace"`
    	Name           string                     `json:"name"`
    	Profile        string                     `json:"profile"`
    	Components     []string                   `json:"components,omitempty"`
    	Customizations []IopDiff                  `json:"customizations,omitempty"`
    }
    
    type IopDiff struct {
    	Path  string `json:"path"`
    	Value string `json:"value"`
    }
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Jan 28 13:16:05 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  5. 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.
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 708 bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/values.yaml

        # To output all istio components logs in json format by adding --log_as_json argument to each container argument
        logAsJson: false
    
        # Comma-separated minimum per-scope logging level of messages to output, in the form of <scope>:<level>,<scope>:<level>
        # The control plane has different scopes depending on component, but can configure default log level across all components
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  7. cni/README.md

    1. Check k8s pod namespace against exclusion list (plugin config)
        - Config must exclude namespace that Istio control-plane is installed in (TODO: this may change, exclude at pod level is sufficient and we may want Istiod and other istio components to use ambient too)
        - If excluded, ignore the pod and return prevResult
    1. Setup redirect rules for the pods:
        - Get the port list from pods definition, as well as annotations.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  8. manifests/charts/README.md

    canary deployments for Istio components. It should be possible to deploy a new version while keeping the
    stable version in place and gradually migrate apps to the new version.
    
    - More flexibility: the new installer allows multiple 'environments', allowing applications to select
    a set of control plane settings and components. While the entire mesh respects the same APIs and config,
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 6.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.
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  10. operator/cmd/mesh/install.go

    	}
    	return tag.String(), nil
    }
    
    // getProfileNSAndEnabledComponents get the profile and all the enabled components
    // from the given input files and --set flag overlays.
    func getProfileNSAndEnabledComponents(iop *v1alpha12.IstioOperator) (string, string, []string, error) {
    	var enabledComponents []string
    	if iop.Spec.Components != nil {
    		for _, c := range name.AllCoreComponentNames {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 15.2K bytes
    - Viewed (0)
Back to top