mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 19:31:44 +00:00
Merge pull request #2832 from jlowdermilk/update-demo
Fix update-demo to work correctly with a web browser.
This commit is contained in:
commit
a299287ae8
@ -39,7 +39,9 @@ func main() {
|
||||
w.Header().Set("Access-Control-Allow-Origin", "*")
|
||||
w.Header().Set("Access-Control-Allow-Credentials", "true")
|
||||
w.Header().Set("Access-Control-Allow-Methods", "GET, POST, OPTIONS")
|
||||
w.Header().Set("Access-Control-Allow-Headers", "DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type")
|
||||
w.Header().Set("Access-Control-Allow-Headers", "DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,Cache-Control,Content-Type")
|
||||
// Disable If-Modified-Since so update-demo isn't broken by 304s
|
||||
r.Header.Del("If-Modified-Since")
|
||||
fs.ServeHTTP(w, r)
|
||||
})
|
||||
|
||||
|
@ -13,4 +13,5 @@
|
||||
# limitations under the License.
|
||||
|
||||
FROM kubernetes/test-webserver
|
||||
ADD html/data.json html/kitten.jpg /
|
||||
COPY html/kitten.jpg kitten.jpg
|
||||
COPY html/data.json data.json
|
||||
|
@ -13,4 +13,5 @@
|
||||
# limitations under the License.
|
||||
|
||||
FROM kubernetes/test-webserver
|
||||
ADD html/data.json html/nautilus.jpg /
|
||||
COPY html/nautilus.jpg nautilus.jpg
|
||||
COPY html/data.json data.json
|
||||
|
Loading…
Reference in New Issue
Block a user