aboutsummaryrefslogtreecommitdiffstats
path: root/dev-resources/deployment.yaml
diff options
context:
space:
mode:
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