Commit Graph

5 Commits

Author SHA1 Message Date
Lin Sun 91494243e0 Switch to use kubectl create to avoid warning (#668)
➜ linsun@Lins-MacBook-Pro  ~/Downloads/istio-0.2.7/samples/bookinfo/kube  kubectl apply -f <(istioctl kube-inject -f bookinfo-add-serviceaccount.yaml) 

serviceaccount "bookinfo-productpage" created
Warning: kubectl apply should be used on resource created by either kubectl create --save-config or kubectl apply
deployment "productpage-v1" configured
➜ linsun@Lins-MacBook-Pro  ~/Downloads/istio-0.2.7/samples/bookinfo/kube  kubectl delete -f bookinfo-add-serviceaccount.yaml
serviceaccount "bookinfo-productpage" deleted
deployment "productpage-v1" deleted
➜ linsun@Lins-MacBook-Pro  ~/Downloads/istio-0.2.7/samples/bookinfo/kube  kubectl create -f <(istioctl kube-inject -f bookinfo-add-serviceaccount.yaml)

serviceaccount "bookinfo-productpage" created
deployment "productpage-v1" created
2017-10-17 18:21:13 -04:00
Lin Sun 93740c54d9 add a note when using non-default namespace (#669) 2017-10-17 18:20:07 -04:00
Oliver Liu 416800478e Improve the instructions on access control (#609)
* Improve access control instructions.

* Small fix.
2017-10-05 18:28:09 -04:00
Shriram Rajagopalan d990231244 Auth to mTLS Authentication (#613)
* Auth to mTLS Authentication

* more cleanups across the site
2017-10-05 11:13:45 -04:00
Oliver Liu c322df86ba Adding access control based on service account (#595)
* Add instructions on secure access control.

* Small fix.
2017-10-03 09:09:03 -07:00