123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- {
- "apiVersion": "v1",
- "kind": "Template",
- "labels": {
- "template": "mysql-ephemeral-template"
- },
- "message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${MYSQL_USER}\n Password: ${MYSQL_PASSWORD}\n Database Name: ${MYSQL_DATABASE}\n Connection URL: mysql://${DATABASE_SERVICE_NAME}:3306/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mysql-container/blob/master/5.7/root/usr/share/container-scripts/mysql/README.md.",
- "metadata": {
- "annotations": {
- "description": "MySQL database service, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mysql-container/blob/master/5.7/root/usr/share/container-scripts/mysql/README.md.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
- "iconClass": "icon-mysql-database",
- "openshift.io/display-name": "MySQL (Ephemeral)",
- "openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/mysql.html",
- "openshift.io/long-description": "This template provides a standalone MySQL server with a database created. The database is not stored on persistent storage, so any restart of the service will result in all data being lost. The database name, username, and password are chosen via parameters when provisioning this service.",
- "openshift.io/provider-display-name": "Red Hat, Inc.",
- "openshift.io/support-url": "https://access.redhat.com",
- "tags": "database,mysql"
- },
- "name": "mysql-ephemeral"
- },
- "objects": [
- {
- "apiVersion": "v1",
- "kind": "Secret",
- "metadata": {
- "annotations": {
- "template.openshift.io/expose-database_name": "{.data['database-name']}",
- "template.openshift.io/expose-password": "{.data['database-password']}",
- "template.openshift.io/expose-root_password": "{.data['database-root-password']}",
- "template.openshift.io/expose-username": "{.data['database-user']}"
- },
- "name": "${DATABASE_SERVICE_NAME}"
- },
- "stringData": {
- "database-name": "${MYSQL_DATABASE}",
- "database-password": "${MYSQL_PASSWORD}",
- "database-root-password": "${MYSQL_ROOT_PASSWORD}",
- "database-user": "${MYSQL_USER}"
- }
- },
- {
- "apiVersion": "v1",
- "kind": "Service",
- "metadata": {
- "annotations": {
- "template.openshift.io/expose-uri": "mysql://{.spec.clusterIP}:{.spec.ports[?(.name==\"mysql\")].port}"
- },
- "name": "${DATABASE_SERVICE_NAME}"
- },
- "spec": {
- "ports": [
- {
- "name": "mysql",
- "nodePort": 0,
- "port": 3306,
- "protocol": "TCP",
- "targetPort": 3306
- }
- ],
- "selector": {
- "name": "${DATABASE_SERVICE_NAME}"
- },
- "sessionAffinity": "None",
- "type": "ClusterIP"
- },
- "status": {
- "loadBalancer": {}
- }
- },
- {
- "apiVersion": "v1",
- "kind": "DeploymentConfig",
- "metadata": {
- "annotations": {
- "template.alpha.openshift.io/wait-for-ready": "true"
- },
- "name": "${DATABASE_SERVICE_NAME}"
- },
- "spec": {
- "replicas": 1,
- "selector": {
- "name": "${DATABASE_SERVICE_NAME}"
- },
- "strategy": {
- "type": "Recreate"
- },
- "template": {
- "metadata": {
- "labels": {
- "name": "${DATABASE_SERVICE_NAME}"
- }
- },
- "spec": {
- "containers": [
- {
- "capabilities": {},
- "env": [
- {
- "name": "MYSQL_USER",
- "valueFrom": {
- "secretKeyRef": {
- "key": "database-user",
- "name": "${DATABASE_SERVICE_NAME}"
- }
- }
- },
- {
- "name": "MYSQL_PASSWORD",
- "valueFrom": {
- "secretKeyRef": {
- "key": "database-password",
- "name": "${DATABASE_SERVICE_NAME}"
- }
- }
- },
- {
- "name": "MYSQL_ROOT_PASSWORD",
- "valueFrom": {
- "secretKeyRef": {
- "key": "database-root-password",
- "name": "${DATABASE_SERVICE_NAME}"
- }
- }
- },
- {
- "name": "MYSQL_DATABASE",
- "valueFrom": {
- "secretKeyRef": {
- "key": "database-name",
- "name": "${DATABASE_SERVICE_NAME}"
- }
- }
- }
- ],
- "image": " ",
- "imagePullPolicy": "IfNotPresent",
- "livenessProbe": {
- "initialDelaySeconds": 30,
- "tcpSocket": {
- "port": 3306
- },
- "timeoutSeconds": 1
- },
- "name": "mysql",
- "ports": [
- {
- "containerPort": 3306,
- "protocol": "TCP"
- }
- ],
- "readinessProbe": {
- "exec": {
- "command": [
- "/bin/sh",
- "-i",
- "-c",
- "MYSQL_PWD=\"$MYSQL_PASSWORD\" mysql -h 127.0.0.1 -u $MYSQL_USER -D $MYSQL_DATABASE -e 'SELECT 1'"
- ]
- },
- "initialDelaySeconds": 5,
- "timeoutSeconds": 1
- },
- "resources": {
- "limits": {
- "memory": "${MEMORY_LIMIT}"
- }
- },
- "securityContext": {
- "capabilities": {},
- "privileged": false
- },
- "terminationMessagePath": "/dev/termination-log",
- "volumeMounts": [
- {
- "mountPath": "/var/lib/mysql/data",
- "name": "${DATABASE_SERVICE_NAME}-data"
- }
- ]
- }
- ],
- "dnsPolicy": "ClusterFirst",
- "restartPolicy": "Always",
- "volumes": [
- {
- "emptyDir": {
- "medium": ""
- },
- "name": "${DATABASE_SERVICE_NAME}-data"
- }
- ]
- }
- },
- "triggers": [
- {
- "imageChangeParams": {
- "automatic": true,
- "containerNames": [
- "mysql"
- ],
- "from": {
- "kind": "ImageStreamTag",
- "name": "mysql:${MYSQL_VERSION}",
- "namespace": "${NAMESPACE}"
- },
- "lastTriggeredImage": ""
- },
- "type": "ImageChange"
- },
- {
- "type": "ConfigChange"
- }
- ]
- },
- "status": {}
- }
- ],
- "parameters": [
- {
- "description": "Maximum amount of memory the container can use.",
- "displayName": "Memory Limit",
- "name": "MEMORY_LIMIT",
- "required": true,
- "value": "512Mi"
- },
- {
- "description": "The OpenShift Namespace where the ImageStream resides.",
- "displayName": "Namespace",
- "name": "NAMESPACE",
- "value": "openshift"
- },
- {
- "description": "The name of the OpenShift Service exposed for the database.",
- "displayName": "Database Service Name",
- "name": "DATABASE_SERVICE_NAME",
- "required": true,
- "value": "mysql"
- },
- {
- "description": "Username for MySQL user that will be used for accessing the database.",
- "displayName": "MySQL Connection Username",
- "from": "user[A-Z0-9]{3}",
- "generate": "expression",
- "name": "MYSQL_USER",
- "required": true
- },
- {
- "description": "Password for the MySQL connection user.",
- "displayName": "MySQL Connection Password",
- "from": "[a-zA-Z0-9]{16}",
- "generate": "expression",
- "name": "MYSQL_PASSWORD",
- "required": true
- },
- {
- "description": "Password for the MySQL root user.",
- "displayName": "MySQL root user Password",
- "from": "[a-zA-Z0-9]{16}",
- "generate": "expression",
- "name": "MYSQL_ROOT_PASSWORD",
- "required": true
- },
- {
- "description": "Name of the MySQL database accessed.",
- "displayName": "MySQL Database Name",
- "name": "MYSQL_DATABASE",
- "required": true,
- "value": "sampledb"
- },
- {
- "description": "Version of MySQL image to be used (5.5, 5.6, 5.7, or latest).",
- "displayName": "Version of MySQL Image",
- "name": "MYSQL_VERSION",
- "required": true,
- "value": "5.7"
- }
- ]
- }
|