You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//nolint:gocognit,gocyclo,cyclop,funlen // cognitive complexity 189 of func `(*Istio).mergeResources` is high (> 20), cyclomatic complexity 70 of func `(*Istio).mergeResources` is high (> 30), Function 'mergeResources' has too many statements (129 > 50) TODO: refactor this function
// user has experimental field applied in their CR
15
15
// return error with description
16
-
r.log.Info("Experimental features are not supported in this image flavour")
17
-
returndescribederrors.NewDescribedError(errors.New("istio CR contains experimental feature"), "Experimental features are not supported in this image flavour").
Copy file name to clipboardExpand all lines: docs/contributor/adr/0005-support-for-experimental-configuration-parameters-in-istio-cr.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ spec:
19
19
#[...]
20
20
```
21
21
22
-
The experimental features should be only available to be used with a separately built controller image. Using the experimental features with production image should result in setting the Istio rustom resource to the `Warning` state.
22
+
The experimental features should be only available to be used with a separately built controller image. Using the experimental features with production image should result in setting the Istio custom resource to the `Error` state and break the reconciliation to avoid unintended changes.
23
23
24
24
### SAP BTP, Kyma Runtime
25
25
In context of SAP BTP, Kyma runtime, experimental features should only be available in the experimental release channel.
0 commit comments