Set amphora timezone based on TimeZone setting

Use the global TimeZone parameter in order to configure the timezone of
the amphora.

Depends-On: https://review.opendev.org/c/openstack/octavia/+/839937
Depends-On: https://review.opendev.org/c/openstack/puppet-octavia/+/842079
Change-Id: I0fa188e4492f852ac1097d69c913f116ae96bb52
This commit is contained in:
Tom Weininger 2022-05-17 11:56:32 +02:00
parent 37dec41e31
commit 5ddeac53c0
2 changed files with 10 additions and 0 deletions

View File

@ -120,6 +120,10 @@ parameters:
type: string
default: 'octavia-ssh-key'
description: SSH key name.
TimeZone:
default: 'UTC'
description: The timezone to be set on the overcloud.
type: string
OctaviaLoadBalancerTopology:
default: ''
description: Load balancer topology configuration.
@ -280,6 +284,7 @@ outputs:
octavia::controller::amp_flavor_id: {get_param: OctaviaFlavorId}
octavia::controller::amp_image_tag: {get_param: OctaviaAmphoraImageTag}
octavia::controller::amp_ssh_key_name: {get_param: OctaviaAmphoraSshKeyName}
octavia::controller::amp_timezone: {get_param: TimeZone}
octavia::controller::enable_ssh_access: true
octavia::controller::timeout_client_data: {get_param: OctaviaTimeoutClientData}
octavia::controller::timeout_member_connect: {get_param: OctaviaTimeoutMemberConnect}

View File

@ -0,0 +1,5 @@
---
features:
- |
The TimeZone parameter gets used for configuring the Octavia amphora
timezone now.