commit 7ea4e390c66d1321fc498d0cb9f9363499f0cc71 parent 2360dea2a16e49497b8d6a177123ed193cfe1c05 Author: MTRNord <MTRNord@users.noreply.github.com> Date: Thu, 9 Apr 2026 12:36:15 +0200 remove files Signed-off-by: MTRNord <MTRNord@users.noreply.github.com> Diffstat:
| D | apps/talos_cluster/image-builder/buildkitd-deployment.yaml | | | 55 | ------------------------------------------------------- |
| D | apps/talos_cluster/image-builder/buildkitd-service.yaml | | | 12 | ------------ |
| D | apps/talos_cluster/image-builder/buildkitd-statefulset.yaml | | | 67 | ------------------------------------------------------------------- |
3 files changed, 0 insertions(+), 134 deletions(-)
diff --git a/apps/talos_cluster/image-builder/buildkitd-deployment.yaml b/apps/talos_cluster/image-builder/buildkitd-deployment.yaml @@ -1,55 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: buildkitd - namespace: image-builder -spec: - replicas: 1 - selector: - matchLabels: - app: buildkitd - template: - metadata: - labels: - app: buildkitd - spec: - containers: - - name: buildkitd - image: moby/buildkit:v0.29.0 - args: - - --addr - - unix:///run/buildkit/buildkitd.sock - - --addr - - tcp://0.0.0.0:1234 - ports: - - containerPort: 1234 - protocol: TCP - securityContext: - privileged: true - readinessProbe: - exec: - command: - - buildctl - - debug - - workers - initialDelaySeconds: 5 - periodSeconds: 30 - livenessProbe: - exec: - command: - - buildctl - - debug - - workers - initialDelaySeconds: 5 - periodSeconds: 30 - volumeMounts: - - name: docker-config - mountPath: /root/.docker - readOnly: true - volumes: - - name: docker-config - secret: - secretName: image-builder-registry-secret - items: - - key: dockerconfig.json - path: config.json diff --git a/apps/talos_cluster/image-builder/buildkitd-service.yaml b/apps/talos_cluster/image-builder/buildkitd-service.yaml @@ -1,12 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: buildkitd - namespace: image-builder -spec: - selector: - app: buildkitd - ports: - - port: 1234 - targetPort: 1234 - protocol: TCP diff --git a/apps/talos_cluster/image-builder/buildkitd-statefulset.yaml b/apps/talos_cluster/image-builder/buildkitd-statefulset.yaml @@ -1,67 +0,0 @@ -apiVersion: apps/v1 -kind: StatefulSet -metadata: - labels: - app: buildkitd - name: buildkitd - namespace: image-builder -spec: - serviceName: buildkitd - podManagementPolicy: Parallel - replicas: 1 - selector: - matchLabels: - app: buildkitd - template: - metadata: - labels: - app: buildkitd - spec: - containers: - - name: buildkitd - image: tonistiigi/buildkit:master - args: - - --addr - - unix:///run/buildkit/buildkitd.sock - - --addr - - tcp://0.0.0.0:1234 - - --allow-insecure-entitlement - - security.insecure - ports: - - containerPort: 1234 - protocol: TCP - readinessProbe: - exec: - command: - - buildctl - - debug - - workers - initialDelaySeconds: 5 - periodSeconds: 30 - livenessProbe: - exec: - command: - - buildctl - - debug - - workers - initialDelaySeconds: 5 - periodSeconds: 30 - securityContext: - privileged: true - volumeMounts: - - name: docker-config - mountPath: /root/.docker - readOnly: true - - name: containerd-sock - mountPath: /run/containerd - volumes: - - name: docker-config - secret: - secretName: image-builder-registry-secret - items: - - key: dockerconfig.json - path: config.json - - name: containerd-sock - hostPath: - path: /run/containerd - type: Directory