Installation
Installation
Prerequisites
- Kubernetes 1.28+
- Helm 3.12+
- cert-manager (optional, for secure metrics)
Helm Install
helm install drop oci://ghcr.io/corewire/charts/drop \
--namespace drop-system \
--create-namespaceWith Prometheus ServiceMonitor
helm install drop oci://ghcr.io/corewire/charts/drop \
--namespace drop-system \
--create-namespace \
--set serviceMonitor.enabled=true \
--set certManager.enabled=trueCRD Management
Helm does not update CRDs on helm upgrade. For reliable CRD lifecycle
management, install CRDs separately using the drop-crds chart:
# Install CRDs independently
helm install drop-crds oci://ghcr.io/corewire/charts/drop-crds
# Install the operator with CRD installation disabled
helm install drop oci://ghcr.io/corewire/charts/drop \
--namespace drop-system \
--create-namespace \
--set crds.install=falseTo upgrade CRDs later:
helm upgrade drop-crds oci://ghcr.io/corewire/charts/drop-crdsArgoCD
When using ArgoCD, deploy CRDs and the operator as separate Applications so
that CRD updates are applied independently. See
examples/argocd/
for ready-to-use Application manifests.
Key points for ArgoCD CRD management:
- Use
ServerSideApply=trueandReplace=truesync options on the CRDs Application. - Set a negative sync-wave (
argocd.argoproj.io/sync-wave: "-1") so CRDs are synced before the operator. - Disable
crds.installin the operator chart values.
Renovate
The repository includes Renovate custom managers that automatically detect new
chart versions in the ArgoCD example manifests. Add similar regex managers to
your own renovate.json to keep chart references up to date:
{
"customManagers": [
{
"customType": "regex",
"fileMatch": ["argocd/.*\\.yaml$"],
"matchStrings": ["chart: drop-crds\\n\\s+repoURL: oci://ghcr\\.io/corewire/charts\\n\\s+targetRevision: (?<currentValue>\\S+)"],
"depNameTemplate": "drop-crds",
"datasourceTemplate": "docker",
"packageNameTemplate": "ghcr.io/corewire/charts/drop-crds"
}
]
}Verify
kubectl -n drop-system get podsThe operator Pod should be running and ready.
Last updated on