From f8ffa830b70e076a36a9d7ba33f09e2b1973ee4a Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Fri, 16 Jan 2026 20:00:17 -0300 Subject: [PATCH] longhorn: move images to infra project --- infrastructure/longhorn/core/helmrelease.yaml | 26 ++++++++--------- .../longhorn/core/kustomization.yaml | 1 + infrastructure/longhorn/core/settings.yaml | 28 +++++++++++++++++++ 3 files changed, 42 insertions(+), 13 deletions(-) create mode 100644 infrastructure/longhorn/core/settings.yaml diff --git a/infrastructure/longhorn/core/helmrelease.yaml b/infrastructure/longhorn/core/helmrelease.yaml index 067bbd6..575f4bd 100644 --- a/infrastructure/longhorn/core/helmrelease.yaml +++ b/infrastructure/longhorn/core/helmrelease.yaml @@ -37,44 +37,44 @@ spec: pullPolicy: Always longhorn: engine: - repository: registry.bstein.dev/bstein/longhorn-engine + repository: registry.bstein.dev/infra/longhorn-engine tag: v1.8.2 manager: - repository: registry.bstein.dev/bstein/longhorn-manager + repository: registry.bstein.dev/infra/longhorn-manager tag: v1.8.2 ui: - repository: registry.bstein.dev/bstein/longhorn-ui + repository: registry.bstein.dev/infra/longhorn-ui tag: v1.8.2 instanceManager: - repository: registry.bstein.dev/bstein/longhorn-instance-manager + repository: registry.bstein.dev/infra/longhorn-instance-manager tag: v1.8.2 shareManager: - repository: registry.bstein.dev/bstein/longhorn-share-manager + repository: registry.bstein.dev/infra/longhorn-share-manager tag: v1.8.2 backingImageManager: - repository: registry.bstein.dev/bstein/longhorn-backing-image-manager + repository: registry.bstein.dev/infra/longhorn-backing-image-manager tag: v1.8.2 supportBundleKit: - repository: registry.bstein.dev/bstein/longhorn-support-bundle-kit + repository: registry.bstein.dev/infra/longhorn-support-bundle-kit tag: v0.0.56 csi: attacher: - repository: registry.bstein.dev/bstein/longhorn-csi-attacher + repository: registry.bstein.dev/infra/longhorn-csi-attacher tag: v4.9.0 provisioner: - repository: registry.bstein.dev/bstein/longhorn-csi-provisioner + repository: registry.bstein.dev/infra/longhorn-csi-provisioner tag: v5.3.0 nodeDriverRegistrar: - repository: registry.bstein.dev/bstein/longhorn-csi-node-driver-registrar + repository: registry.bstein.dev/infra/longhorn-csi-node-driver-registrar tag: v2.14.0 resizer: - repository: registry.bstein.dev/bstein/longhorn-csi-resizer + repository: registry.bstein.dev/infra/longhorn-csi-resizer tag: v1.13.2 snapshotter: - repository: registry.bstein.dev/bstein/longhorn-csi-snapshotter + repository: registry.bstein.dev/infra/longhorn-csi-snapshotter tag: v8.2.0 livenessProbe: - repository: registry.bstein.dev/bstein/longhorn-livenessprobe + repository: registry.bstein.dev/infra/longhorn-livenessprobe tag: v2.16.0 defaultSettings: systemManagedPodsImagePullPolicy: Always diff --git a/infrastructure/longhorn/core/kustomization.yaml b/infrastructure/longhorn/core/kustomization.yaml index e8320c7..82ad411 100644 --- a/infrastructure/longhorn/core/kustomization.yaml +++ b/infrastructure/longhorn/core/kustomization.yaml @@ -7,3 +7,4 @@ resources: - secretproviderclass.yaml - vault-sync-deployment.yaml - helmrelease.yaml + - settings.yaml diff --git a/infrastructure/longhorn/core/settings.yaml b/infrastructure/longhorn/core/settings.yaml new file mode 100644 index 0000000..45b51d4 --- /dev/null +++ b/infrastructure/longhorn/core/settings.yaml @@ -0,0 +1,28 @@ +# infrastructure/longhorn/core/settings.yaml +apiVersion: longhorn.io/v1beta2 +kind: Setting +metadata: + name: default-engine-image + namespace: longhorn-system +value: registry.bstein.dev/infra/longhorn-engine:v1.8.2 +--- +apiVersion: longhorn.io/v1beta2 +kind: Setting +metadata: + name: default-instance-manager-image + namespace: longhorn-system +value: registry.bstein.dev/infra/longhorn-instance-manager:v1.8.2 +--- +apiVersion: longhorn.io/v1beta2 +kind: Setting +metadata: + name: default-backing-image-manager-image + namespace: longhorn-system +value: registry.bstein.dev/infra/longhorn-backing-image-manager:v1.8.2 +--- +apiVersion: longhorn.io/v1beta2 +kind: Setting +metadata: + name: support-bundle-manager-image + namespace: longhorn-system +value: registry.bstein.dev/infra/longhorn-support-bundle-kit:v0.0.56