summaryrefslogtreecommitdiffstats
path: root/dev-resources/deployment.yaml
diff options
context:
space:
mode:
authorPiotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com>2021-03-23 11:51:20 +0100
committerPiotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com>2021-03-23 12:57:48 +0100
commit5bead9db964d37647169df71279e57d3dbc20509 (patch)
tree6d3a084d1d31bf6f8fd18106a7d94fb1f893a6e8 /dev-resources/deployment.yaml
parent25763727265dd20b0301db0164c3e5549700cab4 (diff)
Move local dev files and add Changelog
Issue-ID: SDC-3185 Signed-off-by: Piotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com> Change-Id: Ic5d8b89dc0e69721c47b5fdec459bbd70e48f746
Diffstat (limited to 'dev-resources/deployment.yaml')
-rw-r--r--dev-resources/deployment.yaml44
1 files changed, 44 insertions, 0 deletions
diff --git a/dev-resources/deployment.yaml b/dev-resources/deployment.yaml
new file mode 100644
index 0000000..6cc52fe
--- /dev/null
+++ b/dev-resources/deployment.yaml
@@ -0,0 +1,44 @@
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: helm-client-validator
+ namespace: onap
+ labels:
+ app: helm-client-validator
+spec:
+ replicas: 1
+ selector:
+ matchLabels:
+ app: helm-client-validator
+ template:
+ metadata:
+ labels:
+ app: helm-client-validator
+ spec:
+ containers:
+ - name: helm-client-validator
+ imagePullPolicy: IfNotPresent
+ image: onap/org.onap.sdc.sdc-helm-validator:latest
+ resources:
+ requests:
+ memory: "256Mi"
+ limits:
+ memory: "256Mi"
+
+
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: helm-client-validator-service
+ namespace: onap
+ labels:
+ app: helm-client-validator
+spec:
+ selector:
+ app: helm-client-validator
+ type: NodePort
+ ports:
+ - port: 8244
+ targetPort: 8080
+ nodePort: 32244