Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions templates/cinder/config/00-global-defaults.conf
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,25 @@ project_domain_name = Default
region_name = {{ .Region }}
{{ end -}}

[glance]
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

interface = internal
auth_url = {{ .KeystoneInternalURL }}
{{ if (index . "ApplicationCredentialID") -}}
auth_type = v3applicationcredential
Comment thread
konan-abhi marked this conversation as resolved.
application_credential_id = {{ .ApplicationCredentialID }}
application_credential_secret = {{ .ApplicationCredentialSecret }}
{{ else -}}
auth_type = password
username = {{ .ServiceUser }}
password = {{ .ServicePassword }}
user_domain_name = Default
project_name = service
project_domain_name = Default
{{ end -}}
{{ if (index . "Region") -}}
region_name = {{ .Region }}
{{ end -}}

[service_user]
send_service_user_token = True
auth_url = {{ .KeystoneInternalURL }}
Expand Down
Loading