Skip to content

Instantly share code, notes, and snippets.

@mikaelkrief
Created January 16, 2024 15:19
Show Gist options
  • Save mikaelkrief/12289de8d9d02223b10c3e242ff26f42 to your computer and use it in GitHub Desktop.
Save mikaelkrief/12289de8d9d02223b10c3e242ff26f42 to your computer and use it in GitHub Desktop.
kind: Pod
apiVersion: v1
metadata:
name: app
namespace: myapp
spec:
containers:
- name: mypod
image: mcr.microsoft.com/oss/nginx/nginx:1.15.5-alpine
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 250m
memory: 256Mi
volumeMounts:
- mountPath: /mnt/azure
name: azure
readOnly: false
volumes:
- name: azure
persistentVolumeClaim:
claimName: azurefile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment