Skip to content

Commit

Permalink
Add bind address variable to OCCM (kubernetes-sigs#9958)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominykasn authored Apr 4, 2023
1 parent dff5802 commit 5e2cb4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ external_openstack_cacert: "{{ lookup('env','OS_CACERT') }}"
## arg2: "value2"
external_openstack_cloud_controller_extra_args: {}
external_openstack_cloud_controller_image_tag: "v1.25.3"
external_openstack_cloud_controller_bind_address: 127.0.0.1
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
- --cloud-provider=openstack
- --cluster-name={{ cluster_name }}
- --use-service-account-credentials=true
- --bind-address=127.0.0.1
- --bind-address={{ external_openstack_cloud_controller_bind_address }}
{% for key, value in external_openstack_cloud_controller_extra_args.items() %}
- "{{ '--' + key + '=' + value }}"
{% endfor %}
Expand Down

0 comments on commit 5e2cb4d

Please sign in to comment.