summaryrefslogtreecommitdiffstats
path: root/kubernetes/mso/templates
diff options
context:
space:
mode:
Diffstat (limited to 'kubernetes/mso/templates')
-rw-r--r--kubernetes/mso/templates/all-services.yaml42
-rw-r--r--kubernetes/mso/templates/db-deployment.yaml51
-rw-r--r--kubernetes/mso/templates/mso-deployment.yaml76
3 files changed, 169 insertions, 0 deletions
diff --git a/kubernetes/mso/templates/all-services.yaml b/kubernetes/mso/templates/all-services.yaml
new file mode 100644
index 0000000000..6e2db71650
--- /dev/null
+++ b/kubernetes/mso/templates/all-services.yaml
@@ -0,0 +1,42 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: mariadb
+ namespace: {{ .Values.NS }}
+ labels:
+ app: mariadb
+spec:
+ ports:
+ - port: 3306
+ nodePort: 30252
+ selector:
+ app: mariadb
+ type: NodePort
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: mso
+ namespace: {{ .Values.NS }}
+ labels:
+ app: mso
+spec:
+ selector:
+ app: mso
+ ports:
+ - name: mso1
+ port: 8080
+ nodePort: 30223
+ - name: mso2
+ port: 3904
+ nodePort: 30225
+ - name: mso3
+ port: 3905
+ nodePort: 30224
+ - name: mso4
+ port: 9990
+ nodePort: 30222
+ - name: mso5
+ port: 8787
+ nodePort: 30250
+ type: NodePort
diff --git a/kubernetes/mso/templates/db-deployment.yaml b/kubernetes/mso/templates/db-deployment.yaml
new file mode 100644
index 0000000000..ff1cf75350
--- /dev/null
+++ b/kubernetes/mso/templates/db-deployment.yaml
@@ -0,0 +1,51 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+ name: mariadb
+ namespace: {{ .Values.NS }}
+spec:
+ replicas: 1
+ selector:
+ matchLabels:
+ app: mariadb
+ template:
+ metadata:
+ labels:
+ app: mariadb
+ name: mariadb
+ spec:
+ hostname: mariadb
+ containers:
+ - args:
+ image: {{ .Values.image.mariadb }}
+ imagePullPolicy: {{ .Values.pullPolicy }}
+ name: "mariadb"
+ env:
+ - name: MYSQL_ROOT_PASSWORD
+ value: password
+ - name: MARIADB_MAJOR
+ value: "10.1"
+ - name: MARIADB_VERSION
+ value: "10.1.11+maria-1~jessie"
+ volumeMounts:
+ - mountPath: /etc/mysql/conf.d
+ name: mso-mariadb-conf
+ - mountPath: /docker-entrypoint-initdb.d
+ name: mso-mariadb-docker-entrypoint-initdb
+ ports:
+ - containerPort: 3306
+ name: mariadb
+ readinessProbe:
+ tcpSocket:
+ port: 3306
+ initialDelaySeconds: 5
+ periodSeconds: 10
+ volumes:
+ - name: mso-mariadb-conf
+ hostPath:
+ path: /dockerdata-nfs/onap/mso/mariadb/conf.d
+ - name: mso-mariadb-docker-entrypoint-initdb
+ hostPath:
+ path: /dockerdata-nfs/onap/mso/mariadb/docker-entrypoint-initdb.d
+ imagePullSecrets:
+ - name: onap-docker-registry-key
diff --git a/kubernetes/mso/templates/mso-deployment.yaml b/kubernetes/mso/templates/mso-deployment.yaml
new file mode 100644
index 0000000000..6f12769d5a
--- /dev/null
+++ b/kubernetes/mso/templates/mso-deployment.yaml
@@ -0,0 +1,76 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+ name: mso
+ namespace: {{ .Values.NS }}
+spec:
+ replicas: 1
+ selector:
+ matchLabels:
+ app: mso
+ template:
+ metadata:
+ labels:
+ app: mso
+ name: mso
+ annotations:
+ pod.beta.kubernetes.io/init-containers: '[
+ {
+ "args": [
+ "--container-name",
+ "mariadb"
+ ],
+ "command": [
+ "/root/ready.py"
+ ],
+ "env": [
+ {
+ "name": "NAMESPACE",
+ "valueFrom": {
+ "fieldRef": {
+ "apiVersion": "v1",
+ "fieldPath": "metadata.namespace"
+ }
+ }
+ }
+ ],
+ "image": "{{ .Values.image.readiness }}",
+ "imagePullPolicy": "{{ .Values.pullPolicy }}",
+ "name": "mso-readiness"
+ }
+ ]'
+ spec:
+ containers:
+ - command:
+ - /docker-files/scripts/start-jboss-server.sh
+ image: {{ .Values.image.mso }}
+ imagePullPolicy: {{ .Values.pullPolicy }}
+ name: mso
+ volumeMounts:
+ - mountPath: /shared
+ name: mso
+ - mountPath: /docker-files
+ name: mso-docker-files
+ env:
+ - name: JBOSS_DEBUG
+ value: "false"
+ ports:
+ - containerPort: 3904
+ - containerPort: 3905
+ - containerPort: 8080
+ - containerPort: 9990
+ - containerPort: 8787
+ readinessProbe:
+ tcpSocket:
+ port: 8080
+ initialDelaySeconds: 5
+ periodSeconds: 10
+ volumes:
+ - name: mso
+ hostPath:
+ path: /dockerdata-nfs/onap/mso/mso
+ - name: mso-docker-files
+ hostPath:
+ path: /dockerdata-nfs/onap/mso/docker-files
+ imagePullSecrets:
+ - name: onap-docker-registry-key