forked from bottlerocket-os/bottlerocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
29 lines (28 loc) · 1.67 KB
/
Copy pathlib.rs
File metadata and controls
29 lines (28 loc) · 1.67 KB
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
use bottlerocket_settings_models::model_derive::model;
use bottlerocket_settings_plugin::SettingsPlugin;
#[derive(SettingsPlugin)]
#[model(rename = "settings", impl_default = true)]
struct AwsK8sSettings {
motd: bottlerocket_settings_models::MotdV1,
kubernetes: bottlerocket_settings_models::KubernetesSettingsV1,
updates: bottlerocket_settings_models::UpdatesSettingsV1,
host_containers: bottlerocket_settings_models::HostContainersSettingsV1,
bootstrap_commands: bottlerocket_settings_models::BootstrapCommandsSettingsV1,
bootstrap_containers: bottlerocket_settings_models::BootstrapContainersSettingsV1,
ntp: bottlerocket_settings_models::NtpSettingsV1,
network: bottlerocket_settings_models::NetworkSettingsV1,
kernel: bottlerocket_settings_models::KernelSettingsV1,
boot: bottlerocket_settings_models::BootSettingsV1,
aws: bottlerocket_settings_models::AwsSettingsV1,
metrics: bottlerocket_settings_models::MetricsSettingsV1,
pki: bottlerocket_settings_models::PkiSettingsV1,
container_registry: bottlerocket_settings_models::RegistrySettingsV1,
oci_defaults: bottlerocket_settings_models::OciDefaultsV1,
oci_hooks: bottlerocket_settings_models::OciHooksSettingsV1,
cloudformation: bottlerocket_settings_models::CloudFormationSettingsV1,
dns: bottlerocket_settings_models::DnsSettingsV1,
container_runtime: bottlerocket_settings_models::ContainerRuntimeSettingsV1,
container_runtime_plugins: bottlerocket_settings_models::ContainerRuntimePluginsSettingsV1,
image_verifier_plugins: bottlerocket_settings_models::ImageVerifierPluginsSettingsV1,
autoscaling: bottlerocket_settings_models::AutoScalingSettingsV1,
}