Skip to content

Commit c5601a9

Browse files
Merge pull request #53 from craigcomstock/ENT-9184
ENT-9184: Added ubuntu 22 x86/arm and debian 11 arm platforms
2 parents 34fff8d + 591f1e6 commit c5601a9

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,3 +201,11 @@ CFEngine 3.15.3 (Enterprise) was successfully installed on 'localhost'
201201

202202
Feel free to open pull requests to expand this documentation, add features or fix problems.
203203
You can also pick up an existing task or file an issue in [our bug tracker](https://tracker.mender.io/issues/?filter=11711).
204+
205+
## Development
206+
207+
To install `cf-remote` so that it reflects any changes in this source directory use:
208+
209+
```
210+
$ pip install --editable .
211+
```

cf_remote/cloud_data.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
aws_platforms = {
2+
"ubuntu-22-04-arm64": {
3+
"ami": "ami-00c50882a52d323a6",
4+
"user": "ubuntu",
5+
"size": "t4g.micro",
6+
"xlsize": "t4g.xlarge",
7+
},
8+
"ubuntu-22-04-x64": {
9+
"ami": "ami-0d75513e7706cf2d9",
10+
"user": "ubuntu",
11+
"size": "t2.small",
12+
"xlsize": "t3.xlarge",
13+
},
214
"ubuntu-20-04-x64": {
315
"ami": "ami-0aef57767f5404a3c",
416
"user": "ubuntu",
@@ -40,6 +52,12 @@
4052
"size": "t1.micro",
4153
"xlsize": "m3.xlarge",
4254
},
55+
"debian-11-arm64": {
56+
"ami": "ami-0353cb95279bf4f20",
57+
"user": "admin",
58+
"size": "t4g.micro",
59+
"xlsize": "t4g.xlarge",
60+
},
4361
"debian-11-x64": {
4462
"ami": "ami-0293236c9a0c23a77",
4563
"user": "admin",

0 commit comments

Comments
 (0)