Skip to content

Commit

Permalink
Enable Octavia in uni05epsilon
Browse files Browse the repository at this point in the history
- fixed missing route in the Octavia NAD
- fixed missing setting for octaviaAPI
- enable the Octavia services
  • Loading branch information
gthiemonge committed Aug 1, 2024
1 parent eedc98a commit b684204
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
8 changes: 7 additions & 1 deletion examples/dt/uni05epsilon/control-plane/nncp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,13 @@ data:
"type": "whereabouts",
"range": "172.23.0.0/24",
"range_start": "172.23.0.30",
"range_end": "172.23.0.70"
"range_end": "172.23.0.70",
"routes": [
{
"dst": "172.24.0.0/16",
"gw": "172.23.0.150"
}
]
}
}
Expand Down
11 changes: 9 additions & 2 deletions examples/dt/uni05epsilon/control-plane/service-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,19 @@ data:
type: split

octavia:
enabled: false # TODO after healthmanager fixed
amphoraImageContainerImage: quay.io/gthiemonge/octavia-amphora-image
enabled: true
# Workaround for https://issues.redhat.com/browse/OSPRH-9102
# There's a bug in uni-epsilon, the octavia-operator uploads a qcow2 image
# to glance but a pre-tests task updates the properties of a cinder volume.
# This update fails because the default volume type is already in use.
amphoraImageContainerImage: ""
apacheContainerImage: registry.redhat.io/ubi9/httpd-24:latest
octaviaAPI:
networkAttachments:
- internalapi
customServiceConfig: |
[controller_worker]
loadbalancer_topology=ACTIVE_STANDBY
octaviaHousekeeping:
networkAttachments:
- octavia
Expand Down

0 comments on commit b684204

Please sign in to comment.