Last active
January 13, 2020 20:31
-
-
Save rsmitty/06e29f4f4d2e708fbd6dfccf4f2c458b to your computer and use it in GitHub Desktop.
This file contains hidden or 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: ServiceAccount | |
metadata: | |
name: hwhat | |
namespace: default | |
--- | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: alpine | |
namespace: default | |
spec: | |
containers: | |
- image: alpine:3.2 | |
command: | |
- /bin/sh | |
- "-c" | |
- "sleep 60m" | |
imagePullPolicy: IfNotPresent | |
name: alpine | |
restartPolicy: Always | |
serviceAccountName: hwhat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment