mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 21:11:52 +07:00
Move Longhorn back to infra layer
Due to race condition
This commit is contained in:
parent
438d0bed1e
commit
0036b77a28
@ -6,7 +6,6 @@ resources:
|
||||
- resources/cert-manager.yaml
|
||||
- resources/descheduler.yaml
|
||||
- resources/kured.yaml
|
||||
- resources/longhorn.yaml
|
||||
- resources/metallb.yaml
|
||||
- resources/nginx.yaml
|
||||
- resources/node-problem-detector.yaml
|
||||
|
@ -1,21 +0,0 @@
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: longhorn
|
||||
spec:
|
||||
destination:
|
||||
name: in-cluster
|
||||
namespace: longhorn-system
|
||||
server: ''
|
||||
source:
|
||||
path: ''
|
||||
repoURL: 'https://charts.longhorn.io'
|
||||
targetRevision: 1.1.0
|
||||
chart: longhorn
|
||||
project: default
|
||||
syncPolicy:
|
||||
automated:
|
||||
prune: true
|
||||
selfHeal: true
|
||||
syncOptions:
|
||||
- CreateNamespace=true
|
@ -16,3 +16,13 @@ resource "helm_release" "argocd" {
|
||||
create_namespace = true
|
||||
wait = true
|
||||
}
|
||||
|
||||
resource "helm_release" "longhorn" {
|
||||
name = "longhorn"
|
||||
repository = "https://charts.longhorn.io"
|
||||
chart = "longhorn"
|
||||
version = "1.1.1"
|
||||
namespace = "longhorn"
|
||||
create_namespace = true
|
||||
wait = true
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user