Skip to content

Commit

Permalink
Bump the number of ssh keys per instance
Browse files Browse the repository at this point in the history
  • Loading branch information
zephraph committed Jan 29, 2024
1 parent 6255887 commit a6d33a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nexus/src/app/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ pub const MAX_MEMORY_BYTES_PER_INSTANCE: u64 = 256 * (1 << 30); // 256 GiB
pub const MIN_DISK_SIZE_BYTES: u32 = 1 << 30; // 1 GiB
pub const MAX_DISK_SIZE_BYTES: u64 = 1023 * (1 << 30); // 1023 GiB

pub const MAX_SSH_KEYS_PER_INSTANCE: u32 = 10;
pub const MAX_SSH_KEYS_PER_INSTANCE: u32 = 100;

/// Manages an Oxide fleet -- the heart of the control plane
pub struct Nexus {
Expand Down

0 comments on commit a6d33a8

Please sign in to comment.