aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/services/swift-proxy.yaml
blob: 6c2bb44b2894d49b510b2e896ad8adecbd02cc21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
heat_template_version: 2016-04-08

description: >
  OpenStack Swift Proxy service configured with Puppet

parameters:
  ServiceNetMap:
    default: {}
    description: Mapping of service_name -> network name. Typically set
                 via parameter_defaults in the resource registry.  This
                 mapping overrides those in ServiceNetMapDefaults.
    type: json
  DefaultPasswords:
    default: {}
    type: json
  EndpointMap:
    default: {}
    description: Mapping of service endpoint -> protocol. Typically set
                 via parameter_defaults in the resource registry.
    type: json
  Debug:
    default: ''
    description: Set to True to enable debugging on all services.
    type: string
  SwiftPassword:
    description: The password for the swift service account, used by the swift proxy services.
    type: string
    hidden: true
  SwiftProxyNodeTimeout:
    default: 60
    description: Timeout for requests going from swift-proxy to swift a/c/o services.
    type: number
  SwiftWorkers:
    default: 0
    description: Number of workers for Swift service.
    type: number
  KeystoneRegion:
    type: string
    default: 'regionOne'
    description: Keystone region for endpoint


outputs:
  role_data:
    description: Role data for the Swift proxy service.
    value:
      service_name: swift_proxy
      config_settings:
        # Swift
        swift::proxy::authtoken::auth_uri: {get_param: [EndpointMap, KeystoneInternal, uri]}
        swift::proxy::authtoken::identity_uri: {get_param: [EndpointMap, KeystoneAdmin, uri_no_suffix]}
        swift::proxy::authtoken::admin_password: {get_param: SwiftPassword}
        swift::proxy::authtoken::admin_tenant_name: 'service'
        swift::proxy::node_timeout: {get_param: SwiftProxyNodeTimeout}
        swift::proxy::workers: {get_param: SwiftWorkers}
        swift::keystone::auth::public_url: {get_param: [EndpointMap, SwiftPublic, uri]}
        swift::keystone::auth::internal_url: {get_param: [EndpointMap, SwiftInternal, uri]}
        swift::keystone::auth::admin_url: {get_param: [EndpointMap, SwiftAdmin, uri]}
        swift::keystone::auth::public_url_s3: {get_param: [EndpointMap, SwiftS3Public, uri]}
        swift::keystone::auth::internal_url_s3: {get_param: [EndpointMap, SwiftS3Internal, uri]}
        swift::keystone::auth::admin_url_s3: {get_param: [EndpointMap, SwiftS3Admin, uri]}
        swift::keystone::auth::password: {get_param: SwiftPassword}
        swift::keystone::auth::region: {get_param: KeystoneRegion}
        tripleo.swift_proxy.firewall_rules:
          '122 swift proxy':
            dport:
              - 8080
              - 13808
        swift::keystone::auth::tenant: 'service'
        swift::keystone::auth::configure_s3_endpoint: false
        swift::keystone::auth::operator_roles:
          - admin
          - swiftoperator
          - ResellerAdmin
        swift::proxy::keystone::operator_roles:
          - admin
          - swiftoperator
          - ResellerAdmin
        swift::proxy::pipeline:
          - 'catch_errors'
          - 'healthcheck'
          - 'proxy-logging'
          - 'cache'
          - 'ratelimit'
          - 'bulk'
          - 'tempurl'
          - 'formpost'
          - 'authtoken'
          - 'keystone'
          - 'staticweb'
          - 'proxy-logging'
          - 'proxy-server'
        swift::proxy::account_autocreate: true
      step_config: |
        include ::tripleo::profile::base::swift::proxy