forked from openstack/kolla-ansible
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consolidate IRIS and stackhpc branches #160
Open
jovial
wants to merge
6
commits into
stackhpc/victoria
Choose a base branch
from
cumulus/victoria
base: stackhpc/victoria
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
67ee60e
Add role to deploy cASO
dougszumski d896b8c
Add support for deploying Prometheus libvirt exporter
dougszumski ec53eb0
Switch prometheus to active/passive mode
jovial 69176aa
Add support for Ceph RadosGW integration
jovial 6c304fe
Add support to OpenID Connect Authentication flow
pedro-martins 67ccb7e
Add OIDCDiscoverURL mod_oidc option
jovial File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
--- | ||
project_name: "ceph-rgw" | ||
|
||
ceph_rgw_services: | ||
# NOTE(mgoddard): There is no container deployment, this is used for load | ||
# balancer configuration. | ||
ceph-rgw: | ||
group: "all" | ||
enabled: "{{ enable_ceph_rgw | bool }}" | ||
haproxy: | ||
radosgw: | ||
enabled: "{{ enable_ceph_rgw_loadbalancer | bool }}" | ||
mode: "http" | ||
external: false | ||
port: "{{ ceph_rgw_port }}" | ||
custom_member_list: "{{ ceph_rgw_haproxy_members }}" | ||
radosgw_external: | ||
enabled: "{{ enable_ceph_rgw_loadbalancer | bool }}" | ||
mode: "http" | ||
external: true | ||
port: "{{ ceph_rgw_port }}" | ||
custom_member_list: "{{ ceph_rgw_haproxy_members }}" | ||
|
||
#################### | ||
# Load balancer | ||
#################### | ||
|
||
# List of Ceph RadosGW hostname:port to use as HAProxy backends. | ||
ceph_rgw_hosts: [] | ||
ceph_rgw_haproxy_members: "{{ ceph_rgw_hosts | map('regex_replace', '(.*)', 'server \\1 \\1 ' + ceph_rgw_haproxy_healthcheck) | list }}" | ||
ceph_rgw_haproxy_healthcheck: "check inter 2000 rise 2 fall 5" | ||
|
||
|
||
#################### | ||
# OpenStack | ||
#################### | ||
|
||
# Whether to register Ceph RadosGW swift-compatible endpoints in Keystone. | ||
enable_ceph_rgw_keystone: "{{ enable_ceph_rgw | bool }}" | ||
|
||
# Enable/disable ceph-rgw compatibility with OpenStack Swift. | ||
ceph_rgw_compatibility: false | ||
|
||
# Enable/disable including the account (project) in the endpoint URL. This | ||
# allows for cross-project and public object access. | ||
ceph_rgw_account_in_url: false | ||
|
||
ceph_rgw_endpoint_path: "{{ '/' if ceph_rgw_compatibility | bool else '/swift/' }}v1{% if ceph_rgw_account_in_url | bool %}/AUTH_%(project_id)s{% endif %}" | ||
|
||
ceph_rgw_admin_endpoint: "{{ admin_protocol }}://{{ ceph_rgw_internal_fqdn | put_address_in_context('url') }}:{{ ceph_rgw_port }}{{ ceph_rgw_endpoint_path }}" | ||
ceph_rgw_internal_endpoint: "{{ internal_protocol }}://{{ ceph_rgw_internal_fqdn | put_address_in_context('url') }}:{{ ceph_rgw_port }}{{ ceph_rgw_endpoint_path }}" | ||
ceph_rgw_public_endpoint: "{{ public_protocol }}://{{ ceph_rgw_external_fqdn | put_address_in_context('url') }}:{{ ceph_rgw_port }}{{ ceph_rgw_endpoint_path }}" | ||
|
||
ceph_rgw_keystone_user: "ceph_rgw" | ||
|
||
openstack_ceph_rgw_auth: "{{ openstack_auth }}" | ||
|
||
|
||
#################### | ||
# Keystone | ||
#################### | ||
ceph_rgw_ks_services: | ||
- name: "swift" | ||
type: "object-store" | ||
description: "Openstack Object Storage" | ||
endpoints: | ||
- {'interface': 'admin', 'url': '{{ ceph_rgw_admin_endpoint }}'} | ||
- {'interface': 'internal', 'url': '{{ ceph_rgw_internal_endpoint }}'} | ||
- {'interface': 'public', 'url': '{{ ceph_rgw_public_endpoint }}'} | ||
|
||
ceph_rgw_ks_users: | ||
- project: "service" | ||
user: "{{ ceph_rgw_keystone_user }}" | ||
password: "{{ ceph_rgw_keystone_password }}" | ||
role: "admin" | ||
|
||
ceph_rgw_ks_roles: | ||
- "ResellerAdmin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
- import_tasks: register.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
- name: "Configure haproxy for {{ project_name }}" | ||
import_role: | ||
role: haproxy-config | ||
vars: | ||
project_services: "{{ ceph_rgw_services }}" | ||
tags: always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
- include_tasks: "{{ kolla_action }}.yml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
- name: Fail if load balancer members not set | ||
fail: | ||
msg: >- | ||
Ceph RadosGW load balancer configuration is enabled | ||
(enable_ceph_rgw_loadbalancer) but no HAProxy members are configured. | ||
Have you set ceph_rgw_hosts? | ||
when: | ||
- enable_ceph_rgw_loadbalancer | bool | ||
- ceph_rgw_haproxy_members | length == 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
- import_tasks: deploy.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
- import_role: | ||
name: service-ks-register | ||
vars: | ||
service_ks_register_auth: "{{ openstack_ceph_rgw_auth }}" | ||
service_ks_register_services: "{{ ceph_rgw_ks_services }}" | ||
service_ks_register_users: "{{ ceph_rgw_ks_users }}" | ||
service_ks_register_roles: "{{ ceph_rgw_ks_roles }}" | ||
when: enable_ceph_rgw_keystone | bool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
features: | ||
- | | ||
Adds support for integration with Ceph RadosGW. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This ended up a bit different upstream:
Should we backport again from the merged patch?