Merge "Setting keystone region for congress"
[apex-tripleo-heat-templates.git] / docker / services / swift-proxy.yaml
1 heat_template_version: ocata
2
3 description: >
4   OpenStack containerized swift proxy service
5
6 parameters:
7   DockerNamespace:
8     description: namespace
9     default: 'tripleoupstream'
10     type: string
11   DockerSwiftProxyImage:
12     description: image
13     default: 'centos-binary-swift-proxy-server:latest'
14     type: string
15   EndpointMap:
16     default: {}
17     description: Mapping of service endpoint -> protocol. Typically set
18                  via parameter_defaults in the resource registry.
19     type: json
20   ServiceNetMap:
21     default: {}
22     description: Mapping of service_name -> network name. Typically set
23                  via parameter_defaults in the resource registry.  This
24                  mapping overrides those in ServiceNetMapDefaults.
25     type: json
26   DefaultPasswords:
27     default: {}
28     type: json
29
30 resources:
31
32   SwiftProxyBase:
33     type: ../../puppet/services/swift-proxy.yaml
34     properties:
35       EndpointMap: {get_param: EndpointMap}
36       ServiceNetMap: {get_param: ServiceNetMap}
37       DefaultPasswords: {get_param: DefaultPasswords}
38
39 outputs:
40   role_data:
41     description: Role data for the swift proxy.
42     value:
43       service_name: {get_attr: [SwiftProxyBase, role_data, service_name]}
44       config_settings: {get_attr: [SwiftProxyBase, role_data, config_settings]}
45       step_config: &step_config
46         get_attr: [SwiftProxyBase, role_data, step_config]
47       service_config_settings: {get_attr: [SwiftProxyBase, role_data, service_config_settings]}
48       # BEGIN DOCKER SETTINGS
49       puppet_config:
50         config_volume: swift
51         puppet_tags: swift_proxy_config
52         step_config: *step_config
53         config_image: &swift_proxy_image
54           list_join:
55             - '/'
56             - [ {get_param: DockerNamespace}, {get_param: DockerSwiftProxyImage} ]
57       kolla_config:
58         /var/lib/kolla/config_files/swift_proxy.json:
59           command: /usr/bin/swift-proxy-server /etc/swift/proxy-server.conf
60       docker_config:
61         step_4:
62           swift_proxy:
63             image: *swift_proxy_image
64             net: host
65             user: swift
66             restart: always
67             # I'm mounting /etc/swift as rw.  Are the rings written to at all during runtime?
68             volumes:
69               - /var/lib/kolla/config_files/swift_proxy.json:/var/lib/kolla/config_files/config.json:ro
70               - /var/lib/config-data/swift:/var/lib/kolla/config_files/src:ro
71               - /var/lib/config-data/swift/etc/swift:/etc/swift:rw
72               - /etc/hosts:/etc/hosts:ro
73               - /etc/localtime:/etc/localtime:ro
74               - /run:/run
75               - /srv/node:/srv/node
76               - /dev:/dev
77             environment:
78               - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
79       host_prep_tasks:
80         - name: create /srv/node
81           file:
82             path: /srv/node
83             state: directory
84       upgrade_tasks:
85         - name: Stop and disable swift_proxy service
86           tags: step2
87           service: name=openstack-swift-proxy state=stopped enabled=no