Switch to using the tailscale helm chart

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
2023-12-15 18:50:28 +00:00
parent 494bd6d91f
commit b0c4beb211
4 changed files with 90 additions and 194 deletions

View File

@@ -14,9 +14,36 @@ spec:
path: manifests/tailscale-operator
repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git"
targetRevision: HEAD
kustomize:
commonLabels:
app.kubernetes.io/instance: scaleway-cluster
syncPolicy:
automated: {}
syncOptions:
- CreateNamespace=true
ignoreDifferences:
- kind: Secret
jsonPointers:
- /data
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: tailscale-operator-chart-scaleway
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: cluster.fun
destination:
namespace: tailscale
name: scaleway
source:
repoURL: 'https://pkgs.tailscale.com/helmcharts'
targetRevision: 1.56.0
chart: tailscale-operator
helm:
version: v3
values: |-
operatorConfig:
hostname: scaleway-cluster
syncPolicy:
automated: {}
syncOptions:
@@ -56,6 +83,36 @@ spec:
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: tailscale-operator-chart-civo
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: cluster.fun
destination:
namespace: tailscale
name: civo
source:
repoURL: 'https://pkgs.tailscale.com/helmcharts'
targetRevision: 1.56.0
chart: tailscale-operator
helm:
version: v3
values: |-
operatorConfig:
hostname: civo-cluster
syncPolicy:
automated: {}
syncOptions:
- CreateNamespace=true
ignoreDifferences:
- kind: Secret
jsonPointers:
- /data
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: tailscale-operator-scaleway-old
namespace: argocd
@@ -82,3 +139,33 @@ spec:
jsonPointers:
- /data
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: tailscale-operator-chart-scaleway-old
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: cluster.fun
destination:
namespace: tailscale
name: cluster-fun (scaleway)
source:
repoURL: 'https://pkgs.tailscale.com/helmcharts'
targetRevision: 1.56.0
chart: tailscale-operator
helm:
version: v3
values: |-
operatorConfig:
hostname: scaleway-old-cluster
syncPolicy:
automated: {}
syncOptions:
- CreateNamespace=true
ignoreDifferences:
- kind: Secret
jsonPointers:
- /data
---