Created
January 16, 2024 15:19
-
-
Save mikaelkrief/12289de8d9d02223b10c3e242ff26f42 to your computer and use it in GitHub Desktop.
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
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