summaryrefslogtreecommitdiff
path: root/deployment.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'deployment.yaml')
-rw-r--r--deployment.yaml28
1 files changed, 0 insertions, 28 deletions
diff --git a/deployment.yaml b/deployment.yaml
deleted file mode 100644
index 3bcd9cc..0000000
--- a/deployment.yaml
+++ /dev/null
@@ -1,28 +0,0 @@
1---
2apiVersion: apps/v1
3kind: Deployment
4metadata:
5 name: auth
6spec:
7 selector:
8 matchLabels:
9 app: auth
10 template:
11 metadata:
12 labels:
13 app: auth
14 app.kubernetes.io/name: auth
15 spec:
16 containers:
17 - name: auth
18 image: ghcr.io/steveiliop56/tinyauth:v3
19 resources:
20 requests:
21 memory: "64Mi"
22 cpu: "0"
23 limits:
24 memory: "256Mi"
25 cpu: "1"
26 ports:
27 - name: http
28 containerPort: 8000