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
82fbc251
Commit
82fbc251
authored
Mar 11, 2015
by
Ilya Dmitrichenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
coreos/azure: Pass number of minions as an argument
parent
6d465c4d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
README.md
docs/getting-started-guides/coreos/azure/README.md
+2
-2
resize-kubernetes-cluster.js
...-started-guides/coreos/azure/resize-kubernetes-cluster.js
+1
-1
No files found.
docs/getting-started-guides/coreos/azure/README.md
View file @
82fbc251
...
@@ -96,9 +96,9 @@ First, lets set the size of new VMs:
...
@@ -96,9 +96,9 @@ First, lets set the size of new VMs:
```
```
export AZ_VM_SIZE=Large
export AZ_VM_SIZE=Large
```
```
Now, run resize script with state file of the previous deployment:
Now, run resize script with state file of the previous deployment
and number of minions to add
:
```
```
./resize-kubernetes-cluster.js ./output/kubernetes_1c1496016083b4_deployment.yml
./resize-kubernetes-cluster.js ./output/kubernetes_1c1496016083b4_deployment.yml
2
...
...
azure_wrapper/info: Saved SSH config, you can use it like so: `ssh -F ./output/kubernetes_8f984af944f572_ssh_conf <hostname>`
azure_wrapper/info: Saved SSH config, you can use it like so: `ssh -F ./output/kubernetes_8f984af944f572_ssh_conf <hostname>`
azure_wrapper/info: The hosts in this deployment are:
azure_wrapper/info: The hosts in this deployment are:
...
...
docs/getting-started-guides/coreos/azure/resize-kubernetes-cluster.js
View file @
82fbc251
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
var
azure
=
require
(
'./lib/azure_wrapper.js'
);
var
azure
=
require
(
'./lib/azure_wrapper.js'
);
var
kube
=
require
(
'./lib/deployment_logic/kubernetes.js'
);
var
kube
=
require
(
'./lib/deployment_logic/kubernetes.js'
);
azure
.
load_state_for_resizing
(
process
.
argv
[
2
],
'kube'
,
2
);
azure
.
load_state_for_resizing
(
process
.
argv
[
2
],
'kube'
,
parseInt
(
process
.
argv
[
3
]
||
1
)
);
azure
.
run_task_queue
([
azure
.
run_task_queue
([
azure
.
queue_machines
(
'kube'
,
'stable'
,
kube
.
create_node_cloud_config
),
azure
.
queue_machines
(
'kube'
,
'stable'
,
kube
.
create_node_cloud_config
),
...
...
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