author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Tue, 22 Dec 2020 11:23:56 +0200 | |
changeset 2480 | 0766b2899607 |
parent 2476 | 9dcca871e859 |
child 2482 | b6e75fabe00b |
permissions | -rw-r--r-- |
2470 | 1 |
|
2 |
============== |
|
3 |
Google Cloud |
|
4 |
============== |
|
5 |
||
6 |
Load balancer |
|
7 |
============= |
|
8 |
||
2472 | 9 |
https://cloud.google.com/load-balancing/docs/https/traffic-management |
10 |
Traffic management overview for external HTTP(S) load balancers. |
|
2470 | 11 |
https://cloud.google.com/compute/docs/reference/rest/v1/urlMaps |
12 |
URL map API. |
|
2475 | 13 |
https://cloud.google.com/compute/docs/reference/rest/v1/regionUrlMaps |
14 |
URL map API. |
|
2476 | 15 |
https://cloud.google.com/load-balancing/docs/l7-internal/traffic-management |
16 |
Traffic management overview for internal HTTP(S) load balancers. |
|
2470 | 17 |
|
2471 | 18 |
Health check |
19 |
============ |
|
20 |
||
21 |
List health checks:: |
|
22 |
||
23 |
gcloud compute health-checks list --format=yaml |
|
24 |
||
25 |
In order for LB to function you need to define health checks. They run outside of intranet so |
|
26 |
firewall rules have to be applied to VMs for checks to succeed:: |
|
27 |
||
28 |
gcloud compute firewall-rules create fw-allow-health-check \ |
|
29 |
--network=default \ |
|
30 |
--action=allow \ |
|
31 |
--direction=ingress \ |
|
32 |
--source-ranges=130.211.0.0/22,35.191.0.0/16 \ |
|
33 |
--target-tags=allow-health-check \ |
|
34 |
--rules=tcp:80 |
|
35 |
||
36 |
https://cloud.google.com/load-balancing/docs/health-checks |
|
37 |
Creating health checks & magical subnets for FW rules. |
|
38 |
||
2473 | 39 |
SSL certificates |
40 |
================ |
|
41 |
||
42 |
To view status and error details run:: |
|
43 |
||
44 |
gcloud beta compute ssl-certificates describe $NAME |
|
45 |
gcloud beta compute ssl-certificates list --format=yaml |
|
46 |
||
47 |
and check codes against: |
|
48 |
||
49 |
https://cloud.google.com/load-balancing/docs/ssl-certificates/troubleshooting |
|
50 |
Troubleshooting SSL certificates. Error codes description. |
|
51 |
||
2474
cc7945bce35e
Using self-managed SSL certificates.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
2473
diff
changeset
|
52 |
To set manages sertificate follow instructions: |
2473 | 53 |
|
2474
cc7945bce35e
Using self-managed SSL certificates.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
2473
diff
changeset
|
54 |
https://cloud.google.com/load-balancing/docs/ssl-certificates/self-managed-certs |
cc7945bce35e
Using self-managed SSL certificates.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
2473
diff
changeset
|
55 |
Using self-managed SSL certificates. |
cc7945bce35e
Using self-managed SSL certificates.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
2473
diff
changeset
|
56 |