New features/Bug fixes
- Dependency upgrades (#2055, #2038, #2030, #2023, #1978, #2013, #2010)
- Fixed intermittent problem with service instance update flow (#2060)
- Added support for namespace label propagation to sister clusters during instance creation (#2060)
- Better handling of sfplan update events (#2037)
- Resolved inconclusive error message for json schema validation of service instance parameters (#2035)
Supported K8S Version
- v1.25.x
- v1.26.x
- v1.27.x
How to deploy Interoperator
Interoperator requires helm version >= 3.0.0, and is not supported by helm 2.
To add service fabrik interoperator helm chart repo
helm repo add interoperator-charts https://cloudfoundry.github.io/service-fabrik-broker/helm-charts
helm repo update
Deploy SF Interoperator using helm
helm install --set cluster.host=sf.ingress.< clusterdomain > --namespace interoperator --version 0.27.1 interoperator interoperator-charts/interoperator
NOTE: cluster.host
should be within the 63 character limit.
Deploy SFClusters, SFServices and SFPlans and Register with Interoperator
Please create sfcluster CRs and add reference to secret which contains the its kubeconfig.
For multi-cluster support, all corresponding sfcluster CRs need to be created and their kubeconfig needs to be supplied in the corresponding secret.
Please note that sfcluster, sfservice and sfplans need to be deployed in the same namespace where SF is deployed (default is interoperator
).
Upgrade from the earlier releases(special handling, downtime if any)
To add service fabrik interoperator helm chart repo if not already added
# Assuming the repo name is chosen as interoperator-charts
helm repo add interoperator-charts https://cloudfoundry.github.io/service-fabrik-broker/helm-charts
helm repo update
Helm upgrade should take care of upgrading to the latest release.
# Assuming current helm release name is interoperator
helm --namespace interoperator upgrade -i --wait --set cluster.host=sf.ingress.< clusterdomain > --version 0.27.1 interoperator interoperator-charts/interoperator
Refer detailed upgrade docs for more info.