cluster

Infrastructure files for Nordgedanken and Midnightthoughts.
git clone git://archive.git.mtrnord.blog/MTRNord/cluster.git
Log | Files | Refs | README

commit 32691c84018da2789d8788519771bd662e677cfb
parent 7ea4e390c66d1321fc498d0cb9f9363499f0cc71
Author: MTRNord <MTRNord@users.noreply.github.com>
Date:   Thu,  9 Apr 2026 12:40:48 +0200

cleanup

Signed-off-by: MTRNord <MTRNord@users.noreply.github.com>

Diffstat:
Mapps/talos_cluster/image-builder/kustomization.yaml | 2--
Dapps/talos_cluster/image-builder/podman-deployment.yaml | 50--------------------------------------------------
Dapps/talos_cluster/image-builder/podman-service.yaml | 13-------------
3 files changed, 0 insertions(+), 65 deletions(-)

diff --git a/apps/talos_cluster/image-builder/kustomization.yaml b/apps/talos_cluster/image-builder/kustomization.yaml @@ -4,8 +4,6 @@ resources: - namespace.yaml - rbac.yaml - binfmt-daemonset.yaml - - podman-deployment.yaml - - podman-service.yaml - registry-secret.yaml - cosign-secret.yaml - build-blog-cronjob.yaml diff --git a/apps/talos_cluster/image-builder/podman-deployment.yaml b/apps/talos_cluster/image-builder/podman-deployment.yaml @@ -1,50 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: podman-builder - namespace: image-builder -spec: - replicas: 1 - selector: - matchLabels: - app: podman-builder - template: - metadata: - labels: - app: podman-builder - spec: - serviceAccountName: image-builder - containers: - - name: podman - image: podman:latest - command: - - podman - - system - - service - - unix:///run/podman/podman.sock - ports: - - containerPort: 8888 - protocol: TCP - securityContext: - privileged: true - volumeMounts: - - name: docker-config - mountPath: /root/.docker - readOnly: true - - name: podman-sock - mountPath: /run/podman - resources: - requests: - cpu: 500m - memory: 512Mi - limits: - memory: 2Gi - volumes: - - name: docker-config - secret: - secretName: image-builder-registry-secret - items: - - key: dockerconfig.json - path: config.json - - name: podman-sock - emptyDir: {} diff --git a/apps/talos_cluster/image-builder/podman-service.yaml b/apps/talos_cluster/image-builder/podman-service.yaml @@ -1,13 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: podman-builder - namespace: image-builder -spec: - selector: - app: podman-builder - ports: - - port: 8888 - targetPort: 8888 - protocol: TCP - type: ClusterIP