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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
|
## App Container Executor
The **App Container Executor** defines the process by which applications contained in ACIs are executed.
There are two "perspectives" in this process.
The "*executor*" perspective consists of the steps that the App Container Executor (ACE) must take to set up the environment for the pod and applications.
The "*app*" perspective is how the app processes inside the pod see the environment.
This example pod will use a set of three apps:
| Name | Version | Image hash |
|------------------------------------|---------|-------------------------------------------------|
| example.com/reduce-worker | 1.0.0 | sha512-277205b3ae3eb3a8e042a62ae46934b470e43... |
| example.com/worker-backup | 1.0.0 | sha512-3e86b59982e49066c5d813af1c2e2579cbf57... |
| example.com/reduce-worker-register | 1.0.0 | sha512-86298e1fdb95ec9a45b5935504e26ec29b8fe... |
#### Pod UUID
Each pod much be assigned an [RFC4122 UUID](http://www.ietf.org/rfc/rfc4122.txt).
The UUID serves as a canonical reference to a pod within a given administrative domain.
In this context, an administrative domain is linked to the scope of the associated [Metadata Service](#app-container-metadata-service).
For example, given a metadata service that is federated across a geographical cluster of systems, the pod UUID is uniquely scoped to the same cluster.
This UUID is exposed to the pod through the [Metadata Service](#app-container-metadata-service).
#### Filesystem Setup
Each app in a pod will start chrooted into its own unique filesystem before execution.
If the app's entry in the `PodManifest` has the field `readOnlyRootFS` is set to `true`, the rootfs will be mounted as read-only for that app otherwise it will be mounted as read-write.
An app's filesystem must be *rendered* in an empty directory by the following process (or equivalent):
1. If the ACI contains a non-empty `dependencies` field in its `ImageManifest`, the `rootfs` of each dependent image is extracted into the target directory, in the order in which they are listed. The multiple dependencies can form a tree or a [directed acyclic graph](https://en.wikipedia.org/wiki/Directed_acyclic_graph) if multiple dependencies have a common dependency. The dependencies are resolved in the depth-first order.
2. The `rootfs` contained in the ACI is extracted into the target directory.
3. If the ACI contains a non-empty `pathWhitelist` field in its `ImageManifest`, *all* paths not in the whitelist must be removed from the target directory. When extracting a file from an image, the file can be filtered by any of the `pathWhitelist` of the image itself and the images depending on the image.
If during rootfs extraction a path is already present in the target directory from an earlier dependency, the previously extracted path MUST be overwritten. If the existing path is a symbolic link to a directory, the link MUST NOT be followed and it MUST be removed and replaced with the new path.
Let's say we have the following dependencies:
```
A -> [B, C]
C -> [D]
```
Files from C and D will override files from B because C is placed after B in the dependency list. The order of override is: B, D, C, A.
An image can be a dependency through multiple paths:
```
A -> [B, C]
B -> [D]
C -> [D]
```
The order of override is: D, B, D, C, A. In this example, the renderer has to examine the files from D twice and each pass will have a different `pathWhitelist`, taking into account the `pathWhitelist` from the child image.
Every execution of an app MUST start from a clean copy of this rendered filesystem.
The simplest implementation will take an ACI (with no dependencies) and extract it into a new directory:
```bash
cd $(mktemp -d -t temp.XXXX)
mkdir hello
tar xzvf /var/lib/pce/hello.aci -C hello
```
Other implementations could increase performance and de-duplicate data by building on top of overlay filesystems, copy-on-write block devices, or a content-addressed file store.
These details are orthogonal to the runtime environment.
#### Volume Setup
Volumes that are specified in the Pod Manifest are mounted into each of the apps via a bind mount (or equivalent).
For example, say that the worker-backup and reduce-worker both have a `mountPoint` named "work".
In this case, the executor will bind mount the host's `/opt/tenant1/work` directory into the `path` of each of the matching "work" `mountPoint`s of the two app filesystems.
If the target `path` does not exist in the rendered filesystem, it SHOULD be created, including any missing parent directories.
If the target `path` is a non-empty directory, its contents SHOULD be discarded (e.g. obscured by the bind mount).
If the target `path` refers to a file, the ACE SHOULD remove that file and create a directory in its place.
In either of these cases, the ACE SHOULD warn the user that existing files are being masked by a volume.
If multiple targets have overlapping target `path`s (for example, if one is nested within another), the ACE SHOULD consider this an error.
The target `path` directories that the ACE creates SHOULD be owned by UID 0 and GID 0, and have access mode `0755` (`rwxr-xr-xr-x`).
The ACE implementation MAY provide a method for administrator to specify different permissions on a per-pod basis.
The ACE SHOULD NOT create any paths in the host file system, and MUST consider missing volume source paths an error.
If the ACE does modify the host file system, it SHOULD be possible to disable this behaviour.
The ACE MAY implement single-file volumes if the underlying operating system supports it.
If the host volume's `source` path is a symbolic link, the ACE SHOULD consider it an error, and SHOULD NOT attempt to use this link's target as volume.
The ACE SHOULD also consider it an error if any intermediate directory in volume's `source` path is a symbolic link.
If the ACE chooses to support symbolic links as volume sources, it SHOULD provide a way to enable or disable this behaviour on a per-pod basis (e.g. as a boolean isolator or a command line switch).
#### Network Setup
A Pod must have a loopback network interface and zero or more [layer 3](http://en.wikipedia.org/wiki/Network_layer) (commonly called the IP layer) network interfaces, which can be instantiated in any number of ways (e.g. veth, macvlan, ipvlan, device pass-through).
Each network interface MUST be configured with one or more IPv4 and/or IPv6 addresses.
#### Logging
Apps SHOULD log to stdout and stderr. The ACE is responsible for capturing and persisting this output.
If the application detects other logging options, such as the `/run/systemd/system/journal` socket, it may optionally upgrade to using those mechanisms.
Note that logging mechanisms other than stdout and stderr are not required by this specification (and are not tested during compliancy verifications).
### Apps Perspective
#### Execution Environment
The following environment variables MUST be set for each application's main process and any lifecycle processes:
* **PATH** `/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin`
* **AC_APP_NAME** name of the application, as defined in the image manifest
* **AC_METADATA_URL** URL where the [metadata service](#app-container-metadata-service) for this pod can be found.
* **container** name of the [App Container Executor](#app-container-executor) as a concise indicator the environment is in a container (free-form string)
An executor MAY set additional environment variables for the application processes.
Additionally, processes must have their **working directory** set to the value of the application's **workingDirectory** option, if specified, or the root of the application image by default.
### Isolators
Isolators enforce resource constraints rather than namespacing.
Isolators may be scoped to individual applications, to whole pods, or to both.
Any isolators applied to the pod will _bound_ any individual isolators applied to applications within the pod.
Some well known isolators can be verified by the specification.
Additional isolators will be added to this specification over time.
An executor MAY ignore isolators that it does not understand and run the pod without them.
But, an executor MUST make information about which isolators were ignored, enforced or modified available to the user.
An executor MAY implement a "strict mode" where an image cannot run unless all isolators are in place.
### Linux Isolators
These isolators are specific to the Linux kernel and are impossible to represent as a 1-to-1 mapping on other kernels.
This set includes Linux-specific isolators, which may relies on kernel technologies like seccomp, SELinux, SMACK or AppArmor.
#### os/linux/seccomp-remove-set
* Scope: app
**Parameters:**
* **set** case-sensitive list of syscall names that will be blacklisted (ie. blocked); values starting with `@` MUST be handled as scoped special values (see notes below). This field MUST NOT be empty. All syscalls specified in this set MUST be blocked. This set MAY be augmented by an implementation-specific default blacklist set (see notes below). Syscalls not specified in the union of these two sets MUST NOT be blocked.
* **errno** all-uppercase name of a single [errno code](http://man7.org/linux/man-pages/man3/errno.3.html) that will be returned by blocked system calls, instead of terminating. If missing or empty, by default blocked syscalls MUST result in app termination via `SIGSYS` signal. All codes defined by POSIX.1-2001 and C99 MUST be supported. Implementations SHOULD support all custom Linux codes, but MAY ignore locally unsupported ones.
**Notes:**
1. Only a single `os/linux/seccomp-remove-set` isolator can be specified per-app, and it cannot be used in conjunction with the `os/linux/seccomp-retain-set` isolator.
2. When an app does not have any seccomp isolator (neither `os/linux/seccomp-remove-set` nor `os/linux/seccomp-retain-set` is specified), implementations MAY apply their own set of blocked syscalls.
3. The implementation-specific default blacklist SHOULD be a security-focused set of syscalls typically not required by apps. For example, implementations may require the `reboot(2)` syscall to be always blocked. This set MAY be empty.
4. Values starting with `@` identify special wildcards and are scoped by the `/` separator. The `@appc.io/` scope is reserved for usage in this specification; implementations MAY provide additional wildcards in their own namespace (eg. `@implementation/wildcard`). The following special values are currently defined:
* `@appc.io/empty` represents the empty set. In the context of `seccomp-remove-set`, this wildcard masks all other values specified in `set` and can be effectively used to opt-in implementation-specific seccomp filtering.
**Example:**
```json
"name": "os/linux/seccomp-remove-set",
"value": {
"errno": "ENOTSUP",
"set": [
"clock_adjtime",
"clock_settime",
"reboot"
]
}
```
In the example above, the process will not be allowed to invoke `clock_adjtime(2)`, `clock_settime(2)`, and `reboot(2)` (and any other syscall in the implementation-specific blacklist). When invoked, such syscalls will immediately return a `ENOTSUP` error code. All other syscalls will behave as usual.
#### os/linux/seccomp-retain-set
* Scope: app
**Parameters:**
* **set** case-sensitive list of syscall names that will be whitelisted (ie. not blocked); values starting with `@` MUST be handled as scoped special values (see notes below). This field MUST NOT be empty. All syscalls specified in this set MUST NOT be blocked. This set MAY be augmented by an implementation-specific default whitelist set (see notes below). Syscalls not specified in the union of these two sets MUST be blocked.
* **errno** all-uppercase name of a single [errno code](http://man7.org/linux/man-pages/man3/errno.3.html) that will be returned by blocked system calls, instead of terminating. If missing or empty string, by default blocked syscalls MUST result in app termination via `SIGSYS` signal. All codes defined by POSIX.1-2001 and C99 MUST be supported. Implementations SHOULD support all custom Linux codes, but MAY ignore locally unsupported ones.
**Notes:**
1. Only a single `os/linux/seccomp-retain-set` isolator can be specified per-app, and it cannot be used in conjunction with the `os/linux/seccomp-remove-set` isolator.
2. When an app does not have any seccomp isolator (neither `os/linux/seccomp-remove-set` nor `os/linux/seccomp-retain-set` is specified), implementations MAY apply their own set of blocked syscalls.
3. The implementation-specific default whitelist MUST be the minimum set of syscalls required for app life-cycle. For example, implementations may require the `exit(2)` syscall to be always allowed for clean app termination. This set MAY be empty.
4. Values starting with `@` identify special wildcards and are scoped by the `/` separator. The `@appc.io/` top-level scope is reserved for usage in this specification. Implementations MAY provide additional wildcards in their own namespace (eg. `@implementation/wildcard`). The following special values are currently defined:
* `@appc.io/all` represents the set of all available syscalls. In the context of `seccomp-retain-set`, this wildcard masks all other values specified in `set` and can be effectively used to opt-out seccomp filtering.
**Example:**
```json
"name": "os/linux/seccomp-retain-set",
"value": {
"errno": "",
"set": [
"accept",
"bind",
"listen",
"read",
"socket",
"write"
]
}
```
In the example above, the process will be only allowed to invoke syscalls specified in the custom network-related set (and any other syscall in the implementation-specific whitelist). All other syscalls will result in app termination via `SIGSYS` signal.
#### os/linux/selinux-context
* Scope: app/pod
**Parameters:**
* **user** case-sensitive string containing the user portion of the SELinux security context to be used to label the current pod or application.
* **role** case-sensitive string containing the role portion of the SELinux security context to be used to label the current pod or application.
* **type** case-sensitive string containing the type/domain portion of the SELinux security context to be used to label the current pod or application.
* **level** case-sensitive string containing the level portion of the SELinux security context to be used to label the current pod or application.
**Notes:**
1. Only a single `os/linux/selinux-context` isolator can be specified per-pod.
2. Only a single `os/linux/selinux-context` isolator can be specified per-app.
3. If a SELinux security context is specified at pod level, it applies to all processes involved in running the pod.
4. If specified both at pod and app level, app values override pod ones.
5. Implementations MAY ignore this isolator if the host does not support SELinux labeling.
**Example:**
```json
"name": "os/linux/selinux-context",
"value": {
"user": "system_u",
"role": "system_r",
"type": "dhcpc_t",
"level": "s0",
}
```
In the example above, the SELinux security context `system_u:system_r:dhcpc_t:s0` will be applied to a pod or to a single application, depending on where this isolator is specified.
#### os/linux/capabilities-remove-set
* Scope: app
**Parameters:**
* **set** list of capabilities that will be removed from the process's capabilities bounding set, all others from the default set will be included.
The default set is defined by the following 14 capabilities:
- `CAP_AUDIT_WRITE`
- `CAP_CHOWN`
- `CAP_DAC_OVERRIDE`
- `CAP_FSETID`
- `CAP_FOWNER`
- `CAP_KILL`
- `CAP_MKNOD`
- `CAP_NET_RAW`
- `CAP_NET_BIND_SERVICE`
- `CAP_SETUID`
- `CAP_SETGID`
- `CAP_SETPCAP`
- `CAP_SETFCAP`
- `CAP_SYS_CHROOT`
When the app does not have any capability isolator, the process's capabilities bounding set is just the default set defined above.
```json
"name": "os/linux/capabilities-remove-set",
"value": {
"set": [
"CAP_SYS_CHROOT",
"CAP_MKNOD"
]
}
```
In the example above, the process will have 12 capabilities in its bounding set: the 14 default capabilities minus the 2 from the remove set.
The default set is a small subset of all capabilities as there are today 37 capabilities on Linux.
Listing a capability in the remove set that is not in the default set such as `CAP_SYS_ADMIN` has no effect.
#### os/linux/capabilities-retain-set
* Scope: app
**Parameters:**
* **set** list of capabilities that will be retained in the process's capabilities bounding set, all others will be removed.
```json
"name": "os/linux/capabilities-retain-set",
"value": {
"set": [
"CAP_NET_ADMIN",
"CAP_NET_BIND_SERVICE"
]
}
```
In the example above, the process will only have the two capabilities in its bounding set.
The retain set cannot be used in conjunction with the remove set.
#### os/linux/no-new-privileges
* Scope: app
If set to true the app's process and all its children can never gain new privileges. For details see the corresponding kernel documentation about [prctl/no_new_privs.txt](https://www.kernel.org/doc/Documentation/prctl/no_new_privs.txt).
The default value is `false`.
```json
"name": "os/linux/no-new-privileges",
"value": true
```
In the example above, the process will have `no_new_privs` set. If the app's executable has i.e. setuid/setgid bits set they will be ignored.
### Resource Isolators
A _resource_ is something that can be consumed by an application (app) or group of applications (pod), such as memory (RAM), CPU, and network bandwidth.
Resource isolators have a *request* and *limit* quantity:
- **request** is the minimum amount of a resource guaranteed to be available to the app/pod.
If the app/pod attempts to consume a resource in excess of its request, it may be throttled or denied.
If **request** is omitted, it defaults to the value of **limit**.
- **limit** is the maximum amount of a resource available to the app/pod.
If the app/pod consumes a resource in excess of its limit, it must be terminated or throttled to no more than the limit.
Limit and request quantities must always be represented internally (i.e. for encoding and any processing) as an integer value (i.e. NOT floating point) in a resource type's natural base units (e.g., bytes, not megabytes or gigabytes).
For convenience, when specified by users quantities may either be unsuffixed, have metric suffices (E, P, T, G, M, K) or binary (power-of-two) suffices (Ei, Pi, Ti, Gi, Mi, Ki).
For example, the following strings represent the same value: "128974848", "125952Ki", "123Mi".
Small quantities can be represented directly as decimals (e.g., 0.3), or using milli-units (e.g., "300m").
#### resource/block-bandwidth
* Scope: app/pod
**Parameters:**
* **default** must be set to true and means that this limit applies to all block devices by default
* **limit** read/write bytes per second
```json
"name": "resource/block-bandwidth",
"value": {
"default": true,
"limit": "2M"
}
```
#### resource/block-iops
* Scope: app/pod
**Parameters:**
* **default** must be set to true and means that this limit applies to all block devices by default
* **limit** read/write input/output operations per second
```json
"name": "resource/block-iops",
"value": {
"default": true,
"limit": "1000"
}
```
#### resource/cpu
* Scope: app/pod
**Parameters:**
* **request** cores that are requested
* **limit** cores that can be consumed before the kernel temporarily throttles the process
```json
"name": "resource/cpu",
"value": {
"request": "250m",
"limit": "500m"
}
```
**Note**: a core is the seconds/second that the app/pod will be able to run. e.g. 1 (or 1000m for 1000 milli-seconds) would represent full use of a single CPU core every second.
#### resource/memory
* Scope: app/pod
**Parameters:**
* **request** bytes of memory that the app/pod is requesting to use and allocations over this request will be reclaimed in case of contention
* **limit** bytes of memory that the app can allocate before the kernel considers the app/pod out of memory and stops allowing allocations.
```json
"name": "resource/memory",
"value": {
"request": "1G",
"limit": "2G"
}
```
#### resource/network-bandwidth
* Scope: app/pod
**Parameters:**
* **default** must be set to true and means that this bandwidth limit applies to all interfaces (except localhost) by default.
* **limit** read/write bytes per second
```json
"name": "resource/network-bandwidth",
"value": {
"default": true,
"limit": "1G"
}
```
**NOTE**: Network limits MUST NOT apply to localhost communication between apps in a pod.
### Unix Isolators
These isolators take care of configuring several settings that are typically available in UNIX-like environments.
This set includes isolators to tweak some standard POSIX features as well as other technologies that have been ported across multiple kernel families.
#### os/unix/sysctl
Sysctl parameters allow an application to configure kernel level options for its environment.
A number of these values are namespace-aware as well, which makes them a natural fit for for an ACE to configure.
* Scope: pod
**Parameters:**
* dictionary of `sysctl(8)` key-value entries to set kernel runtime parameters.
```json
"name": "os/unix/sysctl",
"value": {
"net.ipv4.tcp_mtu_probing": "1",
"net.ipv4.tcp_keepalive_time": "300",
"net.ipv4.tcp_keepalive_probes": "5",
"net.ipv4.tcp_keepalive_intvl": "15"
}
```
**Notes**:
1. Only a single `os/unix/sysctl` isolator can be specified per-pod.
2. Implementations SHOULD validate keys before applying sysctl parameters.
For example, a Linux implementation may want to only allow entries related to a specific namespaced subtree like `net.*`.
In such case, implementations MUST either ignore forbidden parameters or refuse to run the pod alltogether.
## App Container Metadata Service
For a variety of reasons, it is desirable to not write files to the filesystem in order to run an App Container:
* Secrets can be kept outside of the app
* The app can be run on top of a cryptographically secured read-only filesystem
* Metadata is a proven system for virtual machines
The App Container specification defines an HTTP-based metadata service for providing metadata to applications, as well as an [identity endpoint](#identity-endpoint).
### Metadata Service
The ACE SHOULD provide a Metadata service on the address given to the applications via the `AC_METADATA_URL` [environment variable](#execution-environment).
This URL must reference an endpoint which conforms to the HTTP protocol with TLS optionally enabled.
ACE implementations SHOULD embed an authorization token in `AC_METADATA_URL`, which provides a means for the metadata service to uniquely and securely identify a pod.
For example, `AC_METADATA_URL` passed to a pod could be set to `https://10.0.0.1:8888/Y4vFeVZzKM2T9rwkpWHfqXuGsNjS6O5c` with the path portion acting as a token.
Since the token is used by the Metadata Service to authenticate the pod's identity, it SHOULD have no fewer than 128 bits of entropy (i.e. size of UUID), and SHOULD NOT be easily guessable (e.g. the pod UUID should not be used).
For the following endpoints, unless otherwise specified, the media type of `application/json` must be specified and the body must conform to [RFC4627](http://www.ietf.org/rfc/rfc4627.txt).
[UUIDs](#pod-uuid) assigned to pods MUST be unique for the administrative domain of the metadata service.
### Pod Metadata
Information about the pod that this app is executing in.
Retrievable at `$AC_METADATA_URL/acMetadata/v1/pod`
| Entry | Method | Content-Type | Description |
|-------------|--------|--------------|-------------|
|annotations | GET | application/json | Top level annotations from Pod Manifest. Response body should conform to the sub-schema of the annotations property from the Pod specification (e.g. ```[ { "name": "ip-address", "value": "10.1.2.3" } ]```). |
|manifest | GET | application/json | Fully-reified Pod Manifest JSON. |
|uuid | GET | text/plain; charset=us-ascii | Pod UUID. The body of the response must be the pod UUID in canonical form. |
### App Metadata
Every running process will be able to introspect its App Name via the `AC_APP_NAME` environment variable.
This is necessary to query for the correct endpoint metadata.
Retrievable at `$AC_METADATA_URL/acMetadata/v1/apps/$AC_APP_NAME/`
| Entry | Method | Content-Type | Description |
|---------------|--------|--------------|-------------|
|annotations | GET | application/json | Annotations from Image Manifest merged with app annotations from Pod Manifest. Response body should conform to the sub-schema of the annotations property from the ACE and Pod specifications (e.g. ```[ { "name": "ip-address", "value": "10.1.2.3" } ]```). |
|image/manifest | GET | application/json | Original Image Manifest of the app. |
|image/id | GET | text/plain; charset=us-ascii | Image ID (digest) this app is contained in. The body of the response must be the image ID as described in the ACI specification.|
### Identity Endpoint
As a basic building block for building a secure identity system, the metadata service must provide an HMAC (described in [RFC2104](https://www.ietf.org/rfc/rfc2104.txt)) endpoint for use by the apps in the pod.
This gives a cryptographically verifiable identity to the pod based on its unique ID and the pod HMAC key, which is held securely by the ACE.
Accessible at `$AC_METADATA_URL/acMetadata/v1/pod/hmac`
| Entry | Method | Content-Type | Description |
|-------|--------|--------------|-------------|
|sign | POST | text/plain; charset=us-ascii | Client applications must POST a form with content=<object to sign>. The body must be a base64 encoded hmac-sha512 signature based on an HMAC key maintained by the Metadata Service. |
|verify | POST | text/plain; charset=us-ascii | Verify a signature from another pod. POST a form with content=<object that was signed>, uuid=<uuid of the pod that generated the signature>, signature=<base64 encoded signature>. Returns 200 OK if the signature passes and 403 Forbidden if the signature check fails. |
|