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
pub mod alloc;
pub mod context;
pub mod deploy;
pub mod event;
pub mod forge;
pub mod job;
pub mod node;
pub mod output;
pub mod release;
pub mod source;
pub mod top;
use clap::{Parser, Subcommand};
use output::OutputFormat;
#[derive(Parser)]
#[command(name = "tatara", about = "Nix-native workload orchestrator", version)]
pub struct Cli {
#[command(subcommand)]
pub command: Commands,
/// Output format
#[arg(long, short, global = true, default_value = "table")]
pub output: OutputFormat,
/// Server endpoint (overrides active context)
#[arg(long, global = true)]
pub endpoint: Option<String>,
}
#[derive(Subcommand)]
pub enum Commands {
/// Manage jobs
Job {
#[command(subcommand)]
command: JobCmd,
},
/// Manage nodes
Node {
#[command(subcommand)]
command: NodeCmd,
},
/// Manage allocations
Alloc {
#[command(subcommand)]
command: AllocCmd,
},
/// Evaluate a Nix job spec to JSON
Eval {
/// Nix file to evaluate
nix_file: String,
},
/// Deploy a flake-based workload
Deploy {
/// Flake reference or local path
flake_ref: String,
/// Override values (key=value)
#[arg(long = "set", value_parser = parse_key_val)]
set_values: Vec<(String, String)>,
/// Job name override
#[arg(long)]
name: Option<String>,
/// Show plan without deploying
#[arg(long)]
dry_run: bool,
},
/// Run the scheduler + API server
Server {
/// Path to server config file
#[arg(long)]
config: Option<String>,
},
/// Run a node executor (connects to remote server)
Client {
/// Server gRPC address
#[arg(long)]
server: Option<String>,
/// Path to client config file
#[arg(long)]
config: Option<String>,
},
/// Real-time cluster resource dashboard
Top {
/// Filter to specific node
#[arg(long)]
node: Option<String>,
/// Refresh interval in seconds
#[arg(long, default_value = "2")]
refresh: u64,
},
/// Manage contexts (server endpoints)
Context {
#[command(subcommand)]
command: ContextCmd,
},
/// View cluster events
Event {
#[command(subcommand)]
command: EventCmd,
},
/// Manage releases
Release {
#[command(subcommand)]
command: ReleaseCmd,
},
/// Manage forges (Nix workload packages)
Forge {
#[command(subcommand)]
command: ForgeCmd,
},
/// Manage sources (GitOps flake watchers)
Source {
#[command(subcommand)]
command: SourceCmd,
},
/// Show the materialized config at a tier (bare/default/discovered/custom/env).
ConfigShow(shikumi::cli::ConfigShowCommand),
// ── Backwards-compatible aliases ──
/// Submit a job (alias for `job run`)
#[command(hide = true)]
Run {
/// Job file (JSON, YAML, or Nix with --eval)
job_file: String,
/// Evaluate as Nix expression
#[arg(long)]
eval: bool,
/// Server HTTP address
#[arg(long, default_value = "127.0.0.1:4646")]
server: String,
},
/// Show job/node status (alias for `job list` or `job get`)
#[command(hide = true)]
Status {
/// Job ID (omit to list all jobs)
job_id: Option<String>,
/// Server HTTP address
#[arg(long, default_value = "127.0.0.1:4646")]
server: String,
},
/// Stop a job (alias for `job stop`)
#[command(hide = true)]
Stop {
/// Job ID
job_id: String,
/// Server HTTP address
#[arg(long, default_value = "127.0.0.1:4646")]
server: String,
},
/// Stream task logs (alias for `alloc logs`)
#[command(hide = true)]
Logs {
/// Allocation ID
alloc_id: String,
/// Task name
#[arg(long)]
task: Option<String>,
/// Follow log output
#[arg(long)]
follow: bool,
/// Server HTTP address
#[arg(long, default_value = "127.0.0.1:4646")]
server: String,
},
}
#[derive(Subcommand)]
pub enum JobCmd {
/// List all jobs
List,
/// Get job details
Get {
/// Job ID
job_id: String,
},
/// Submit a job
Run {
/// Job file (JSON, YAML, or Nix with --eval)
job_file: String,
/// Evaluate as Nix expression
#[arg(long)]
eval: bool,
},
/// Stop a job
Stop {
/// Job ID
job_id: String,
},
/// Show job version history
History {
/// Job ID
job_id: String,
},
/// Diff two job versions
Diff {
/// Job ID
job_id: String,
/// First version
v1: u64,
/// Second version
v2: u64,
},
/// Rollback to a previous version
Rollback {
/// Job ID
job_id: String,
/// Version to rollback to
version: u64,
},
}
#[derive(Subcommand)]
pub enum NodeCmd {
/// List nodes
List,
/// Show node status
Status {
/// Node ID (omit for all nodes)
node_id: Option<String>,
},
/// Drain a node (migrate allocations away)
Drain {
/// Node ID
node_id: String,
/// Deadline in seconds
#[arg(long)]
deadline: Option<u64>,
},
/// Set node scheduling eligibility
Eligibility {
/// Node ID
node_id: String,
/// Enable scheduling
#[arg(long, conflicts_with = "disable")]
enable: bool,
/// Disable scheduling
#[arg(long, conflicts_with = "enable")]
disable: bool,
},
}
#[derive(Subcommand)]
pub enum AllocCmd {
/// List all allocations
List,
/// Get allocation details
Get {
/// Allocation ID
alloc_id: String,
},
/// Stream allocation logs
Logs {
/// Allocation ID
alloc_id: String,
/// Task name
#[arg(long)]
task: Option<String>,
/// Follow log output
#[arg(long)]
follow: bool,
},
}
#[derive(Subcommand)]
pub enum ContextCmd {
/// List all contexts
List,
/// Switch active context
Use {
/// Context name
name: String,
},
/// Show current context
Current,
}
#[derive(Subcommand)]
pub enum EventCmd {
/// List events
List {
/// Filter by event kind
#[arg(long)]
kind: Option<String>,
/// Show events since duration (e.g., "5m", "1h")
#[arg(long)]
since: Option<String>,
},
/// Stream events in real-time (SSE)
Stream {
/// Filter by event kind
#[arg(long)]
kind: Option<String>,
},
}
#[derive(Subcommand)]
pub enum ReleaseCmd {
/// List releases
List,
/// Get release details
Get {
/// Release ID
release_id: String,
},
/// Promote a release to active
Promote {
/// Release ID
release_id: String,
},
/// Rollback a release
Rollback {
/// Release ID
release_id: String,
},
}
#[derive(Subcommand)]
pub enum ForgeCmd {
/// Initialize a new forge from template
Init {
/// Forge name
name: String,
},
/// Validate a forge's outputs
Validate {
/// Path to forge directory
#[arg(default_value = ".")]
path: String,
},
/// Inspect a forge's metadata and job specs
Inspect {
/// Flake reference or local path
flake_ref: String,
},
}
#[derive(Subcommand)]
pub enum SourceCmd {
/// List all sources
List,
/// Get source details
Get {
/// Source name or ID
name_or_id: String,
},
/// Add a new source
Add {
/// Source name
name: String,
/// Flake reference (e.g., "github:pleme-io/tatara-infra")
flake_ref: String,
/// Source kind
#[arg(long, default_value = "git-flake")]
kind: String,
},
/// Delete a source and its managed jobs
Delete {
/// Source name or ID
name_or_id: String,
},
/// Force immediate sync
Sync {
/// Source name or ID
name_or_id: String,
},
/// Suspend reconciliation
Suspend {
/// Source name or ID
name_or_id: String,
},
/// Resume reconciliation
Resume {
/// Source name or ID
name_or_id: String,
},
}
fn parse_key_val(s: &str) -> Result<(String, String), String> {
let pos = s
.find('=')
.ok_or_else(|| format!("invalid KEY=value: no `=` found in `{s}`"))?;
Ok((s[..pos].to_string(), s[pos + 1..].to_string()))
}