aboutsummaryrefslogtreecommitdiffstats
path: root/deployment.yaml
diff options
context:
space:
mode:
authorRemigiusz Janeczek <remigiusz.janeczek@nokia.com>2021-03-16 16:00:26 +0100
committerRemigiusz Janeczek <remigiusz.janeczek@nokia.com>2021-03-17 12:07:37 +0100
commite0437a4237c99a16955d5ec56ff5fe9996c76b57 (patch)
treee069f513aae60fcc4636dd80978ce477c9ed47a7 /deployment.yaml
parent919ae37310243f676eafee0ebf01c9d64ee5b925 (diff)
Add helm validator sources
Issue-ID: SDC-3185 Signed-off-by: Remigiusz Janeczek <remigiusz.janeczek@nokia.com> Change-Id: I32dea3b4294a90c4dfc75864fb4200f044e7a0b6
Diffstat (limited to 'deployment.yaml')
-rw-r--r--deployment.yaml44
1 files changed, 44 insertions, 0 deletions
diff --git a/deployment.yaml b/deployment.yaml
new file mode 100644
index 0000000..43b6f15
--- /dev/null
+++ b/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-dev-local.esisoj70.emea.nsn-net.net/towrobel/helm-client-validator:1.5.0
+ 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