add: basic start

This commit is contained in:
2025-10-12 21:30:25 -07:00
commit 4ab17e5872
8 changed files with 128 additions and 0 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:0.0.3
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