# audit-svc — Enterprise audit logs # docs/architecture: 02-k3s-microservices-spec.md §3.13 apiVersion: apps/v1 kind: Deployment metadata: name: audit-svc namespace: gooseek spec: replicas: 1 selector: matchLabels: app: audit-svc template: metadata: labels: app: audit-svc annotations: prometheus.io/scrape: "true" prometheus.io/port: "3012" prometheus.io/path: "/metrics" spec: containers: - name: audit-svc image: gooseek/audit-svc:latest ports: - containerPort: 3012 env: - name: PORT value: "3012" livenessProbe: httpGet: path: /health port: 3012 initialDelaySeconds: 5 periodSeconds: 10 readinessProbe: httpGet: path: /ready port: 3012 initialDelaySeconds: 3 periodSeconds: 5 resources: requests: cpu: 50m memory: 128Mi limits: cpu: 500m memory: 512Mi --- apiVersion: v1 kind: Service metadata: name: audit-svc namespace: gooseek spec: selector: app: audit-svc ports: - port: 3012 targetPort: 3012