A Crossplane Configuration package that installs the linkerd-control-plane Helm chart with a minimal, stable interface.
helm-linkerd renders a single Helm release for Linkerd. It exposes only the inputs needed
for chart values, namespace, and release name, keeping the interface stable while allowing full Helm overrides.
- Minimal Helm interface: values and overrideAllValues with stable defaults
- Predictable naming: defaults to
<clusterName>-linkerdin thelinkerdnamespace - GitOps friendly: ships a
.gitops/deploy chart
- Crossplane installed in the cluster
- Crossplane providers:
provider-helm(>=v1.0.2)
- Crossplane function:
function-auto-ready(>=v0.6.0)
- Linkerd CRDs must be installed separately (use
linkerd-crdschart orlinkerd install --crds-only)
apiVersion: pkg.crossplane.io/v1
kind: Configuration
metadata:
name: helm-linkerd
spec:
package: ghcr.io/hops-ops/helm-linkerd:latestapiVersion: helm.hops.ops.com.ai/v1alpha1
kind: Linkerd
metadata:
name: linkerd
namespace: example-env
spec:
clusterName: example-cluster
values:
controllerReplicas: 2Linkerd requires TLS certificates for its identity system. The default configuration uses
identity.issuer.scheme: kubernetes.io/tls. You must provide valid certificates either by:
- Using cert-manager with a Linkerd Trust Anchor
- Manually creating the required secrets
- Using
overrideAllValuesto configure a different identity scheme
See Linkerd Identity documentation for details.
make render
make validate
make testApache-2.0