Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
4ad0ec36
Commit
4ad0ec36
authored
Mar 12, 2015
by
Alex Robinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5378 from justinsb/aws_instance_type
Allow the AWS instance type to be specified via MASTER_SIZE, MINION_SIZE
parents
93449346
f71e0eeb
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
config-default.sh
cluster/aws/config-default.sh
+2
-2
config-test.sh
cluster/aws/config-test.sh
+2
-2
No files found.
cluster/aws/config-default.sh
View file @
4ad0ec36
...
@@ -16,8 +16,8 @@
...
@@ -16,8 +16,8 @@
# TODO: the zone isn't quite piped into all the right places...
# TODO: the zone isn't quite piped into all the right places...
ZONE
=
${
KUBE_AWS_ZONE
:-
us
-west-2
}
ZONE
=
${
KUBE_AWS_ZONE
:-
us
-west-2
}
MASTER_SIZE
=
t2.micro
MASTER_SIZE
=
${
MASTER_SIZE
:-
t2
.micro
}
MINION_SIZE
=
t2.micro
MINION_SIZE
=
${
MINION_SIZE
:-
t2
.micro
}
NUM_MINIONS
=
${
NUM_MINIONS
:-
4
}
NUM_MINIONS
=
${
NUM_MINIONS
:-
4
}
# This is the ubuntu 14.04 image for us-west-2 + ebs
# This is the ubuntu 14.04 image for us-west-2 + ebs
...
...
cluster/aws/config-test.sh
View file @
4ad0ec36
...
@@ -16,8 +16,8 @@
...
@@ -16,8 +16,8 @@
# TODO: this isn't quite piped into all the right places...
# TODO: this isn't quite piped into all the right places...
ZONE
=
${
KUBE_AWS_ZONE
:-
us
-west-2
}
ZONE
=
${
KUBE_AWS_ZONE
:-
us
-west-2
}
MASTER_SIZE
=
t2.micro
MASTER_SIZE
=
${
MASTER_SIZE
:-
t2
.micro
}
MINION_SIZE
=
t2.micro
MINION_SIZE
=
${
MINION_SIZE
:-
t2
.micro
}
NUM_MINIONS
=
${
NUM_MINIONS
:-
2
}
NUM_MINIONS
=
${
NUM_MINIONS
:-
2
}
# This is the ubuntu 14.04 image for us-west-2 + ebs
# This is the ubuntu 14.04 image for us-west-2 + ebs
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment