MSO K8S-Helm Parameterization
[oom.git] / kubernetes / mso / db-deployment.yaml
diff --git a/kubernetes/mso/db-deployment.yaml b/kubernetes/mso/db-deployment.yaml
deleted file mode 100644 (file)
index f57f4ba..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-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
-      imagePullSecrets:
-      - name: onap-docker-registry-key