Created
September 7, 2022 23:57
-
-
Save dudash/178f212db0b3c6b17d66132fe7be9bf5 to your computer and use it in GitHub Desktop.
an AWS CLI pod for ROSA
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: awscli | |
spec: | |
containers: | |
- name: awscli | |
image: amazon/aws-cli:latest | |
# Just spin & wait forever | |
command: [ "/bin/bash", "-c", "--" ] | |
args: [ "while true; do sleep 30; done;" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment