mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 08:30:20 +00:00
Place useful parts of the surrounding repos into sica-fondt by layer, per the
body model (Ada = membrane; brain/endocrine/capabilities/knowledge non-Ada):
- brain/ LLM reasoning + providers (dapr, hermes, MoMoA)
- capabilities/ REPRAG sidecars: hermes tools/skills, dapr tools, parallel
dispatch, A51 channels, and the OSINT cluster
- knowledge/ LORAG corpus: 754 cyber-skills, agency personas, secure-coding,
MITRE ATT&CK data
- reference/ defensive threat-reference (C3, shhbruh doc) + AdaYaml parser
License handling: AGPL sources (worldosint, advanced_evolution, mercury,
Reticulum) and GPL DeTTECT are SPEC-only clean-room/port descriptions — no
copyleft code copied. MIT/Apache/data parts copied as working trees.
Safety: shhbruh escape/persistence material and C3 covert-C2 kept as reference
only, not wired into the running organism. See CONSOLIDATION.md.
https://claude.ai/code/session_01UehUqEXXJJCsHoA4voCU5c
76 lines
1.8 KiB
Markdown
76 lines
1.8 KiB
Markdown
# OPA Policy as Code Templates
|
|
|
|
## Gatekeeper ConstraintTemplate Library
|
|
|
|
```yaml
|
|
# Block containers running as root
|
|
apiVersion: templates.gatekeeper.sh/v1
|
|
kind: ConstraintTemplate
|
|
metadata:
|
|
name: k8sblockrootuser
|
|
spec:
|
|
crd:
|
|
spec:
|
|
names:
|
|
kind: K8sBlockRootUser
|
|
targets:
|
|
- target: admission.k8s.gatekeeper.sh
|
|
rego: |
|
|
package k8sblockrootuser
|
|
violation[{"msg": msg}] {
|
|
container := input.review.object.spec.containers[_]
|
|
container.securityContext.runAsUser == 0
|
|
msg := sprintf("Container %v runs as root (UID 0)", [container.name])
|
|
}
|
|
violation[{"msg": msg}] {
|
|
input.review.object.spec.securityContext.runAsUser == 0
|
|
msg := "Pod runs as root (UID 0)"
|
|
}
|
|
```
|
|
|
|
## conftest Policy for CI/CD
|
|
|
|
```rego
|
|
# policies/kubernetes/security.rego
|
|
package kubernetes
|
|
|
|
deny[msg] {
|
|
input.kind == "Deployment"
|
|
container := input.spec.template.spec.containers[_]
|
|
container.securityContext.privileged == true
|
|
msg := sprintf("Privileged container '%v' not allowed", [container.name])
|
|
}
|
|
|
|
deny[msg] {
|
|
input.kind == "Deployment"
|
|
container := input.spec.template.spec.containers[_]
|
|
not container.resources.limits
|
|
msg := sprintf("Container '%v' missing resource limits", [container.name])
|
|
}
|
|
|
|
deny[msg] {
|
|
input.kind == "Deployment"
|
|
container := input.spec.template.spec.containers[_]
|
|
endswith(container.image, ":latest")
|
|
msg := sprintf("Container '%v' uses :latest tag", [container.name])
|
|
}
|
|
```
|
|
|
|
## GitHub Actions Integration
|
|
|
|
```yaml
|
|
name: Policy Check
|
|
on:
|
|
pull_request:
|
|
paths: ['k8s/**']
|
|
jobs:
|
|
conftest:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: open-policy-agent/conftest-action@v1
|
|
with:
|
|
files: k8s/
|
|
policy: policies/kubernetes/
|
|
```
|