diff options
Diffstat (limited to 'kubernetes/mso')
-rw-r--r-- | kubernetes/mso/all-services.yaml | 40 | ||||
-rw-r--r-- | kubernetes/mso/db-deployment.yaml | 47 | ||||
-rw-r--r-- | kubernetes/mso/mso-deployment.yaml | 72 |
3 files changed, 159 insertions, 0 deletions
diff --git a/kubernetes/mso/all-services.yaml b/kubernetes/mso/all-services.yaml new file mode 100644 index 0000000000..881ebba4a9 --- /dev/null +++ b/kubernetes/mso/all-services.yaml @@ -0,0 +1,40 @@ +apiVersion: v1 +kind: Service +metadata: + name: mariadb + labels: + app: mariadb +spec: + ports: + - port: 3306 + nodePort: 30252 + selector: + app: mariadb + type: NodePort +--- +apiVersion: v1 +kind: Service +metadata: + name: mso + 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/db-deployment.yaml b/kubernetes/mso/db-deployment.yaml new file mode 100644 index 0000000000..e7d81d93ee --- /dev/null +++ b/kubernetes/mso/db-deployment.yaml @@ -0,0 +1,47 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: mariadb +spec: + replicas: 1 + selector: + matchLabels: + app: mariadb + template: + metadata: + labels: + app: mariadb + name: mariadb + spec: + hostname: mariadb + containers: + - args: + image: nexus3.onap.org:10001/mariadb:10.1.11 + 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/onapdemo/mso/mariadb/conf.d + - name: mso-mariadb-docker-entrypoint-initdb + hostPath: + path: /dockerdata-nfs/onapdemo/mso/mariadb/docker-entrypoint-initdb.d diff --git a/kubernetes/mso/mso-deployment.yaml b/kubernetes/mso/mso-deployment.yaml new file mode 100644 index 0000000000..53f1e01e28 --- /dev/null +++ b/kubernetes/mso/mso-deployment.yaml @@ -0,0 +1,72 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: mso +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": "oomk8s/readiness-check:1.0.0", + "imagePullPolicy": "Always", + "name": "mso-readiness" + } + ]' + spec: + containers: + - command: + - /docker-files/scripts/start-jboss-server.sh + image: nexus3.onap.org:10001/openecomp/mso:1.0-STAGING-latest + 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/onapdemo/mso/mso + - name: mso-docker-files + hostPath: + path: /dockerdata-nfs/onapdemo/mso/docker-files |