Skip to content

Instantly share code, notes, and snippets.

@afgane
Created January 16, 2025 16:24
Show Gist options
  • Select an option

  • Save afgane/f82703727c6ca22a695f4eb022fdccd6 to your computer and use it in GitHub Desktop.

Select an option

Save afgane/f82703727c6ca22a695f4eb022fdccd6 to your computer and use it in GitHub Desktop.
A manifest for a debug pod for a Galaxy deployment.
apiVersion: v1
kind: Pod
metadata:
name: gxy-debug-pod
spec:
containers:
- name: gxy-debug-pod
image: alpine:3.16
imagePullPolicy: IfNotPresent
command: ["tail"]
args: ["-f", "/dev/null"]
volumeMounts:
- name: galaxy-data
mountPath: /galaxy/server/database
securityContext:
runAsUser: 0
allowPrivilegeEscalation: true
volumes:
- name: galaxy-data
persistentVolumeClaim:
claimName: galaxy-galaxy-pvc
restartPolicy: Always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment