diff options
author | clyhtsuriva <aimeric@adjutor.xyz> | 2025-07-09 19:11:16 +0200 |
---|---|---|
committer | clyhtsuriva <aimeric@adjutor.xyz> | 2025-07-09 19:11:16 +0200 |
commit | ca77065087fb7ee1b6a5bbad7948c65b8f02301e (patch) | |
tree | e6f9eb26c5252a2d10f20254101364dd560fd0fc /kubernetes/puter/puter-deployment.yaml | |
parent | 6e212ef15eab36f94ba8a4800ed450bfaabe2d70 (diff) |
k8s: remove puter
Diffstat (limited to 'kubernetes/puter/puter-deployment.yaml')
-rw-r--r-- | kubernetes/puter/puter-deployment.yaml | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/kubernetes/puter/puter-deployment.yaml b/kubernetes/puter/puter-deployment.yaml deleted file mode 100644 index fb6a475..0000000 --- a/kubernetes/puter/puter-deployment.yaml +++ /dev/null @@ -1,50 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - annotations: - kompose.cmd: kompose convert - kompose.version: 1.34.0 (cbf2835db) - labels: - io.kompose.service: puter - name: puter -spec: - replicas: 1 - selector: - matchLabels: - io.kompose.service: puter - strategy: - type: Recreate - template: - metadata: - annotations: - kompose.cmd: kompose convert - kompose.version: 1.34.0 (cbf2835db) - labels: - io.kompose.service: puter - spec: - containers: - - env: - - name: PGID - value: "1000" - - name: PUID - value: "1000" - - name: TZ - value: Europe/Paris - image: ghcr.io/heyputer/puter:latest - name: puter - ports: - - containerPort: 4100 - protocol: TCP - volumeMounts: - - mountPath: /etc/puter - name: puter-claim0 - - mountPath: /var/puter - name: puter-claim1 - restartPolicy: Always - volumes: - - name: puter-claim0 - persistentVolumeClaim: - claimName: puter-claim0 - - name: puter-claim1 - persistentVolumeClaim: - claimName: puter-claim1 |