You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
European region in one of the public clouds (most likely GCP or AWS)
Managed kubernetes cluster (GKE or EKS)
Github actions for CI/CD
Cloud-native solution for secret store/management (Something like this)
The thing that I am most worried about is the fact that our website should contain fund payment credentials. Our deployment pattern must avoid storing those credentials on developers' laptops and passing them over the internet. Ideally, I would like to avoid storing them in the k8s secrets and inside the pod filesystem either, but this may be overkill for now.
We probably need 2 environments: prod and staging. I think we can share the k8s cluster for them at least for now. Our CI/CD should automatically deploy the latest version of the master branch to staging and provide a manual way to deploy a specific commit/tag to prod.
The text was updated successfully, but these errors were encountered:
No need to store payment key anymore. I think the first deployment pipeline will be a simple bash script that deployed the website to k8s using kubectl directly. We may revisit this later if we need to auto-deploy master
Here is what I plan to use:
The thing that I am most worried about is the fact that our website should contain fund payment credentials. Our deployment pattern must avoid storing those credentials on developers' laptops and passing them over the internet. Ideally, I would like to avoid storing them in the k8s secrets and inside the pod filesystem either, but this may be overkill for now.
We probably need 2 environments: prod and staging. I think we can share the k8s cluster for them at least for now. Our CI/CD should automatically deploy the latest version of the master branch to staging and provide a manual way to deploy a specific commit/tag to prod.
The text was updated successfully, but these errors were encountered: