Compare commits

..

No commits in common. "eb573c83cdebaff51aaa17ccae379adefe2bf75a" and "223b4c08937f30770b0b333b4fd0183a1213c3ec" have entirely different histories.

2 changed files with 1 additions and 5 deletions

View file

@ -48,7 +48,3 @@ kubectl annotate deployment/myapp-deployment kubernetes.io/change-cause="DESCRIB
# You can then view the rollout history # You can then view the rollout history
kubectl rollout history deployment/myapp-deployment kubectl rollout history deployment/myapp-deployment
``` ```
- Restart a deployment (repulls latest image if `imagePullPolicy` is set to `Always`)
```bash
kubectl rollout restart deployment/myapp-deployment
```

View file

@ -4,7 +4,7 @@ server {
default_type application/octet-stream; default_type application/octet-stream;
gzip on; gzip on;
root /usr/share/nginx/html; root /usr/share/nginx/build;
location / { location / {
try_files $uri $uri/ /index.html =404; try_files $uri $uri/ /index.html =404;