aboutsummaryrefslogtreecommitdiffstats
path: root/k8s/atuin.yaml
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-10 21:32:08 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-10 21:32:08 +0200
commit796a8f59a61ed6e54d0d2b41a5d0155c5bb9696b (patch)
tree538a0b1dac22b5aec2b65e67a0115369f44a1d88 /k8s/atuin.yaml
parentfeat: Capture command output + expose to new `atuin_output` tool (#3510) (diff)
downloadatuin-796a8f59a61ed6e54d0d2b41a5d0155c5bb9696b.zip
chore: Remove unneeded files
Diffstat (limited to 'k8s/atuin.yaml')
-rw-r--r--k8s/atuin.yaml156
1 files changed, 0 insertions, 156 deletions
diff --git a/k8s/atuin.yaml b/k8s/atuin.yaml
deleted file mode 100644
index e537e0ac..00000000
--- a/k8s/atuin.yaml
+++ /dev/null
@@ -1,156 +0,0 @@
----
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: atuin
-spec:
- replicas: 1
- selector:
- matchLabels:
- io.kompose.service: atuin
- template:
- metadata:
- labels:
- io.kompose.service: atuin
- spec:
- containers:
- - args:
- - start
- env:
- - name: ATUIN_DB_URI
- valueFrom:
- secretKeyRef:
- name: atuin-secrets
- key: ATUIN_DB_URI
- optional: false
- - name: ATUIN_HOST
- value: 0.0.0.0
- - name: ATUIN_PORT
- value: "8888"
- - name: ATUIN_OPEN_REGISTRATION
- value: "true"
- image: ghcr.io/atuinsh/atuin:latest
- name: atuin
- ports:
- - containerPort: &port 8888
- resources:
- limits:
- cpu: 250m
- memory: 1Gi
- requests:
- cpu: 250m
- memory: 1Gi
- startupProbe:
- httpGet:
- path: /healthz
- port: *port
- failureThreshold: 30
- periodSeconds: 10
- livenessProbe:
- httpGet:
- path: /healthz
- port: *port
- initialDelaySeconds: 3
- periodSeconds: 3
- readinessProbe:
- tcpSocket:
- port: *port
- initialDelaySeconds: 15
- periodSeconds: 10
- volumeMounts:
- - mountPath: /config
- name: atuin-claim0
- - name: postgresql
- image: postgres:14
- ports:
- - containerPort: 5432
- env:
- - name: POSTGRES_DB
- value: atuin
- - name: POSTGRES_PASSWORD
- valueFrom:
- secretKeyRef:
- name: atuin-secrets
- key: ATUIN_DB_PASSWORD
- optional: false
- - name: POSTGRES_USER
- valueFrom:
- secretKeyRef:
- name: atuin-secrets
- key: ATUIN_DB_USERNAME
- optional: false
- resources:
- limits:
- cpu: 250m
- memory: 1Gi
- requests:
- cpu: 250m
- memory: 1Gi
- volumeMounts:
- - mountPath: /var/lib/postgresql/data/
- name: database
- volumes:
- - name: database
- persistentVolumeClaim:
- claimName: database
- - name: atuin-claim0
- persistentVolumeClaim:
- claimName: atuin-claim0
----
-apiVersion: v1
-kind: Service
-metadata:
- labels:
- io.kompose.service: atuin
- name: atuin
-spec:
- type: NodePort
- ports:
- - name: "8888"
- port: 8888
- nodePort: 31929
- selector:
- io.kompose.service: atuin
----
-kind: PersistentVolume
-apiVersion: v1
-metadata:
- name: database-pv
- labels:
- app: database
- type: local
-spec:
- storageClassName: manual
- capacity:
- storage: 300Mi
- accessModes:
- - ReadWriteOnce
- hostPath:
- path: "/Users/firstname.lastname/.kube/database"
----
-apiVersion: v1
-kind: PersistentVolumeClaim
-metadata:
- labels:
- io.kompose.service: database
- name: database
-spec:
- storageClassName: manual
- accessModes:
- - ReadWriteOnce
- resources:
- requests:
- storage: 300Mi
----
-apiVersion: v1
-kind: PersistentVolumeClaim
-metadata:
- labels:
- io.kompose.service: atuin-claim0
- name: atuin-claim0
-spec:
- accessModes:
- - ReadWriteOnce
- resources:
- requests:
- storage: 10Mi