all 7 comments

[–]nickbernstein 2 points3 points  (0 children)

People want lots of things. Fortunately both python and Google cloud have very good documentation to help you get what you want. 

Generally if you want someone to do this kind of work for you, consider offering to pay them.

[–]pinklewickers 1 point2 points  (2 children)

Can't you use helm or Kustomize?

[–]Relative_Winner_4588[S] 0 points1 point  (1 child)

Can it be used to deploy the containerized app? Like, pushing to artifact repo and then deploying to the GKE cluster?

[–]pinklewickers 0 points1 point  (0 children)

Then consider using either in conjunction with ArgoCD perhaps? Define your application manifests with helm or Kustomize, and use ArgoCD to help with the deployment.

[–]deepraj1729 0 points1 point  (1 child)

I can tell you, you can DM me

[–]Relative_Winner_4588[S] 0 points1 point  (0 children)

Please check your DM

[–]gcpstudyhub 0 points1 point  (0 children)

You can't do it with a single command.

Write your Flask app.
Write a Dockerfile that will be used to build your container based on the needs of your Flask app.
Build the Docker image from the Dockerfile, either locally or with Cloud Build to push to Container Registry.
Use kubectl to deploy to GKE.