Merge pull request #6617 from GabrielSVinha/int_ip_os
Add openstack internal load balancer optionpull/6366/head
commit
9005e08f04
|
@ -501,8 +501,19 @@ metadata:
|
||||||
```
|
```
|
||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
|
|
||||||
{% assign tab_names = 'Default,GCP,AWS,Azure' | split: ',' | compact %}
|
{% capture openstack %}
|
||||||
{% assign tab_contents = site.emptyArray | push: default_tab | push: gcp | push: aws | push: azure %}
|
```yaml
|
||||||
|
[...]
|
||||||
|
metadata:
|
||||||
|
name: my-service
|
||||||
|
annotations:
|
||||||
|
service.beta.kubernetes.io/openstack-internal-load-balancer: "true"
|
||||||
|
[...]
|
||||||
|
```
|
||||||
|
{% endcapture %}
|
||||||
|
|
||||||
|
{% assign tab_names = 'Default,GCP,AWS,Azure,OpenStack' | split: ',' | compact %}
|
||||||
|
{% assign tab_contents = site.emptyArray | push: default_tab | push: gcp | push: aws | push: azure | push: openstack %}
|
||||||
{% include tabs.md %}
|
{% include tabs.md %}
|
||||||
|
|
||||||
#### SSL support on AWS
|
#### SSL support on AWS
|
||||||
|
|
Loading…
Reference in New Issue