Added homelab-accessible-check

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
2025-11-09 11:46:28 +00:00
parent 2cde93b2df
commit ce6b933f10
2 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: cluster-fun-homelab-accessible-check
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: cluster.fun
destination:
namespace: homelab-accessible-check
name: cluster-fun (v2)
source:
path: manifests/homelab-accessible-check
repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git"
targetRevision: HEAD
syncPolicy:
automated: {}
syncOptions:
- CreateNamespace=true
ignoreDifferences:
- kind: Secret
jsonPointers:
- /data
---

View File

@@ -0,0 +1,53 @@
apiVersion: v1
kind: Secret
metadata:
name: docker-config
namespace: homelab-accessible-check
annotations:
kube-1password: i6ngbk5zf4k52xgwdwnfup5bby
kube-1password/vault: Kubernetes
kube-1password/secret-text-key: .dockerconfigjson
type: kubernetes.io/dockerconfigjson
data:
.dockerconfigjson: e30=
---
apiVersion: v1
kind: Secret
metadata:
name: homelab-accessible-check
namespace: homelab-accessible-check
annotations:
kube-1password: bz6ujxc5neqma242lpfqdxfiay
kube-1password/vault: Kubernetes
kube-1password/secret-text-parse: "true"
type: Opaque
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: homelab-accessible-check
namespace: homelab-accessible-check
spec:
replicas: 1
selector:
matchLabels:
app: homelab-accessible-check
template:
metadata:
labels:
app: homelab-accessible-check
spec:
imagePullSecrets:
- name: docker-config
containers:
- name: checker
image: rg.fr-par.scw.cloud/averagemarcus-private/homelab-accessible-check:latest
imagePullPolicy: Always
envFrom:
- secretRef:
name: "homelab-accessible-check"
resources:
limits:
memory: 50Mi
requests:
memory: 50Mi