-
-
Save davidwalter0/99d335ae6f44e465704d0717d0db6f61 to your computer and use it in GitHub Desktop.
trivial-container
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
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: trivial-container | |
spec: | |
containers: | |
- name: c | |
image: ubuntu:xenial | |
#resources: | |
# limits: | |
# cpu: 20m | |
# memory: 20Mi | |
# requests: | |
# cpu: 10m | |
# memory: 10Mi | |
command: | |
- /bin/bash | |
- -c | |
- "while true; do date; sleep 1; done" | |
# volumeMounts: | |
# - mountPath: /var/run/secrets/kubernetes.io/serviceaccount | |
# name: empty-volume-for-trivial | |
# readOnly: true | |
# volumes: | |
# - name: empty-volume-for-trivial | |
# emptyDir: {} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment