forked from bottlerocket-os/bottlerocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.tpl
198 lines (135 loc) · 6.89 KB
/
README.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# {{crate}}
Current version: {{version}}
## apiclient binary
The `apiclient` binary provides high-level methods to interact with the Bottlerocket API.
There's a [set](#set-mode) subcommand for changing settings, an [update](#update-mode) subcommand for updating the host, and an [exec](#exec-mode) subcommand for running commands in host containers.
There's also a low-level [raw](#raw-mode) subcommand for direct interaction with the HTTP API.
It talks to the Bottlerocket socket by default.
It can be pointed to another socket using `--socket-path`, for example for local testing.
The most important use is probably checking your current settings:
```
apiclient get settings
```
`get` will request all settings whose names start with the given prefix, so you can drill down into specific areas of interest:
```
apiclient get settings.host-containers.admin
```
Or, request some specific settings:
```
apiclient get settings.motd settings.kernel.lockdown
```
### Set mode
This allows you to change settings on the system.
After the settings are changed, they'll be committed and applied.
For example, if you change an NTP setting, the NTP configuration will be updated and the daemon will be restarted.
#### Key=value input
There are two input methods.
The simpler method looks like this:
```
apiclient set settings.x.y.z=VALUE
```
The "settings." prefix on the setting names is optional; this makes it easy to copy and paste settings from documentation, but you can skip the prefix when typing them manually.
Here's an example call:
```
apiclient set kernel.lockdown=integrity motd="hi there"
```
If you're changing a setting whose name requires quoting, please quote the whole key=value argument, so the inner quotes aren't eaten by the shell:
```
apiclient set 'kubernetes.node-labels."my.label"=hello'
```
#### JSON input
This simpler key=value form is convenient for most changes, but sometimes you'll want to specify input in JSON form.
This can be useful if you have multiple changes within a subsection:
```
apiclient set --json '{"kernel": {"sysctl": {"vm.max_map_count": "262144", "user.max_user_namespaces": "16384"}}}'
```
It can also be useful if your desired value is "complex" or looks like a different type.
For example, the "vm.max_map_count" value set above looks like an integer, but the kernel requires a string, so it has to be specified in JSON form and as a string.
As another example, if you want settings.motd to be "42", running `apiclient set motd=42` would fail because `42` is seen as an integer, and motd is a string.
You can use JSON form to set it:
```
apiclient set --json '{"motd": "42"}'
```
### Update mode
To start, you can check what updates are available:
```
apiclient update check
```
This will show you the current state of the system along with any updates available in the repo; see the [updater README](../../updater/README.md#walkthrough) for details.
Assuming you want to accept the chosen update, you can apply it:
```
apiclient update apply
```
This downloads and writes the update to the alternate partition set, then marks it as active.
The next time you reboot, for example with `apiclient reboot`, the update will take effect.
If you're confident that you want to update immediately to the latest version, you can do all of the above in one step:
```
apiclient update apply --check --reboot
```
> Note that available updates are controlled by your settings under `settings.updates`; see [README](../../../README.md#updates-settings) for details.
### Reboot mode
This will reboot the system.
You should use this after updating if you didn't specify the `--reboot` flag.
```
apiclient reboot
```
### Exec mode
This mode lets you run commands in host containers.
This can be helpful for debugging, particularly if it's hard to access a host container in your configuration, for example getting to the admin container without SSH access.
You can think of it like a slim `ssh` that reuses the communication channel and authorization we already have with the API.
Just tell it the container to run in and the command you want to run.
For example, if you used SSM to get into the control container and want to access the admin container:
```
apiclient exec admin bash
```
You can also run noninteractive commands, and redirect output, so you can use it to copy files between containers:
```
apiclient exec admin cat /file > file
```
This works OK because apiclient detects if you have a TTY by checking if stdout and stdin are connected to TTYs.
If that doesn't work for your use case, you can pass `-t`/`--tty` to specifically request a TTY, or `-T`/`--no-tty` to request no TTY.
See the [exec documentation](../api-exec.md) for more detail on how this feature works.
### Raw mode
Raw mode lets you make HTTP requests to a UNIX socket.
You can think of it kind of like `curl`, but with more understanding of the Bottlerocket API server; for example, it understands the default path to the API socket, the hostname, and the content type.
The URI path is specified with `-u` or `--uri`, for example `-u /settings`.
This should include the query string, if any.
The HTTP method defaults to GET, and can be changed with `-m`, `-X`, or `--method`.
If you change the method to POST or PATCH, you may also want to send data in the request body.
Specify the data after `-d` or `--data`.
To see verbose response data, including the HTTP status code, use `-v` or `--verbose`.
#### Raw mode walkthrough
To fetch the current settings:
```
apiclient raw -u /settings
```
This will return all of the current settings in JSON format.
For example, here's an abbreviated response:
```
{"motd":"...", {"kubernetes": ...}}
```
You can change settings by sending back the same type of JSON data in a PATCH request.
This can include any number of settings changes.
```
apiclient raw -m PATCH -u /settings -d '{"motd": "my own value!"}'
```
This will *stage* the setting in a "pending" area - a transaction.
You can see all your pending settings like this:
```
apiclient raw -u /tx
```
To *commit* the settings, and let the system apply them to any relevant configuration files or services, do this:
```
apiclient raw -m POST -u /tx/commit_and_apply
```
Behind the scenes, these commands are working with the "default" transaction.
This keeps the interface simple.
System services use their own transactions, so you don't have to worry about conflicts.
For example, there's a "bottlerocket-launch" transaction used to coordinate changes at startup.
If you want to group sets of changes yourself, pick a transaction name and append a `tx` parameter to the URLs above.
For example, if you want the name "FOO", you can `PATCH` to `/settings?tx=FOO` and `POST` to `/tx/commit_and_apply?tx=FOO`.
(Transactions are created automatically when used, and are cleaned up on reboot.)
## apiclient library
{{readme}}
## Colophon
This text was generated from `README.tpl` using [cargo-readme](https://crates.io/crates/cargo-readme), and includes the rustdoc from `src/lib.rs`.