pvirani
08/12/2021, 8:38 PMMartavis Parker
08/12/2021, 9:18 PMpvirani
08/12/2021, 9:26 PMhelm init
isn't a command apparentlyThe MySQL that we will use for this tutorial is not replicated and it is not Highly Available. If you're deploying Fleet on a Kubernetes managed by a cloud provider (GCP, Azure, AWS, etc), I suggest using their MySQL product if possible as running HA MySQL in Kubernetes can be difficult.
Does that mean I should use RDS Mysql or try and set up a mysql database on my kubernets cluster? 🤔Martavis Parker
08/12/2021, 10:01 PMhelm
, you will need to install it to follow our docs. Assuming you are on Amazon EKS, here is the doc for that.
As for MySQL, RDS is fine. Your Kubernetes cluster is able to connect to it.pvirani
08/12/2021, 10:18 PMfleet-migrations.yml
to reflect that$ aws-okta exec dev-write -- kubectl create -f ./docs/1-Using-Fleet/configuration-files/kubernetes/fleet-migrations.yml
job.batch/fleet-prepare-db created
So far so good. Moving on to the next steps nowfleet-deployment.yml
as well$ kubectl apply -f ./docs/1-Using-Fleet/configuration-files/kubernetes/fleet-deployment.yml
error: unable to recognize "./docs/1-Using-Fleet/configuration-files/kubernetes/fleet-deployment.yml": no matches for kind "Deployment" in version "apps/v1beta2"
exit status 1
apiVersion: apps/v1beta2
to apps/v1
in the deployment.yml file and that workedkubectl logs fleet-prepare-db-pb8pw
Error from server (BadRequest): container "fleet" in pod "fleet-prepare-db-pb8pw" is waiting to start: image can't be pulled
exit status 1
wonder why the image can't be pulled here 🤔zwass
08/12/2021, 11:52 PMpvirani
08/12/2021, 11:59 PMzwass
08/13/2021, 12:06 AM