Skip to content

Commit

Permalink
feat: Update bind address for k8s components
Browse files Browse the repository at this point in the history
  • Loading branch information
okozachenko1203 committed Sep 1, 2023
1 parent 13c3e0f commit 37fc423
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions magnum_cluster_api/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,14 +551,23 @@ def get_object(self) -> objects.KubeadmControlPlaneTemplate:
},
"extraVolumes": [],
},
"etcd": {
"local": {
"extraArgs": {
"listen-metrics-urls": "http://0.0.0.0:2381",
},
},
},
"controllerManager": {
"extraArgs": {
"bind-address": "0.0.0.0",
"cloud-provider": "external",
"profiling": "false",
},
},
"scheduler": {
"extraArgs": {
"bind-address": "0.0.0.0",
"profiling": "false",
},
},
Expand Down

0 comments on commit 37fc423

Please sign in to comment.