aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorawudzins <adam.wudzinski@nokia.com>2020-02-11 17:22:50 +0100
committerawudzins <adam.wudzinski@nokia.com>2020-02-14 09:44:08 +0100
commit8a02533ccad307ef94e4429fbde4fd3d66f66c31 (patch)
tree370f72ac0753e04ee9ddd146ee3dcee1ad2d439b
parentbddd4f0e38e09fb8479e9f97313fdb41297c2990 (diff)
Add Helm Chart
Issue-ID: AAF-995 Signed-off-by: Adam Wudzinski <adam.wudzinski@nokia.com> Change-Id: I251cd76b34a4bca96056bddc50f272ecd9114ea2
-rw-r--r--certService/helm/aaf-cert-service/.helmignore22
-rw-r--r--certService/helm/aaf-cert-service/Chart.yaml5
-rw-r--r--certService/helm/aaf-cert-service/templates/deployment.yaml34
-rw-r--r--certService/helm/aaf-cert-service/templates/service.yaml11
-rw-r--r--certService/helm/aaf-cert-service/values.yaml24
5 files changed, 96 insertions, 0 deletions
diff --git a/certService/helm/aaf-cert-service/.helmignore b/certService/helm/aaf-cert-service/.helmignore
new file mode 100644
index 00000000..50af0317
--- /dev/null
+++ b/certService/helm/aaf-cert-service/.helmignore
@@ -0,0 +1,22 @@
+# Patterns to ignore when building packages.
+# This supports shell glob matching, relative path matching, and
+# negation (prefixed with !). Only one pattern per line.
+.DS_Store
+# Common VCS dirs
+.git/
+.gitignore
+.bzr/
+.bzrignore
+.hg/
+.hgignore
+.svn/
+# Common backup files
+*.swp
+*.bak
+*.tmp
+*~
+# Various IDEs
+.project
+.idea/
+*.tmproj
+.vscode/
diff --git a/certService/helm/aaf-cert-service/Chart.yaml b/certService/helm/aaf-cert-service/Chart.yaml
new file mode 100644
index 00000000..37c7d148
--- /dev/null
+++ b/certService/helm/aaf-cert-service/Chart.yaml
@@ -0,0 +1,5 @@
+apiVersion: v1
+appVersion: "1.0"
+description: A Helm chart for AAF Cert Service
+name: aaf-cert-service
+version: 0.1.0
diff --git a/certService/helm/aaf-cert-service/templates/deployment.yaml b/certService/helm/aaf-cert-service/templates/deployment.yaml
new file mode 100644
index 00000000..0b64d730
--- /dev/null
+++ b/certService/helm/aaf-cert-service/templates/deployment.yaml
@@ -0,0 +1,34 @@
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: {{ .Chart.Name }}-deployment
+spec:
+ selector:
+ matchLabels:
+ app: {{ .Values.appLabel }}
+ replicas: {{ .Values.replicaCount }}
+ template:
+ metadata:
+ labels:
+ app: {{ .Values.appLabel }}
+ spec:
+ containers:
+ - name: aaf-cert-service
+ image: {{ .Values.repository }}/{{ .Values.image }}
+ imagePullPolicy: {{ .Values.pullPolicy }}
+ ports:
+ - containerPort: {{ .Values.containerPort }}
+ livenessProbe:
+ httpGet:
+ port: {{ .Values.containerPort }}
+ path: {{ .Values.healthcheck.path }}
+ initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
+ periodSeconds: {{ .Values.liveness.periodSeconds }}
+ readinessProbe:
+ httpGet:
+ port: {{ .Values.containerPort }}
+ path: {{ .Values.healthcheck.path }}
+ initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
+ periodSeconds: {{ .Values.readiness.periodSeconds }}
+ resources:
+ {{ toYaml .Values.resources }}
diff --git a/certService/helm/aaf-cert-service/templates/service.yaml b/certService/helm/aaf-cert-service/templates/service.yaml
new file mode 100644
index 00000000..fba7e5fa
--- /dev/null
+++ b/certService/helm/aaf-cert-service/templates/service.yaml
@@ -0,0 +1,11 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: {{ .Chart.Name }}-service
+spec:
+ type: {{ .Values.service.type }}
+ selector:
+ app: {{ .Values.appLabel }}
+ ports:
+ - protocol: TCP
+ port: {{ .Values.containerPort }} \ No newline at end of file
diff --git a/certService/helm/aaf-cert-service/values.yaml b/certService/helm/aaf-cert-service/values.yaml
new file mode 100644
index 00000000..9ec51c85
--- /dev/null
+++ b/certService/helm/aaf-cert-service/values.yaml
@@ -0,0 +1,24 @@
+appLabel: aaf-cert-service
+replicaCount: 1
+repository: nexus3.onap.org:10001
+image: onap/org.onap.aaf.certservice.aaf-certservice-api:1.0.0
+pullPolicy: Always
+containerPort: 8080
+service:
+ type: ClusterIP
+liveness:
+ initialDelaySeconds: 60
+ periodSeconds: 10
+readiness:
+ initialDelaySeconds: 30
+ periodSeconds: 10
+healthcheck:
+ path: /actuator/health
+
+resources:
+ limits:
+ cpu: 2
+ memory: 2Gi
+ requests:
+ cpu: 1
+ memory: 1Gi \ No newline at end of file