deploy
All checks were successful
Build and Push Container Image / build-and-push (push) Successful in 8m29s

This commit is contained in:
2026-05-23 03:05:16 +02:00
parent 23246e2326
commit 43afad7dba
11 changed files with 268 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: mal
spec:
replicas: 1
template:
spec:
containers:
- name: mal
resources:
limits:
cpu: "1"
memory: "1Gi"
requests:
cpu: "500m"
memory: "512Mi"
env:
- name: ENV
value: production

View File

@@ -0,0 +1,20 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
# 1. Point to the base manifests
resources:
- ../../base
# 2. Apply the production-specific changes
patches:
- path: deployment.yaml
target:
kind: Deployment
name: mal
namespace: mal
images:
- name: main
newName: reg.milasholsting.dk/apps/mal
newTag: latest