Add GitOps stack for abrban.com with Gitea Actions CI/CD.
Build and Deploy Platform / build-push-deploy (push) Has been cancelled
Build and Deploy Platform / build-push-deploy (push) Has been cancelled
Harbor in-cluster builds via Kaniko, ArgoCD auto-sync, and production Helm values for abrban.com domains. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: image-import
|
||||
namespace: cloudhost
|
||||
spec:
|
||||
nodeName: abr
|
||||
restartPolicy: Never
|
||||
hostNetwork: true
|
||||
containers:
|
||||
- name: import
|
||||
image: quay.io/skopeo/stable:latest
|
||||
command:
|
||||
- sh
|
||||
- -ec
|
||||
- |
|
||||
sleep 3600
|
||||
securityContext:
|
||||
privileged: true
|
||||
volumeMounts:
|
||||
- name: containerd-sock
|
||||
mountPath: /run/containerd/containerd.sock
|
||||
- name: containerd-sock-k3s
|
||||
mountPath: /run/k3s/containerd/containerd.sock
|
||||
- name: import-dir
|
||||
mountPath: /import
|
||||
volumes:
|
||||
- name: containerd-sock
|
||||
hostPath:
|
||||
path: /run/k3s/containerd/containerd.sock
|
||||
type: Socket
|
||||
- name: containerd-sock-k3s
|
||||
hostPath:
|
||||
path: /run/k3s/containerd/containerd.sock
|
||||
type: Socket
|
||||
- name: import-dir
|
||||
emptyDir: {}
|
||||
Reference in New Issue
Block a user