You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The keys and the values in [annotations must be strings](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/). In other words, you cannot use numeric, boolean, list or other types for either the keys or the values. Hence, one should double quote them when specifying in annotations to convert them to string.
14
+
12
15
## Available Annotations
13
16
14
17
### Basic Configuration
@@ -27,10 +30,10 @@ For implementation details, see:
27
30
|`check-attempts`| int (1-30) || Number of health check failures necessary to remove a back-end |
28
31
|`check-passive`| bool |`false`| When `true`, `5xx` status codes will cause the health check to fail |
29
32
|`preserve`| bool |`false`| When `true`, deleting a `LoadBalancer` service does not delete the underlying NodeBalancer |
30
-
|`nodebalancer-id`|string|| The ID of the NodeBalancer to front the service |
33
+
|`nodebalancer-id`|int|| The ID of the NodeBalancer to front the service |
31
34
|`hostname-only-ingress`| bool |`false`| When `true`, the LoadBalancerStatus will only contain the Hostname |
32
35
|`tags`| string || A comma separated list of tags to be applied to the NodeBalancer instance |
33
-
|`firewall-id`|string|| An existing Cloud Firewall ID to be attached to the NodeBalancer instance. See [Firewall Setup](firewall.md)|
36
+
|`firewall-id`|int|| An existing Cloud Firewall ID to be attached to the NodeBalancer instance. See [Firewall Setup](firewall.md)|
34
37
|`firewall-acl`| string || The Firewall rules to be applied to the NodeBalancer. See [Firewall Configuration](#firewall-configuration)|
35
38
|`nodebalancer-type`| string || The type of NodeBalancer to create (options: common, premium). See [NodeBalancer Types](#nodebalancer-type)|
36
39
|`enable-ipv6-ingress`| bool |`false`| When `true`, both IPv4 and IPv6 addresses will be included in the LoadBalancerStatus ingress |
0 commit comments