armature-framework 0.2.2

A modern, type-safe HTTP framework for Rust inspired by Angular and NestJS. Features dependency injection, decorators, middleware, authentication (JWT/OAuth2/SAML), validation, OpenAPI/Swagger, caching, job queues, and observability.
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
# Kubernetes Guide

This guide covers deploying and operating Armature applications on Kubernetes.

## Table of Contents

- [Overview]#overview
- [Basic Deployment]#basic-deployment
- [Service Configuration]#service-configuration
- [Ingress with Ferron]#ingress-with-ferron
- [ConfigMaps and Secrets]#configmaps-and-secrets
- [Horizontal Pod Autoscaler]#horizontal-pod-autoscaler
- [Health Probes]#health-probes
- [Resource Management]#resource-management
- [Best Practices]#best-practices

## Overview

Kubernetes provides container orchestration for Armature applications with:

- **Automatic scaling** based on CPU/memory or custom metrics
- **Self-healing** with health probes and automatic restarts
- **Rolling updates** for zero-downtime deployments
- **Service discovery** with DNS-based service routing
- **Load balancing** across pod replicas

## Basic Deployment

### Deployment Manifest

```yaml
apiVersion: apps/v1
kind: Deployment
metadata:
  name: armature-api
  labels:
    app: armature-api
spec:
  replicas: 3
  selector:
    matchLabels:
      app: armature-api
  template:
    metadata:
      labels:
        app: armature-api
    spec:
      containers:
        - name: api
          image: your-registry/armature-api:latest
          ports:
            - containerPort: 3000
          env:
            - name: RUST_LOG
              value: "info"
            - name: DATABASE_URL
              valueFrom:
                secretKeyRef:
                  name: api-secrets
                  key: database-url
          resources:
            limits:
              cpu: "1"
              memory: "512Mi"
            requests:
              cpu: "250m"
              memory: "256Mi"
          livenessProbe:
            httpGet:
              path: /live
              port: 3000
            initialDelaySeconds: 10
            periodSeconds: 10
          readinessProbe:
            httpGet:
              path: /ready
              port: 3000
            initialDelaySeconds: 5
            periodSeconds: 5
          startupProbe:
            httpGet:
              path: /health
              port: 3000
            failureThreshold: 30
            periodSeconds: 10
```

## Service Configuration

```yaml
apiVersion: v1
kind: Service
metadata:
  name: armature-api
spec:
  selector:
    app: armature-api
  ports:
    - port: 80
      targetPort: 3000
  type: ClusterIP
```

## Ingress with Ferron

### Ferron ConfigMap

```yaml
apiVersion: v1
kind: ConfigMap
metadata:
  name: ferron-config
data:
  ferron.conf: |
    api.example.com {
        tls auto
        hsts max_age=31536000
        gzip level=6

        header "X-Frame-Options" "DENY"
        header "X-Content-Type-Options" "nosniff"

        lb_method "round_robin"
        proxy "http://armature-api:80"

        lb_health_check interval=10 path="/health" threshold=3
    }
```

### Ferron Deployment

```yaml
apiVersion: apps/v1
kind: Deployment
metadata:
  name: ferron
spec:
  replicas: 2
  selector:
    matchLabels:
      app: ferron
  template:
    metadata:
      labels:
        app: ferron
    spec:
      containers:
        - name: ferron
          image: ferronweb/ferron:latest
          ports:
            - containerPort: 80
            - containerPort: 443
          volumeMounts:
            - name: config
              mountPath: /etc/ferron
            - name: certs
              mountPath: /var/lib/ferron/certs
          resources:
            limits:
              cpu: "500m"
              memory: "256Mi"
            requests:
              cpu: "100m"
              memory: "128Mi"
      volumes:
        - name: config
          configMap:
            name: ferron-config
        - name: certs
          persistentVolumeClaim:
            claimName: ferron-certs
---
apiVersion: v1
kind: Service
metadata:
  name: ferron
spec:
  type: LoadBalancer
  selector:
    app: ferron
  ports:
    - name: http
      port: 80
      targetPort: 80
    - name: https
      port: 443
      targetPort: 443
```

## ConfigMaps and Secrets

### ConfigMap for Application Config

```yaml
apiVersion: v1
kind: ConfigMap
metadata:
  name: api-config
data:
  LOG_LEVEL: "info"
  CACHE_TTL: "3600"
  RATE_LIMIT: "100"
```

### Secrets for Sensitive Data

```yaml
apiVersion: v1
kind: Secret
metadata:
  name: api-secrets
type: Opaque
stringData:
  database-url: "postgres://user:pass@db:5432/app"
  jwt-secret: "your-secret-key"
  redis-url: "redis://redis:6379"
```

### Using in Deployment

