Volatil3
Volatil3

Reputation: 15008

Kubernetes: How to run MySQL command?

In Docker I can use the command: --default-authentication-plugin=mysql_native_password in docker-compose file. How do I pass this while creating a MySQL Deployment?

I am using MySQL8

Upvotes: 4

Views: 3232

Answers (1)

Quentin Revel
Quentin Revel

Reputation: 1478

It could look like this:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: mysql-deployment
  labels:
    app: mysql
spec:
  replicas: 1
  selector:
    matchLabels:
      app: mysql
  template:
    metadata:
      labels:
        app: mysql
    spec:
      containers:
      - name: mysql
        image: mysql:8
        env:
        - name: MYSQL_ROOT_PASSWORD
          value: XXXXXXXXXXXXXXXX
        args: ["--default-authentication-plugin=mysql_native_password"]
        ports:
        - containerPort: 3306

Upvotes: 12

Related Questions