26 lines
747 B
YAML
26 lines
747 B
YAML
# Matches the release already installed manually on this cluster
|
|
# (`helm list -n kong`: chart kong-operator-1.3.1, values env.ENABLE_CONTROLLER_KONNECT: true).
|
|
# helm-controller can adopt an existing release under the same
|
|
# releaseName/targetNamespace — this doesn't reinstall from scratch, it
|
|
# starts managing what's already there.
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: kong-operator
|
|
namespace: flux-system
|
|
spec:
|
|
interval: 1h
|
|
releaseName: kong-operator
|
|
targetNamespace: kong
|
|
chart:
|
|
spec:
|
|
chart: kong-operator
|
|
version: "1.3.1"
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: kong
|
|
namespace: flux-system
|
|
values:
|
|
env:
|
|
ENABLE_CONTROLLER_KONNECT: true
|