-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c6e7fd
commit c08a43c
Showing
2 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: gB-dev | ||
namespace: geoboundaries | ||
spec: | ||
securityContext: | ||
runAsUser: 71032 | ||
runAsGroup: 9915 | ||
containers: | ||
- name: gb-dev-container | ||
image: ghcr.io/your-custom-image:latest # Replace with your custom image name | ||
command: ["/bin/sh", "-c"] # Keep the container running | ||
args: | ||
- | | ||
echo "Pod is ready for interactive jobs. Use kubectl exec to interact."; | ||
while true; do sleep 3600; done | ||
resources: | ||
requests: | ||
memory: "16Gi" | ||
cpu: "2" | ||
limits: | ||
memory: "16Gi" | ||
cpu: "2" | ||
volumeMounts: | ||
- name: nfs-mount | ||
mountPath: /sciclone/geograd/geoBoundaries | ||
volumes: | ||
- name: nfs-mount | ||
nfs: | ||
server: 128.239.59.144 | ||
path: /sciclone/geograd/geoBoundaries |