Installation
Kruise can be simply installed by helm v3.5+, which is a simple command-line tool and you can get it from .
Note: Changelog.
Upgrade with helm
$ helm repo add openkruise https://openkruise.github.io/charts/
# [Optional]
$ helm repo update
# Upgrade to the latest version.
$ helm upgrade kruise openkruise/kruise --version 1.4.0 [--force]
Note that:
- Before upgrade, you must firstly read the Change Log to make sure that you have understand the breaking changes in the new version.
- If you want to drop the chart parameters you configured for the old release or set some new parameters, it is recommended to add
--reset-values
flag inhelm upgrade
command. Otherwise you should use--reuse-values
flag to reuse the last release’s values. - If you are upgrading Kruise from 0.x to 1.x, you must add
--force
for upgrade command. Otherwise it is an optional flag.
If you have problem with connecting to https://openkruise.github.io/charts/
in production, you might need to download the chart from here manually and install or upgrade with it.
Options
Note that installing this chart directly means it will use the default template values for Kruise.
The following table lists the configurable parameters of the chart and their default values.
Specify each parameter using the --set key=value[,key=value]
argument to helm install
or helm upgrade
.
Feature-gate controls some influential features in Kruise:
Name | Description | Default | Effect (if closed) |
---|---|---|---|
PodWebhook | Whether to open a webhook for Pod create | true | SidecarSet/KruisePodReadinessGate disabled |
KruiseDaemon | Whether to deploy kruise-daemon DaemonSet | true | ImagePulling/ContainerRecreateRequest disabled |
Should each kruise-daemon watch pods on the same node | true | For in-place update with same imageID or env from labels/annotations | |
CloneSetShortHash | Enables CloneSet controller only set revision hash name to pod label | false | CloneSet name can not be longer than 54 characters |
KruisePodReadinessGate | Enables Kruise webhook to inject ‘KruisePodReady’ readiness-gate to all Pods during creation | false | The readiness-gate will only be injected to Pods created by Kruise workloads |
PreDownloadImageForInPlaceUpdate | Enables CloneSet controller to create ImagePullJobs to pre-download images for in-place update | false | No image pre-download for in-place update |
CloneSetPartitionRollback | Enables CloneSet controller to rollback Pods to currentRevision when number of updateRevision pods is bigger than (replicas - partition) | false | CloneSet will only update Pods to updateRevision |
ResourcesDeletionProtection | Enables protection for resources deletion | true | No protection for resources deletion |
TemplateNoDefaults | Whether to disable defaults injection for pod/pvc template in workloads | false | Should not close this feature if it has open |
PodUnavailableBudgetDeleteGate | Enables PodUnavailableBudget for pod deletion, eviction | true | No protection for pod deletion, eviction |
PodUnavailableBudgetUpdateGate | Enables PodUnavailableBudget for pod.Spec update | false | No protection for in-place update |
WorkloadSpread | Enables WorkloadSpread to manage multi-domain and elastic deploy | true | WorkloadSpread disabled |
InPlaceUpdateEnvFromMetadata | Enables Kruise to in-place update a container in Pod when its env from labels/annotations changed and pod is in-place updating | true | Only container image can be in-place update |
StatefulSetAutoDeletePVC | Enables policies controlling deletion of PVCs created by a StatefulSet | true | No deletion of PVCs by StatefulSet |
PreDownloadImageForDaemonSetUpdate | Enables DaemonSet controller to create ImagePullJobs to pre-download images for in-place update | false | No image pre-download for in-place update |
PodProbeMarkerGate | Whether to turn on PodProbeMarker ability | true | PodProbeMarker disabled |
SidecarSetPatchPodMetadataDefaultsAllowed | Allow SidecarSet patch any annotations to Pod Object | false | Annotations are not allowed to patch randomly and need to be configured via SidecarSet_PatchPodMetadata_WhiteList |
SidecarTerminator | SidecarTerminator enables SidecarTerminator to stop sidecar containers when all main containers exited | false | SidecarTerminator disabled |
CloneSetEventHandlerOptimization | CloneSetEventHandlerOptimization enable optimization for cloneset-controller to reduce the queuing frequency cased by pod update | false | optimization for cloneset-controller to reduce the queuing frequency cased by pod update disabled |
If you want to configure the feature-gate, just set the parameter when install or upgrade. Such as:
$ helm install kruise https://... --set featureGates="ResourcesDeletionProtection=true\,PreDownloadImageForInPlaceUpdate=true"
If you want to enable all feature-gates, set the parameter as featureGates=AllAlpha=true
.
Usually K3s has the different runtime path from the default /var/run
. So you have to set daemon.socketLocation
to the real runtime socket path on your K3s node (e.g. /run/k3s
or /var/run/k3s/
).
When using a custom CNI (such as Weave or Calico) on EKS, the webhook cannot be reached by default. This happens because the control plane cannot be configured to run on a custom CNI on EKS, so the CNIs differ between control plane and worker nodes.
To address this, the webhook can be run in the host network so it can be reached, by setting --set manager.hostNetwork=true
when use helm install or upgrade.
Uninstall
Note that this will lead to all resources created by Kruise, including webhook configurations, services, namespace, CRDs, CR instances and Pods managed by Kruise controller, to be deleted!
Please do this ONLY when you fully understand the consequence.
$ helm uninstall kruise
kruise-state-metrics is a simple service that listens to the Kubernetes API server and generates metrics about the state of the objects. It is not focused on the health of the individual OpenKruise components, but rather on the health of the various objects inside, such as clonesets, advanced statefulsets and sidecarsets.