add: assets, some fixes, and build system

This commit is contained in:
Charles
2025-10-12 23:38:44 -07:00
parent 4ab17e5872
commit 167fc33f8c
9 changed files with 244 additions and 33 deletions
+34
View File
@@ -0,0 +1,34 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: orangepunk-deployment
spec:
replicas: 1
selector:
matchLabels:
app: orangepunk
template:
metadata:
labels:
app: orangepunk
app.kubernetes.io/name: orangepunk
spec:
containers:
- name: orangepunk-container
image: us-west4-docker.pkg.dev/nixernetes/images/orangepunk-html:TAG
ports:
- containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: orangepunk-service
spec:
selector:
app.kubernetes.io/name: orangepunk
ports:
- protocol: TCP
port: 80
targetPort: 80
nodePort: 30014
type: NodePort