From bbb6fcf818c5777426a1471c930cda7bd8ef07b0 Mon Sep 17 00:00:00 2001 From: Barahalikar Siddharth Date: Mon, 20 Jun 2022 16:04:29 +0530 Subject: [PATCH] Create deployment.yaml --- sealed-secret/deployment.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 sealed-secret/deployment.yaml diff --git a/sealed-secret/deployment.yaml b/sealed-secret/deployment.yaml new file mode 100644 index 0000000..a763da4 --- /dev/null +++ b/sealed-secret/deployment.yaml @@ -0,0 +1,31 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + creationTimestamp: null + labels: + app: secret-app + name: secret-app +spec: + replicas: 1 + selector: + matchLabels: + app: secret-app + strategy: {} + template: + metadata: + creationTimestamp: null + labels: + app: secret-app + spec: + containers: + - image: siddharth67/sealed-secrets:v1 + name: secret-app + # uncomment block to mount secret + # volumeMounts: + # - name: app-secret-vol + # mountPath: "/app/crds" + # readOnly: true + # volumes: + # - name: app-secret-vol + # secret: + # secretName: app-crds