helm启动单节点mysql

image.png

前言
本文使用helm启动单节点mysql。
*我的其他相关文章:
《docker-compose启动mysql》
《k8s启动单点mysql》
《helm启动mysql-ha》
《k8s启动phpmyadmin》

1. 准备

  • chart包
    从 https://github.com/helm/charts 已下载 charts-master, 其中stable目录里包含mysql目录,该目录即为单机版mysql的chart包

  • 安装文档
    进入上边github地址,找到msyql目录,下边有安装文档和所有可以换变量。

2. 修改变量

mysql/values.yaml 文件包含需要修改的变量

  • 修改root密码
    如果这里不设置,也可以启动Release的时候用命令覆盖。
mysqlRootPassword: YunWeiDao888
  • 修改为 service
    修改service 代理方式为nodeport
service:
  annotations: {}
  ## Specify a service type
  ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services---service-types
  type: NodePort
  #type: ClusterIP
  port: 13306
  nodePort: 30102
  # nodePort: 32000
  # loadBalancerIP:
  • 其他根据需要修改

1.3 启动Release

# cd charts-master/stable/mysql
# helm install mysql -n mysql --set mysqlRootPassword=YunWeiDao888 ./

说明:如果前边在values.yaml文件中修改了,上边命令可以不加 --set mysqlRootPassword

FAQ

有些镜像版本默认root只能本地用户登录,且不使用密码。

因此需要进入容器不使用密码登录

# kubectl exec -it -n mysql mysql-7f4776db6f-hft2r bash
# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5677
Server version: 5.7.28 MySQL Community Server (GPL)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

创建远程登录账号

mysql> grant all on *.* to root@'%' identified by ' YunWeiDao888';
mysql> flush privilege;

你可能感兴趣的:(helm启动单节点mysql)