Skip to content

Latest commit

 

History

History
47 lines (44 loc) · 5.34 KB

GLOSSARY.md

File metadata and controls

47 lines (44 loc) · 5.34 KB

Bottlerocket terms

  • block-party: A library that helps retrieve information about Linux block devices.
  • bork: A setting generator called by sundog to generate the random seed for updog, determining where the host falls in the update order.
  • buildsys: A build tool that runs package and image builds inside containers. cargo-make starts the build of each package, each of which calls buildsys, which in turn starts a Docker-based build using the SDK image.
  • corndog: A program that sets kernel sysctl values based on API settings.
  • early-boot-config: A program run at boot to read platform-specific data, such as EC2 user data, and send requested configuration to the API.
  • gptprio: A structure of bits in GPT partition headers that specifies priority, tries remaining, and whether the partition booted successfully before. signpost sets these and GRUB uses them to determine which partition set to boot.
  • ghostdog: A program used to manage ephemeral disks.
  • host containers: Containers that run in a separate instance of containerd than "user" containers spawned by an orchestrator (e.g. Kubernetes). Used for system maintenance and connectivity.
  • host-ctr: The program started by host-containers@.service for each host container. Its job is to start the specified host container on the “host” instance of containerd, which is separate from the “user” instance of containerd used for Kubernetes pods.
  • logdog: A program that one can use to collect logs when things go wrong.
  • metricdog: A program that sends anonymous health pings.
  • model: The API system has a data model defined for each variant, and this model is used by other programs to serialize and deserialize requests while maintaining safety around data types.
  • netdog: A program called by wicked to retrieve and write out network configuration from DHCP.
  • pluto: A setting generator called by sundog to find networking settings required by Kubernetes.
  • schnauzer: A setting generator called by sundog to build setting values that contain template variables referencing other settings.
  • setting generator: A binary that generates the default value of a setting.
  • shibaken: A setting generator called by sundog to populate the admin container's user-data with public keys from IMDS, when running in AWS.
  • signpost: A program used to manipulate the GPT header of the OS disk; fields in the header are used by GRUB to determine the partition set we should boot from.
  • storewolf: A program that sets up the data store for the API upon boot.
  • sundog: A program run during boot that generates any settings that depend on runtime system information. It finds settings that need generation by way of metadata in the API, and calls helper programs specified by that metadata.
  • thar-be-settings: A program that writes out system configuration files, replacing template variables with settings from the API.
  • updog: An update client that interfaces with a specified TUF updates repository to upgrade or downgrade Bottlerocket hosts to different image versions.
  • prairiedog: A program that handles various boot related operations.
  • shimpei: An OCI compatible shim wrapper around oci-add-hooks. Its sole purpose is to call oci-add-hooks with the additional --hook-config-path and --runtime-path parameters that can't be provided by containerd.

Non-Bottlerocket terms

  • k8s: Kubernetes, a container orchestration system.
  • CNI: Container Network Interface, a standard for writing plugins to configure network interfaces in containers.
  • IMDS: Amazon EC2's Instance Metadata Service. Used to retrieve user and platform configuration on an EC2 instance.
  • sonobuoy: A diagnostic tool and runs Kubernetes conformance tests for Kubernetes clusters.
  • SSM: AWS Systems Manager. The SSM agent can be used for secure remote management.
  • tough: a Rust implementation of The Update Framework (TUF).
  • tuftool: a command line program for interacting with a TUF repo.
  • TUF: The Update Framework. A framework that helps developers maintain the security of software update systems.
  • wicked: A network interface framework and management system.
  • oci-add-hooks: An OCI runtime that injects the OCI prestart, poststart, and poststop hooks into a container config.json before passing along to an OCI compatible runtime.