first commit

Update dev image to 00f0786b2c53ffa5a779b2b75dc5c86b4fcf5304

Update dev image to e1d98f86f22ab1475237e8d14920f38630ad17e9

update

Signed-off-by: gwg313 <gwg313@pm.me>

add harbor secret

Signed-off-by: gwg313 <gwg313@pm.me>

update ns

Signed-off-by: gwg313 <gwg313@pm.me>

update

Signed-off-by: gwg313 <gwg313@pm.me>

update

Signed-off-by: gwg313 <gwg313@pm.me>

update

Signed-off-by: gwg313 <gwg313@pm.me>

update

Signed-off-by: gwg313 <gwg313@pm.me>

remove ns from secret

Signed-off-by: gwg313 <gwg313@pm.me>

update

Signed-off-by: gwg313 <gwg313@pm.me>

update

Signed-off-by: gwg313 <gwg313@pm.me>

update secret

Signed-off-by: gwg313 <gwg313@pm.me>

update

Signed-off-by: gwg313 <gwg313@pm.me>

update

Signed-off-by: gwg313 <gwg313@pm.me>

update

Signed-off-by: gwg313 <gwg313@pm.me>

Update dev image to fa178b9225c0870878dbf97a66bc458ea11d0ba8

update

Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
gwg313 2025-11-20 10:12:47 -05:00
commit ee3055eb73
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
8 changed files with 122 additions and 0 deletions

21
A3/base/deployment.yaml Normal file
View file

@ -0,0 +1,21 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: a3-deployment
spec:
replicas: 1
selector:
matchLabels:
app: a3-deployment
template:
metadata:
labels:
app: a3-deployment
spec:
imagePullSecrets:
- name: harbor-regcred
containers:
- name: a3-deployment
image: registry.gwg313.xyz/private/a3-dev:placeholder
ports:
- containerPort: 3000

View file

@ -0,0 +1,9 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- deployment.yaml
- service.yaml
images:
- name: harbor.example.com/simple-demo/simple-demo
newTag: dev-placeholder

13
A3/base/service.yaml Normal file
View file

@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: a3-service
spec:
selector:
app: a3-deployment
ports:
- port: 80
targetPort: 3000
protocol: TCP
name: http
type: ClusterIP