Add Dockerfile, K8s manifests, and deploy.sh for plexnuke k3s cluster

This commit is contained in:
2026-06-27 16:51:01 -05:00
parent 1bd5325baa
commit 3bf7642343
7 changed files with 236 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
apiVersion: v1
kind: Secret
metadata:
name: la-huasca-registry
namespace: ${NAMESPACE}
type: kubernetes.io/dockerconfigjson
stringData:
.dockerconfigjson: |
{
"auths": {
"gitea.ajavasoft.com": {
"username": "${REGISTRY_USER}",
"password": "${REGISTRY_PASS}",
"auth": "${REGISTRY_AUTH}"
}
}
}