refactor: restructure services layout, retire oceanus, add aether scaffolding
- Move flat service manifests into structured subdirs (apps/, bootstrap-jobs/,
repair-jobs/, migration-jobs/, validation-jobs/, node-ops/, networking/)
- Retire oneoffs/ directories across services
- Remove oceanus cluster and its host roles; add aether cluster + terraform scaffolding
- Reorganize scripts/ into ops/, render/, sync/, manual-tests/
- Add Makefile with render/validate/test/flux targets and repo-structure tests
- Update flux-system application CRs to the new paths
- Add hermes-automated-triage-24h-plan knowledge doc (+ comms mirror)
- Refresh knowledge catalogs, dashboards, vmalert rules, quality contract
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-05 16:21:36 -03:00
|
|
|
# services/maintenance/node-ops/node-nofile-daemonset.yaml
|
2026-01-10 20:20:54 -03:00
|
|
|
apiVersion: apps/v1
|
|
|
|
|
kind: DaemonSet
|
|
|
|
|
metadata:
|
|
|
|
|
name: node-nofile
|
|
|
|
|
namespace: maintenance
|
|
|
|
|
spec:
|
|
|
|
|
selector:
|
|
|
|
|
matchLabels:
|
|
|
|
|
app: node-nofile
|
|
|
|
|
updateStrategy:
|
|
|
|
|
type: RollingUpdate
|
|
|
|
|
template:
|
|
|
|
|
metadata:
|
|
|
|
|
labels:
|
|
|
|
|
app: node-nofile
|
2026-06-10 05:43:23 -03:00
|
|
|
annotations:
|
|
|
|
|
bstein.dev/restarted-at: "2026-06-10T08:40:00Z"
|
2026-01-10 20:20:54 -03:00
|
|
|
spec:
|
|
|
|
|
serviceAccountName: node-nofile
|
|
|
|
|
tolerations:
|
|
|
|
|
- key: node-role.kubernetes.io/control-plane
|
|
|
|
|
operator: Exists
|
|
|
|
|
effect: NoSchedule
|
|
|
|
|
- key: node-role.kubernetes.io/master
|
|
|
|
|
operator: Exists
|
|
|
|
|
effect: NoSchedule
|
|
|
|
|
containers:
|
|
|
|
|
- name: node-nofile
|
|
|
|
|
image: bitnami/kubectl@sha256:554ab88b1858e8424c55de37ad417b16f2a0e65d1607aa0f3fe3ce9b9f10b131
|
|
|
|
|
command: ["/usr/bin/env", "bash"]
|
|
|
|
|
args: ["/scripts/node_nofile.sh"]
|
|
|
|
|
securityContext:
|
|
|
|
|
privileged: true
|
|
|
|
|
runAsUser: 0
|
|
|
|
|
volumeMounts:
|
|
|
|
|
- name: host-root
|
|
|
|
|
mountPath: /host
|
|
|
|
|
- name: script
|
|
|
|
|
mountPath: /scripts
|
|
|
|
|
readOnly: true
|
|
|
|
|
volumes:
|
|
|
|
|
- name: host-root
|
|
|
|
|
hostPath:
|
|
|
|
|
path: /
|
|
|
|
|
- name: script
|
|
|
|
|
configMap:
|
|
|
|
|
name: node-nofile-script
|
|
|
|
|
defaultMode: 0555
|