```yaml
env:
  - name: LOG_LEVEL
    valueFrom:
      configMapKeyRef:
        name: api-config
        key: LOG_LEVEL
  - name: DATABASE_URL
    valueFrom:
      secretKeyRef:
        name: api-secrets
        key: database-url
```

## Horizontal Pod Autoscaler

### CPU-Based Scaling

```yaml
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
  name: armature-api-hpa
spec:
  scaleTargetRef:
    apiVersion: apps/v1
    kind: Deployment
    name: armature-api
  minReplicas: 3
  maxReplicas: 20
  metrics:
    - type: Resource
      resource:
        name: cpu
        target:
          type: Utilization
          averageUtilization: 70
    - type: Resource
      resource:
        name: memory
        target:
          type: Utilization
          averageUtilization: 80
  behavior:
    scaleUp:
      stabilizationWindowSeconds: 60
      policies:
        - type: Pods
          value: 4
          periodSeconds: 60
    scaleDown:
      stabilizationWindowSeconds: 300
      policies:
        - type: Percent
          value: 10
          periodSeconds: 60
```

## Health Probes

### Implementing Probes in Armature

```rust
#[controller("")]
#[derive(Default, Clone)]
struct HealthController;

#[routes]
impl HealthController {
    // Liveness probe - Is the app running?
    #[get("/live")]
    async fn live() -> Result<HttpResponse, Error> {
        HttpResponse::ok().with_body(b"OK".to_vec())
    }

    // Readiness probe - Is the app ready for traffic?
    #[get("/ready")]
    async fn ready() -> Result<HttpResponse, Error> {
        // Check dependencies
        let db_ok = check_database().await;
        let cache_ok = check_cache().await;

        if db_ok && cache_ok {
            HttpResponse::ok().with_body(b"READY".to_vec())
        } else {
            Err(Error::internal("Not ready"))
        }
    }

    // Startup probe - Has the app started?
    #[get("/health")]
    async fn health() -> Result<HttpResponse, Error> {
        HttpResponse::json(&serde_json::json!({
            "status": "healthy",
            "version": env!("CARGO_PKG_VERSION")
        }))
    }
}
```

## Resource Management

### Pod Disruption Budget

```yaml
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
  name: armature-api-pdb
spec:
  minAvailable: 2
  selector:
    matchLabels:
      app: armature-api
```

### Resource Quotas

```yaml
apiVersion: v1
kind: ResourceQuota
metadata:
  name: api-quota
spec:
  hard:
    requests.cpu: "4"
    requests.memory: "4Gi"
    limits.cpu: "8"
    limits.memory: "8Gi"
    pods: "20"
```

### Limit Ranges

```yaml
apiVersion: v1
kind: LimitRange
metadata:
  name: api-limits
spec:
  limits:
    - default:
        cpu: "500m"
        memory: "256Mi"
      defaultRequest:
        cpu: "100m"
        memory: "128Mi"
      max:
        cpu: "2"
        memory: "1Gi"
      min:
        cpu: "50m"
        memory: "64Mi"
      type: Container
```

## Best Practices

### 1. Use Namespaces

```yaml
apiVersion: v1
kind: Namespace
metadata:
  name: armature-production
```

### 2. Set Pod Anti-Affinity

```yaml
spec:
  affinity:
    podAntiAffinity:
      preferredDuringSchedulingIgnoredDuringExecution:
        - weight: 100
          podAffinityTerm:
            labelSelector:
              matchLabels:
                app: armature-api
            topologyKey: kubernetes.io/hostname
```

### 3. Use Rolling Updates

```yaml
spec:
  strategy:
    type: RollingUpdate
    rollingUpdate:
      maxSurge: 25%
      maxUnavailable: 25%
```

### 4. Configure Graceful Shutdown

```rust
use armature_framework::shutdown::GracefulShutdown;
use tokio::signal;

async fn shutdown_signal() {
    signal::unix::signal(signal::unix::SignalKind::terminate())
        .expect("failed to create SIGTERM handler")
        .recv()
        .await;
}
```

```yaml
spec:
  terminationGracePeriodSeconds: 60
```

### 5. Use Service Accounts

```yaml
apiVersion: v1
kind: ServiceAccount
metadata:
  name: armature-api
---
spec:
  serviceAccountName: armature-api
```

## Summary

Key Kubernetes deployment considerations:

1. **Configure health probes** - liveness, readiness, startup
2. **Set resource limits** - prevent resource contention
3. **Use HPA** - automatic scaling based on metrics
4. **Configure PDB** - maintain availability during disruptions
5. **Use secrets** - never hardcode sensitive data
6. **Enable rolling updates** - zero-downtime deployments
7. **Use Ferron** - high-performance ingress with TLS