Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Draft] Enable Octavia in uni05epsilon #339

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@

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
Loading