We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
create-cluster
Description: I'm not getting the GKE node type I requested, using the CI action.
Run replicatedhq/compatibility-actions/create-cluster@v1 with: api-token: *** kubernetes-distribution: gke kubernetes-version: 1.28 instance-type: e2-standard-8 cluster-name: foo disk: 200 ttl: 60m timeout-minutes: 12 node-groups: - name: general disk: 100 nodes: 1 - name: persistent disk: 500 nodes: 1 - name: pipelines disk: 50 nodes: 3
I expected five e2-standard-8 nodes but (at least according to the node labels, I get node.kubernetes.io/instance-type=n2-standard-2
node.kubernetes.io/instance-type=n2-standard-2
gke-c11y-matrix-42919fa2-general-5f876d46-7tnf general n2-standard-2 amd64 gke-c11y-matrix-42919fa2-persistent-b32bc1eb-kvl0 persistent n2-standard-2 amd64 gke-c11y-matrix-42919fa2-pipelines-eedc838e-c3d7 pipelines n2-standard-2 amd64 gke-c11y-matrix-42919fa2-pipelines-eedc838e-jl9h pipelines n2-standard-2 amd64 gke-c11y-matrix-42919fa2-pipelines-eedc838e-rjbk pipelines n2-standard-2 amd64
Resolution: you must specify the instance-type explicitly under node-groups, else it will be fallback to default value of n2-standard-2
node-groups: | - name: general disk: 50 nodes: 1 instance-type: e2-standard-8 - name: persistent disk: 50 nodes: 1 instance-type: e2-standard-8
Documentation should take into account:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description: I'm not getting the GKE node type I requested, using the CI action.
I expected five e2-standard-8 nodes but (at least according to the node labels, I get
node.kubernetes.io/instance-type=n2-standard-2
Resolution:
you must specify the instance-type explicitly under node-groups, else it will be fallback to default value of n2-standard-2
Documentation should take into account:
The text was updated successfully, but these errors were encountered: