Created
July 5, 2024 12:49
-
-
Save jovemfelix/0a64d99fc33b2793b512c87dd4e90464 to your computer and use it in GitHub Desktop.
Example to test with busybox
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: apps/v1 | |
kind: Deployment | |
metadata: | |
name: busybox | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: test | |
template: | |
metadata: | |
labels: | |
app: test | |
spec: | |
containers: | |
- image: busybox | |
imagePullPolicy: IfNotPresent | |
name: terminal | |
stdin: true | |
tty: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment