Updating Klutch Components
Regular updates to Klutch's components are essential for maintaining optimal performance, security, and access to new features. This guide provides platform operators with detailed instructions for updating both the Control Plane and App Cluster components within a Klutch environment.
Updating the Control Plane Cluster
Crossplane® Runtime
To update the Crossplane® runtime, refer to the official Crossplane® documentation. The specific update process varies based on your installation method.
Crossplane® Providers and Configuration Packages
Patching is a method for updating Crossplane® providers and configuration packages dynamically without modifying full manifests.
You can see an example of updating a provider and its configuration package using patching with provider-anynines:
-
Updating a Provider
As an example, to update provider-anynines, identify the latest version from the image registry, then apply the update:
kubectl patch providers/provider-anynines --type merge -p '{"spec":{"package":"public.ecr.aws/w5n9a2g2/klutch/provider-anynines:<latest-version>"}}'
Replace <latest-version> with the desired release.
-
Updating a Configuration Package
Similarly, to update a configuration package, you can use provider-anynines configuration as an example:
kubectl patch configurations/anynines-dataservices \
--type merge -p '{"spec":{"package":"public.ecr.aws/w5n9a2g2/klutch/dataservices:<latest-version>"}}'Ensure <latest-version> matches the desired release.
Klutch-bind backend
Before proceeding, review the changelog for the new version and follow any migration instructions provided.
-
Install Latest CRDs
Update the Custom Resource Definitions (CRDs) for the backend as per the backend installation instructions.
-
Update Klutch-bind backend Deployment
Follow the installation instructions to update the Klutch-bind backend deployment.
-
Introduce New Data Service Types
If the update includes new data service types, implement the binding creation steps to make them available in App Clusters.
Downtime Considerations During Updates
During updates, components like Crossplane® providers and the Klutch-bind backend may experience brief downtime. However, existing data service instances will remain operational and accessible. Any modifications (creation, updates, deletions) made to data service instances during the update will be applied once the process is complete.
Updating the App Cluster
The konnector deployment is the primary component of the App Cluster. To update it, first, retrieve the latest konnector image from the image registry and replace <latest-version> with the desired version number. Then, choose one of the following update methods:
-
Patching the Deployment
Apply a patch to update the konnector image:
kubectl set image --namespace kube-bind deployment/konnector konnector=public.ecr.aws/w5n9a2g2/klutch/konnector:<latest-version>
-
Using a Manifest
Apply an updated deployment manifest:
apiVersion: apps/v1
kind: Deployment
metadata:
name: konnector
namespace: kube-bind
labels:
app: konnector
spec:
replicas: 2
selector:
matchLabels:
app: konnector
template:
metadata:
labels:
app: konnector
spec:
restartPolicy: Always
serviceAccountName: konnector
containers:
- name: konnector
image: public.ecr.aws/w5n9a2g2/klutch/konnector:<latest-version>
env:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace