From ae27ab285e10ff84153b6d9a6844e395310eefc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Sat, 25 Apr 2026 10:42:46 +0000 Subject: [PATCH] new file: manifests/ubuntu-deployment.yaml --- manifests/ubuntu-deployment.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 manifests/ubuntu-deployment.yaml diff --git a/manifests/ubuntu-deployment.yaml b/manifests/ubuntu-deployment.yaml new file mode 100644 index 0000000..712ab64 --- /dev/null +++ b/manifests/ubuntu-deployment.yaml @@ -0,0 +1,26 @@ + +apiVersion: apps/v1 +kind: Deployment +metadata: + name: ubuntu-test +spec: + replicas: 1 + selector: + matchLabels: + app: ubuntu-test + template: + metadata: + labels: + app: ubuntu-test + spec: + containers: + - name: ubuntu-test + image: ubuntu:latest + command: ["sleep", "infinity"] + resources: + requests: + memory: "512Mi" + cpu: "500m" + limits: + memory: "1024Mi" + cpu: "500m" \ No newline at end of file