Skip to content

Commit

Permalink
support http endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
okozachenko1203 committed Jan 23, 2024
1 parent 0f61194 commit 43ca8e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions magnum_cluster_api/manifests/keystone-auth/keystone-auth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,10 @@ spec:
- {{ auth_url }}
- --sync-configmap-name
- keystone-sync-policy
{% if cloud_ca %}
- --keystone-ca-file
- /etc/kubernetes/cloud_ca.crt
{% endif %}
- --listen
- 127.0.0.1:8443
volumeMounts:
Expand Down
1 change: 1 addition & 0 deletions magnum_cluster_api/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,7 @@ def get_object(self) -> pykube.ConfigMap:
repository=repository,
auth_url=auth_url + ("" if auth_url.endswith("/v3") else "/v3"),
policy=utils.get_keystone_auth_default_policy(self.cluster),
cloud_ca=True if utils.get_cloud_ca_cert() else False,
)
},
}
Expand Down

0 comments on commit 43ca8e4

Please sign in to comment.