This commit is contained in:
2020-02-17 16:45:04 +11:00
parent 88167a7945
commit 9f9153d878
3 changed files with 12 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

+5
View File
@@ -337,3 +337,8 @@ terraform apply # Apply changes to cluster
## Security
### Mutual TLS authentication
![CTLS](https://raw.githubusercontent.com/wahyd4/knowledge-mind-mapping/master/assets/images/ctls.png)
+7
View File
@@ -395,6 +395,13 @@ func main() {
}
}
```
## Some interesting mistakes
### Do not reuse HTTP request when retrying
See more information: https://stackoverflow.com/questions/55385894/http-contentlength-99-with-body-length-0
# Useful links
* [Go best practice](https://github.com/golang/go/wiki/CodeReviewComments)