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 5, 2024
1 parent 26f9824 commit e2fa839
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
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 @@ -180,7 +180,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
37 changes: 37 additions & 0 deletions examples/dt/uni05epsilon/control-plane/service-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,40 @@ metadata:

data:
preserveJobs: false
octavia:
enabled: true
# Workaround for https://issues.redhat.com/browse/OSPRH-9102

Check warning on line 14 in examples/dt/uni05epsilon/control-plane/service-values.yaml

View workflow job for this annotation

GitHub Actions / yaml-lint

14:6 [comments-indentation] comment not indented like content
# 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.

Check failure on line 16 in examples/dt/uni05epsilon/control-plane/service-values.yaml

View workflow job for this annotation

GitHub Actions / yaml-lint

16:1 syntax error: could not find expected ':' (syntax)
# 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
customServiceConfig: |
[controller_worker]
loadbalancer_topology=ACTIVE_STANDBY
octaviaHealthManager:
networkAttachments:
- octavia
customServiceConfig: |
[controller_worker]
loadbalancer_topology=ACTIVE_STANDBY
octaviaWorker:
networkAttachments:
- octavia
customServiceConfig: |
[controller_worker]
loadbalancer_topology=ACTIVE_STANDBY
ovn:
ovnController:
nicMappings:
- octavia: octbr

0 comments on commit e2fa839

Please sign in to comment.