Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 159 for IstioOperator (0.21 sec)

  1. operator/pkg/helmreconciler/reconciler.go

    }
    
    // SetStatusComplete updates the status field on the IstioOperator instance based on the resulting err parameter.
    func (h *HelmReconciler) SetStatusComplete(status *v1alpha1.InstallStatus) error {
    	iop := &istioV1Alpha1.IstioOperator{}
    	if err := h.getClient().Get(context.TODO(), config.NamespacedName(h.iop), iop); err != nil {
    		return fmt.Errorf("failed to get IstioOperator before updating status due to %v", err)
    	}
    	iop.Status = status
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input/bogus_cps.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-system
    spec:
      values:
        global:
          mountMtlsCerts:
        pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 24 22:39:29 UTC 2020
    - 179 bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/profile-dump/input/config_path.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: default
      components:
        pilot:
          enabled: false
        cni:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 22:32:18 UTC 2020
    - 159 bytes
    - Viewed (0)
  4. operator/samples/default-install.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-system
      name: istio-operator
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 12 18:15:24 UTC 2020
    - 143 bytes
    - Viewed (0)
  5. operator/README.md

    controller as the CLI command `istioctl install` running in a loop in a pod in the cluster and using the config
    from the in-cluster IstioOperator custom resource (CR).
    There are two major differences:
    
    1. The controller does not accept any dynamic user config through flags. All user interaction is through the
    IstioOperator CR.
    1. The controller has additional logic that mirrors istioctl commands like upgrade, but is driven from the declarative
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. operator/pkg/util/testdata/yaml/input/yaml_layer3.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        base:
          enabled: true
        ingressGateways:
          - namespace: istio-system
            name: istio-ingressgateway
            enabled: false
            k8s:
              service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 14 19:24:34 UTC 2020
    - 291 bytes
    - Viewed (0)
  7. operator/cmd/mesh/install.go

    }
    
    // InstallManifests generates manifests from the given istiooperator instance and applies them to the
    // cluster. See GenManifests for more description of the manifest generation process.
    //
    //	force   validation warnings are written to logger but command is not aborted
    //	DryRun  all operations are done but nothing is written
    //
    // Returns final IstioOperator after installation if successful.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. operator/pkg/util/testdata/yaml/input/yaml_layer1_stdin.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        pilot:
          enabled: false
        ingressGateways:
          - namespace: istio-system
            name: istio-ingressgateway
            enabled: true
            k8s:
              service:
                externalTrafficPolicy: Local
              serviceAnnotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 14 19:24:34 UTC 2020
    - 378 bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/input/minimal.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 10 04:08:45 UTC 2020
    - 84 bytes
    - Viewed (0)
  10. operator/pkg/metrics/monitoring.go

    	CRMergeFailureTotal = monitoring.NewSum(
    		"cr_merge_failure_total",
    		"Number of IstioOperator CR merge failures",
    	)
    
    	// CRDeletionTotal counts the number of times
    	// IstioOperator CR was deleted.
    	CRDeletionTotal = monitoring.NewSum(
    		"cr_deletion_total",
    		"Number of IstioOperator CR deleted",
    	)
    
    	// CRValidationErrorTotal counts the number of CR
    	// validation failures.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top