Created
October 12, 2020 15:17
-
-
Save guangbochen/010ba0b2c9d2c57fd1346d7dd4f7a163 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
cat <<EOF | kubectl create -f - | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: samplepod-2 | |
annotations: | |
k8s.v1.cni.cncf.io/networks: '[ | |
{ | |
"name": "ovs-ipam-net", | |
"ips": ["10.10.10.1/24"] | |
} | |
]' | |
spec: | |
containers: | |
- name: samplepod | |
command: ["sleep", "99999"] | |
image: alpine | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment