gpt4 book ai didi

mysql - Kubernetes + MySQL : Creating custom database and user in a Kubernetes container

转载 作者:行者123 更新时间:2023-11-29 03:23:49 26 4
gpt4 key购买 nike

我正在尝试使用 Google Container Engine 和 Kubernetes 创建一个 Django + MySQL 应用程序。根据官方 MySQL docker 镜像和 Kubernetes 文档创建 MySQL 容器的文档,我创建了以下复制 Controller

apiVersion: v1
kind: ReplicationController
metadata:
labels:
name: mysql
name: mysql
spec:
replicas: 1
template:
metadata:
labels:
name: mysql
spec:
containers:
- image: mysql:5.6.33
name: mysql
env:
#Root password is compulsory
- name: "MYSQL_ROOT_PASSWORD"
value: "root_password"
- name: "MYSQL_DATABASE"
value: "custom_db"
- name: "MYSQL_USER"
value: "custom_user"
- name: "MYSQL_PASSWORD"
value: "custom_password"
ports:
- name: mysql
containerPort: 3306
volumeMounts:
# This name must match the volumes.name below.
- name: mysql-persistent-storage
mountPath: /var/lib/mysql
volumes:
- name: mysql-persistent-storage
gcePersistentDisk:
# This disk must already exist.
pdName: mysql-disk
fsType: ext4

根据文档,传递环境变量 MYSQL_DATABASE。 MYSQL_USER、MYSQL_PASSWORD,将使用该密码创建一个新用户,并为新创建的数据库分配权限。但这不会发生。当我通过 SSH 进入该容器时,设置了 ROOT 密码。但是既没有创建用户,也没有创建数据库。

我已经通过在本地运行并像这样传递相同的环境变量来测试它

docker run -d --name some-mysql \
-e MYSQL_USER="custom_user" \
-e MYSQL_DATABASE="custom_db" \
-e MYSQL_ROOT_PASSWORD="root_password" \
-e MYSQL_PASSWORD="custom_password" \
mysql

当我通过 SSH 连接到该容器时,数据库和用户已创建,一切正常。

我不确定我在这里做错了什么。谁能指出我的错误。我整天都在做这个。

编辑:2016 年 9 月 20 日

根据要求@Julien Du Bois磁盘已创建。它出现在云控制台中,当我运行 describe 命令时,我得到以下输出

Command : gcloud compute disks describe mysql-disk

Result:
creationTimestamp: '2016-09-16T01:06:23.380-07:00'
id: '4673615691045542160'
kind: compute#disk
lastAttachTimestamp: '2016-09-19T06:11:23.297-07:00'
lastDetachTimestamp: '2016-09-19T05:48:14.320-07:00'
name: mysql-disk
selfLink: https://www.googleapis.com/compute/v1/projects/<details-withheld-by-me>/disks/mysql-disk
sizeGb: '20'
status: READY
type: https://www.googleapis.com/compute/v1/projects/<details-withheld-by-me>/diskTypes/pd-standard
users:
- https://www.googleapis.com/compute/v1/projects/<details-withheld-by-me>/instances/gke-cluster-1-default-pool-e0f09576-zvh5
zone: https://www.googleapis.com/compute/v1/projects/<details-withheld-by-me>

我引用了很多教程和谷歌云示例。要在本地运行 mysql docker 容器,我的主要引用是 docker hub 上的官方图像页面 https://hub.docker.com/_/mysql/

这对我有用,在本地创建的容器有一个新的数据库和具有正确权限的用户。

对于kubernetes,我的主要引用如下

https://cloud.google.com/container-engine/docs/tutorials/persistent-disk/

我只是尝试使用 Django 容器连接到它。

最佳答案

当我使用卷并将它们安装到 mysql pod 时,我遇到了同样的问题。

mysql's docker image 的文档中所述:

When you start the mysql image, you can adjust the configuration of the MySQL instance by passing one or more environment variables on the docker run command line. Do note that none of the variables below will have any effect if you start the container with a data directory that already contains a database: any pre-existing database will always be left untouched on container startup.

所以在旋转轮子之后,我设法通过将我正在创建的卷的主机路径从“/data/mysql-pv-volume”更改为“/var/lib/mysql”来解决问题

这是一个可能有助于创建卷的代码片段

apiVersion: v1
kind: PersistentVolume
metadata:
name: mysql-pv-volume
labels:
type: local
spec:
persistentVolumeReclaimPolicy: Delete /* For development Purposes only */
storageClassName: manual
capacity:
storage: 1Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/var/lib/mysql"
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: mysql-pv-claim
spec:
storageClassName: manual
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi

希望对您有所帮助。

关于mysql - Kubernetes + MySQL : Creating custom database and user in a Kubernetes container,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39577146/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com