From 79f369dad7166b3ab132ec348a4eb38d2ae0c462 Mon Sep 17 00:00:00 2001 From: Barahalikar Siddharth Date: Sat, 4 Jun 2022 23:04:22 +0530 Subject: [PATCH] Create deployment.yml --- solar-system/deployment.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 solar-system/deployment.yml diff --git a/solar-system/deployment.yml b/solar-system/deployment.yml new file mode 100644 index 0000000..8bfbc9c --- /dev/null +++ b/solar-system/deployment.yml @@ -0,0 +1,22 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app: solar-system + name: solar-system +spec: + replicas: 1 + selector: + matchLabels: + app: solar-system + strategy: {} + template: + metadata: + labels: + app: solar-system + spec: + containers: + - image: siddharth67/solar-system:v3 + name: solar-system + port: + - containerPort: 3000