Skip to content

Commit

Permalink
fix memory and storage
Browse files Browse the repository at this point in the history
  • Loading branch information
ankudinov committed Apr 29, 2024
1 parent 26b718e commit ad06df9
Show file tree
Hide file tree
Showing 12 changed files with 27 additions and 27 deletions.
10 changes: 5 additions & 5 deletions .cc/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"ceos_lab_version": "4.30.6M",
"git_init": true,
"container_size": [
{"cpus": 2, "memory": "8gb", "storage": "32gb"},
{"cpus": 4, "memory": "16gb", "storage": "32gb"},
{"cpus": 8, "memory": "32gb", "storage": "64gb"},
{"cpus": 16, "memory": "64gb", "storage": "128gb"},
{"cpus": 32, "memory": "128gb", "storage": "128gb"}
{"cpus": 2, "memory": "8 GB", "storage": "32 GB"},
{"cpus": 4, "memory": "16 GB", "storage": "32 GB"},
{"cpus": 8, "memory": "32 GB", "storage": "64 GB"},
{"cpus": 16, "memory": "64 GB", "storage": "128 GB"},
{"cpus": 32, "memory": "128 GB", "storage": "128 GB"}
],
"cv_api_token_required": false,
"clab_mgmt_subnet": "10.0.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
{% raw %}},{% endraw %}
"hostRequirements": {% raw %}{{% endraw %}
"cpus": {{ cookiecutter.container_size.cpus }},
"memory": "{{ cookiecutter.container_size.memory }}",
"storage": "{{ cookiecutter.container_size.storage }}"
"memory": "{{ cookiecutter.container_size.memory.lower().replace(' ','') }}",
"storage": "{{ cookiecutter.container_size.storage.lower().replace(' ','') }}"
{% raw %}},{% endraw %}
"postCreateCommand": "postCreate.sh",
"workspaceMount": "source=${localWorkspaceFolder}/demos/${containerWorkspaceFolder},target=/${containerWorkspaceFolder},type=bind",
Expand Down
4 changes: 2 additions & 2 deletions demos/avd-avd-extended-workshop--part-1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ This lab is tested for:
Containerlab Version: 0.54.2
Codespace Container Size
CPUs: 4
memory: 16gb
storage: 32gb
memory: 16 GB
storage: 32 GB

Last reviewed: 29/04/2024

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SERIALNUMBER=1C68470A1E0CD6EF7418D78A9582BCFF
SYSTEMMACADDR=001c.7301.4B79
SERIALNUMBER=1C68470A1E0CD6EF7418D78A9582CF14
SYSTEMMACADDR=001c.7301.2031
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SERIALNUMBER=1C68470A1E0CD6EF7418D78A9582F70A
SYSTEMMACADDR=001c.7301.5BDD
SERIALNUMBER=1C68470A1E0CD6EF7418D78A9582989F
SYSTEMMACADDR=001c.7301.C716
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SERIALNUMBER=1C68470A1E0CD6EF7418D78A95826872
SYSTEMMACADDR=001c.7301.C300
SERIALNUMBER=1C68470A1E0CD6EF7418D78A95827696
SYSTEMMACADDR=001c.7301.634B
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SERIALNUMBER=1C68470A1E0CD6EF7418D78A9582D473
SYSTEMMACADDR=001c.7301.A61F
SERIALNUMBER=1C68470A1E0CD6EF7418D78A95826DB0
SYSTEMMACADDR=001c.7301.2290
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SERIALNUMBER=1C68470A1E0CD6EF7418D78A9582119A
SYSTEMMACADDR=001c.7301.A40C
SERIALNUMBER=1C68470A1E0CD6EF7418D78A9582063F
SYSTEMMACADDR=001c.7301.0A33
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SERIALNUMBER=1C68470A1E0CD6EF7418D78A9582FF21
SYSTEMMACADDR=001c.7301.767F
SERIALNUMBER=1C68470A1E0CD6EF7418D78A9582087F
SYSTEMMACADDR=001c.7301.9330
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SERIALNUMBER=1C68470A1E0CD6EF7418D78A958203F4
SYSTEMMACADDR=001c.7301.2AB2
SERIALNUMBER=1C68470A1E0CD6EF7418D78A9582D007
SYSTEMMACADDR=001c.7301.44DD
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SERIALNUMBER=1C68470A1E0CD6EF7418D78A95822847
SYSTEMMACADDR=001c.7301.7BBB
SERIALNUMBER=1C68470A1E0CD6EF7418D78A9582291F
SYSTEMMACADDR=001c.7301.8026
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
!!! Success "Container Requirements"

CPUs: 4
Memory: 16gb
Storage: 32gb
Memory: 16 GB
Storage: 32 GB

:material-checkbox-marked-outline: Works with default Codespaces sizing!

Expand Down

0 comments on commit ad06df9

Please sign in to comment.