From 64dd097165e289d70fc682d8fb44973e81877ec8 Mon Sep 17 00:00:00 2001 From: Barahalikar Siddharth Date: Tue, 20 Sep 2022 14:30:32 +0530 Subject: [PATCH] Create deployment.yaml --- health-check/deployment.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 health-check/deployment.yaml diff --git a/health-check/deployment.yaml b/health-check/deployment.yaml new file mode 100644 index 0000000..a53ad47 --- /dev/null +++ b/health-check/deployment.yaml @@ -0,0 +1,20 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: random-shapes +spec: + selector: + matchLabels: + app: random-shapes + replicas: 2 + template: + metadata: + labels: + app: random-shapes + spec: + containers: + - name: random-shapes + image: siddharth67/php-random-shapes:v1 + envFrom: + - configMapRef: + name: moving-shapes-colors