5 Commits

Author SHA1 Message Date
8b43f1833b Update grafana/promtail Docker tag to v3 2026-02-01 03:25:10 +00:00
cf1491fc4a Ignore image changes on dashboard
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
2026-01-31 17:02:41 +00:00
1486556981 Added penpot proxy
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
2026-01-31 15:45:25 +00:00
f3297d4166 Fix container port
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
2026-01-31 15:27:00 +00:00
6e96d7d5da Added mazanoke
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
2026-01-31 15:24:11 +00:00
5 changed files with 110 additions and 1 deletions

View File

@@ -22,5 +22,9 @@ spec:
- kind: Secret
jsonPointers:
- /data
- group: apps
kind: Deployment
jqPathExpressions:
- .spec.template.spec.containers[]?.image
---

View File

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

View File

@@ -18,6 +18,7 @@ spec:
- ombi.cluster.fun
- bsky-feeds.cluster.fun
- ai.cluster.fun
- penpot.cluster.fun
secretName: non-auth-proxy-ingress
rules:
- host: hello-world.cluster.fun
@@ -60,3 +61,13 @@ spec:
name: tailscale-proxy
port:
name: non-auth
- host: penpot.cluster.fun
http:
paths:
- path: /
pathType: ImplementationSpecific
backend:
service:
name: tailscale-proxy
port:
name: non-auth

View File

@@ -0,0 +1,69 @@
apiVersion: v1
kind: Service
metadata:
name: mazanoke
namespace: mazanoke
spec:
type: ClusterIP
ports:
- port: 80
targetPort: web
name: web
selector:
app: mazanoke
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: mazanoke
namespace: mazanoke
spec:
replicas: 1
selector:
matchLabels:
app: mazanoke
template:
metadata:
labels:
app: mazanoke
spec:
containers:
- name: web
image: ghcr.io/civilblur/mazanoke:v1.1.5
imagePullPolicy: Always
ports:
- containerPort: 80
name: web
resources:
limits:
memory: 200Mi
requests:
memory: 200Mi
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: mazanoke
namespace: mazanoke
annotations:
cert-manager.io/cluster-issuer: letsencrypt
ingress.kubernetes.io/ssl-redirect: "true"
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
spec:
ingressClassName: nginx
tls:
- hosts:
- image.cluster.fun
secretName: mazanoke-ingress
rules:
- host: image.cluster.fun
http:
paths:
- path: /
pathType: ImplementationSpecific
backend:
service:
name: mazanoke
port:
number: 80

View File

@@ -216,7 +216,7 @@ spec:
serviceAccountName: promtail
containers:
- name: promtail
image: "grafana/promtail:2.9.17"
image: "grafana/promtail:3.6.4"
imagePullPolicy: IfNotPresent
args:
- "-config.file=/etc/promtail/promtail.yaml"