feat(mysql): add MySQL

This commit is contained in:
Matthew
2015-11-02 13:16:41 -08:00
committed by Matthew Fisher
parent 8e724eea69
commit 835852a97c
3 changed files with 27 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
name: mysql
home: https://www.mysql.com/
version: 0.1.0
description: Simple pod running MySQL.
maintainers:
- Matt Fisher <mfisher@deis.com>
details:
This package provides a basic MySQL database pod for development purposes.
+3
View File
@@ -0,0 +1,3 @@
# MySQL
This package provides a basic MySQL database pod for development purposes.
+16
View File
@@ -0,0 +1,16 @@
apiVersion: v1
kind: Pod
metadata:
name: mysql
labels:
provider: mysql
heritage: helm
spec:
containers:
- name: mysql
image: mysql
env:
- name: MYSQL_ROOT_PASSWORD
value: supersecretpassword
ports:
- containerPort: 3306