Compare commits

...

3 Commits

Author SHA1 Message Date
2735a8a2b1
Added blog to new scaleway
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
2023-12-15 11:02:45 +00:00
a738134135
Added auth-proxy to new scaleway
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
2023-12-15 11:02:16 +00:00
55dd830848
Add cert-manager to new scaleway
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
2023-12-15 11:01:32 +00:00
3 changed files with 112 additions and 0 deletions

View File

@ -22,3 +22,29 @@ spec:
- kind: Secret
jsonPointers:
- /data
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: auth-proxy-scaleway
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: cluster.fun
destination:
namespace: auth-proxy
name: scaleway
source:
path: manifests/auth-proxy
repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git"
targetRevision: HEAD
syncPolicy:
automated: {}
syncOptions:
- CreateNamespace=true
ignoreDifferences:
- kind: Secret
jsonPointers:
- /data
---

View File

@ -26,3 +26,33 @@ spec:
kind: Deployment
jqPathExpressions:
- .spec.template.spec.containers[]?.image
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: blog-scaleway
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: cluster.fun
destination:
namespace: blog
name: scaleway
source:
path: manifests/blog
repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git"
targetRevision: HEAD
syncPolicy:
automated: {}
syncOptions:
- CreateNamespace=true
ignoreDifferences:
- kind: Secret
jsonPointers:
- /data
- group: apps
kind: Deployment
jqPathExpressions:
- .spec.template.spec.containers[]?.image
---

View File

@ -72,3 +72,59 @@ spec:
memory: 64Mi
syncPolicy:
automated: {}
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: cert-manager-chart-scaleway
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: cluster.fun
destination:
namespace: cert-manager
name: scaleway
source:
repoURL: 'https://charts.jetstack.io'
targetRevision: 1.11.0
chart: cert-manager
helm:
version: v3
values: |-
installCRDs: "true"
resources:
requests:
memory: 32Mi
limits:
memory: 64Mi
syncPolicy:
automated: {}
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: cert-manager-issuer-scaleway
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: cluster.fun
destination:
namespace: cert-manager
name: scaleway
source:
path: manifests/certmanager_chart
repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git"
targetRevision: HEAD
syncPolicy:
automated: {}
ignoreDifferences:
- kind: Secret
jsonPointers:
- /data
---