2019-02-01 05:17:47 +00:00
|
|
|
# Google SRE Books.
|
2019-02-01 08:27:32 +00:00
|
|
|
|
|
|
|
# NOTE: The indentation before inner vars should be always "tab" not "space".
|
2019-02-01 05:17:47 +00:00
|
|
|
declare -A BOOKS
|
|
|
|
BOOKS=(
|
|
|
|
|
|
|
|
# Site Reliability Engineering
|
2019-02-01 08:27:32 +00:00
|
|
|
["SRE_BOOK"]='
|
|
|
|
BOOK_NAME=sre-book
|
|
|
|
BOOK_NAME_FULL=Site Reliability Engineering
|
2019-02-03 15:10:22 +00:00
|
|
|
BOOK_FILE=google-site-reliability-engineering
|
2020-12-20 13:58:21 +00:00
|
|
|
BOOK_TOC_URL=https://sre.google/sre-book/table-of-contents/index.html
|
2019-02-01 08:27:32 +00:00
|
|
|
'
|
2019-02-01 05:17:47 +00:00
|
|
|
|
2019-02-01 05:26:36 +00:00
|
|
|
# Site Reliability Workbook
|
2019-02-01 08:27:32 +00:00
|
|
|
["SRW_BOOK"]='
|
|
|
|
BOOK_NAME=workbook
|
|
|
|
BOOK_NAME_FULL=The Site Reliability Workbook
|
2019-02-03 15:10:22 +00:00
|
|
|
BOOK_FILE=google-the-site-reliability-workbook
|
2020-12-20 13:58:21 +00:00
|
|
|
BOOK_TOC_URL=https://sre.google/workbook/table-of-contents/index.html
|
2019-02-01 08:27:32 +00:00
|
|
|
'
|
2019-02-01 05:26:36 +00:00
|
|
|
|
2019-02-01 05:17:47 +00:00
|
|
|
)
|