Skip to content

Commit a83d903

Browse files
authored
Changing git.io to example.com (#43632)
1 parent d8b3cd4 commit a83d903

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/en/docs/reference/kubectl/quick-reference.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ Kubernetes manifests can be defined in YAML or JSON. The file extension `.yaml`,
112112
`.yml`, and `.json` can be used.
113113

114114
```bash
115-
kubectl apply -f ./my-manifest.yaml # create resource(s)
116-
kubectl apply -f ./my1.yaml -f ./my2.yaml # create from multiple files
117-
kubectl apply -f ./dir # create resource(s) in all manifest files in dir
118-
kubectl apply -f https://git.io/vPieo # create resource(s) from url
119-
kubectl create deployment nginx --image=nginx # start a single instance of nginx
115+
kubectl apply -f ./my-manifest.yaml # create resource(s)
116+
kubectl apply -f ./my1.yaml -f ./my2.yaml # create from multiple files
117+
kubectl apply -f ./dir # create resource(s) in all manifest files in dir
118+
kubectl apply -f https://example.com/manifest.yaml # create resource(s) from url (Note: this is an example domain and does not contain a valid manifest)
119+
kubectl create deployment nginx --image=nginx # start a single instance of nginx
120120

121121
# create a Job which prints "Hello World"
122122
kubectl create job hello --image=busybox:1.28 -- echo "Hello World"

0 commit comments

Comments
 (0)