github.com/m3db/m3@v1.5.0/kube/terraform/examples/gcp/README.md (about)

     1  # GCP M3DB Bundle Kubernetes Example
     2  
     3  This folder shows an example of how to launch the M3DB Kubernetes Bundle on GKE. It sets up a GKE Kube Cluster with three n1-standard-16 nodes. It also creates the GCP specific fast Kubernetes storage class. If using the default terraform created GCP user 'client', the following yaml will need to be applied via kubectl before executing the main bundle tf file:
     4  
     5  ```yaml
     6  apiVersion: rbac.authorization.k8s.io/v1 
     7  kind: ClusterRoleBinding 
     8  metadata: 
     9    name: client
    10  subjects: 
    11    - kind: User 
    12      name: client
    13  roleRef: 
    14    kind: ClusterRole 
    15    name: "cluster-admin" 
    16    apiGroup: rbac.authorization.k8s.io
    17  
    18  ```
    19  
    20  The recommended GCP instance type is n1-standard-8 or higher.