do: increase default node size in installer (#101)

This commit is contained in:
David Dollar 2020-01-30 12:34:12 -05:00 committed by GitHub
parent 5a33c3728c
commit f15a8cbc79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -18,7 +18,7 @@ jobs:
echo ${changelog}
changelog="${changelog//'%'/'%25'}"
changelog="${changelog//$'\n'/'%0A'}"
changelog="${changelog//$'\r'/'%0D'}"
changelog="${changelog//$'\r'/'%0D'}"
echo "::set-output name=text::${changelog}"
- name: release
id: release
@ -107,6 +107,7 @@ jobs:
export KUBECONFIG=~/.kube/config.${{ matrix.provider }}.${RACK_NAME}
set -x
kubectl get node
kubectl describe node
kubectl get all -n ${RACK_NAME}-system || true
kubectl logs deployment/api -n ${RACK_NAME}-system || true
kubectl logs deployment/atom -n ${RACK_NAME}-system || true

View File

@ -10,7 +10,7 @@ variable "name" {
variable "node_type" {
description = "machine type of the cluster nodes"
default = "s-1vcpu-2gb"
default = "s-2vcpu-4gb"
}
variable "release" {