
* The name can't use _(underscore)! So fix it! The name can't use _(underscore)! So fix it! * Fix configMap name can't use _(underscore) Fix configMap name can't use _(underscore)
19 lines
402 B
YAML
19 lines
402 B
YAML
# Custom error page configMap
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: custom-error-pages
|
|
data:
|
|
404: |
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head><title>PAGE NOT FOUND</title></head>
|
|
<body>PAGE NOT FOUND</body>
|
|
</html>
|
|
503: |
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head><title>CUSTOM SERVICE UNAVAILABLE</title></head>
|
|
<body>CUSTOM SERVICE UNAVAILABLE</body>
|
|
</html>
|